42if (empty($conf) || !is_object($conf)) {
43 print
"Error, template page can't be called as URL";
47print
"<!-- BEGIN PHP TEMPLATE bom/tpl/linkedobjectblock.tpl.php -->\n";
52$linkedObjectBlock =
dol_sort_array($linkedObjectBlock,
'date,ref',
'desc', 0, 0, 1);
53'@phan-var-force BOM[] $linkedObjectBlock';
58foreach ($linkedObjectBlock as $key => $objectlink) {
60 $product_static =
new Product($db);
62 if ($ilink == count($linkedObjectBlock) && empty($noMoreLinkedObjectBlockAfter) && count($linkedObjectBlock) <= 1) {
63 $trclass .=
' liste_sub_total';
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').
'&action=selectlines&token='.
newToken().
'" data-element="'.$objectlink->element.
'" data-id="'.$objectlink->id.
'" > <i class="fa fa-indent"></i> </a';
71 echo
'<td class="linkedcol-name tdoverflowmax150" >'.$objectlink->getNomUrl(1).
'</td>';
73 echo
'<td class="linkedcol-ref tdoverflowmax150">';
74 $result = $product_static->fetch($objectlink->fk_product);
77 } elseif ($result > 0) {
78 $product_static->getNomUrl(1);
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);
88 echo
'<td class="linkedcol-statut right">'.$objectlink->getLibStatut(3).
'</td>';
89 echo
'<td class="linkedcol-action right">';
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>';
98echo
"<!-- END PHP TEMPLATE -->\n";
if(! $sortfield) if(! $sortorder) $object
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'.