dolibarr 21.0.0-beta
objectline_view.tpl.php
1<?php
2/* Copyright (C) 2010-2013 Regis Houssin <regis.houssin@inodbox.com>
3 * Copyright (C) 2010-2011 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2012-2013 Christophe Battarel <christophe.battarel@altairis.fr>
5 * Copyright (C) 2012 Cédric Salvador <csalvador@gpcsolutions.fr>
6 * Copyright (C) 2012-2014 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr>
7 * Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
8 * Copyright (C) 2017 Juanjo Menent <jmenent@2byte.es>
9 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
10 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 3 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program. If not, see <https://www.gnu.org/licenses/>.
24 *
25 * Need to have the following variables defined:
26 * $object (invoice, order, ...)
27 * $conf
28 * $langs
29 * $forceall (0 by default, 1 for supplier invoices/orders)
30 * $element (used to test $user->hasRight($element, 'creer'))
31 * $permtoedit (used to replace test $user->hasRight($element, 'creer'))
32 * $inputalsopricewithtax (0 by default, 1 to also show column with unit price including tax)
33 * $disableedit, $disablemove, $disableremove
34 *
35 * $type, $text, $description, $line
36 */
37
50'
51@phan-var-force CommonObjectLine $line
52@phan-var-force int $num
53@phan-var-force int $i
54@phan-var-force CommonObject $this
55@phan-var-force CommonObject $object
56';
57
58require_once DOL_DOCUMENT_ROOT.'/workstation/class/workstation.class.php';
59
60// Protection to avoid direct call of template
61if (empty($object) || !is_object($object)) {
62 print "Error, template page can't be called as URL";
63 exit(1);
64}
65
66
67global $filtertype;
68if (empty($filtertype)) {
69 $filtertype = 0;
70}
71
72
73global $forceall, $senderissupplier, $inputalsopricewithtax, $outputalsopricetotalwithtax, $langs;
74
75if (empty($dateSelector)) {
76 $dateSelector = 0;
77}
78if (empty($forceall)) {
79 $forceall = 0;
80}
81if (empty($senderissupplier)) {
82 $senderissupplier = 0;
83}
84if (empty($inputalsopricewithtax)) {
85 $inputalsopricewithtax = 0;
86}
87if (empty($outputalsopricetotalwithtax)) {
88 $outputalsopricetotalwithtax = 0;
89}
90
91// add html5 elements
92if ($filtertype == 1) {
93 $domData = ' data-element="'.$line->element.'service"';
94} else {
95 $domData = ' data-element="'.$line->element.'"';
96}
97
98$domData .= ' data-id="'.$line->id.'"';
99$domData .= ' data-qty="'.$line->qty.'"';
100$domData .= ' data-product_type="'.$line->product_type.'"';
101
102// Lines for extrafield
103$objectline = new BOMLine($object->db);
104
105$coldisplay = 0;
106print "<!-- BEGIN PHP TEMPLATE bom/tpl/objectline_view.tpl.php -->\n";
107print '<tr id="row-'.$line->id.'" class="drag drop oddeven" '.$domData.' >';
108
109// Line nb
110if (getDolGlobalString('MAIN_VIEW_LINE_NUMBER')) {
111 print '<td class="linecolnum center">'.($i + 1).'</td>';
112 $coldisplay++;
113}
114
115// Product
116print '<td class="linecoldescription bomline minwidth300imp tdoverflowmax300">';
117print '<div id="line_'.$line->id.'"></div>';
118$coldisplay++;
119$tmpproduct = new Product($object->db);
120$tmpproduct->fetch($line->fk_product);
121$tmpbom = new BOM($object->db);
122$res = $tmpbom->fetch($line->fk_bom_child);
123if ($tmpbom->id > 0) {
124 print $tmpproduct->getNomUrl(1);
125 print ' '.$langs->trans("or").' ';
126 print $tmpbom->getNomUrl(1);
127 print ' <a class="collapse_bom" id="collapse-'.$line->id.'" href="#">';
128 print(!getDolGlobalString('BOM_SHOW_ALL_BOM_BY_DEFAULT') ? img_picto('', 'folder') : img_picto('', 'folder-open'));
129 print '</a>';
130} else {
131 print $tmpproduct->getNomUrl(1);
132 print ' - '.$tmpproduct->label;
133}
134
135// Line extrafield
136if (!empty($extrafields)) {
137 $temps = $line->showOptionals($extrafields, 'view', array(), '', '', 1, 'line');
138 if (!empty($temps)) {
139 print '<div style="padding-top: 10px" id="extrafield_lines_area_'.$line->id.'" name="extrafield_lines_area_'.$line->id.'">';
140 print $temps;
141 print '</div>';
142 }
143}
144
145print '</td>';
146
147// Qty
148print '<td class="linecolqty nowrap right">';
149$coldisplay++;
150echo price($line->qty, 0, '', 0, 0); // Yes, it is a quantity, not a price, but we just want the formatting role of function price
151print '</td>';
152
153if ($filtertype != 1) { // Product
154 if (getDolGlobalInt('PRODUCT_USE_UNITS')) { // For product, unit is shown only if option PRODUCT_USE_UNITS is on
155 print '<td class="linecoluseunit nowrap">';
156 $label = measuringUnitString($line->fk_unit, '', '', 1);
157 if ($label !== '') {
158 print $langs->trans($label);
159 }
160 print '</td>';
161 }
162} else { // Service
163 // Unit // For services, units are always enabled
164 print '<td class="linecolunit nowrap">';
165 $coldisplay++;
166
167 if (!empty($line->fk_unit)) {
168 require_once DOL_DOCUMENT_ROOT.'/core/class/cunits.class.php';
169 $unit = new CUnits($this->db);
170 $unit->fetch($line->fk_unit);
171 print(isset($unit->label) ? "&nbsp;".$langs->trans(ucwords($unit->label))."&nbsp;" : '');
172 }
173
174 print '</td>';
175}
176if ($filtertype != 1 || getDolGlobalString('STOCK_SUPPORTS_SERVICES')) { // Product or stock support for Services is active
177 // Qty frozen
178 print '<td class="linecolqtyfrozen nowrap right">';
179 $coldisplay++;
180 echo $line->qty_frozen ? yn($line->qty_frozen) : '';
181 print '</td>';
182
183 // Disable stock change
184 print '<td class="linecoldisablestockchange nowrap right">';
185 $coldisplay++;
186 echo $line->disable_stock_change ? yn($line->disable_stock_change) : ''; // Yes, it is a quantity, not a price, but we just want the formatting role of function price
187 print '</td>';
188
189 // Efficiency
190 print '<td class="linecolefficiency nowrap right">';
191 $coldisplay++;
192 echo $line->efficiency;
193 print '</td>';
194}
195
196// Service and workstations are active
197if ($filtertype == 1 && isModEnabled('workstation')) {
198 $workstation = new Workstation($object->db);
199 $res = $workstation->fetch($line->fk_default_workstation);
200
201 print '<td class="linecolworkstation nowrap">';
202 $coldisplay++;
203 if ($res > 0) {
204 $unit = new CUnits($object->db);
205 $fk_defaultUnit = $unit->getUnitFromCode('h', 'short_label', 'time');
206 $nbPlannedHour = $unit->unitConverter($line->qty, $line->fk_unit, $fk_defaultUnit);
207 $line->total_cost = 0;
208 if ($workstation->thm_machine_estimated) {
209 $line->total_cost += $nbPlannedHour * $workstation->thm_machine_estimated;
210 }
211 if ($workstation->thm_operator_estimated) {
212 $line->total_cost += $nbPlannedHour * $workstation->thm_operator_estimated;
213 }
214 echo $workstation->getNomUrl(1);
215 }
216 print '</td>';
217}
218
219// Cost
220$total_cost = 0;
221
222$tmpbom->calculateCosts();
223print '<td id="costline_'.$line->id.'" class="linecolcost nowrap right">';
224$coldisplay++;
225if (!empty($line->fk_bom_child)) {
226 echo '<span class="amount">'.price($tmpbom->total_cost * (float) $line->qty).'</span>';
227} else {
228 echo '<span class="amount">'.price($line->total_cost).'</span>';
229}
230print '</td>';
231
232if ($this->status == 0 && $user->hasRight('bom', 'write') && $action != 'selectlines') {
233 print '<td class="linecoledit center">';
234 $coldisplay++;
235 if (($line->info_bits & 2) == 2 || !empty($disableedit)) {
236 } else {
237 print '<a class="editfielda reposition" href="'.$_SERVER["PHP_SELF"].'?id='.$this->id.'&action=editline&token='.newToken().'&lineid='.$line->id.'">'.img_edit().'</a>';
238 }
239 print '</td>';
240
241 print '<td class="linecoldelete center">';
242 $coldisplay++;
243 if (($line->fk_prev_id == null) && empty($disableremove)) {
244 //La suppression n'est autorisée que si il n'y a pas de ligne dans une précédente situation
245 print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?id='.$this->id.'&action=deleteline&token='.newToken().'&lineid='.$line->id.'">';
246 print img_delete();
247 print '</a>';
248 }
249 print '</td>';
250
251 if ($num > 1 && $conf->browser->layout != 'phone' && empty($disablemove)) {
252 print '<td class="linecolmove tdlineupdown center">';
253 $coldisplay++;
254 if ($i > 0) {
255 print '<a class="lineupdown" href="'.$_SERVER["PHP_SELF"].'?id='.$this->id.'&action=up&token='.newToken().'&rowid='.$line->id.'">';
256 echo img_up('default', 0, 'imgupforline');
257 print '</a>';
258 }
259 if ($i < $num - 1) {
260 print '<a class="lineupdown" href="'.$_SERVER["PHP_SELF"].'?id='.$this->id.'&action=down&token='.newToken().'&rowid='.$line->id.'">';
261 echo img_down('default', 0, 'imgdownforline');
262 print '</a>';
263 }
264 print '</td>';
265 } else {
266 print '<td '.(($conf->browser->layout != 'phone' && empty($disablemove)) ? ' class="linecolmove tdlineupdown center"' : ' class="linecolmove center"').'></td>';
267 $coldisplay++;
268 }
269} else {
270 print '<td colspan="3"></td>';
271 $coldisplay += 3;
272}
273
274if ($action == 'selectlines') {
275 print '<td class="linecolcheck center">';
276 print '<input type="checkbox" class="linecheckbox" name="line_checkbox['.($i + 1).']" value="'.$line->id.'" >';
277 print '</td>';
278}
279
280print '</tr>';
281
282// Select of all the sub-BOM lines
283// From this point to the end of the file, we only take care of sub-BOM lines
284$sql = 'SELECT rowid, fk_bom_child, fk_product, qty FROM '.MAIN_DB_PREFIX.'bom_bomline AS bl';
285$sql .= ' WHERE fk_bom ='. (int) $tmpbom->id;
286$resql = $object->db->query($sql);
287
288if ($resql) {
289 // Loop on all the sub-BOM lines if they exist
290 while ($obj = $object->db->fetch_object($resql)) {
291 $sub_bom_product = new Product($object->db);
292 $sub_bom_product->fetch($obj->fk_product);
293
294 $sub_bom = new BOM($object->db);
295 if (!empty($obj->fk_bom_child)) {
296 $sub_bom->fetch($obj->fk_bom_child);
297 }
298
299 $sub_bom_line = new BOMLine($object->db);
300 $sub_bom_line->fetch($obj->rowid);
301
302 //If hidden conf is set, we show directly all the sub-BOM lines
303 if (!getDolGlobalString('BOM_SHOW_ALL_BOM_BY_DEFAULT')) {
304 print '<tr style="display:none" class="sub_bom_lines" parentid="'.$line->id.'">';
305 } else {
306 print '<tr class="sub_bom_lines" parentid="'.$line->id.'">';
307 }
308
309 // Product OR BOM
310 print '<td style="padding-left: 5%" id="sub_bom_product_'.$sub_bom_line->id.'">';
311 if (!empty($obj->fk_bom_child)) {
312 print $sub_bom_product->getNomUrl(1);
313 print ' '.$langs->trans('or').' ';
314 print $sub_bom->getNomUrl(1);
315 } else {
316 print $sub_bom_product->getNomUrl(1);
317 print '</td>';
318 }
319
320 // Qty
321 $label = $sub_bom_product->getLabelOfUnit('long');
322 if ($sub_bom_line->qty_frozen > 0) {
323 print '<td class="linecolqty nowrap right" id="sub_bom_qty_'.$sub_bom_line->id.'">'.price($sub_bom_line->qty, 0, '', 0, 0).'</td>';
324 if (getDolGlobalString('PRODUCT_USE_UNITS')) {
325 print '<td class="linecoluseunit nowrap left">';
326 if ($label !== '') {
327 print $langs->trans($label);
328 }
329 print '</td>';
330 }
331 print '<td class="linecolqtyfrozen nowrap right" id="sub_bom_qty_frozen_'.$sub_bom_line->id.'">'.$langs->trans('Yes').'</td>';
332 } else {
333 print '<td class="linecolqty nowrap right" id="sub_bom_qty_'.$sub_bom_line->id.'">'.price($sub_bom_line->qty * (float) $line->qty, 0, '', 0, 0).'</td>';
334 if (getDolGlobalString('PRODUCT_USE_UNITS')) {
335 print '<td class="linecoluseunit nowrap left">';
336 if ($label !== '') {
337 print $langs->trans($label);
338 }
339 print '</td>';
340 }
341
342 print '<td class="linecolqtyfrozen nowrap right" id="sub_bom_qty_frozen_'.$sub_bom_line->id.'">&nbsp;</td>';
343 }
344
345 // Disable stock change
346 if ($sub_bom_line->disable_stock_change > 0) {
347 print '<td class="linecoldisablestockchange nowrap right" id="sub_bom_stock_change_'.$sub_bom_line->id.'">'.$sub_bom_line->disable_stock_change.'</td>';
348 } else {
349 print '<td class="linecoldisablestockchange nowrap right" id="sub_bom_stock_change_'.$sub_bom_line->id.'">&nbsp;</td>';
350 }
351
352 // Efficiency
353 print '<td class="linecolefficiency nowrap right" id="sub_bom_efficiency_'.$sub_bom_line->id.'">'.$sub_bom_line->efficiency.'</td>';
354
355 // Cost
356 if (!empty($sub_bom->id)) {
357 $sub_bom->calculateCosts();
358 print '<td class="linecolcost nowrap right" id="sub_bom_cost_'.$sub_bom_line->id.'"><span class="amount">'.price(price2num($sub_bom->total_cost * $sub_bom_line->qty * (float) $line->qty, 'MT')).'</span></td>';
359 $total_cost += $sub_bom->total_cost * $sub_bom_line->qty * (float) $line->qty;
360 } elseif ($sub_bom_product->type == Product::TYPE_SERVICE && isModEnabled('workstation') && !empty($sub_bom_product->fk_default_workstation)) {
361 //Convert qty to hour
362 $unit = measuringUnitString($sub_bom_line->fk_unit, '', '', 1);
363 $qty = convertDurationtoHour($sub_bom_line->qty, $unit);
364 $workstation = new Workstation($this->db);
365 $res = $workstation->fetch($sub_bom_product->fk_default_workstation);
366 if ($res > 0) {
367 $sub_bom_line->total_cost = (float) price2num($qty * ($workstation->thm_operator_estimated + $workstation->thm_machine_estimated), 'MT');
368 }
369
370 print '<td class="linecolcost nowrap right" id="sub_bom_cost_'.$sub_bom_line->id.'"><span class="amount">'.price(price2num($sub_bom_line->total_cost, 'MT')).'</span></td>';
371 $this->total_cost += $line->total_cost;
372 } elseif ($sub_bom_product->cost_price > 0) {
373 print '<td class="linecolcost nowrap right" id="sub_bom_cost_'.$sub_bom_line->id.'">';
374 print '<span class="amount">'.price(price2num($sub_bom_product->cost_price * $sub_bom_line->qty * (float) $line->qty, 'MT')).'</span></td>';
375 $total_cost += $sub_bom_product->cost_price * $sub_bom_line->qty * (float) $line->qty;
376 } elseif ($sub_bom_product->pmp > 0) { // PMP if cost price isn't defined
377 print '<td class="linecolcost nowrap right" id="sub_bom_cost_'.$sub_bom_line->id.'">';
378 print '<span class="amount">'.price(price2num($sub_bom_product->pmp * $sub_bom_line->qty * (float) $line->qty, 'MT')).'</span></td>';
379 $total_cost .= $sub_bom_product->pmp * $sub_bom_line->qty * (float) $line->qty;
380 } else { // Minimum purchase price if cost price and PMP aren't defined
381 $sql_supplier_price = "SELECT MIN(price) AS min_price, quantity AS qty FROM ".MAIN_DB_PREFIX."product_fournisseur_price";
382 $sql_supplier_price .= " WHERE fk_product = ". (int) $sub_bom_product->id;
383 $sql_supplier_price .= " GROUP BY quantity ORDER BY quantity ASC";
384 $resql_supplier_price = $object->db->query($sql_supplier_price);
385 if ($resql_supplier_price) {
386 $obj = $object->db->fetch_object($resql_supplier_price); // Take first value so the ref with the smaller minimum quantity
387 if (!empty($obj->qty) && !empty($sub_bom_line->qty) && !empty($line->qty)) {
388 $line_cost = $obj->min_price / $obj->qty * $sub_bom_line->qty * (float) $line->qty;
389 } else {
390 $line_cost = $obj->min_price;
391 }
392 print '<td class="linecolcost nowrap right" id="sub_bom_cost_'.$sub_bom_line->id.'"><span class="amount">'.price2num($line_cost, 'MT').'</span></td>';
393 $total_cost += $line_cost;
394 }
395 }
396
397 print '<td></td>';
398 print '<td></td>';
399 print '<td></td>';
400 }
401}
402
403
404print "<!-- END PHP TEMPLATE objectline_view.tpl.php -->\n";
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:66
Class for BOM.
Definition bom.class.php:42
Class for BOMLine.
Class of dictionary type of thirdparty (used by imports)
Class to manage products or services.
const TYPE_SERVICE
Service.
Class for Workstation.
print $langs trans("Ref").' m titre as m m statut as status
Or an array listing all the potential status of the object: array: int of the status => translated la...
Definition index.php:171
convertDurationtoHour($duration_value, $duration_unit)
Convert duration to hour.
Definition date.lib.php:338
img_delete($titlealt='default', $other='class="pictodelete"', $morecss='')
Show delete logo.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
img_down($titlealt='default', $selected=0, $moreclass='')
Show down arrow logo.
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.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
yn($yesno, $format=1, $color=0)
Return yes or no in current language.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
img_edit($titlealt='default', $float=0, $other='')
Show logo edit/modify fiche.
img_up($titlealt='default', $selected=0, $moreclass='')
Show top arrow logo.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79
measuringUnitString($unitid, $measuring_style='', $unitscale='', $use_short_label=0, $outputlangs=null)
Return translation label of a unit key.