2
0
forked from Wavyzz/dolibarr

Merge pull request #8367 from atm-quentin/6.0

FIX check shipping on delete order
This commit is contained in:
Laurent Destailleur
2018-03-13 09:53:57 +01:00
committed by GitHub

View File

@@ -3127,6 +3127,12 @@ class Commande extends CommonOrder
// End call triggers
}
if ($this->nb_expedition() != 0)
{
$this->errors[] = $langs->trans('SomeShipmentExists');
$error++;
}
//TODO: Check for error after each action. If one failed we rollback, don't waste time to do action if previous fail
if (! $error)
{