Total Complexity | 546 |
Total Lines | 2407 |
Duplicated Lines | 0 % |
Changes | 129 | ||
Bugs | 11 | Features | 7 |
Complex classes like ActionsSubtotal often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use ActionsSubtotal, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
2 | class ActionsSubtotal |
||
3 | { |
||
4 | |||
5 | function __construct($db) |
||
13 | } |
||
14 | |||
15 | |||
16 | function createDictionaryFieldlist($parameters, &$object, &$action, $hookmanager) |
||
17 | { |
||
18 | global $conf; |
||
19 | |||
20 | if ($parameters['tabname'] == MAIN_DB_PREFIX.'c_subtotal_free_text') |
||
21 | { |
||
22 | // Merci Dolibarr de remplacer les textarea par un input text |
||
23 | if ((float) DOL_VERSION >= 6.0) |
||
24 | { |
||
25 | $value = ''; |
||
26 | $sql = 'SELECT content FROM '.MAIN_DB_PREFIX.'c_subtotal_free_text WHERE rowid = '.GETPOST('rowid'); |
||
27 | $resql = $this->db->query($sql); |
||
28 | if ($resql && ($obj = $this->db->fetch_object($resql))) $value = $obj->content; |
||
29 | } |
||
30 | |||
31 | ?> |
||
32 | <script type="text/javascript"> |
||
33 | $(function() { |
||
34 | |||
35 | <?php if ((float) DOL_VERSION >= 6.0) { ?> |
||
36 | if ($('input[name=content]').length > 0) |
||
37 | { |
||
38 | $('input[name=content]').each(function(i,item) { |
||
39 | var value = ''; |
||
40 | // Le dernier item correspond à l'édition |
||
41 | if (i == $('input[name=content]').length) value = <?php echo json_encode($value); ?>; |
||
42 | $(item).replaceWith($('<textarea name="content">'+value+'</textarea>')); |
||
43 | }); |
||
44 | |||
45 | <?php if (!empty($conf->fckeditor->enabled) && !empty($conf->global->FCKEDITOR_ENABLE_DETAILS)) { ?> |
||
46 | $('textarea[name=content]').each(function(i, item) { |
||
47 | CKEDITOR.replace(item, { |
||
48 | toolbar: 'dolibarr_notes' |
||
49 | ,customConfig : ckeditorConfig |
||
50 | }); |
||
51 | }); |
||
52 | <?php } ?> |
||
53 | } |
||
54 | <?php } else { ?> |
||
55 | // <= 5.0 |
||
56 | // Le CKEditor est forcé sur la page dictionnaire, pas possible de mettre une valeur custom |
||
57 | // petit js qui supprimer le wysiwyg et affiche le textarea car avant la version 6.0 le wysiwyg sur une page de dictionnaire est inexploitable |
||
58 | <?php if (!empty($conf->fckeditor->enabled)) { ?> |
||
59 | CKEDITOR.on('instanceReady', function(ev) { |
||
60 | var editor = ev.editor; |
||
61 | |||
62 | if (editor.name == 'content') // Mon champ en bdd s'appel "content", pas le choix si je veux avoir un textarea sur une page de dictionnaire |
||
63 | { |
||
64 | editor.element.show(); |
||
65 | editor.destroy(); |
||
66 | } |
||
67 | }); |
||
68 | <?php } ?> |
||
69 | <?php } ?> |
||
70 | }); |
||
71 | </script> |
||
72 | <?php |
||
73 | } |
||
74 | } |
||
75 | |||
76 | /** Overloading the doActions function : replacing the parent's function with the one below |
||
77 | * @param $parameters array meta datas of the hook (context, etc...) |
||
78 | * @param $object CommonObject the object you want to process (an invoice if you are in invoice module, a propale in propale's module, etc...) |
||
79 | * @param $action string current action (if set). Generally create or edit or null |
||
80 | * @param $hookmanager HookManager current hook manager |
||
81 | * @return void |
||
82 | */ |
||
83 | |||
84 | var $module_number = 104777; |
||
85 | |||
86 | function formObjectOptions($parameters, &$object, &$action, $hookmanager) |
||
87 | { |
||
88 | global $langs,$db,$user, $conf; |
||
89 | |||
90 | $langs->load('subtotal@subtotal'); |
||
91 | |||
92 | $contexts = explode(':',$parameters['context']); |
||
93 | |||
94 | if(in_array('ordercard',$contexts) || in_array('ordersuppliercard',$contexts) || in_array('propalcard',$contexts) || in_array('supplier_proposalcard',$contexts) || in_array('invoicecard',$contexts) || in_array('invoicesuppliercard',$contexts) || in_array('invoicereccard',$contexts)) { |
||
95 | |||
96 | $createRight = $user->rights->{$object->element}->creer; |
||
97 | if($object->element == 'facturerec' ) |
||
98 | { |
||
99 | $object->statut = 0; // hack for facture rec |
||
100 | $createRight = $user->rights->facture->creer; |
||
101 | } elseif($object->element == 'order_supplier' ) |
||
102 | { |
||
103 | $createRight = $user->rights->fournisseur->commande->creer; |
||
104 | } elseif($object->element == 'invoice_supplier' ) |
||
105 | { |
||
106 | $createRight = $user->rights->fournisseur->facture->creer; |
||
107 | } |
||
108 | |||
109 | if ($object->statut == 0 && $createRight) { |
||
110 | |||
111 | |||
112 | if($object->element=='facture')$idvar = 'facid'; |
||
113 | else $idvar='id'; |
||
114 | |||
115 | if(in_array($action, array('add_title_line', 'add_total_line', 'add_subtitle_line', 'add_subtotal_line', 'add_free_text')) ) |
||
116 | { |
||
117 | $level = GETPOST('level', 'int'); //New avec SUBTOTAL_USE_NEW_FORMAT |
||
118 | |||
119 | if($action=='add_title_line') { |
||
120 | $title = GETPOST('title'); |
||
121 | if(empty($title)) $title = $langs->trans('title'); |
||
122 | $qty = $level<1 ? 1 : $level ; |
||
123 | } |
||
124 | else if($action=='add_free_text') { |
||
125 | $title = GETPOST('title'); |
||
126 | |||
127 | if (empty($title)) { |
||
128 | $free_text = GETPOST('free_text', 'int'); |
||
129 | if (!empty($free_text)) { |
||
130 | $TFreeText = getTFreeText(); |
||
131 | if (!empty($TFreeText[$free_text])) { |
||
132 | $title = $TFreeText[$free_text]->content; |
||
133 | } |
||
134 | } |
||
135 | } |
||
136 | if(empty($title)) $title = $langs->trans('subtotalAddLineDescription'); |
||
137 | $qty = 50; |
||
138 | } |
||
139 | else if($action=='add_subtitle_line') { |
||
140 | $title = GETPOST('title'); |
||
141 | if(empty($title)) $title = $langs->trans('subtitle'); |
||
142 | $qty = 2; |
||
143 | } |
||
144 | else if($action=='add_subtotal_line') { |
||
145 | $title = $langs->trans('SubSubTotal'); |
||
146 | $qty = 98; |
||
147 | } |
||
148 | else { |
||
149 | $title = GETPOST('title') ? GETPOST('title') : $langs->trans('SubTotal'); |
||
150 | $qty = $level ? 100-$level : 99; |
||
151 | } |
||
152 | dol_include_once('/subtotal/class/subtotal.class.php'); |
||
153 | |||
154 | if (!empty($conf->global->SUBTOTAL_AUTO_ADD_SUBTOTAL_ON_ADDING_NEW_TITLE) && $qty < 10) TSubtotal::addSubtotalMissing($object, $qty); |
||
155 | |||
156 | TSubtotal::addSubTotalLine($object, $title, $qty); |
||
157 | } |
||
158 | else if($action==='ask_deleteallline') { |
||
159 | $form=new Form($db); |
||
160 | |||
161 | $lineid = GETPOST('lineid','integer'); |
||
162 | $TIdForGroup = $this->getArrayOfLineForAGroup($object, $lineid); |
||
163 | |||
164 | $nbLines = count($TIdForGroup); |
||
165 | |||
166 | $formconfirm=$form->formconfirm($_SERVER["PHP_SELF"].'?id='.$object->id.'&lineid='.$lineid, $langs->trans('deleteWithAllLines'), $langs->trans('ConfirmDeleteAllThisLines',$nbLines), 'confirm_delete_all_lines','',0,1); |
||
167 | print $formconfirm; |
||
168 | } |
||
169 | |||
170 | if (!empty($conf->global->SUBTOTAL_ALLOW_ADD_LINE_UNDER_TITLE)) |
||
171 | { |
||
172 | $this->showSelectTitleToAdd($object); |
||
173 | } |
||
174 | |||
175 | |||
176 | if($action!='editline') { |
||
177 | // New format is for 3.8 |
||
178 | $this->printNewFormat($object, $conf, $langs, $idvar); |
||
179 | } |
||
180 | } |
||
181 | } |
||
182 | elseif ((!empty($parameters['currentcontext']) && $parameters['currentcontext'] == 'orderstoinvoice') || in_array('orderstoinvoice',$contexts)) |
||
183 | { |
||
184 | ?> |
||
185 | <script type="text/javascript"> |
||
186 | $(function() { |
||
187 | var tr = $("<tr><td><?php echo $langs->trans('subtotal_add_title_bloc_from_orderstoinvoice'); ?></td><td><input type='checkbox' value='1' name='subtotal_add_title_bloc_from_orderstoinvoice' checked='checked' /></td></tr>") |
||
188 | $("textarea[name=note]").closest('tr').after(tr); |
||
189 | }); |
||
190 | </script> |
||
191 | <?php |
||
192 | |||
193 | } |
||
194 | |||
195 | return 0; |
||
196 | } |
||
197 | |||
198 | function printNewFormat(&$object, &$conf, &$langs, $idvar) |
||
199 | { |
||
200 | if (empty($conf->global->SUBTOTAL_ALLOW_ADD_BLOCK)) return false; |
||
201 | if (!empty($object->situation_cycle_ref) && $object->situation_counter > 1) return false; // Si facture de situation |
||
202 | ?> |
||
203 | <script type="text/javascript"> |
||
204 | $(document).ready(function() { |
||
205 | $('div.fiche div.tabsAction').append('<br />'); |
||
206 | |||
207 | $('div.fiche div.tabsAction').append('<div class="inline-block divButAction"><a id="add_title_line" rel="add_title_line" href="javascript:;" class="butAction"><?php echo $langs->trans('AddTitle' )?></a></div>'); |
||
208 | $('div.fiche div.tabsAction').append('<div class="inline-block divButAction"><a id="add_total_line" rel="add_total_line" href="javascript:;" class="butAction"><?php echo $langs->trans('AddSubTotal')?></a></div>'); |
||
209 | $('div.fiche div.tabsAction').append('<div class="inline-block divButAction"><a id="add_free_text" rel="add_free_text" href="javascript:;" class="butAction"><?php echo $langs->trans('AddFreeText')?></a></div>'); |
||
210 | |||
211 | |||
212 | function updateAllMessageForms(){ |
||
213 | for (instance in CKEDITOR.instances) { |
||
214 | CKEDITOR.instances[instance].updateElement(); |
||
215 | } |
||
216 | } |
||
217 | |||
218 | function promptSubTotal(action, titleDialog, label, url_to, url_ajax, params, use_textarea, show_free_text, show_under_title) { |
||
219 | $( "#dialog-prompt-subtotal" ).remove(); |
||
220 | |||
221 | var dialog_html = '<div id="dialog-prompt-subtotal" '+(action == 'addSubtotal' ? 'class="center"' : '')+' >'; |
||
222 | |||
223 | if (typeof show_under_title != 'undefined' && show_under_title) |
||
224 | { |
||
225 | var selectUnderTitle = <?php echo json_encode(getHtmlSelectTitle($object, true)); ?>; |
||
226 | dialog_html += selectUnderTitle + '<br /><br />'; |
||
227 | } |
||
228 | |||
229 | if (action == 'addTitle' || action == 'addFreeTxt') |
||
230 | { |
||
231 | if (typeof show_free_text != 'undefined' && show_free_text) |
||
232 | { |
||
233 | var selectFreeText = <?php echo json_encode(getHtmlSelectFreeText()); ?>; |
||
234 | dialog_html += selectFreeText + ' <?php echo $langs->transnoentities('subtotalFreeTextOrDesc'); ?><br />'; |
||
235 | } |
||
236 | |||
237 | if (typeof use_textarea != 'undefined' && use_textarea) dialog_html += '<textarea id="sub-total-title" rows="<?php echo ROWS_8; ?>" cols="80" placeholder="'+label+'"></textarea>'; |
||
238 | else dialog_html += '<input id="sub-total-title" size="30" value="" placeholder="'+label+'" />'; |
||
239 | } |
||
240 | |||
241 | if (action == 'addTitle' || action == 'addSubtotal') |
||
242 | { |
||
243 | if (action == 'addSubtotal') dialog_html += '<input id="sub-total-title" size="30" value="" placeholder="'+label+'" />'; |
||
244 | |||
245 | dialog_html += " <select name='subtotal_line_level'>"; |
||
246 | for (var i=1;i<10;i++) |
||
247 | { |
||
248 | dialog_html += "<option value="+i+"><?php echo $langs->trans('Level'); ?> "+i+"</option>"; |
||
249 | } |
||
250 | dialog_html += "</select>"; |
||
251 | } |
||
252 | |||
253 | dialog_html += '</div>'; |
||
254 | |||
255 | $('body').append(dialog_html); |
||
256 | |||
257 | <?php |
||
258 | $editorTool = empty($conf->global->FCKEDITOR_EDITORNAME)?'ckeditor':$conf->global->FCKEDITOR_EDITORNAME; |
||
259 | $editorConf = empty($conf->global->FCKEDITOR_ENABLE_DETAILS)?false:$conf->global->FCKEDITOR_ENABLE_DETAILS; |
||
260 | if($editorConf && in_array($editorTool,array('textarea','ckeditor'))){ |
||
261 | ?> |
||
262 | if (action == 'addTitle' || action == 'addFreeTxt') |
||
263 | { |
||
264 | if (typeof use_textarea != 'undefined' && use_textarea && typeof CKEDITOR == "object" && typeof CKEDITOR.instances != "undefined" ) |
||
265 | { |
||
266 | CKEDITOR.replace( 'sub-total-title', {toolbar: 'dolibarr_details', toolbarStartupExpanded: false} ); |
||
267 | } |
||
268 | } |
||
269 | <?php } ?> |
||
270 | |||
271 | $( "#dialog-prompt-subtotal" ).dialog({ |
||
272 | resizable: false, |
||
273 | height: 'auto', |
||
274 | width: 'auto', |
||
275 | modal: true, |
||
276 | title: titleDialog, |
||
277 | buttons: { |
||
278 | "Ok": function() { |
||
279 | if (typeof use_textarea != 'undefined' && use_textarea && typeof CKEDITOR == "object" && typeof CKEDITOR.instances != "undefined" ){ updateAllMessageForms(); } |
||
280 | params.title = params.title = (typeof CKEDITOR == "object" && typeof CKEDITOR.instances != "undefined" && "sub-total-title" in CKEDITOR.instances ? CKEDITOR.instances["sub-total-title"].getData() : $(this).find('#sub-total-title').val()); |
||
281 | params.under_title = $(this).find('select[name=under_title]').val(); |
||
282 | params.free_text = $(this).find('select[name=free_text]').val(); |
||
283 | params.level = $(this).find('select[name=subtotal_line_level]').val(); |
||
284 | |||
285 | $.ajax({ |
||
286 | url: url_ajax |
||
287 | ,type: 'POST' |
||
288 | ,data: params |
||
289 | }).done(function() { |
||
290 | document.location.href=url_to; |
||
291 | }); |
||
292 | |||
293 | $( this ).dialog( "close" ); |
||
294 | }, |
||
295 | "<?php echo $langs->trans('Cancel') ?>": function() { |
||
296 | $( this ).dialog( "close" ); |
||
297 | } |
||
298 | } |
||
299 | }); |
||
300 | } |
||
301 | |||
302 | $('a[rel=add_title_line]').click(function() |
||
303 | { |
||
304 | promptSubTotal('addTitle' |
||
305 | , "<?php echo $langs->trans('YourTitleLabel') ?>" |
||
306 | , "<?php echo $langs->trans('title'); ?>" |
||
307 | , '?<?php echo $idvar ?>=<?php echo $object->id; ?>' |
||
308 | , '<?php echo $_SERVER['PHP_SELF']; ?>' |
||
309 | , {<?php echo $idvar; ?>: <?php echo (int) $object->id; ?>, action:'add_title_line'} |
||
310 | ); |
||
311 | }); |
||
312 | |||
313 | $('a[rel=add_total_line]').click(function() |
||
314 | { |
||
315 | promptSubTotal('addSubtotal' |
||
316 | , '<?php echo $langs->trans('YourSubtotalLabel') ?>' |
||
317 | , '<?php echo $langs->trans('subtotal'); ?>' |
||
318 | , '?<?php echo $idvar ?>=<?php echo $object->id; ?>' |
||
319 | , '<?php echo $_SERVER['PHP_SELF']; ?>' |
||
320 | , {<?php echo $idvar; ?>: <?php echo (int) $object->id; ?>, action:'add_total_line'} |
||
321 | /*,false,false, <?php echo !empty($conf->global->SUBTOTAL_ALLOW_ADD_LINE_UNDER_TITLE) ? 'true' : 'false'; ?>*/ |
||
322 | ); |
||
323 | }); |
||
324 | |||
325 | $('a[rel=add_free_text]').click(function() |
||
326 | { |
||
327 | promptSubTotal('addFreeTxt' |
||
328 | , "<?php echo $langs->transnoentitiesnoconv('YourTextLabel') ?>" |
||
329 | , "<?php echo $langs->trans('subtotalAddLineDescription'); ?>" |
||
330 | , '?<?php echo $idvar ?>=<?php echo $object->id; ?>' |
||
331 | , '<?php echo $_SERVER['PHP_SELF']; ?>' |
||
332 | , {<?php echo $idvar; ?>: <?php echo (int) $object->id; ?>, action:'add_free_text'} |
||
333 | , true |
||
334 | , true |
||
335 | , <?php echo !empty($conf->global->SUBTOTAL_ALLOW_ADD_LINE_UNDER_TITLE) ? 'true' : 'false'; ?> |
||
336 | ); |
||
337 | }); |
||
338 | }); |
||
339 | </script> |
||
340 | <?php |
||
341 | } |
||
342 | |||
343 | function showSelectTitleToAdd(&$object) |
||
344 | { |
||
345 | global $langs; |
||
346 | |||
347 | dol_include_once('/subtotal/class/subtotal.class.php'); |
||
348 | dol_include_once('/subtotal/lib/subtotal.lib.php'); |
||
349 | $TTitle = TSubtotal::getAllTitleFromDocument($object); |
||
350 | |||
351 | ?> |
||
352 | <script type="text/javascript"> |
||
353 | $(function() { |
||
354 | var add_button = $("#addline"); |
||
355 | |||
356 | if (add_button.length > 0) |
||
357 | { |
||
358 | add_button.closest('tr').prev('tr.liste_titre').children('td:last').addClass('center').text("<?php echo $langs->trans('subtotal_title_to_add_under_title'); ?>"); |
||
359 | var select_title = $(<?php echo json_encode(getHtmlSelectTitle($object)); ?>); |
||
360 | |||
361 | add_button.before(select_title); |
||
362 | } |
||
363 | }); |
||
364 | </script> |
||
365 | <?php |
||
366 | } |
||
367 | |||
368 | |||
369 | function formBuilddocOptions($parameters) { |
||
370 | /* Réponse besoin client */ |
||
371 | |||
372 | global $conf, $langs, $bc; |
||
373 | |||
374 | $action = GETPOST('action'); |
||
375 | $TContext = explode(':',$parameters['context']); |
||
376 | if ( |
||
377 | in_array('invoicecard',$TContext) |
||
378 | || in_array('invoicesuppliercard',$TContext) |
||
379 | || in_array('propalcard',$TContext) |
||
380 | || in_array('ordercard',$TContext) |
||
381 | || in_array('ordersuppliercard',$TContext) |
||
382 | || in_array('invoicereccard',$TContext) |
||
383 | ) |
||
384 | { |
||
385 | $hideInnerLines = isset( $_SESSION['subtotal_hideInnerLines_'.$parameters['modulepart']] ) ? $_SESSION['subtotal_hideInnerLines_'.$parameters['modulepart']] : 0; |
||
386 | $hidedetails = isset( $_SESSION['subtotal_hidedetails_'.$parameters['modulepart']] ) ? $_SESSION['subtotal_hidedetails_'.$parameters['modulepart']] : 0; |
||
387 | $hidepricesDefaultConf = !empty($conf->global->SUBTOTAL_HIDE_PRICE_DEFAULT_CHECKED)?$conf->global->SUBTOTAL_HIDE_PRICE_DEFAULT_CHECKED:0; |
||
388 | $hideprices= isset( $_SESSION['subtotal_hideprices_'.$parameters['modulepart']] ) ? $_SESSION['subtotal_hideprices_'.$parameters['modulepart']] : $hidepricesDefaultConf; |
||
389 | |||
390 | $var=false; |
||
391 | $out.= '<tr '.$bc[$var].'> |
||
392 | <td colspan="4" align="right"> |
||
393 | <label for="hideInnerLines">'.$langs->trans('HideInnerLines').'</label> |
||
394 | <input type="checkbox" onclick="if($(this).is(\':checked\')) { $(\'#hidedetails\').prop(\'checked\', \'checked\') }" id="hideInnerLines" name="hideInnerLines" value="1" '.(( $hideInnerLines ) ? 'checked="checked"' : '' ).' /> |
||
395 | </td> |
||
396 | </tr>'; |
||
397 | |||
398 | $var=!$var; |
||
399 | $out.= '<tr '.$bc[$var].'> |
||
400 | <td colspan="4" align="right"> |
||
401 | <label for="hidedetails">'.$langs->trans('SubTotalhidedetails').'</label> |
||
402 | <input type="checkbox" id="hidedetails" name="hidedetails" value="1" '.(( $hidedetails ) ? 'checked="checked"' : '' ).' /> |
||
403 | </td> |
||
404 | </tr>'; |
||
405 | |||
406 | $var=!$var; |
||
407 | $out.= '<tr '.$bc[$var].'> |
||
408 | <td colspan="4" align="right"> |
||
409 | <label for="hidedetails">'.$langs->trans('SubTotalhidePrice').'</label> |
||
410 | <input type="checkbox" id="hideprices" name="hideprices" value="1" '.(( $hideprices ) ? 'checked="checked"' : '' ).' /> |
||
411 | </td> |
||
412 | </tr>'; |
||
413 | |||
414 | |||
415 | |||
416 | if ( |
||
417 | (in_array('propalcard',$TContext) && !empty($conf->global->SUBTOTAL_PROPAL_ADD_RECAP)) |
||
418 | || (in_array('ordercard',$TContext) && !empty($conf->global->SUBTOTAL_COMMANDE_ADD_RECAP)) |
||
419 | || (in_array('ordersuppliercard',$TContext) && !empty($conf->global->SUBTOTAL_COMMANDE_ADD_RECAP)) |
||
420 | || (in_array('invoicecard',$TContext) && !empty($conf->global->SUBTOTAL_INVOICE_ADD_RECAP)) |
||
421 | || (in_array('invoicesuppliercard',$TContext) && !empty($conf->global->SUBTOTAL_INVOICE_ADD_RECAP)) |
||
422 | || (in_array('invoicereccard',$TContext) && !empty($conf->global->SUBTOTAL_INVOICE_ADD_RECAP )) |
||
423 | ) |
||
424 | { |
||
425 | $var=!$var; |
||
426 | $out.= ' |
||
427 | <tr '.$bc[$var].'> |
||
428 | <td colspan="4" align="right"> |
||
429 | <label for="subtotal_add_recap">'.$langs->trans('subtotal_add_recap').'</label> |
||
430 | <input type="checkbox" id="subtotal_add_recap" name="subtotal_add_recap" value="1" '.( GETPOST('subtotal_add_recap') ? 'checked="checked"' : '' ).' /> |
||
431 | </td> |
||
432 | </tr>'; |
||
433 | } |
||
434 | |||
435 | |||
436 | $this->resprints = $out; |
||
437 | } |
||
438 | |||
439 | |||
440 | return 1; |
||
441 | } |
||
442 | |||
443 | function formEditProductOptions($parameters, &$object, &$action, $hookmanager) |
||
444 | { |
||
445 | |||
446 | if (in_array('invoicecard',explode(':',$parameters['context']))) |
||
447 | { |
||
448 | |||
449 | } |
||
450 | |||
451 | return 0; |
||
452 | } |
||
453 | |||
454 | function ODTSubstitutionLine(&$parameters, &$object, $action, $hookmanager) { |
||
455 | global $conf; |
||
456 | |||
457 | if($action === 'builddoc') { |
||
458 | |||
459 | $line = &$parameters['line']; |
||
460 | $object = &$parameters['object']; |
||
461 | $substitutionarray = &$parameters['substitutionarray']; |
||
462 | |||
463 | if($line->product_type == 9 && $line->special_code == $this->module_number) { |
||
464 | $substitutionarray['line_modsubtotal'] = 1; |
||
465 | |||
466 | $substitutionarray['line_price_ht'] |
||
467 | = $substitutionarray['line_price_vat'] |
||
468 | = $substitutionarray['line_price_ttc'] |
||
469 | = $substitutionarray['line_vatrate'] |
||
470 | = $substitutionarray['line_qty'] |
||
471 | = $substitutionarray['line_up'] |
||
472 | = ''; |
||
473 | |||
474 | if($line->qty>90) { |
||
475 | $substitutionarray['line_modsubtotal_total'] = true; |
||
476 | |||
477 | list($total, $total_tva, $total_ttc, $TTotal_tva) = $this->getTotalLineFromObject($object, $line, '', 1); |
||
478 | |||
479 | $substitutionarray['line_price_ht'] = $total; |
||
480 | $substitutionarray['line_price_vat'] = $total_tva; |
||
481 | $substitutionarray['line_price_ttc'] = $total_ttc; |
||
482 | } else { |
||
483 | $substitutionarray['line_modsubtotal_title'] = true; |
||
484 | } |
||
485 | |||
486 | |||
487 | } |
||
488 | else{ |
||
489 | $substitutionarray['line_not_modsubtotal'] = true; |
||
490 | $substitutionarray['line_modsubtotal'] = 0; |
||
491 | } |
||
492 | |||
493 | } |
||
494 | |||
495 | } |
||
496 | |||
497 | function createFrom($parameters, &$object, $action, $hookmanager) { |
||
498 | |||
499 | if ( |
||
500 | in_array('invoicecard',explode(':',$parameters['context'])) |
||
501 | || in_array('invoicesuppliercard',explode(':',$parameters['context'])) |
||
502 | || in_array('propalcard',explode(':',$parameters['context'])) |
||
503 | || in_array('supplier_proposalcard',explode(':',$parameters['context'])) |
||
504 | || in_array('ordercard',explode(':',$parameters['context'])) |
||
505 | || in_array('ordersuppliercard',explode(':',$parameters['context'])) |
||
506 | || in_array('invoicereccard',explode(':',$parameters['context'])) |
||
507 | ) { |
||
508 | |||
509 | global $db; |
||
510 | |||
511 | $objFrom = $parameters['objFrom']; |
||
512 | |||
513 | foreach($objFrom->lines as $k=> &$lineOld) { |
||
514 | |||
515 | if($lineOld->product_type == 9 && $lineOld->info_bits > 0 ) { |
||
516 | |||
517 | $line = & $object->lines[$k]; |
||
518 | |||
519 | $idLine = (int) ($line->id ? $line->id : $line->rowid); |
||
520 | |||
521 | $db->query("UPDATE ".MAIN_DB_PREFIX.$line->table_element." |
||
522 | SET info_bits=".(int)$lineOld->info_bits." |
||
523 | WHERE rowid = ".$idLine." |
||
524 | "); |
||
525 | |||
526 | } |
||
527 | |||
528 | |||
529 | } |
||
530 | |||
531 | |||
532 | } |
||
533 | |||
534 | } |
||
535 | |||
536 | function doActions($parameters, &$object, $action, $hookmanager) |
||
537 | { |
||
538 | global $db, $conf, $langs,$user; |
||
539 | |||
540 | dol_include_once('/subtotal/class/subtotal.class.php'); |
||
541 | dol_include_once('/subtotal/lib/subtotal.lib.php'); |
||
542 | require_once DOL_DOCUMENT_ROOT . '/core/class/extrafields.class.php'; |
||
543 | |||
544 | $showBlockExtrafields = GETPOST('showBlockExtrafields'); |
||
545 | |||
546 | if($object->element=='facture') $idvar = 'facid'; |
||
547 | else $idvar = 'id'; |
||
548 | |||
549 | if ($action == 'updateligne' || $action == 'updateline') |
||
550 | { |
||
551 | $found = false; |
||
552 | $lineid = GETPOST('lineid', 'int'); |
||
553 | foreach ($object->lines as &$line) |
||
554 | { |
||
555 | |||
556 | if ($line->id == $lineid && TSubtotal::isModSubtotalLine($line)) |
||
557 | { |
||
558 | $found = true; |
||
559 | if(TSubtotal::isTitle($line) && !empty($showBlockExtrafields)) { |
||
560 | $extrafieldsline = new ExtraFields($db); |
||
561 | $extralabelsline = $extrafieldsline->fetch_name_optionals_label($object->table_element_line); |
||
562 | $extrafieldsline->setOptionalsFromPost($extralabelsline, $line); |
||
563 | } |
||
564 | _updateSubtotalLine($object, $line); |
||
565 | _updateSubtotalBloc($object, $line); |
||
566 | |||
567 | TSubtotal::generateDoc($object); |
||
568 | break; |
||
569 | } |
||
570 | } |
||
571 | |||
572 | if ($found) |
||
573 | { |
||
574 | header('Location: '.$_SERVER['PHP_SELF'].'?'.$idvar.'='.$object->id); |
||
575 | exit; // Surtout ne pas laisser Dolibarr faire du traitement sur le updateligne sinon ça plante les données de la ligne |
||
576 | } |
||
577 | } |
||
578 | else if($action === 'builddoc') { |
||
579 | |||
580 | if ( |
||
581 | in_array('invoicecard',explode(':',$parameters['context'])) |
||
582 | || in_array('propalcard',explode(':',$parameters['context'])) |
||
583 | || in_array('ordercard',explode(':',$parameters['context'])) |
||
584 | || in_array('ordersuppliercard',explode(':',$parameters['context'])) |
||
585 | || in_array('invoicesuppliercard',explode(':',$parameters['context'])) |
||
586 | || in_array('supplier_proposalcard',explode(':',$parameters['context'])) |
||
587 | ) |
||
588 | { |
||
589 | if(in_array('invoicecard',explode(':',$parameters['context']))) { |
||
590 | $sessname = 'subtotal_hideInnerLines_facture'; |
||
591 | $sessname2 = 'subtotal_hidedetails_facture'; |
||
592 | $sessname3 = 'subtotal_hideprices_facture'; |
||
593 | } |
||
594 | elseif(in_array('invoicesuppliercard',explode(':',$parameters['context']))) { |
||
595 | $sessname = 'subtotal_hideInnerLines_facture_fournisseur'; |
||
596 | $sessname2 = 'subtotal_hidedetails_facture_fournisseur'; |
||
597 | $sessname3 = 'subtotal_hideprices_facture_fournisseur'; |
||
598 | } |
||
599 | elseif(in_array('propalcard',explode(':',$parameters['context']))) { |
||
600 | $sessname = 'subtotal_hideInnerLines_propal'; |
||
601 | $sessname2 = 'subtotal_hidedetails_propal'; |
||
602 | $sessname3 = 'subtotal_hideprices_propal'; |
||
603 | } |
||
604 | elseif(in_array('supplier_proposalcard',explode(':',$parameters['context']))) { |
||
605 | $sessname = 'subtotal_hideInnerLines_supplier_proposal'; |
||
606 | $sessname2 = 'subtotal_hidedetails_supplier_proposal'; |
||
607 | $sessname3 = 'subtotal_hideprices_supplier_proposal'; |
||
608 | } |
||
609 | elseif(in_array('ordercard',explode(':',$parameters['context']))) { |
||
610 | $sessname = 'subtotal_hideInnerLines_commande'; |
||
611 | $sessname2 = 'subtotal_hidedetails_commande'; |
||
612 | $sessname3 = 'subtotal_hideprices_commande'; |
||
613 | } |
||
614 | elseif(in_array('ordersuppliercard',explode(':',$parameters['context']))) { |
||
615 | $sessname = 'subtotal_hideInnerLines_commande_fournisseur'; |
||
616 | $sessname2 = 'subtotal_hidedetails_commande_fournisseur'; |
||
617 | $sessname3 = 'subtotal_hideprices_commande_fournisseur'; |
||
618 | } |
||
619 | else { |
||
620 | $sessname = 'subtotal_hideInnerLines_unknown'; |
||
621 | $sessname2 = 'subtotal_hidedetails_unknown'; |
||
622 | $sessname3 = 'subtotal_hideprices_unknown'; |
||
623 | } |
||
624 | |||
625 | global $hideprices; |
||
626 | |||
627 | $hideInnerLines = (int)GETPOST('hideInnerLines'); |
||
628 | $_SESSION[$sessname] = $hideInnerLines; |
||
629 | |||
630 | $hidedetails= (int)GETPOST('hidedetails'); |
||
631 | $_SESSION[$sessname2] = $hidedetails; |
||
632 | |||
633 | $hideprices= (int)GETPOST('hideprices'); |
||
634 | $_SESSION[$sessname3] = $hideprices; |
||
635 | |||
636 | foreach($object->lines as &$line) { |
||
637 | if ($line->product_type == 9 && $line->special_code == $this->module_number) { |
||
638 | |||
639 | if($line->qty>=90) { |
||
640 | $line->modsubtotal_total = 1; |
||
641 | } |
||
642 | else{ |
||
643 | $line->modsubtotal_title = 1; |
||
644 | } |
||
645 | |||
646 | $line->total_ht = $this->getTotalLineFromObject($object, $line, ''); |
||
647 | } |
||
648 | } |
||
649 | } |
||
650 | |||
651 | } |
||
652 | else if($action === 'confirm_delete_all_lines' && GETPOST('confirm')=='yes') { |
||
653 | |||
654 | $Tab = $this->getArrayOfLineForAGroup($object, GETPOST('lineid')); |
||
655 | |||
656 | foreach($Tab as $idLine) { |
||
657 | /** |
||
658 | * @var $object Facture |
||
659 | */ |
||
660 | if($object->element=='facture') $object->deleteline($idLine); |
||
661 | /** |
||
662 | * @var $object Facture fournisseur |
||
663 | */ |
||
664 | else if($object->element=='invoice_supplier') |
||
665 | { |
||
666 | $object->deleteline($idLine); |
||
667 | } |
||
668 | /** |
||
669 | * @var $object Propal |
||
670 | */ |
||
671 | else if($object->element=='propal') $object->deleteline($idLine); |
||
672 | /** |
||
673 | * @var $object Propal Fournisseur |
||
674 | */ |
||
675 | else if($object->element=='supplier_proposal') $object->deleteline($idLine); |
||
676 | /** |
||
677 | * @var $object Commande |
||
678 | */ |
||
679 | else if($object->element=='commande') |
||
680 | { |
||
681 | if ((float) DOL_VERSION >= 5.0) $object->deleteline($user, $idLine); |
||
682 | else $object->deleteline($idLine); |
||
683 | } |
||
684 | /** |
||
685 | * @var $object Commande fournisseur |
||
686 | */ |
||
687 | else if($object->element=='order_supplier') |
||
688 | { |
||
689 | $object->deleteline($idLine); |
||
690 | } |
||
691 | /** |
||
692 | * @var $object Facturerec |
||
693 | */ |
||
694 | else if($object->element=='facturerec') $object->deleteline($idLine); |
||
695 | } |
||
696 | |||
697 | header('location:?id='.$object->id); |
||
698 | exit; |
||
699 | |||
700 | } |
||
701 | else if ($action == 'duplicate') |
||
702 | { |
||
703 | $lineid = GETPOST('lineid', 'int'); |
||
704 | $nbDuplicate = TSubtotal::duplicateLines($object, $lineid, true); |
||
705 | |||
706 | if ($nbDuplicate > 0) setEventMessage($langs->trans('subtotal_duplicate_success', $nbDuplicate)); |
||
707 | elseif ($nbDuplicate == 0) setEventMessage($langs->trans('subtotal_duplicate_lineid_not_found'), 'warnings'); |
||
708 | else setEventMessage($langs->trans('subtotal_duplicate_error'), 'errors'); |
||
709 | |||
710 | header('Location: ?id='.$object->id); |
||
711 | exit; |
||
712 | } |
||
713 | |||
714 | return 0; |
||
715 | } |
||
716 | |||
717 | function formAddObjectLine ($parameters, &$object, &$action, $hookmanager) { |
||
718 | return 0; |
||
719 | } |
||
720 | |||
721 | function getArrayOfLineForAGroup(&$object, $lineid) { |
||
722 | $rang = $line->rang; |
||
723 | $qty_line = $line->qty; |
||
724 | |||
725 | $qty_line = 0; |
||
726 | |||
727 | $found = false; |
||
728 | |||
729 | $Tab= array(); |
||
730 | |||
731 | foreach($object->lines as $l) { |
||
732 | |||
733 | $lid = (!empty($l->rowid) ? $l->rowid : $l->id); |
||
734 | if($lid == $lineid) { |
||
735 | |||
736 | $found = true; |
||
737 | $qty_line = $l->qty; |
||
738 | } |
||
739 | |||
740 | if($found) { |
||
741 | |||
742 | $Tab[] = (!empty($l->rowid) ? $l->rowid : $l->id); |
||
743 | |||
744 | if($l->special_code==$this->module_number && (($l->qty==99 && $qty_line==1) || ($l->qty==98 && $qty_line==2)) ) { |
||
745 | break; // end of story |
||
746 | } |
||
747 | } |
||
748 | |||
749 | |||
750 | } |
||
751 | |||
752 | |||
753 | return $Tab; |
||
754 | |||
755 | } |
||
756 | |||
757 | /** |
||
758 | * TODO le calcul est faux dans certains cas, exemple : |
||
759 | * T1 |
||
760 | * |_ l1 => 50 € |
||
761 | * |_ l2 => 40 € |
||
762 | * |_ T2 |
||
763 | * |_l3 => 100 € |
||
764 | * |_ ST2 |
||
765 | * |_ l4 => 23 € |
||
766 | * |_ ST1 |
||
767 | * |
||
768 | * On obtiens ST2 = 100 ET ST1 = 123 € |
||
769 | * Alors qu'on devrais avoir ST2 = 100 ET ST1 = 213 € |
||
770 | * |
||
771 | * @param $use_level isn't used anymore |
||
772 | */ |
||
773 | function getTotalLineFromObject(&$object, &$line, $use_level=false, $return_all=0) { |
||
808 | } |
||
809 | |||
810 | /* |
||
811 | * Get the sum of situation invoice for last column |
||
812 | */ |
||
813 | function getTotalToPrintSituation(&$object, &$line) { |
||
814 | |||
815 | $rang = $line->rang; |
||
816 | $total = 0; |
||
817 | foreach($object->lines as $l) { |
||
818 | if($l->rang>=$rang) { |
||
819 | return price($total); |
||
820 | } |
||
821 | if (TSubtotal::isSubtotal($l)){ |
||
822 | $total = 0; |
||
823 | } else if ($l->situation_percent > 0 ){ |
||
824 | |||
825 | |||
826 | $prev_progress = $l->get_prev_progress($object->id); |
||
827 | $progress = ($l->situation_percent - $prev_progress) /100; |
||
828 | $total += ($l->total_ht/($l->situation_percent/100)) * $progress; |
||
829 | |||
830 | } |
||
831 | } |
||
832 | |||
833 | return price($total); |
||
834 | } |
||
835 | |||
836 | /** |
||
837 | * @param $pdf TCPDF PDF object |
||
838 | * @param $object CommonObject dolibarr object |
||
839 | * @param $line CommonObjectLine dolibarr object line |
||
840 | * @param $label string |
||
841 | * @param $description string |
||
842 | * @param $posx float horizontal position |
||
843 | * @param $posy float vertical position |
||
844 | * @param $w float width |
||
845 | * @param $h float height |
||
846 | */ |
||
847 | function pdf_add_total(&$pdf,&$object, &$line, $label, $description,$posx, $posy, $w, $h) { |
||
848 | global $conf,$subtotal_last_title_posy; |
||
849 | |||
850 | $hideInnerLines = (int)GETPOST('hideInnerLines'); |
||
851 | if (!empty($conf->global->SUBTOTAL_ONE_LINE_IF_HIDE_INNERLINES) && $hideInnerLines && !empty($subtotal_last_title_posy)) |
||
852 | { |
||
853 | $posy = $subtotal_last_title_posy; |
||
854 | $subtotal_last_title_posy = null; |
||
855 | } |
||
856 | |||
857 | $hidePriceOnSubtotalLines = (int) GETPOST('hide_price_on_subtotal_lines'); |
||
858 | |||
859 | $set_pagebreak_margin = false; |
||
860 | if(method_exists('Closure','bind')) { |
||
861 | $pageBreakOriginalValue = $pdf->AcceptPageBreak(); |
||
862 | $sweetsThief = function ($pdf) { |
||
863 | return $pdf->bMargin ; |
||
864 | }; |
||
865 | $sweetsThief = Closure::bind($sweetsThief, null, $pdf); |
||
866 | |||
867 | $bMargin = $sweetsThief($pdf); |
||
868 | |||
869 | $pdf->SetAutoPageBreak( false ); |
||
870 | |||
871 | $set_pagebreak_margin = true; |
||
872 | } |
||
873 | |||
874 | |||
875 | if($line->qty==99) |
||
876 | $pdf->SetFillColor(220,220,220); |
||
877 | elseif ($line->qty==98) |
||
878 | $pdf->SetFillColor(230,230,230); |
||
879 | else |
||
880 | $pdf->SetFillColor(240,240,240); |
||
881 | |||
882 | $style = 'B'; |
||
883 | if (!empty($conf->global->SUBTOTAL_SUBTOTAL_STYLE)) $style = $conf->global->SUBTOTAL_SUBTOTAL_STYLE; |
||
884 | |||
885 | $pdf->SetFont('', $style, 9); |
||
886 | |||
887 | $pdf->writeHTMLCell($w, $h, $posx, $posy, $label, 0, 1, false, true, 'R',true); |
||
888 | // var_dump($bMargin); |
||
889 | $pageAfter = $pdf->getPage(); |
||
890 | |||
891 | //Print background |
||
892 | $cell_height = $pdf->getStringHeight($w, $label); |
||
893 | $pdf->SetXY($posx, $posy); |
||
894 | $pdf->MultiCell($pdf->page_largeur - $pdf->marge_droite, $cell_height, '', 0, '', 1); |
||
895 | |||
896 | if (!$hidePriceOnSubtotalLines) { |
||
897 | $total_to_print = price($line->total); |
||
898 | |||
899 | if (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS)) |
||
900 | { |
||
901 | $TTitle = TSubtotal::getAllTitleFromLine($line); |
||
902 | foreach ($TTitle as &$line_title) |
||
903 | { |
||
904 | if (!empty($line_title->array_options['options_subtotal_nc'])) |
||
905 | { |
||
906 | $total_to_print = ''; // TODO Gestion "Compris/Non compris", voir si on affiche une annotation du genre "NC" |
||
907 | break; |
||
908 | } |
||
909 | } |
||
910 | } |
||
911 | |||
912 | if($total_to_print) { |
||
913 | |||
914 | if (GETPOST('hideInnerLines')) |
||
915 | { |
||
916 | // Dans le cas des lignes cachés, le calcul est déjà fait dans la méthode beforePDFCreation et les lignes de sous-totaux sont déjà renseignés |
||
917 | // $line->TTotal_tva |
||
918 | // $line->total_ht |
||
919 | // $line->total_tva |
||
920 | // $line->total |
||
921 | // $line->total_ttc |
||
922 | } |
||
923 | else |
||
924 | { |
||
925 | list($total, $total_tva, $total_ttc, $TTotal_tva) = $this->getTotalLineFromObject($object, $line, '', 1); |
||
926 | if(get_class($object) == 'Facture' && $object->type==Facture::TYPE_SITUATION){//Facture de situation |
||
927 | $total_to_print = $this->getTotalToPrintSituation($object, $line); |
||
928 | } else { |
||
929 | $total_to_print = price($total); |
||
930 | } |
||
931 | |||
932 | $line->total_ht = $total; |
||
933 | $line->total = $total; |
||
934 | $line->total_tva = $total_tva; |
||
935 | $line->total_ttc = $total_ttc; |
||
936 | } |
||
937 | } |
||
938 | |||
939 | $pdf->SetXY($pdf->postotalht, $posy); |
||
940 | if($set_pagebreak_margin) $pdf->SetAutoPageBreak( $pageBreakOriginalValue , $bMargin); |
||
941 | $pdf->MultiCell($pdf->page_largeur-$pdf->marge_droite-$pdf->postotalht, 3, $total_to_print, 0, 'R', 0); |
||
942 | } |
||
943 | else{ |
||
944 | if($set_pagebreak_margin) $pdf->SetAutoPageBreak( $pageBreakOriginalValue , $bMargin); |
||
945 | } |
||
946 | |||
947 | $posy = $posy + $cell_height; |
||
948 | $pdf->SetXY($posx, $posy); |
||
949 | |||
950 | |||
951 | } |
||
952 | |||
953 | /** |
||
954 | * @param $pdf TCPDF PDF object |
||
955 | * @param $object CommonObject dolibarr object |
||
956 | * @param $line CommonObjectLine dolibarr object line |
||
957 | * @param $label string |
||
958 | * @param $description string |
||
959 | * @param $posx float horizontal position |
||
960 | * @param $posy float vertical position |
||
961 | * @param $w float width |
||
962 | * @param $h float height |
||
963 | */ |
||
964 | function pdf_add_title(&$pdf,&$object, &$line, $label, $description,$posx, $posy, $w, $h) { |
||
965 | |||
966 | global $db,$conf,$subtotal_last_title_posy; |
||
967 | |||
968 | $subtotal_last_title_posy = $posy; |
||
969 | $pdf->SetXY ($posx, $posy); |
||
970 | |||
971 | $hideInnerLines = (int)GETPOST('hideInnerLines'); |
||
972 | |||
973 | |||
974 | |||
975 | $style = ($line->qty==1) ? 'BU' : 'BUI'; |
||
976 | if (!empty($conf->global->SUBTOTAL_TITLE_STYLE)) $style = $conf->global->SUBTOTAL_TITLE_STYLE; |
||
977 | |||
978 | if($hideInnerLines) { |
||
979 | if($line->qty==1)$pdf->SetFont('', $style, 9); |
||
980 | else |
||
981 | { |
||
982 | if (!empty($conf->global->SUBTOTAL_STYLE_TITRES_SI_LIGNES_CACHEES)) $style = $conf->global->SUBTOTAL_STYLE_TITRES_SI_LIGNES_CACHEES; |
||
983 | $pdf->SetFont('', $style, 9); |
||
984 | } |
||
985 | } |
||
986 | else { |
||
987 | |||
988 | if($line->qty==1)$pdf->SetFont('', $style, 9); //TODO if super utile |
||
989 | else $pdf->SetFont('', $style, 9); |
||
990 | |||
991 | } |
||
992 | |||
993 | if ($label === strip_tags($label) && $label === dol_html_entity_decode($label, ENT_QUOTES)) $pdf->MultiCell($w, $h, $label, 0, 'L'); // Pas de HTML dans la chaine |
||
994 | else $pdf->writeHTMLCell($w, $h, $posx, $posy, $label, 0, 1, false, true, 'J',true); // et maintenant avec du HTML |
||
995 | |||
996 | if($description && !$hidedesc) { |
||
997 | $posy = $pdf->GetY(); |
||
998 | |||
999 | $pdf->SetFont('', '', 8); |
||
1000 | |||
1001 | $pdf->writeHTMLCell($w, $h, $posx, $posy, $description, 0, 1, false, true, 'J',true); |
||
1002 | |||
1003 | } |
||
1004 | |||
1005 | } |
||
1006 | |||
1007 | function pdf_writelinedesc_ref($parameters=array(), &$object, &$action='') { |
||
1008 | // ultimate PDF hook O_o |
||
1009 | |||
1010 | return $this->pdf_writelinedesc($parameters,$object,$action); |
||
1011 | |||
1012 | } |
||
1013 | |||
1014 | function isModSubtotalLine(&$parameters, &$object) { |
||
1015 | |||
1016 | if(is_array($parameters)) { |
||
1017 | $i = & $parameters['i']; |
||
1018 | } |
||
1019 | else { |
||
1020 | $i = (int)$parameters; |
||
1021 | } |
||
1022 | |||
1023 | |||
1024 | if($object->lines[$i]->special_code == $this->module_number && $object->lines[$i]->product_type == 9) { |
||
1025 | return true; |
||
1026 | } |
||
1027 | |||
1028 | return false; |
||
1029 | |||
1030 | } |
||
1031 | |||
1032 | function pdf_getlineqty($parameters=array(), &$object, &$action='') { |
||
1033 | global $conf,$hideprices; |
||
1034 | |||
1035 | if($this->isModSubtotalLine($parameters,$object) ){ |
||
1036 | |||
1037 | $this->resprints = ' '; |
||
1038 | |||
1039 | if((float)DOL_VERSION<=3.6) { |
||
1040 | return ''; |
||
1041 | } |
||
1042 | else if((float)DOL_VERSION>=3.8) { |
||
1043 | return 1; |
||
1044 | } |
||
1045 | |||
1046 | } |
||
1047 | elseif(!empty($hideprices)) { |
||
1048 | $this->resprints = $object->lines[$parameters['i']]->qty; |
||
1049 | return 1; |
||
1050 | } |
||
1051 | elseif (!empty($conf->global->SUBTOTAL_IF_HIDE_PRICES_SHOW_QTY)) |
||
1052 | { |
||
1053 | $hideInnerLines = (int)GETPOST('hideInnerLines'); |
||
1054 | $hidedetails = (int)GETPOST('hidedetails'); |
||
1055 | if (empty($hideInnerLines) && !empty($hidedetails)) |
||
1056 | { |
||
1057 | $this->resprints = $object->lines[$parameters['i']]->qty; |
||
1058 | } |
||
1059 | } |
||
1060 | |||
1061 | if(is_array($parameters)) $i = & $parameters['i']; |
||
1062 | else $i = (int)$parameters; |
||
1063 | |||
1064 | if (empty($object->lines[$i])) return 0; // hideInnerLines => override $object->lines et Dolibarr ne nous permet pas de mettre à jour la variable qui conditionne la boucle sur les lignes (PR faite pour 6.0) |
||
1065 | |||
1066 | if(empty($object->lines[$i]->array_options)) $object->lines[$i]->fetch_optionals(); |
||
1067 | |||
1068 | if (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) ) |
||
1069 | { |
||
1070 | if (!in_array(__FUNCTION__, explode(',', $conf->global->SUBTOTAL_TFIELD_TO_KEEP_WITH_NC))) |
||
1071 | { |
||
1072 | $this->resprints = ' '; |
||
1073 | return 1; |
||
1074 | } |
||
1075 | } |
||
1076 | |||
1077 | return 0; |
||
1078 | } |
||
1079 | |||
1080 | function pdf_getlinetotalexcltax($parameters=array(), &$object, &$action='') { |
||
1081 | global $conf, $hideprices, $hookmanager; |
||
1082 | |||
1083 | if($this->isModSubtotalLine($parameters,$object) ){ |
||
1084 | |||
1085 | $this->resprints = ' '; |
||
1086 | |||
1087 | if((float)DOL_VERSION<=3.6) { |
||
1088 | return ''; |
||
1089 | } |
||
1090 | else if((float)DOL_VERSION>=3.8) { |
||
1091 | return 1; |
||
1092 | } |
||
1093 | |||
1094 | } |
||
1095 | elseif (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS)) |
||
1096 | { |
||
1097 | if(is_array($parameters)) $i = & $parameters['i']; |
||
1098 | else $i = (int)$parameters; |
||
1099 | |||
1100 | if (!in_array(__FUNCTION__, explode(',', $conf->global->SUBTOTAL_TFIELD_TO_KEEP_WITH_NC))) |
||
1101 | { |
||
1102 | if (!empty($object->lines[$i]->array_options['options_subtotal_nc'])) |
||
1103 | { |
||
1104 | $this->resprints = ' '; |
||
1105 | return 1; |
||
1106 | } |
||
1107 | |||
1108 | $TTitle = TSubtotal::getAllTitleFromLine($object->lines[$i]); |
||
1109 | foreach ($TTitle as &$line_title) |
||
1110 | { |
||
1111 | if (!empty($line_title->array_options['options_subtotal_nc'])) |
||
1112 | { |
||
1113 | $this->resprints = ' '; |
||
1114 | return 1; |
||
1115 | } |
||
1116 | } |
||
1117 | } |
||
1118 | } |
||
1119 | if ((int)GETPOST('hideInnerLines') && !empty($conf->global->SUBTOTAL_REPLACE_WITH_VAT_IF_HIDE_INNERLINES)){ |
||
1120 | if(is_array($parameters)) $i = & $parameters['i']; |
||
1121 | else $i = (int)$parameters; |
||
1122 | $this->resprints = price($object->lines[$i]->total_ht); |
||
1123 | } |
||
1124 | if (!empty($hideprices) |
||
1125 | || (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) ) |
||
1126 | ) |
||
1127 | { |
||
1128 | if (!empty($hideprices)) |
||
1129 | { |
||
1130 | |||
1131 | if(is_array($parameters)) $i = & $parameters['i']; |
||
1132 | else $i = (int)$parameters; |
||
1133 | |||
1134 | // Check if a title exist for this line && if the title have subtotal |
||
1135 | $lineTitle = TSubtotal::getParentTitleOfLine($object, $i); |
||
1136 | if(TSubtotal::getParentTitleOfLine($object, $i) && TSubtotal::titleHasTotalLine($object, $lineTitle, true)) |
||
1137 | { |
||
1138 | |||
1139 | $this->resprints = ' '; |
||
1140 | |||
1141 | $reshook=$hookmanager->executeHooks('subtotalHidePrices',$parameters,$object,$action); |
||
1142 | |||
1143 | if ($reshook < 0) |
||
1144 | { |
||
1145 | setEventMessages($hookmanager->error, $hookmanager->errors, 'errors'); |
||
1146 | return -1; |
||
1147 | } |
||
1148 | elseif (empty($reshook)) |
||
1149 | { |
||
1150 | $this->resprints .= $hookmanager->resprints; |
||
1151 | } |
||
1152 | else |
||
1153 | { |
||
1154 | $this->resprints = $hookmanager->resprints; |
||
1155 | |||
1156 | // override return (use $this->results['overrideReturn'] or $this->resArray['overrideReturn'] in other module action_xxxx.class.php ) |
||
1157 | if(isset($hookmanager->resArray['overrideReturn'])) |
||
1158 | { |
||
1159 | return $hookmanager->resArray['overrideReturn']; |
||
1160 | } |
||
1161 | } |
||
1162 | |||
1163 | return 1; |
||
1164 | |||
1165 | |||
1166 | } |
||
1167 | } |
||
1168 | elseif (!in_array(__FUNCTION__, explode(',', $conf->global->SUBTOTAL_TFIELD_TO_KEEP_WITH_NC))) |
||
1169 | { |
||
1170 | $this->resprints = ' '; |
||
1171 | return 1; |
||
1172 | } |
||
1173 | } |
||
1174 | |||
1175 | return 0; |
||
1176 | } |
||
1177 | |||
1178 | function pdf_getlinetotalwithtax($parameters=array(), &$object, &$action='') { |
||
1179 | global $conf; |
||
1180 | |||
1181 | if($this->isModSubtotalLine($parameters,$object) ){ |
||
1182 | |||
1183 | $this->resprints = ' '; |
||
1184 | |||
1185 | if((float)DOL_VERSION<=3.6) { |
||
1186 | return ''; |
||
1187 | } |
||
1188 | else if((float)DOL_VERSION>=3.8) { |
||
1189 | return 1; |
||
1190 | } |
||
1191 | } |
||
1192 | |||
1193 | if(is_array($parameters)) $i = & $parameters['i']; |
||
1194 | else $i = (int)$parameters; |
||
1195 | |||
1196 | if (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) ) |
||
1197 | { |
||
1198 | if (!in_array(__FUNCTION__, explode(',', $conf->global->SUBTOTAL_TFIELD_TO_KEEP_WITH_NC))) |
||
1199 | { |
||
1200 | $this->resprints = ' '; |
||
1201 | return 1; |
||
1202 | } |
||
1203 | } |
||
1204 | |||
1205 | return 0; |
||
1206 | } |
||
1207 | |||
1208 | function pdf_getlineunit($parameters=array(), &$object, &$action='') { |
||
1209 | global $conf; |
||
1210 | |||
1211 | if($this->isModSubtotalLine($parameters,$object) ){ |
||
1212 | $this->resprints = ' '; |
||
1213 | |||
1214 | if((float)DOL_VERSION<=3.6) { |
||
1215 | return ''; |
||
1216 | } |
||
1217 | else if((float)DOL_VERSION>=3.8) { |
||
1218 | return 1; |
||
1219 | } |
||
1220 | } |
||
1221 | |||
1222 | if(is_array($parameters)) $i = & $parameters['i']; |
||
1223 | else $i = (int)$parameters; |
||
1224 | |||
1225 | if (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) ) |
||
1226 | { |
||
1227 | if (!in_array(__FUNCTION__, explode(',', $conf->global->SUBTOTAL_TFIELD_TO_KEEP_WITH_NC))) |
||
1228 | { |
||
1229 | $this->resprints = ' '; |
||
1230 | return 1; |
||
1231 | } |
||
1232 | } |
||
1233 | |||
1234 | return 0; |
||
1235 | } |
||
1236 | |||
1237 | function pdf_getlineupexcltax($parameters=array(), &$object, &$action='') { |
||
1238 | global $conf,$hideprices; |
||
1239 | |||
1240 | if($this->isModSubtotalLine($parameters,$object) ){ |
||
1241 | $this->resprints = ' '; |
||
1242 | |||
1243 | if((float)DOL_VERSION<=3.6) { |
||
1244 | return ''; |
||
1245 | } |
||
1246 | else if((float)DOL_VERSION>=3.8) { |
||
1247 | return 1; |
||
1248 | } |
||
1249 | } |
||
1250 | if(is_array($parameters)) $i = & $parameters['i']; |
||
1251 | else $i = (int)$parameters; |
||
1252 | |||
1253 | if (!empty($hideprices) |
||
1254 | || (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) ) |
||
1255 | ) |
||
1256 | { |
||
1257 | if (!empty($hideprices) || !in_array(__FUNCTION__, explode(',', $conf->global->SUBTOTAL_TFIELD_TO_KEEP_WITH_NC))) |
||
1258 | { |
||
1259 | $this->resprints = ' '; |
||
1260 | return 1; |
||
1261 | } |
||
1262 | } |
||
1263 | |||
1264 | return 0; |
||
1265 | } |
||
1266 | |||
1267 | function pdf_getlineupwithtax($parameters=array(), &$object, &$action='') { |
||
1268 | global $conf,$hideprices; |
||
1269 | |||
1270 | if($this->isModSubtotalLine($parameters,$object) ){ |
||
1271 | $this->resprints = ' '; |
||
1272 | if((float)DOL_VERSION<=3.6) { |
||
1273 | return ''; |
||
1274 | } |
||
1275 | else if((float)DOL_VERSION>=3.8) { |
||
1276 | return 1; |
||
1277 | } |
||
1278 | } |
||
1279 | |||
1280 | if(is_array($parameters)) $i = & $parameters['i']; |
||
1281 | else $i = (int)$parameters; |
||
1282 | |||
1283 | if (!empty($hideprices) |
||
1284 | || (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) ) |
||
1285 | ) |
||
1286 | { |
||
1287 | if (!empty($hideprices) || !in_array(__FUNCTION__, explode(',', $conf->global->SUBTOTAL_TFIELD_TO_KEEP_WITH_NC))) |
||
1288 | { |
||
1289 | $this->resprints = ' '; |
||
1290 | return 1; |
||
1291 | } |
||
1292 | } |
||
1293 | |||
1294 | return 0; |
||
1295 | } |
||
1296 | |||
1297 | function pdf_getlinevatrate($parameters=array(), &$object, &$action='') { |
||
1298 | global $conf; |
||
1299 | |||
1300 | if($this->isModSubtotalLine($parameters,$object) ){ |
||
1301 | $this->resprints = ' '; |
||
1302 | |||
1303 | if((float)DOL_VERSION<=3.6) { |
||
1304 | return ''; |
||
1305 | } |
||
1306 | else if((float)DOL_VERSION>=3.8) { |
||
1307 | return 1; |
||
1308 | } |
||
1309 | } |
||
1310 | |||
1311 | if(is_array($parameters)) $i = & $parameters['i']; |
||
1312 | else $i = (int)$parameters; |
||
1313 | |||
1314 | if (empty($object->lines[$i])) return 0; // hideInnerLines => override $object->lines et Dolibarr ne nous permet pas de mettre à jour la variable qui conditionne la boucle sur les lignes (PR faite pour 6.0) |
||
1315 | |||
1316 | $object->lines[$i]->fetch_optionals(); |
||
1317 | if (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) ) |
||
1318 | { |
||
1319 | if (!in_array(__FUNCTION__, explode(',', $conf->global->SUBTOTAL_TFIELD_TO_KEEP_WITH_NC))) |
||
1320 | { |
||
1321 | $this->resprints = ' '; |
||
1322 | return 1; |
||
1323 | } |
||
1324 | } |
||
1325 | |||
1326 | return 0; |
||
1327 | } |
||
1328 | |||
1329 | function pdf_getlineprogress($parameters=array(), &$object, &$action) { |
||
1330 | global $conf; |
||
1331 | |||
1332 | if($this->isModSubtotalLine($parameters,$object) ){ |
||
1333 | $this->resprints = ' '; |
||
1334 | if((float)DOL_VERSION<=3.6) { |
||
1335 | return ''; |
||
1336 | } |
||
1337 | else if((float)DOL_VERSION>=3.8) { |
||
1338 | return 1; |
||
1339 | } |
||
1340 | } |
||
1341 | |||
1342 | if(is_array($parameters)) $i = & $parameters['i']; |
||
1343 | else $i = (int)$parameters; |
||
1344 | |||
1345 | if (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) ) |
||
1346 | { |
||
1347 | if (!in_array(__FUNCTION__, explode(',', $conf->global->SUBTOTAL_TFIELD_TO_KEEP_WITH_NC))) |
||
1348 | { |
||
1349 | $this->resprints = ' '; |
||
1350 | return 1; |
||
1351 | } |
||
1352 | } |
||
1353 | |||
1354 | return 0; |
||
1355 | } |
||
1356 | |||
1357 | function add_numerotation(&$object) { |
||
1358 | global $conf; |
||
1359 | |||
1360 | if(!empty($conf->global->SUBTOTAL_USE_NUMEROTATION)) { |
||
1361 | |||
1362 | $TLevelTitre = array(); |
||
1363 | $prevlevel = 0; |
||
1364 | |||
1365 | foreach($object->lines as $k=>&$line) |
||
1366 | { |
||
1367 | if ($line->id > 0 && $this->isModSubtotalLine($k, $object) && $line->qty <= 10) |
||
1368 | { |
||
1369 | $TLineTitle[] = &$line; |
||
1370 | } |
||
1371 | } |
||
1372 | |||
1373 | if (!empty($TLineTitle)) $TTitleNumeroted = $this->formatNumerotation($TLineTitle); |
||
1374 | } |
||
1375 | |||
1376 | } |
||
1377 | |||
1378 | // TODO ne gère pas encore la numération des lignes "Totaux" |
||
1379 | private function formatNumerotation(&$TLineTitle, $line_reference='', $level=1, $prefix_num=0) |
||
1380 | { |
||
1381 | $TTitle = array(); |
||
1382 | |||
1383 | $i=1; |
||
1384 | $j=0; |
||
1385 | foreach ($TLineTitle as $k => &$line) |
||
1386 | { |
||
1387 | if (!empty($line_reference) && $line->rang <= $line_reference->rang) continue; |
||
1388 | if (!empty($line_reference) && $line->qty <= $line_reference->qty) break; |
||
1389 | |||
1390 | if ($line->qty == $level) |
||
1391 | { |
||
1392 | $TTitle[$j]['numerotation'] = ($prefix_num == 0) ? $i : $prefix_num.'.'.$i; |
||
1393 | //var_dump('Prefix == '.$prefix_num.' // '.$line->desc.' ==> numerotation == '.$TTitle[$j]['numerotation'].' ### '.$line->qty .'=='. $level); |
||
1394 | if (empty($line->label) && (float)DOL_VERSION < 6) |
||
1395 | { |
||
1396 | $line->label = !empty($line->desc) ? $line->desc : $line->description; |
||
1397 | $line->desc = $line->description = ''; |
||
1398 | } |
||
1399 | |||
1400 | $line->label = $TTitle[$j]['numerotation'].' '.$line->label; |
||
1401 | $TTitle[$j]['line'] = &$line; |
||
1402 | |||
1403 | $deep_level = $line->qty; |
||
1404 | do { |
||
1405 | $deep_level++; |
||
1406 | $TTitle[$j]['children'] = $this->formatNumerotation($TLineTitle, $line, $deep_level, $TTitle[$j]['numerotation']); |
||
1407 | } while (empty($TTitle[$j]['children']) && $deep_level <= 10); // Exemple si un bloc Titre lvl 1 contient pas de sous lvl 2 mais directement un sous lvl 5 |
||
1408 | // Rappel on peux avoir jusqu'a 10 niveau de titre |
||
1409 | |||
1410 | $i++; |
||
1411 | $j++; |
||
1412 | } |
||
1413 | } |
||
1414 | |||
1415 | return $TTitle; |
||
1416 | } |
||
1417 | |||
1418 | function setDocTVA(&$pdf, &$object) { |
||
1419 | |||
1420 | $hidedetails = (int)GETPOST('hidedetails'); |
||
1421 | |||
1422 | if(empty($hidedetails)) return false; |
||
1423 | |||
1424 | // TODO can't add VAT to document without lines... :-/ |
||
1425 | |||
1426 | return true; |
||
1427 | } |
||
1428 | |||
1429 | function beforePDFCreation($parameters=array(), &$object, &$action) |
||
1430 | { |
||
1431 | /** |
||
1432 | * @var $pdf TCPDF |
||
1433 | */ |
||
1434 | global $pdf,$conf, $langs; |
||
1435 | |||
1436 | // var_dump($object->lines); |
||
1437 | dol_include_once('/subtotal/class/subtotal.class.php'); |
||
1438 | |||
1439 | foreach($parameters as $key=>$value) { |
||
1440 | ${$key} = $value; |
||
1441 | } |
||
1442 | |||
1443 | $this->setDocTVA($pdf, $object); |
||
1444 | |||
1445 | $this->add_numerotation($object); |
||
1446 | |||
1447 | |||
1448 | $hideInnerLines = (int)GETPOST('hideInnerLines'); |
||
1449 | $hidedetails = (int)GETPOST('hidedetails'); |
||
1450 | |||
1451 | if ($hideInnerLines) { // si c une ligne de titre |
||
1452 | $fk_parent_line=0; |
||
1453 | $TLines =array(); |
||
1454 | |||
1455 | $original_count=count($object->lines); |
||
1456 | $TTvas = array(); // tableau de tva |
||
1457 | |||
1458 | foreach($object->lines as $k=>&$line) |
||
1459 | { |
||
1460 | |||
1461 | if($line->product_type==9 && $line->rowid>0) |
||
1462 | { |
||
1463 | $fk_parent_line = $line->rowid; |
||
1464 | |||
1465 | // Fix tk7201 - si on cache le détail, la TVA est renseigné au niveau du sous-total, l'erreur c'est s'il y a plusieurs sous-totaux pour les même lignes, ça va faire la somme |
||
1466 | if(TSubtotal::isSubtotal($line)) |
||
1467 | { |
||
1468 | /*$total = $this->getTotalLineFromObject($object, $line, ''); |
||
1469 | |||
1470 | $line->total_ht = $total; |
||
1471 | $line->total = $total; |
||
1472 | */ |
||
1473 | list($total, $total_tva, $total_ttc, $TTotal_tva) = $this->getTotalLineFromObject($object, $line, '', 1); |
||
1474 | |||
1475 | if (TSubtotal::getNiveau($line) == 1) $line->TTotal_tva = $TTotal_tva; |
||
1476 | $line->total_ht = $total; |
||
1477 | $line->total_tva = $total_tva; |
||
1478 | $line->total = $line->total_ht; |
||
1479 | $line->total_ttc = $total_ttc; |
||
1480 | } |
||
1481 | |||
1482 | } |
||
1483 | |||
1484 | if ($hideInnerLines) |
||
1485 | { |
||
1486 | if(!empty($conf->global->SUBTOTAL_REPLACE_WITH_VAT_IF_HIDE_INNERLINES)) |
||
1487 | { |
||
1488 | if($line->tva_tx != '0.000' && $line->product_type!=9){ |
||
1489 | |||
1490 | // on remplit le tableau de tva pour substituer les lignes cachées |
||
1491 | $TTvas[$line->tva_tx]['total_tva'] += $line->total_tva; |
||
1492 | $TTvas[$line->tva_tx]['total_ht'] += $line->total_ht; |
||
1493 | $TTvas[$line->tva_tx]['total_ttc'] += $line->total_ttc; |
||
1494 | } |
||
1495 | if($line->product_type==9 && $line->rowid>0) |
||
1496 | { |
||
1497 | //Cas où je doit cacher les produits et afficher uniquement les sous-totaux avec les titres |
||
1498 | // génère des lignes d'affichage des montants HT soumis à tva |
||
1499 | $nbtva = count($TTvas); |
||
1500 | if(!empty($nbtva)){ |
||
1501 | foreach ($TTvas as $tx =>$val){ |
||
1502 | $l = clone $line; |
||
1503 | $l->product_type = 1; |
||
1504 | $l->special_code = ''; |
||
1505 | $l->qty = 1; |
||
1506 | $l->desc = $langs->trans('AmountBeforeTaxesSubjectToVATX%', $langs->transnoentitiesnoconv('VAT'), price($tx)); |
||
1507 | $l->tva_tx = $tx; |
||
1508 | $l->total_ht = $val['total_ht']; |
||
1509 | $l->total_tva = $val['total_tva']; |
||
1510 | $l->total = $line->total_ht; |
||
1511 | $l->total_ttc = $val['total_ttc']; |
||
1512 | $TLines[] = $l; |
||
1513 | array_shift($TTvas); |
||
1514 | } |
||
1515 | } |
||
1516 | |||
1517 | // ajoute la ligne de sous-total |
||
1518 | $TLines[] = $line; |
||
1519 | } |
||
1520 | } else { |
||
1521 | |||
1522 | if($line->product_type==9 && $line->rowid>0) |
||
1523 | { |
||
1524 | // ajoute la ligne de sous-total |
||
1525 | $TLines[] = $line; |
||
1526 | } |
||
1527 | } |
||
1528 | |||
1529 | |||
1530 | } |
||
1531 | elseif ($hidedetails) |
||
1532 | { |
||
1533 | $TLines[] = $line; //Cas où je cache uniquement les prix des produits |
||
1534 | } |
||
1535 | |||
1536 | if ($line->product_type != 9) { // jusqu'au prochain titre ou total |
||
1537 | //$line->fk_parent_line = $fk_parent_line; |
||
1538 | |||
1539 | } |
||
1540 | |||
1541 | /*if($hideTotal) { |
||
1542 | $line->total = 0; |
||
1543 | $line->subprice= 0; |
||
1544 | }*/ |
||
1545 | |||
1546 | } |
||
1547 | |||
1548 | // cas incongru où il y aurait des produits en dessous du dernier sous-total |
||
1549 | $nbtva = count($TTvas); |
||
1550 | if(!empty($nbtva) && $hideInnerLines && !empty($conf->global->SUBTOTAL_REPLACE_WITH_VAT_IF_HIDE_INNERLINES)) |
||
1551 | { |
||
1552 | foreach ($TTvas as $tx =>$val){ |
||
1553 | $l = clone $line; |
||
1554 | $l->product_type = 1; |
||
1555 | $l->special_code = ''; |
||
1556 | $l->qty = 1; |
||
1557 | $l->desc = $langs->trans('AmountBeforeTaxesSubjectToVATX%', $langs->transnoentitiesnoconv('VAT'), price($tx)); |
||
1558 | $l->tva_tx = $tx; |
||
1559 | $l->total_ht = $val['total_ht']; |
||
1560 | $l->total_tva = $val['total_tva']; |
||
1561 | $l->total = $line->total_ht; |
||
1562 | $l->total_ttc = $val['total_ttc']; |
||
1563 | $TLines[] = $l; |
||
1564 | array_shift($TTvas); |
||
1565 | } |
||
1566 | } |
||
1567 | |||
1568 | global $nblignes; |
||
1569 | $nblignes=count($TLines); |
||
1570 | |||
1571 | $object->lines = $TLines; |
||
1572 | |||
1573 | if($i>count($object->lines)) { |
||
1574 | $this->resprints = ''; |
||
1575 | return 0; |
||
1576 | } |
||
1577 | } |
||
1578 | |||
1579 | return 0; |
||
1580 | } |
||
1581 | |||
1582 | function pdf_writelinedesc($parameters=array(), &$object, &$action) |
||
1583 | { |
||
1584 | /** |
||
1585 | * @var $pdf TCPDF |
||
1586 | */ |
||
1587 | global $pdf,$conf; |
||
1588 | |||
1589 | foreach($parameters as $key=>$value) { |
||
1590 | ${$key} = $value; |
||
1591 | } |
||
1592 | |||
1593 | $hideInnerLines = (int)GETPOST('hideInnerLines'); |
||
1594 | $hidedetails = (int)GETPOST('hidedetails'); |
||
1595 | |||
1596 | if($this->isModSubtotalLine($parameters,$object) ){ |
||
1597 | |||
1598 | global $hideprices; |
||
1599 | |||
1600 | if(!empty($hideprices)) { |
||
1601 | foreach($object->lines as &$line) { |
||
1602 | if($line->fk_product_type!=9) $line->fk_parent_line = -1; |
||
1603 | } |
||
1604 | } |
||
1605 | |||
1606 | $line = &$object->lines[$i]; |
||
1607 | |||
1608 | if($line->info_bits>0) { // PAGE BREAK |
||
1609 | $pdf->addPage(); |
||
1610 | $posy = $pdf->GetY(); |
||
1611 | } |
||
1612 | |||
1613 | $label = $line->label; |
||
1614 | $description= !empty($line->desc) ? $outputlangs->convToOutputCharset($line->desc) : $outputlangs->convToOutputCharset($line->description); |
||
1615 | |||
1616 | if(empty($label)) { |
||
1617 | $label = $description; |
||
1618 | $description=''; |
||
1619 | } |
||
1620 | |||
1621 | if($line->qty>90) { |
||
1622 | |||
1623 | if ($conf->global->SUBTOTAL_USE_NEW_FORMAT) $label .= ' '.$this->getTitle($object, $line); |
||
1624 | |||
1625 | $pageBefore = $pdf->getPage(); |
||
1626 | $this->pdf_add_total($pdf,$object, $line, $label, $description,$posx, $posy, $w, $h); |
||
1627 | $pageAfter = $pdf->getPage(); |
||
1628 | |||
1629 | if($pageAfter>$pageBefore) { |
||
1630 | //print "ST $pageAfter>$pageBefore<br>"; |
||
1631 | $pdf->rollbackTransaction(true); |
||
1632 | $pdf->addPage('','', true); |
||
1633 | $posy = $pdf->GetY(); |
||
1634 | $this->pdf_add_total($pdf,$object, $line, $label, $description,$posx, $posy, $w, $h); |
||
1635 | $posy = $pdf->GetY(); |
||
1636 | //print 'add ST'.$pdf->getPage().'<br />'; |
||
1637 | } |
||
1638 | |||
1639 | $posy = $pdf->GetY(); |
||
1640 | return 1; |
||
1641 | } |
||
1642 | else if ($line->qty < 10) { |
||
1643 | $pageBefore = $pdf->getPage(); |
||
1644 | |||
1645 | $this->pdf_add_title($pdf,$object, $line, $label, $description,$posx, $posy, $w, $h); |
||
1646 | $pageAfter = $pdf->getPage(); |
||
1647 | |||
1648 | |||
1649 | /*if($pageAfter>$pageBefore) { |
||
1650 | print "T $pageAfter>$pageBefore<br>"; |
||
1651 | $pdf->rollbackTransaction(true); |
||
1652 | $pdf->addPage('','', true); |
||
1653 | print 'add T'.$pdf->getPage().' '.$line->rowid.' '.$pdf->GetY().' '.$posy.'<br />'; |
||
1654 | |||
1655 | $posy = $pdf->GetY(); |
||
1656 | $this->pdf_add_title($pdf,$object, $line, $label, $description,$posx, $posy, $w, $h); |
||
1657 | $posy = $pdf->GetY(); |
||
1658 | } |
||
1659 | */ |
||
1660 | $posy = $pdf->GetY(); |
||
1661 | return 1; |
||
1662 | } |
||
1663 | // if($line->rowid==47) exit; |
||
1664 | |||
1665 | return 0; |
||
1666 | } |
||
1667 | elseif (empty($object->lines[$parameters['i']])) |
||
1668 | { |
||
1669 | $this->resprints = -1; |
||
1670 | } |
||
1671 | |||
1672 | /* TODO je desactive parce que je comprends pas PH Style, mais à test |
||
1673 | else { |
||
1674 | |||
1675 | if($hideInnerLines) { |
||
1676 | $pdf->rollbackTransaction(true); |
||
1677 | } |
||
1678 | else { |
||
1679 | $labelproductservice=pdf_getlinedesc($object, $i, $outputlangs, $hideref, $hidedesc, $issupplierline); |
||
1680 | $pdf->writeHTMLCell($w, $h, $posx, $posy, $outputlangs->convToOutputCharset($labelproductservice), 0, 1); |
||
1681 | } |
||
1682 | |||
1683 | }*/ |
||
1684 | |||
1685 | |||
1686 | |||
1687 | } |
||
1688 | |||
1689 | /** |
||
1690 | * Permet de récupérer le titre lié au sous-total |
||
1691 | * |
||
1692 | * @return string |
||
1693 | */ |
||
1694 | function getTitle(&$object, &$currentLine) |
||
1695 | { |
||
1696 | $res = ''; |
||
1697 | |||
1698 | foreach ($object->lines as $line) |
||
1699 | { |
||
1700 | if ($line->id == $currentLine->id) break; |
||
1701 | |||
1702 | $qty_search = 100 - $currentLine->qty; |
||
1703 | |||
1704 | if ($line->product_type == 9 && $line->special_code == $this->module_number && $line->qty == $qty_search) |
||
1705 | { |
||
1706 | $res = ($line->label) ? $line->label : (($line->description) ? $line->description : $line->desc); |
||
1707 | } |
||
1708 | } |
||
1709 | |||
1710 | return $res; |
||
1711 | } |
||
1712 | |||
1713 | /** |
||
1714 | * @param $parameters array |
||
1715 | * @param $object CommonObject |
||
1716 | * @param $action string |
||
1717 | * @param $hookmanager HookManager |
||
1718 | * @return int |
||
1719 | */ |
||
1720 | function printObjectLine ($parameters, &$object, &$action, $hookmanager){ |
||
2138 | |||
2139 | } |
||
2140 | |||
2141 | |||
2142 | function addMoreActionsButtons($parameters, &$object, &$action, $hookmanager) { |
||
2143 | global $conf,$langs; |
||
2144 | |||
2145 | if ($object->statut == 0 && !empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && $action != 'editline') |
||
2146 | { |
||
2147 | |||
2148 | if($object->element == 'invoice_supplier' || $object->element == 'order_supplier') |
||
2149 | { |
||
2150 | foreach ($object->lines as $line) |
||
2151 | { |
||
2152 | // fetch optionals attributes and labels |
||
2153 | require_once(DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php'); |
||
2154 | $extrafields=new ExtraFields($this->db); |
||
2155 | $extralabels=$extrafields->fetch_name_optionals_label($object->table_element_line,true); |
||
2156 | $line->fetch_optionals($line->id,$extralabels); |
||
2157 | } |
||
2158 | } |
||
2159 | |||
2160 | $TSubNc = array(); |
||
2161 | foreach ($object->lines as &$l) |
||
2162 | { |
||
2163 | $TSubNc[$l->id] = (int) $l->array_options['options_subtotal_nc']; |
||
2164 | } |
||
2165 | |||
2166 | $form = new Form($db); |
||
2167 | ?> |
||
2168 | <script type="text/javascript"> |
||
2169 | $(function() { |
||
2170 | var subtotal_TSubNc = <?php echo json_encode($TSubNc); ?>; |
||
2171 | $("#tablelines tbody > tr").each(function(i, item) { |
||
2172 | if ($(item).children('.subtotal_nc').length == 0) |
||
2173 | { |
||
2174 | var id = $(item).attr('id'); |
||
2175 | |||
2176 | if ((typeof id != 'undefined' && id.indexOf('row-') >= 0) || $(item).hasClass('liste_titre')) |
||
2177 | { |
||
2178 | $(item).children('td:last-child').before('<td class="subtotal_nc"></td>'); |
||
2179 | |||
2180 | if ($(item).attr('rel') != 'subtotal' && typeof $(item).attr('id') != 'undefined') |
||
2181 | { |
||
2182 | var idSplit = $(item).attr('id').split('-'); |
||
2183 | $(item).children('td.subtotal_nc').append($('<input type="checkbox" id="subtotal_nc-'+idSplit[1]+'" class="subtotal_nc_chkbx" data-lineid="'+idSplit[1]+'" value="1" '+(typeof subtotal_TSubNc[idSplit[1]] != 'undefined' && subtotal_TSubNc[idSplit[1]] == 1 ? 'checked="checked"' : '')+' />')); |
||
2184 | } |
||
2185 | } |
||
2186 | else |
||
2187 | { |
||
2188 | $(item).append('<td class="subtotal_nc"></td>'); |
||
2189 | } |
||
2190 | } |
||
2191 | }); |
||
2192 | |||
2193 | $('#tablelines tbody tr.liste_titre:first .subtotal_nc').html(<?php echo json_encode($form->textwithtooltip($langs->trans('subtotal_nc_title'), $langs->trans('subtotal_nc_title_help'))); ?>); |
||
2194 | |||
2195 | function callAjaxUpdateLineNC(set, lineid, subtotal_nc) |
||
2196 | { |
||
2197 | $.ajax({ |
||
2198 | url: '<?php echo dol_buildpath('/subtotal/script/interface.php', 1); ?>' |
||
2199 | ,type: 'POST' |
||
2200 | ,data: { |
||
2201 | json:1 |
||
2202 | ,set: set |
||
2203 | ,element: '<?php echo $object->element; ?>' |
||
2204 | ,elementid: <?php echo (int) $object->id; ?> |
||
2205 | ,lineid: lineid |
||
2206 | ,subtotal_nc: subtotal_nc |
||
2207 | } |
||
2208 | }).done(function(response) { |
||
2209 | window.location.href = window.location.pathname + '?id=<?php echo $object->id; ?>&page_y=' + window.pageYOffset; |
||
2210 | }); |
||
2211 | } |
||
2212 | |||
2213 | $(".subtotal_nc_chkbx").change(function(event) { |
||
2214 | var lineid = $(this).data('lineid'); |
||
2215 | var subtotal_nc = 0 | $(this).is(':checked'); // Renvoi 0 ou 1 |
||
2216 | |||
2217 | callAjaxUpdateLineNC('updateLineNC', lineid, subtotal_nc); |
||
2218 | }); |
||
2219 | |||
2220 | }); |
||
2221 | |||
2222 | </script> |
||
2223 | <?php |
||
2224 | } |
||
2225 | |||
2226 | $this->_ajax_block_order_js($object); |
||
2227 | } |
||
2228 | |||
2229 | function afterPDFCreation($parameters, &$pdf, &$action, $hookmanager) |
||
2240 | } |
||
2241 | } |
||
2242 | } |
||
2243 | |||
2244 | // HTML 5 data for js |
||
2245 | private function _getHtmlData($parameters, &$object, &$action, $hookmanager) |
||
2246 | { |
||
2247 | dol_include_once('/subtotal/class/subtotal.class.php'); |
||
2248 | |||
2249 | $line = &$parameters['line']; |
||
2250 | |||
2251 | $ThtmlData['data-id'] = $line->id; |
||
2252 | $ThtmlData['data-product_type'] = $line->product_type; |
||
2253 | $ThtmlData['data-qty'] = 0; //$line->qty; |
||
2254 | $ThtmlData['data-level'] = TSubtotal::getNiveau($line); |
||
2255 | |||
2256 | if(TSubtotal::isTitle($line)){ |
||
2257 | $ThtmlData['data-issubtotal'] = 'title'; |
||
2258 | }elseif(TSubtotal::isSubtotal($line)){ |
||
2259 | $ThtmlData['data-issubtotal'] = 'subtotal'; |
||
2260 | } |
||
2261 | else{ |
||
2262 | $ThtmlData['data-issubtotal'] = 'freetext'; |
||
2263 | } |
||
2264 | |||
2265 | |||
2266 | // Change or add data from hooks |
||
2267 | $parameters = array_replace($parameters , array( 'ThtmlData' => $ThtmlData ) ); |
||
2268 | |||
2269 | // hook |
||
2270 | $reshook = $hookmanager->executeHooks('subtotalLineHtmlData',$parameters,$object,$action); // Note that $action and $object may have been modified by hook |
||
2271 | if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors'); |
||
2272 | if ($reshook>0) |
||
2273 | { |
||
2274 | $ThtmlData = $hookmanager->resArray; |
||
2275 | } |
||
2276 | |||
2277 | return $this->implodeHtmlData($ThtmlData); |
||
2278 | |||
2279 | } |
||
2280 | |||
2281 | |||
2282 | function implodeHtmlData($ThtmlData = array()) |
||
2296 | } |
||
2297 | |||
2298 | function _ajax_block_order_js($object) |
||
2299 | { |
||
2300 | global $conf,$tagidfortablednd,$filepath,$langs; |
||
2301 | |||
2302 | /* |
||
2303 | * this part of js is base on dolibarr htdocs/core/tpl/ajaxrow.tpl.php |
||
2304 | * for compatibility reasons we don't use tableDnD but jquery sortable |
||
2305 | */ |
||
2306 | |||
2409 | function getSubtotalTitleChilds(item) |
||
2410 | { |
||
2411 | var TcurrentChilds = []; // = JSON.parse(item.attr('data-childrens')); |
||
2412 | var level = item.data('level'); |
||
2413 | |||
2414 | var indexOfFirstSubtotal = -1; |
||
2415 | var indexOfFirstTitle = -1; |
||
2416 | |||
2417 | item.nextAll('[id^="row-"]').each(function(index){ |
||
2479 |
Adding explicit visibility (
private
,protected
, orpublic
) is generally recommend to communicate to other developers how, and from where this method is intended to be used.