dolibarr  19.0.0-dev
linkedobjectblock.tpl.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2010-2011 Regis Houssin <regis.houssin@inodbox.com>
3  * Copyright (C) 2013 Juanjo Menent <jmenent@2byte.es>
4  * Copyright (C) 2014 Marcos GarcĂ­a <marcosgdf@gmail.com>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program. If not, see <https://www.gnu.org/licenses/>.
18  */
19 
26 // Protection to avoid direct call of template
27 if (empty($conf) || !is_object($conf)) {
28  print "Error, template page can't be called as URL";
29  exit;
30 }
31 
32 
33 print "<!-- BEGIN PHP TEMPLATE comm/propal/tpl/linkedobjectblock.tpl.php -->\n";
34 
35 global $user;
36 
37 $langs = $GLOBALS['langs'];
38 $linkedObjectBlock = $GLOBALS['linkedObjectBlock'];
39 
40 // Load translation files required by the page
41 $langs->load("propal");
42 
43 $linkedObjectBlock = dol_sort_array($linkedObjectBlock, 'date', 'desc', 0, 0, 1);
44 
45 $total = 0;
46 $ilink = 0;
47 foreach ($linkedObjectBlock as $key => $objectlink) {
48  $ilink++;
49 
50  $trclass = 'oddeven';
51  if ($ilink == count($linkedObjectBlock) && empty($noMoreLinkedObjectBlockAfter) && count($linkedObjectBlock) <= 1) {
52  $trclass .= ' liste_sub_total';
53  }
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.'&amp;action=selectlines" data-element="'.$objectlink->element.'" data-id="'.$objectlink->id.'" > <i class="fa fa-indent"></i> </a>';
59  }
60  print '</td>';
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);
68  }
69  print '</td>';
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>';
72  print "</tr>\n";
73 }
74 if (count($linkedObjectBlock) > 1) {
75  print '<tr class="liste_total '.(empty($noMoreLinkedObjectBlockAfter) ? 'liste_sub_total' : '').'">';
76  print '<td>'.$langs->trans("Total").'</td>';
77  print '<td></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>';
83  print "</tr>\n";
84 }
85 
86 print "<!-- 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...
newToken()
Return the value of token currently saved into session with name 'newtoken'.