42@phan-var-force CommonObjectLine $line
43@phan-var-force int $num
45@phan-var-force CommonObject $this
46@phan-var-force CommonObject $object
49require_once DOL_DOCUMENT_ROOT.
'/workstation/class/workstation.class.php';
53 print
"Error, template page can't be called as URL";
59if (empty($filtertype)) {
64global $forceall, $senderissupplier, $inputalsopricewithtax, $outputalsopricetotalwithtax, $langs;
66if (empty($dateSelector)) {
69if (empty($forceall)) {
72if (empty($senderissupplier)) {
73 $senderissupplier = 0;
75if (empty($inputalsopricewithtax)) {
76 $inputalsopricewithtax = 0;
78if (empty($outputalsopricetotalwithtax)) {
79 $outputalsopricetotalwithtax = 0;
83if ($filtertype == 1) {
84 $domData =
' data-element="'.$line->element.
'service"';
86 $domData =
' data-element="'.$line->element.
'"';
89$domData .=
' data-id="'.$line->id.
'"';
90$domData .=
' data-qty="'.$line->qty.
'"';
91$domData .=
' data-product_type="'.$line->product_type.
'"';
97print
"<!-- BEGIN PHP TEMPLATE bom/tpl/objectline_view.tpl.php -->\n";
98print
'<tr id="row-'.$line->id.
'" class="drag drop oddeven" '.$domData.
' >';
102 print
'<td class="linecolnum center">'.($i + 1).
'</td>';
107print
'<td class="linecoldescription bomline minwidth300imp tdoverflowmax300">';
108print
'<div id="line_'.$line->id.
'"></div>';
111$tmpproduct->fetch($line->fk_product);
113$res = $tmpbom->fetch($line->fk_bom_child);
114if ($tmpbom->id > 0) {
115 print $tmpproduct->getNomUrl(1);
116 print
' '.$langs->trans(
"or").
' ';
117 print $tmpbom->getNomUrl(1);
118 print
' <a class="collapse_bom" id="collapse-'.$line->id.
'" href="#">';
122 print $tmpproduct->getNomUrl(1);
123 print
' - '.$tmpproduct->label;
127if (!empty($extrafields)) {
128 $temps = $line->showOptionals($extrafields,
'view', array(),
'',
'', 1,
'line');
129 if (!empty($temps)) {
130 print
'<div style="padding-top: 10px" id="extrafield_lines_area_'.$line->id.
'" name="extrafield_lines_area_'.$line->id.
'">';
139print
'<td class="linecolqty nowrap right">';
141echo
price($line->qty, 0,
'', 0, 0);
144if ($filtertype != 1) {
146 print
'<td class="linecoluseunit nowrap">';
149 print $langs->trans($label);
155 print
'<td class="linecolunit nowrap">';
158 if (!empty($line->fk_unit)) {
159 require_once DOL_DOCUMENT_ROOT.
'/core/class/cunits.class.php';
160 $unit =
new CUnits($this->db);
161 $unit->fetch($line->fk_unit);
162 print(isset($unit->label) ?
" ".$langs->trans(ucwords($unit->label)).
" " :
'');
169 print
'<td class="linecolqtyfrozen nowrap right">';
171 echo $line->qty_frozen ?
yn($line->qty_frozen) :
'';
175 print
'<td class="linecoldisablestockchange nowrap right">';
177 echo $line->disable_stock_change ?
yn($line->disable_stock_change) :
'';
181 print
'<td class="linecolefficiency nowrap right">';
183 echo $line->efficiency;
188if ($filtertype == 1 && isModEnabled(
'workstation')) {
190 $res = $workstation->fetch($line->fk_default_workstation);
192 print
'<td class="linecolworkstation nowrap">';
196 $fk_defaultUnit = $unit->getUnitFromCode(
'h',
'short_label',
'time');
197 $nbPlannedHour = $unit->unitConverter($line->qty, $line->fk_unit, $fk_defaultUnit);
198 $line->total_cost = 0;
199 if ($workstation->thm_machine_estimated) {
200 $line->total_cost += $nbPlannedHour * $workstation->thm_machine_estimated;
202 if ($workstation->thm_operator_estimated) {
203 $line->total_cost += $nbPlannedHour * $workstation->thm_operator_estimated;
205 echo $workstation->getNomUrl(1);
213$tmpbom->calculateCosts();
214print
'<td id="costline_'.$line->id.
'" class="linecolcost nowrap right">';
216if (!empty($line->fk_bom_child)) {
217 echo
'<span class="amount">'.price($tmpbom->total_cost * (
float) $line->qty).
'</span>';
219 echo
'<span class="amount">'.price($line->total_cost).
'</span>';
223if ($this->
status == 0 && $user->hasRight(
'bom',
'write') && $action !=
'selectlines') {
224 print
'<td class="linecoledit center">';
226 if (($line->info_bits & 2) == 2 || !empty($disableedit)) {
228 print
'<a class="editfielda reposition" href="'.$_SERVER[
"PHP_SELF"].
'?id='.$this->
id.
'&action=editline&token='.
newToken().
'&lineid='.$line->id.
'">'.
img_edit().
'</a>';
232 print
'<td class="linecoldelete center">';
234 if (($line->fk_prev_id ==
null) && empty($disableremove)) {
236 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?id='.$this->
id.
'&action=deleteline&token='.
newToken().
'&lineid='.$line->id.
'">';
242 if ($num > 1 && $conf->browser->layout !=
'phone' && empty($disablemove)) {
243 print
'<td class="linecolmove tdlineupdown center">';
246 print
'<a class="lineupdown" href="'.$_SERVER[
"PHP_SELF"].
'?id='.$this->
id.
'&action=up&token='.
newToken().
'&rowid='.$line->id.
'">';
247 echo
img_up(
'default', 0,
'imgupforline');
251 print
'<a class="lineupdown" href="'.$_SERVER[
"PHP_SELF"].
'?id='.$this->
id.
'&action=down&token='.
newToken().
'&rowid='.$line->id.
'">';
252 echo
img_down(
'default', 0,
'imgdownforline');
257 print
'<td '.(($conf->browser->layout !=
'phone' && empty($disablemove)) ?
' class="linecolmove tdlineupdown center"' :
' class="linecolmove center"').
'></td>';
261 print
'<td colspan="3"></td>';
265if ($action ==
'selectlines') {
266 print
'<td class="linecolcheck center">';
267 print
'<input type="checkbox" class="linecheckbox" name="line_checkbox['.($i + 1).
']" value="'.$line->id.
'" >';
275$sql =
'SELECT rowid, fk_bom_child, fk_product, qty FROM '.MAIN_DB_PREFIX.
'bom_bomline AS bl';
276$sql .=
' WHERE fk_bom ='. (int) $tmpbom->id;
277$resql =
$object->db->query($sql);
281 while ($obj =
$object->db->fetch_object($resql)) {
283 $sub_bom_product->fetch($obj->fk_product);
286 if (!empty($obj->fk_bom_child)) {
287 $sub_bom->fetch($obj->fk_bom_child);
291 $sub_bom_line->fetch($obj->rowid);
295 print
'<tr style="display:none" class="sub_bom_lines" parentid="'.$line->id.
'">';
297 print
'<tr class="sub_bom_lines" parentid="'.$line->id.
'">';
301 print
'<td style="padding-left: 5%" id="sub_bom_product_'.$sub_bom_line->id.
'">';
302 if (!empty($obj->fk_bom_child)) {
303 print $sub_bom_product->getNomUrl(1);
304 print
' '.$langs->trans(
'or').
' ';
305 print $sub_bom->getNomUrl(1);
307 print $sub_bom_product->getNomUrl(1);
312 $label = $sub_bom_product->getLabelOfUnit(
'long');
313 if ($sub_bom_line->qty_frozen > 0) {
314 print
'<td class="linecolqty nowrap right" id="sub_bom_qty_'.$sub_bom_line->id.
'">'.
price($sub_bom_line->qty, 0,
'', 0, 0).
'</td>';
316 print
'<td class="linecoluseunit nowrap left">';
318 print $langs->trans($label);
322 print
'<td class="linecolqtyfrozen nowrap right" id="sub_bom_qty_frozen_'.$sub_bom_line->id.
'">'.$langs->trans(
'Yes').
'</td>';
324 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>';
326 print
'<td class="linecoluseunit nowrap left">';
328 print $langs->trans($label);
333 print
'<td class="linecolqtyfrozen nowrap right" id="sub_bom_qty_frozen_'.$sub_bom_line->id.
'"> </td>';
337 if ($sub_bom_line->disable_stock_change > 0) {
338 print
'<td class="linecoldisablestockchange nowrap right" id="sub_bom_stock_change_'.$sub_bom_line->id.
'">'.$sub_bom_line->disable_stock_change.
'</td>';
340 print
'<td class="linecoldisablestockchange nowrap right" id="sub_bom_stock_change_'.$sub_bom_line->id.
'"> </td>';
344 print
'<td class="linecolefficiency nowrap right" id="sub_bom_efficiency_'.$sub_bom_line->id.
'">'.$sub_bom_line->efficiency.
'</td>';
347 if (!empty($sub_bom->id)) {
348 $sub_bom->calculateCosts();
349 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>';
350 $total_cost += $sub_bom->total_cost * $sub_bom_line->qty * (float) $line->qty;
351 } elseif ($sub_bom_product->type ==
Product::TYPE_SERVICE && isModEnabled(
'workstation') && !empty($sub_bom_product->fk_default_workstation)) {
356 $res = $workstation->fetch($sub_bom_product->fk_default_workstation);
358 $sub_bom_line->total_cost = (float)
price2num($qty * ($workstation->thm_operator_estimated + $workstation->thm_machine_estimated),
'MT');
361 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>';
362 $this->total_cost += $line->total_cost;
363 } elseif ($sub_bom_product->cost_price > 0) {
364 print
'<td class="linecolcost nowrap right" id="sub_bom_cost_'.$sub_bom_line->id.
'">';
365 print
'<span class="amount">'.price(
price2num($sub_bom_product->cost_price * $sub_bom_line->qty * (
float) $line->qty,
'MT')).
'</span></td>';
366 $total_cost += $sub_bom_product->cost_price * $sub_bom_line->qty * (float) $line->qty;
367 } elseif ($sub_bom_product->pmp > 0) {
368 print
'<td class="linecolcost nowrap right" id="sub_bom_cost_'.$sub_bom_line->id.
'">';
369 print
'<span class="amount">'.price(
price2num($sub_bom_product->pmp * $sub_bom_line->qty * (
float) $line->qty,
'MT')).
'</span></td>';
370 $total_cost .= $sub_bom_product->pmp * $sub_bom_line->qty * (float) $line->qty;
372 $sql_supplier_price =
"SELECT MIN(price) AS min_price, quantity AS qty FROM ".MAIN_DB_PREFIX.
"product_fournisseur_price";
373 $sql_supplier_price .=
" WHERE fk_product = ". (int) $sub_bom_product->id;
374 $sql_supplier_price .=
" GROUP BY quantity ORDER BY quantity ASC";
375 $resql_supplier_price =
$object->db->query($sql_supplier_price);
376 if ($resql_supplier_price) {
377 $obj =
$object->db->fetch_object($resql_supplier_price);
378 if (!empty($obj->qty) && !empty($sub_bom_line->qty) && !empty($line->qty)) {
379 $line_cost = $obj->min_price / $obj->qty * $sub_bom_line->qty * (float) $line->qty;
381 $line_cost = $obj->min_price;
383 print
'<td class="linecolcost nowrap right" id="sub_bom_cost_'.$sub_bom_line->id.
'"><span class="amount">'.
price2num($line_cost,
'MT').
'</span></td>';
384 $total_cost += $line_cost;
395print
"<!-- END PHP TEMPLATE objectline_view.tpl.php -->\n";
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Class of dictionary type of thirdparty (used by imports)
Class to manage products or services.
const TYPE_SERVICE
Service.
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...
convertDurationtoHour($duration_value, $duration_unit)
Convert duration to hour.
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.
measuringUnitString($unit, $measuring_style='', $scale='', $use_short_label=0, $outputlangs=null)
Return translation label of a unit key.