Merge pull request #6042 from IonAgorria/receive-trigger

FIX: Supplier order statut is not reverted if RECEIVE trigger fails
This commit is contained in:
Laurent Destailleur 2016-11-27 16:27:40 +01:00 committed by GitHub
commit bf2b75f990

View File

@ -1961,6 +1961,7 @@ class CommandeFournisseur extends CommonOrder
if ($resql)
{
$result = 0;
$old_statut = $this->statut;
$this->statut = $statut;
// Call trigger
@ -1974,6 +1975,7 @@ class CommandeFournisseur extends CommonOrder
}
else
{
$this->statut = $old_statut;
$this->db->rollback();
$this->error=$this->db->lasterror();
$result = -1;