dolibarr 19.0.3
objectline_create.tpl.php
1<?php
2/* Copyright (C) 2010-2012 Regis Houssin <regis.houssin@inodbox.com>
3 * Copyright (C) 2010-2014 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) 2014 Florian Henry <florian.henry@open-concept.pro>
7 * Copyright (C) 2014 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr>
8 * Copyright (C) 2015-2016 Marcos García <marcosgdf@gmail.com>
9 * Copyright (C) 2018-2019 Frédéric France <frederic.france@netlogic.fr>
10 * Copyright (C) 2018 Ferran Marcet <fmarcet@2byte.es>
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 following variables defined:
26 * $object (invoice, order, ...)
27 * $conf
28 * $langs
29 * $forceall (0 by default, 1 for supplier invoices/orders)
30 */
31
32require_once DOL_DOCUMENT_ROOT."/product/class/html.formproduct.class.php";
33
34// Protection to avoid direct call of template
35if (empty($object) || !is_object($object)) {
36 print "Error: this template page cannot be called directly as an URL";
37 exit;
38}
39
40
41global $forceall, $forcetoshowtitlelines, $filtertype;
42
43if (empty($forceall)) {
44 $forceall = 0;
45}
46
47if (empty($filtertype)) {
48 $filtertype = 0;
49}
50if (!empty($object->element) && $object->element == 'contrat' && !getDolGlobalString('STOCK_SUPPORT_SERVICES')) {
51 $filtertype = -1;
52}
53
54$formproduct = new FormProduct($object->db);
55
56// Define colspan for the button 'Add'
57$colspan = 3; // Columns: total ht + col edit + col delete
58//print $object->element;
59
60// Lines for extrafield
61$objectline = new BOMLine($this->db);
62
63print "<!-- BEGIN PHP TEMPLATE objectline_create.tpl.php -->\n";
64
65$nolinesbefore = (count($this->lines) == 0 || $forcetoshowtitlelines);
66
67if ($nolinesbefore) {
68 print '<tr class="liste_titre nodrag nodrop">';
69 if (getDolGlobalString('MAIN_VIEW_LINE_NUMBER')) {
70 print '<td class="linecolnum center"></td>';
71 }
72 print '<td class="linecoldescription minwidth500imp">';
73 print '<div id="add"></div><span class="hideonsmartphone">'.$langs->trans('AddNewLine').'</span>';
74 print '</td>';
75 print '<td class="linecolqty right">'.$langs->trans('Qty').'</td>';
76
77 if ($filtertype != 1) {
78 if (getDolGlobalInt('PRODUCT_USE_UNITS')) {
79 print '<td class="linecoluseunit left">';
80 print '<span id="title_units">';
81 print $langs->trans('Unit');
82 print '</span></td>';
83 }
84 print '<td class="linecolqtyfrozen right">' . $form->textwithpicto($langs->trans('QtyFrozen'), $langs->trans("QuantityConsumedInvariable")) . '</td>';
85 print '<td class="linecoldisablestockchange right">' . $form->textwithpicto($langs->trans('DisableStockChange'), $langs->trans('DisableStockChangeHelp')) . '</td>';
86 print '<td class="linecollost right">' . $form->textwithpicto($langs->trans('ManufacturingEfficiency'), $langs->trans('ValueOfMeansLoss')) . '</td>';
87 } else {
88 print '<td class="linecolunit right">' . $form->textwithpicto($langs->trans('Unit'), '').'</td>';
89 if (isModEnabled('workstation')) {
90 print '<td class="linecolworkstation right">' . $form->textwithpicto($langs->trans('Workstation'), '') . '</td>';
91 }
92 print '<td class="linecoltotalcost right">' . $form->textwithpicto($langs->trans('TotalCost'), '') . '</td>';
93 }
94
95 print '<td class="linecoledit" colspan="' . $colspan . '">&nbsp;</td>';
96 print '</tr>';
97}
98print '<tr class="pair nodrag nodrop nohoverpair'.(($nolinesbefore || $object->element == 'contrat') ? '' : ' liste_titre_create').'">';
99$coldisplay = 0;
100
101// Adds a line numbering column
102if (getDolGlobalString('MAIN_VIEW_LINE_NUMBER')) {
103 $coldisplay++;
104 echo '<td class="bordertop nobottom linecolnum center"></td>';
105}
106
107$coldisplay++;
108print '<td class="bordertop nobottom linecoldescription minwidth500imp">';
109
110// Predefined product/service
111if (isModEnabled("product") || isModEnabled("service")) {
112 if ($filtertype == 1) {
113 print $langs->trans("Service");
114 } else {
115 print $langs->trans("Product");
116 }
117 echo '<span class="prod_entry_mode_predef">';
118 $statustoshow = -1;
119 if (getDolGlobalString('ENTREPOT_EXTRA_STATUS')) {
120 // hide products in closed warehouse, but show products for internal transfer
121 print $form->select_produits(GETPOST('idprod', 'int'), (($filtertype == 1) ? 'idprodservice' : 'idprod'), $filtertype, $conf->product->limit_size, $buyer->price_level, $statustoshow, 2, '', 1, array(), $buyer->id, '1', 0, 'maxwidth500', 0, 'warehouseopen,warehouseinternal', GETPOST('combinations', 'array'), 1);
122 } else {
123 print $form->select_produits(GETPOST('idprod', 'int'), (($filtertype == 1) ? 'idprodservice' : 'idprod'), $filtertype, $conf->product->limit_size, $buyer->price_level, $statustoshow, 2, '', 1, array(), $buyer->id, '1', 0, 'maxwidth500', 0, '', GETPOST('combinations', 'array'), 1);
124 }
125 $urltocreateproduct = DOL_URL_ROOT.'/product/card.php?action=create&backtopage='.urlencode($_SERVER["PHP_SELF"].'?id='.$object->id);
126 print '<a href="'.$urltocreateproduct.'"><span class="fa fa-plus-circle valignmiddle paddingleft" title="'.$langs->trans("AddProduct").'"></span></a>';
127
128 echo '</span>';
129}
130if (getDolGlobalString('BOM_SUB_BOM') && $filtertype != 1) {
131 print '<br><span class="opacitymedium">'.$langs->trans("or").'</span><br>'.$langs->trans("BOM");
132 print $form->select_bom('', 'bom_id', 0, 1, 0, '1', '', 1);
133}
134
135if (is_object($objectline)) {
136 $temps = $objectline->showOptionals($extrafields, 'create', array(), '', '', 1, 'line');
137
138 if (!empty($temps)) {
139 print '<div style="padding-top: 10px" id="extrafield_lines_area_create" name="extrafield_lines_area_create">';
140 print $temps;
141 print '</div>';
142 }
143}
144
145print '</td>';
146
147
148$coldisplay++;
149print '<td class="bordertop nobottom linecolqty right"><input type="text" size="2" name="qty" id="qty" class="flat right" value="'.(GETPOSTISSET("qty") ? GETPOST("qty", 'alpha', 2) : 1).'">';
150print '</td>';
151
152if ($filtertype != 1) {
153 if (getDolGlobalInt('PRODUCT_USE_UNITS')) {
154 $coldisplay++;
155 print '<td class="nobottom linecoluseunit left">';
156 print '</td>';
157 }
158
159 $coldisplay++;
160 print '<td class="bordertop nobottom linecolqtyfrozen right"><input type="checkbox" name="qty_frozen" id="qty_frozen" class="flat right" value="1"' . (GETPOST("qty_frozen", 'alpha') ? ' checked="checked"' : '') . '>';
161 print '</td>';
162
163
164 $coldisplay++;
165 print '<td class="bordertop nobottom linecoldisablestockchange right"><input type="checkbox" name="disable_stock_change" id="disable_stock_change" class="flat right" value="1"' . (GETPOST("disable_stock_change", 'alpha') ? ' checked="checked"' : '') . '">';
166 print '</td>';
167
168 $coldisplay++;
169 print '<td class="bordertop nobottom nowrap linecollost right">';
170 print '<input type="text" size="2" name="efficiency" id="efficiency" class="flat right" value="' . ((GETPOSTISSET("efficiency") && $action == 'addline') ? GETPOST("efficiency", 'alpha') : 1) . '">';
171 print '</td>';
172
173 $coldisplay++;
174 print '<td class="bordertop nobottom nowrap linecolcost right">';
175 print '&nbsp;';
176 print '</td>';
177} else {
178 $coldisplay++;
179 require_once DOL_DOCUMENT_ROOT.'/core/class/cunits.class.php';
180 $cUnit = new CUnits($this->db);
181 $fk_unit_default = $cUnit->getUnitFromCode('h', 'short_label', 'time');
182 print '<td class="bordertop nobottom nowrap linecolunit right">';
183 print $formproduct->selectMeasuringUnits("fk_unit", "time", $fk_unit_default, 0, 0);
184 print '</td>';
185
186 $coldisplay++;
187 print '<td class="bordertop nobottom nowrap linecolworkstation right">';
188 print $formproduct->selectWorkstations('', 'idworkstations', 1);
189 print '</td>';
190
191 $coldisplay++;
192 print '<td class="bordertop nobottom nowrap linecolcost right">';
193 print '&nbsp;';
194 print '</td>';
195}
196
197 $coldisplay += $colspan;
198 print '<td class="bordertop nobottom linecoledit center valignmiddle" colspan="' . $colspan . '">';
199 print '<input type="submit" class="button button-add" name="addline" id="addline" value="' . $langs->trans('Add') . '">';
200 print '</td>';
201 print '</tr>';
202
203?>
204
205<script>
206
207/* JQuery for product free or predefined select */
208jQuery(document).ready(function() {
209 /* When changing predefined product, we reload list of supplier prices required for margin combo */
210 $("#idprod").change(function()
211 {
212 console.log("#idprod change triggered");
213
214 /* To set focus */
215 if (jQuery('#idprod').val() > 0)
216 {
217 /* focus work on a standard textarea but not if field was replaced with CKEDITOR */
218 jQuery('#dp_desc').focus();
219 /* focus if CKEDITOR */
220 if (typeof CKEDITOR == "object" && typeof CKEDITOR.instances != "undefined")
221 {
222 var editor = CKEDITOR.instances['dp_desc'];
223 if (editor) { editor.focus(); }
224 }
225 }
226 });
227
228 //change unit selected if we change service selected
229 <?php if ($filtertype == 1) { ?>
230 $('#idprodservice').change(function(){
231 var idproduct = $(this).val();
232
233 $.ajax({
234 url : "<?php echo dol_buildpath('/bom/ajax/ajax.php', 1); ?>"
235 ,type: 'POST'
236 ,data: {
237 'action': 'getDurationUnitByProduct'
238 ,'token' : "<?php echo newToken() ?>"
239 ,'idproduct' : idproduct
240 }
241 }).done(function(data) {
242
243 console.log(data);
244 $("#fk_unit").val(data).change();
245 });
246
247 $.ajax({
248 url : "<?php echo dol_buildpath('/bom/ajax/ajax.php', 1); ?>"
249 ,type: 'POST'
250 ,data: {
251 'action': 'getWorkstationByProduct'
252 ,'token' : "<?php echo newToken() ?>"
253 ,'idproduct' : idproduct
254 }
255 }).done(function(data) {
256 $('#idworkstations').val(data.defaultWk).select2();
257
258 });
259 });
260 <?php } ?>
261});
262
263</script>
264
265<!-- END PHP TEMPLATE objectline_create.tpl.php -->
Class for BOMLine.
Class of dictionary type of thirdparty (used by imports)
Class with static methods for building HTML components related to products Only components common to ...
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
Definition repair.php:121