Better error management
This commit is contained in:
parent
084da1e440
commit
9b84d746b9
@ -179,6 +179,7 @@ if ($_POST['action'] == 'confirm_paiement' && $_POST['confirm'] == 'yes')
|
|||||||
DOL_URL_ROOT.'/compta/paiement/fiche.php?id=',
|
DOL_URL_ROOT.'/compta/paiement/fiche.php?id=',
|
||||||
'(paiement)',
|
'(paiement)',
|
||||||
'payment');
|
'payment');
|
||||||
|
if ($result <= 0) dol_print_error($db);
|
||||||
// Add link in bank_url between invoice and bank transaction (for each invoice concerned by payment)
|
// Add link in bank_url between invoice and bank transaction (for each invoice concerned by payment)
|
||||||
$linkaddedforthirdparty=array();
|
$linkaddedforthirdparty=array();
|
||||||
foreach ($paiement->amounts as $key => $value)
|
foreach ($paiement->amounts as $key => $value)
|
||||||
@ -193,6 +194,7 @@ if ($_POST['action'] == 'confirm_paiement' && $_POST['confirm'] == 'yes')
|
|||||||
DOL_URL_ROOT.'/compta/fiche.php?socid=',
|
DOL_URL_ROOT.'/compta/fiche.php?socid=',
|
||||||
$fac->client->nom,
|
$fac->client->nom,
|
||||||
'company');
|
'company');
|
||||||
|
if ($result <= 0) dol_print_error($db);
|
||||||
$linkaddedforthirdparty[$fac->client->id]=$fac->client->id; // Mark as done for this thirdparty
|
$linkaddedforthirdparty[$fac->client->id]=$fac->client->id; // Mark as done for this thirdparty
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user