2
0
forked from Wavyzz/dolibarr

FIX missing setup of extrafields for MO

FIX all extrafields cleared after update of one of them
FIX Update of extrafields date
FIX Update of extrafiels on draft object
FIX Sql type
Fix trans on BOM
This commit is contained in:
Laurent Destailleur
2020-07-04 16:14:53 +02:00
parent 9912ffd555
commit 1c19c97cf2
15 changed files with 399 additions and 9 deletions

View File

@@ -47,8 +47,10 @@ if (($id > 0 || (!empty($ref) && !in_array($action, array('create', 'createtask'
setEventMessages('Fetch on object (type '.get_class($object).') return an error without filling $object->error nor $object->errors', null, 'errors');
}
}
else setEventMessages($object->error, $object->errors, 'errors');
$action = '';
else {
setEventMessages($object->error, $object->errors, 'errors');
}
$action = '';
}
}
}