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 '<table class="noborder" width="100%">';
|
||||||
print "<tr class=\"liste_titre\"><td>Facture</td>";
|
print "<tr class=\"liste_titre\"><td>Facture</td>";
|
||||||
print '<td width="54%">'.$langs->trans("Description").'</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 '<td colspan="2" align="center">'.$langs->trans("Compte").'</td>';
|
||||||
print "</tr>\n";
|
print "</tr>\n";
|
||||||
|
|
||||||
print '<tr class="liste_titre"><td><input name="search_facture" value="'.$_GET["search_facture"].'"></td>';
|
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 width="54%"> </td>';
|
||||||
print '<td align="center">'.$langs->trans("Compte").'</td>';
|
print '<td align="right"> </td>';
|
||||||
|
print '<td align="center"> </td>';
|
||||||
print '<td align="center"><input type="submit"></td>';
|
print '<td align="center"><input type="submit"></td>';
|
||||||
print "</tr>\n";
|
print "</tr>\n";
|
||||||
|
|
||||||
@ -94,6 +96,10 @@ if ($result)
|
|||||||
|
|
||||||
print '<td>'.stripslashes(nl2br($objp->description)).'</td>';
|
print '<td>'.stripslashes(nl2br($objp->description)).'</td>';
|
||||||
|
|
||||||
|
print '<td align="right">';
|
||||||
|
print price($objp->price);
|
||||||
|
print '</td>';
|
||||||
|
|
||||||
print '<td>';
|
print '<td>';
|
||||||
print $objp->numero;
|
print $objp->numero;
|
||||||
print '</td>';
|
print '</td>';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user