22if (empty($conf) || !is_object($conf)) {
23 print
"Error, template page can't be called as URL";
27print
"<!-- BEGIN PHP TEMPLATE compta/facture/tpl/linkedobjectblock.tpl.php -->\n";
30global $noMoreLinkedObjectBlockAfter;
32$langs = $GLOBALS[
'langs'];
33$linkedObjectBlock = $GLOBALS[
'linkedObjectBlock'];
37$linkedObjectBlock =
dol_sort_array($linkedObjectBlock,
'date',
'desc', 0, 0, 1);
38'@phan-var-force array<string,CommonObject> $linkedObjectBlock';
42foreach ($linkedObjectBlock as $key => $objectlink) {
45 if ($ilink == count($linkedObjectBlock) && empty($noMoreLinkedObjectBlockAfter) && count($linkedObjectBlock) <= 1) {
46 $trclass .=
' liste_sub_total';
48 print
'<tr class="'.$trclass.
'" data-element="'.$objectlink->element.
'" data-id="'.$objectlink->id.
'" >';
49 print
'<td class="linkedcol-element tdoverflowmax100">';
50 switch ($objectlink->type) {
52 echo $langs->trans(
"InvoiceReplacement");
55 echo $langs->trans(
"InvoiceAvoir");
58 echo $langs->trans(
"InvoiceDeposit");
61 echo $langs->trans(
"InvoiceProForma");
64 echo $langs->trans(
"InvoiceSituation");
67 echo $langs->trans(
"CustomerInvoice");
70 if (!empty($showImportButton) &&
getDolGlobalString(
'MAIN_ENABLE_IMPORT_LINKED_OBJECT_LINES')) {
71 print
'<a class="objectlinked_importbtn" href="'.$objectlink->getNomUrl(0,
'', 0, 1).
'&action=selectlines&token='.
newToken().
'" data-element="'.$objectlink->element.
'" data-id="'.$objectlink->id.
'" > <i class="fa fa-indent"></i> </a';
74 print
'<td class="linkedcol-name tdoverflowmax150">'.$objectlink->getNomUrl(1).
'</td>';
75 print
'<td class="linkedcol-ref tdoverflowmax150" title="'.dol_escape_htmltag($objectlink->ref_client).
'">'.
dol_escape_htmltag($objectlink->ref_client).
'</td>';
76 print
'<td class="linkedcol-date center">'.dol_print_date($objectlink->date,
'day').
'</td>';
77 print
'<td class="linkedcol-amount right nowraponall">';
78 if (!empty($objectlink) && $objectlink->element ==
'facture' && $user->hasRight(
'facture',
'lire')) {
79 if ($objectlink->statut != 3) {
81 $total += $objectlink->total_ht;
82 echo
price($objectlink->total_ht);
84 echo
'<strike>'.price($objectlink->total_ht).
'</strike>';
89 print
'<td class="linkedcol-statut right">';
90 $totalallpayments = 0;
91 $totalcalculated =
false;
92 if (method_exists($objectlink,
'getSommePaiement')) {
93 $totalcalculated =
true;
94 $totalallpayments += $objectlink->getSommePaiement();
96 if (method_exists($objectlink,
'getSumDepositsUsed')) {
97 $totalcalculated =
true;
98 $totalallpayments += $objectlink->getSumDepositsUsed();
100 if (method_exists($objectlink,
'getSumCreditNotesUsed')) {
101 $totalcalculated =
true;
102 $totalallpayments += $objectlink->getSumCreditNotesUsed();
104 print $objectlink->getLibStatut(3, ($totalcalculated ? $totalallpayments : -1));
106 print
'<td class="linkedcol-action right"><a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'&action=dellink&token='.
newToken().
'&dellinkid='.$key.
'">'.
img_picto($langs->transnoentitiesnoconv(
"RemoveLink"),
'unlink').
'</a></td>';
109if (count($linkedObjectBlock) > 1) {
110 print
'<tr class="liste_total '.(empty($noMoreLinkedObjectBlockAfter) ?
'liste_sub_total' :
'').
'">';
111 print
'<td>'.$langs->trans(
"Total").
'</td>';
113 print
'<td class="center"></td>';
114 print
'<td class="center"></td>';
115 print
'<td class="right">'.price($total).
'</td>';
116 print
'<td class="right"></td>';
117 print
'<td class="right"></td>';
121print
"<!-- END PHP TEMPLATE -->\n";
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
const TYPE_REPLACEMENT
Replacement invoice.
const TYPE_SITUATION
Situation invoice.
const TYPE_PROFORMA
Proforma invoice (should not be used.
const TYPE_DEPOSIT
Deposit invoice.
const TYPE_CREDIT_NOTE
Credit note invoice.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
dol_sort_array(&$array, $index, $order='asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by the value of a given key, which produces ascending (default) or descending out...
newToken()
Return the value of token currently saved into session with name 'newtoken'.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...