Notifications
Retirer tout
Ask questions
3
Posts
2
Utilisateurs
0
Reactions
1,888
Vu
Début du sujet
Hi;
I'm using the latest version of Projeqtor (8.0.0), and I can not export to MS Project. what should I do ? are there conditions or a procedure to follow for the export?
Bye.
Posté : 22/04/2019 12:29 am
This is an isue confirmed.
Ticket #3970 recorded.
Will be fixed on next patch.
Posté : 22/04/2019 1:56 am
Fix is to add 1 line before line 1243 in tool/jsonPlanning.php, from
} else {
$resourceList=$res->getSqlElementsFromCriteria(array(), false, false, " id asc");
}
to
} else {
$res=new Resource();
$resourceList=$res->getSqlElementsFromCriteria(array(), false, false, " id asc");
}
Posté : 22/04/2019 2:04 am