Affiche le montant de la ligne
This commit is contained in:
parent
062884cead
commit
72bf843277
@ -74,12 +74,14 @@ if ($result)
|
||||
print '<table class="noborder" width="100%">';
|
||||
print "<tr class=\"liste_titre\"><td>Facture</td>";
|
||||
print '<td width="54%">'.$langs->trans("Description").'</td>';
|
||||
print '<td>'.$langs->trans("Montant").'</td>';
|
||||
print '<td colspan="2" align="center">'.$langs->trans("Compte").'</td>';
|
||||
print "</tr>\n";
|
||||
|
||||
print '<tr class="liste_titre"><td><input name="search_facture" value="'.$_GET["search_facture"].'"></td>';
|
||||
print '<td width="54%">'.$langs->trans("Description").'</td>';
|
||||
print '<td align="center">'.$langs->trans("Compte").'</td>';
|
||||
print '<td width="54%"> </td>';
|
||||
print '<td align="right"> </td>';
|
||||
print '<td align="center"> </td>';
|
||||
print '<td align="center"><input type="submit"></td>';
|
||||
print "</tr>\n";
|
||||
|
||||
@ -93,7 +95,11 @@ if ($result)
|
||||
print '<td><a href="'.DOL_URL_ROOT.'/compta/facture.php?facid='.$objp->facid.'">'.$objp->facnumber.'</a></td>';
|
||||
|
||||
print '<td>'.stripslashes(nl2br($objp->description)).'</td>';
|
||||
|
||||
|
||||
print '<td align="right">';
|
||||
print price($objp->price);
|
||||
print '</td>';
|
||||
|
||||
print '<td>';
|
||||
print $objp->numero;
|
||||
print '</td>';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user