Skip to content
Snippets Groups Projects
Commit 2b2d7641 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: ref and date of supplier invoice.

Fix: Check on bank account
parent 70c262a9
No related branches found
No related tags found
No related merge requests found
...@@ -96,7 +96,7 @@ if ($action == 'add_paiement') ...@@ -96,7 +96,7 @@ if ($action == 'add_paiement')
{ {
// Si module bank actif, un compte est obligatoire lors de la saisie // Si module bank actif, un compte est obligatoire lors de la saisie
// d'un paiement // d'un paiement
if (! $_POST['accountid']) if ($_POST['accountid'] <= 0)
{ {
setEventMessage($langs->trans('ErrorFieldRequired',$langs->transnoentities('AccountToCredit')), 'errors'); setEventMessage($langs->trans('ErrorFieldRequired',$langs->transnoentities('AccountToCredit')), 'errors');
$error++; $error++;
...@@ -298,13 +298,16 @@ if ($action == 'create' || $action == 'add_paiement') ...@@ -298,13 +298,16 @@ if ($action == 'create' || $action == 'add_paiement')
$objp = $db->fetch_object($resql); $objp = $db->fetch_object($resql);
$var=!$var; $var=!$var;
print '<tr '.$bc[$var].'>'; print '<tr '.$bc[$var].'>';
print '<td><a href="fiche.php?facid='.$objp->facid.'">'.img_object($langs->trans('ShowBill'),'bill').' '.$objp->ref; print '<td>';
print '</a></td>'; $invoicesupplierstatic->ref=$objp->ref;
$invoicesupplierstatic->id=$objp->facid;
print $invoicesupplierstatic->getNomUrl(1);
print '</td>';
print '<td>'.$objp->ref_supplier.'</td>'; print '<td>'.$objp->ref_supplier.'</td>';
if ($objp->df > 0 ) if ($objp->df > 0 )
{ {
print '<td align="center">'; print '<td align="center">';
print dol_print_date($db->jdate($objp->df)).'</td>'; print dol_print_date($db->jdate($objp->df), 'day').'</td>';
} }
else else
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment