MARX#59862: Tobias 365 - Mareon

svn path=/Mareon/trunk/; revision=45235
This commit is contained in:
Marcel Bourseau
2019-12-13 13:42:45 +00:00
parent 0a469ebeda
commit 8b5170a941
44 changed files with 377 additions and 502 deletions

View File

@@ -14,11 +14,20 @@ function FCLT_Sync_START(){
F_PutSync(0);
}
function FCLT_Sync_END(){
if (AX_or_Tobias() == "A365"){
F_PutSync(2);
}
else{
F_PutSync(1);
var l_erp = AX_or_Tobias();
switch (l_erp)
{
case "A365":
// AX 365
F_PutSync(2);
break;
case "F":
// Facilitor
F_PutSync(2);
break;
default:
F_PutSync(1);
}
}