dolibarr 23.0.3
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 * Copyright (C) 2013-2020 Charlene BENKE <charlie@patas-monkey.com>
6 * Copyright (C) 2024-2025 MDW <mdeweerd@users.noreply.github.com>
7 * Copyright (C) 2025 Frédéric France <frederic.france@free.fr>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <https://www.gnu.org/licenses/>.
21 */
22
41// Protection to avoid direct call of template
42if (empty($conf) || !is_object($conf)) {
43 print "Error, template page can't be called as URL";
44 exit(1);
45}
46
47print "<!-- BEGIN PHP TEMPLATE bom/tpl/linkedobjectblock.tpl.php -->\n";
48
49// Load translation files required by the page
50$langs->load("bom");
51
52$linkedObjectBlock = dol_sort_array($linkedObjectBlock, 'date,ref', 'desc', 0, 0, 1);
53'@phan-var-force BOM[] $linkedObjectBlock'; // Type after dol_sort_array which looses typing
56$total = 0;
57$ilink = 0;
58foreach ($linkedObjectBlock as $key => $objectlink) {
59 $ilink++;
60 $product_static = new Product($db);
61 $trclass = 'oddeven';
62 if ($ilink == count($linkedObjectBlock) && empty($noMoreLinkedObjectBlockAfter) && count($linkedObjectBlock) <= 1) {
63 $trclass .= ' liste_sub_total';
64 }
65 echo '<tr class="'.$trclass.'" >';
66 echo '<td class="linkedcol-element tdoverflowmax100">'.$langs->trans("Bom");
67 if (!empty($showImportButton) && getDolGlobalInt('MAIN_ENABLE_IMPORT_LINKED_OBJECT_LINES')) {
68 print '<a class="objectlinked_importbtn" href="'.$objectlink->getNomUrl(0, '', 0, '1').'&amp;action=selectlines&amp;token='.newToken().'" data-element="'.$objectlink->element.'" data-id="'.$objectlink->id.'" > <i class="fa fa-indent"></i> </a';
69 }
70 echo '</td>';
71 echo '<td class="linkedcol-name tdoverflowmax150" >'.$objectlink->getNomUrl(1).'</td>';
72
73 echo '<td class="linkedcol-ref tdoverflowmax150">';
74 $result = $product_static->fetch($objectlink->fk_product);
75 if ($result < 0) {
76 setEventMessage($product_static->error, 'errors');
77 } elseif ($result > 0) {
78 $product_static->getNomUrl(1);
79 }
80 print '</td>';
81 echo '<td class="linkedcol-date center">'.dol_print_date($objectlink->date_creation, 'day').'</td>';
82 echo '<td class="linkedcol-amount right">';
83 if ($user->hasRight('commande', 'lire')) {
84 $total += $objectlink->total_ht;
85 echo price($objectlink->total_ht);
86 }
87 echo '</td>';
88 echo '<td class="linkedcol-statut right">'.$objectlink->getLibStatut(3).'</td>';
89 echo '<td class="linkedcol-action right">';
90 // For now, shipments must stay linked to order, so link is not deletable
91 if ($object->element != 'shipping') {
92 echo '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=dellink&token='.newToken().'&dellinkid='.$key.'">'.img_picto($langs->transnoentitiesnoconv("RemoveLink"), 'unlink').'</a>';
93 }
94 echo '</td>';
95 echo "</tr>\n";
96}
97
98echo "<!-- END PHP TEMPLATE -->\n";
if(! $sortfield) if(! $sortorder) $object
Definition account.php:100
Class to manage products or services.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
setEventMessage($mesgs, $style='mesgs', $noduplicate=0, $attop=0)
Set event message in dol_events session object.
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.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
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'.