27if (empty($conf) || !is_object($conf)) {
28 print
"Error, template page can't be called as URL";
33print
"<!-- BEGIN PHP TEMPLATE comm/propal/tpl/linkedobjectblock.tpl.php -->\n";
37$langs = $GLOBALS[
'langs'];
38$linkedObjectBlock = $GLOBALS[
'linkedObjectBlock'];
41$langs->load(
"propal");
43$linkedObjectBlock =
dol_sort_array($linkedObjectBlock,
'date',
'desc', 0, 0, 1);
47foreach ($linkedObjectBlock as $key => $objectlink) {
51 if ($ilink == count($linkedObjectBlock) && empty($noMoreLinkedObjectBlockAfter) && count($linkedObjectBlock) <= 1) {
52 $trclass .=
' liste_sub_total';
54 print
'<tr class="'.$trclass.
'" data-element="'.$objectlink->element.
'" data-id="'.$objectlink->id.
'" >';
55 print
'<td class="linkedcol-element tdoverflowmax100">'.$langs->trans(
"Proposal");
56 if (!empty($showImportButton) && $conf->global->MAIN_ENABLE_IMPORT_LINKED_OBJECT_LINES) {
57 $url = DOL_URL_ROOT.
'/comm/propal/card.php?id='.$objectlink->id;
58 print
'<a class="objectlinked_importbtn" href="'.$url.
'&action=selectlines" data-element="'.$objectlink->element.
'" data-id="'.$objectlink->id.
'" > <i class="fa fa-indent"></i> </a>';
61 print
'<td class="linkedcol-name tdoverflowmax150">'.$objectlink->getNomUrl(1).
'</td>';
62 print
'<td class="linkedcol-ref" >'.$objectlink->ref_client.
'</td>';
63 print
'<td class="linkedcol-date center">'.dol_print_date($objectlink->date,
'day').
'</td>';
64 print
'<td class="linkedcol-amount right">';
65 if ($user->hasRight(
'propal',
'lire')) {
66 $total = $total + $objectlink->total_ht;
67 echo
price($objectlink->total_ht);
70 print
'<td class="linkedcol-statut right">'.$objectlink->getLibStatut(3).
'</td>';
71 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>';
74if (count($linkedObjectBlock) > 1) {
75 print
'<tr class="liste_total '.(empty($noMoreLinkedObjectBlockAfter) ?
'liste_sub_total' :
'').
'">';
76 print
'<td>'.$langs->trans(
"Total").
'</td>';
78 print
'<td class="center"></td>';
79 print
'<td class="center"></td>';
80 print
'<td class="right">'.price($total).
'</td>';
81 print
'<td class="right"></td>';
82 print
'<td class="right"></td>';
86print
"<!-- END PHP TEMPLATE -->\n";
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.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
dol_sort_array(&$array, $index, $order='asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by second index function, which produces ascending (default) or descending output...