dolibarr 22.0.5
subtotalline_select.tpl.php
1<?php
2
9$line_color = $object->getSubtotalColors($line->qty);
10
11print '<!-- line for order line '.$line->id.' -->'."\n";
12print '<tr style="background:#' . $line_color . '" id="row-'.$line->id.'">'."\n";
13
14
15$selected = 1;
16if (!empty($selectedLines) && !in_array($this->tpl['id'], $selectedLines)) {
17 $selected = 0;
18}
19print "<td colspan='5'>";
20print '<input id="cb'.$line->rowid.'" class="flat checkforselect" type="checkbox" name="subtotal_toselect[]" value="'.$line->rowid.'" ' . ($selected ? ' checked="checked"' : '') . ' >';
21print $line->desc . "</td>\n";
22
23
24print '</tr>';
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:67