FIX: Total_ht not show in contract link element
This commit is contained in:
parent
de241eced3
commit
0d954cb1c7
@ -7206,7 +7206,12 @@ class Form
|
|||||||
print '</td>';
|
print '</td>';
|
||||||
print '<td class="center">'.$objp->ref.'</td>';
|
print '<td class="center">'.$objp->ref.'</td>';
|
||||||
print '<td>'.$objp->ref_client.'</td>';
|
print '<td>'.$objp->ref_client.'</td>';
|
||||||
print '<td class="right">'.price($objp->total_ht).'</td>';
|
print '<td class="right">';
|
||||||
|
if ($possiblelink[label] == 'LinkToContract') {
|
||||||
|
$form = new Form($db);
|
||||||
|
print $form->textwithpicto('', $langs->trans("InformationOnLinkToContract")).' ';
|
||||||
|
}
|
||||||
|
print price($objp->total_ht).'</td>';
|
||||||
print '<td>'.$objp->name.'</td>';
|
print '<td>'.$objp->name.'</td>';
|
||||||
print '</tr>';
|
print '</tr>';
|
||||||
$i++;
|
$i++;
|
||||||
|
|||||||
@ -1115,3 +1115,4 @@ EventReminder=Event Reminder
|
|||||||
UpdateForAllLines=Update for all lines
|
UpdateForAllLines=Update for all lines
|
||||||
OnHold=On hold
|
OnHold=On hold
|
||||||
Civility=Civility
|
Civility=Civility
|
||||||
|
InformationOnLinkToContract=This amount is only the total of all the lines of the contract. No notion of time is taken into account.
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user