@@ -66,7 +66,7 @@ |
||
66 | 66 | $coldisplay++; |
67 | 67 | ?> |
68 | 68 | <td class="nobottom linecolref"> |
69 | - <?php $coldisplay++; if ($nolinesbefore) { echo $langs->trans('Ref') . ': '; } ?> |
|
69 | + <?php $coldisplay++; if ($nolinesbefore) { echo $langs->trans('Ref').': '; } ?> |
|
70 | 70 | <input type="text" name="line_ref" id="line_ref" class="flat" value="<?php echo (GETPOSTISSET("line_ref") ? GETPOST("line_ref", 'alpha', 2) : ''); ?>" autofocus> |
71 | 71 | <?php |
72 | 72 | if (is_object($hookmanager)) { |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | /** |
79 | 79 | * @var array Array with all fields and their property. Do not use it as a static var. It may be modified by constructor. |
80 | 80 | */ |
81 | - public $fields=array( |
|
81 | + public $fields = array( |
|
82 | 82 | 'rowid' => array('type'=>'integer', 'label'=>'TechnicalID', 'enabled'=>'1', 'position'=>1, 'notnull'=>1, 'visible'=>0, 'noteditable'=>'1', 'index'=>1, 'css'=>'left', 'comment'=>"Id"), |
83 | 83 | 'fk_product_attribute' => array('type'=>'integer:ProductAttribute:variants/class/ProductAttribute.class.php', 'label'=>'ProductAttribute', 'enabled'=>1, 'visible'=>0, 'position'=>10, 'notnull'=>1, 'index'=>1,), |
84 | 84 | 'ref' => array('type'=>'varchar(255)', 'label'=>'Ref', 'visible'=>1, 'enabled'=>1, 'position'=>20, 'notnull'=>1, 'index'=>1, 'searchall'=>1, 'comment'=>"Reference of object", 'css'=>''), |
@@ -160,32 +160,32 @@ discard block |
||
160 | 160 | $error++; |
161 | 161 | } |
162 | 162 | if ($error) { |
163 | - dol_syslog(__METHOD__ . ' ' . $this->errorsToString(), LOG_ERR); |
|
163 | + dol_syslog(__METHOD__.' '.$this->errorsToString(), LOG_ERR); |
|
164 | 164 | return -1; |
165 | 165 | } |
166 | 166 | |
167 | 167 | $this->db->begin(); |
168 | 168 | |
169 | - $sql = "INSERT INTO " . MAIN_DB_PREFIX . $this->table_element . " ("; |
|
169 | + $sql = "INSERT INTO ".MAIN_DB_PREFIX.$this->table_element." ("; |
|
170 | 170 | $sql .= " fk_product_attribute, ref, value, entity, position"; |
171 | 171 | $sql .= ")"; |
172 | 172 | $sql .= " VALUES ("; |
173 | - $sql .= " " . ((int) $this->fk_product_attribute); |
|
174 | - $sql .= ", '" . $this->db->escape($this->ref) . "'"; |
|
175 | - $sql .= ", '" . $this->db->escape($this->value) . "'"; |
|
176 | - $sql .= ", " . ((int) $this->entity); |
|
177 | - $sql .= ", " . ((int) $this->position); |
|
173 | + $sql .= " ".((int) $this->fk_product_attribute); |
|
174 | + $sql .= ", '".$this->db->escape($this->ref)."'"; |
|
175 | + $sql .= ", '".$this->db->escape($this->value)."'"; |
|
176 | + $sql .= ", ".((int) $this->entity); |
|
177 | + $sql .= ", ".((int) $this->position); |
|
178 | 178 | $sql .= ")"; |
179 | 179 | |
180 | 180 | dol_syslog(__METHOD__, LOG_DEBUG); |
181 | 181 | $resql = $this->db->query($sql); |
182 | 182 | if (!$resql) { |
183 | - $this->errors[] = "Error " . $this->db->lasterror(); |
|
183 | + $this->errors[] = "Error ".$this->db->lasterror(); |
|
184 | 184 | $error++; |
185 | 185 | } |
186 | 186 | |
187 | 187 | if (!$error) { |
188 | - $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX . $this->table_element); |
|
188 | + $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX.$this->table_element); |
|
189 | 189 | } |
190 | 190 | |
191 | 191 | if (!$error && !$notrigger) { |
@@ -226,20 +226,20 @@ discard block |
||
226 | 226 | $error++; |
227 | 227 | } |
228 | 228 | if ($error) { |
229 | - dol_syslog(__METHOD__ . ' ' . $this->errorsToString(), LOG_ERR); |
|
229 | + dol_syslog(__METHOD__.' '.$this->errorsToString(), LOG_ERR); |
|
230 | 230 | return -1; |
231 | 231 | } |
232 | 232 | |
233 | 233 | $sql = "SELECT rowid, fk_product_attribute, ref, value"; |
234 | - $sql .= " FROM " . MAIN_DB_PREFIX . $this->table_element; |
|
235 | - $sql .= " WHERE rowid = " . ((int) $id); |
|
236 | - $sql .= " AND entity IN (" . getEntity('product') . ")"; |
|
234 | + $sql .= " FROM ".MAIN_DB_PREFIX.$this->table_element; |
|
235 | + $sql .= " WHERE rowid = ".((int) $id); |
|
236 | + $sql .= " AND entity IN (".getEntity('product').")"; |
|
237 | 237 | |
238 | 238 | dol_syslog(__METHOD__, LOG_DEBUG); |
239 | 239 | $resql = $this->db->query($sql); |
240 | 240 | if (!$resql) { |
241 | - $this->errors[] = "Error " . $this->db->lasterror(); |
|
242 | - dol_syslog(__METHOD__ . ' ' . $this->errorsToString(), LOG_ERR); |
|
241 | + $this->errors[] = "Error ".$this->db->lasterror(); |
|
242 | + dol_syslog(__METHOD__.' '.$this->errorsToString(), LOG_ERR); |
|
243 | 243 | return -1; |
244 | 244 | } |
245 | 245 | |
@@ -274,15 +274,15 @@ discard block |
||
274 | 274 | $sql .= "DISTINCT "; |
275 | 275 | } |
276 | 276 | |
277 | - $sql .= "v.fk_product_attribute, v.rowid, v.ref, v.value FROM " . MAIN_DB_PREFIX . "product_attribute_value v "; |
|
277 | + $sql .= "v.fk_product_attribute, v.rowid, v.ref, v.value FROM ".MAIN_DB_PREFIX."product_attribute_value v "; |
|
278 | 278 | |
279 | 279 | if ($only_used) { |
280 | - $sql .= "LEFT JOIN " . MAIN_DB_PREFIX . "product_attribute_combination2val c2v ON c2v.fk_prod_attr_val = v.rowid "; |
|
281 | - $sql .= "LEFT JOIN " . MAIN_DB_PREFIX . "product_attribute_combination c ON c.rowid = c2v.fk_prod_combination "; |
|
282 | - $sql .= "LEFT JOIN " . MAIN_DB_PREFIX . "product p ON p.rowid = c.fk_product_child "; |
|
280 | + $sql .= "LEFT JOIN ".MAIN_DB_PREFIX."product_attribute_combination2val c2v ON c2v.fk_prod_attr_val = v.rowid "; |
|
281 | + $sql .= "LEFT JOIN ".MAIN_DB_PREFIX."product_attribute_combination c ON c.rowid = c2v.fk_prod_combination "; |
|
282 | + $sql .= "LEFT JOIN ".MAIN_DB_PREFIX."product p ON p.rowid = c.fk_product_child "; |
|
283 | 283 | } |
284 | 284 | |
285 | - $sql .= "WHERE v.fk_product_attribute = " . ((int) $prodattr_id); |
|
285 | + $sql .= "WHERE v.fk_product_attribute = ".((int) $prodattr_id); |
|
286 | 286 | |
287 | 287 | if ($only_used) { |
288 | 288 | $sql .= " AND c2v.rowid IS NOT NULL AND p.tosell = 1"; |
@@ -334,25 +334,25 @@ discard block |
||
334 | 334 | $error++; |
335 | 335 | } |
336 | 336 | if ($error) { |
337 | - dol_syslog(__METHOD__ . ' ' . $this->errorsToString(), LOG_ERR); |
|
337 | + dol_syslog(__METHOD__.' '.$this->errorsToString(), LOG_ERR); |
|
338 | 338 | return -1; |
339 | 339 | } |
340 | 340 | |
341 | 341 | $this->db->begin(); |
342 | 342 | |
343 | - $sql = "UPDATE " . MAIN_DB_PREFIX . $this->table_element . " SET"; |
|
343 | + $sql = "UPDATE ".MAIN_DB_PREFIX.$this->table_element." SET"; |
|
344 | 344 | |
345 | - $sql .= " fk_product_attribute = " . ((int) $this->fk_product_attribute); |
|
346 | - $sql .= ", ref = '" . $this->db->escape($this->ref) . "'"; |
|
347 | - $sql .= ", value = '" . $this->db->escape($this->value) . "'"; |
|
348 | - $sql .= ", position = " . ((int) $this->position); |
|
345 | + $sql .= " fk_product_attribute = ".((int) $this->fk_product_attribute); |
|
346 | + $sql .= ", ref = '".$this->db->escape($this->ref)."'"; |
|
347 | + $sql .= ", value = '".$this->db->escape($this->value)."'"; |
|
348 | + $sql .= ", position = ".((int) $this->position); |
|
349 | 349 | |
350 | - $sql .= " WHERE rowid = " . ((int) $this->id); |
|
350 | + $sql .= " WHERE rowid = ".((int) $this->id); |
|
351 | 351 | |
352 | 352 | dol_syslog(__METHOD__, LOG_DEBUG); |
353 | 353 | $resql = $this->db->query($sql); |
354 | 354 | if (!$resql) { |
355 | - $this->errors[] = "Error " . $this->db->lasterror(); |
|
355 | + $this->errors[] = "Error ".$this->db->lasterror(); |
|
356 | 356 | $error++; |
357 | 357 | } |
358 | 358 | |
@@ -395,7 +395,7 @@ discard block |
||
395 | 395 | $error++; |
396 | 396 | } |
397 | 397 | if ($error) { |
398 | - dol_syslog(__METHOD__ . ' ' . $this->errorsToString(), LOG_ERR); |
|
398 | + dol_syslog(__METHOD__.' '.$this->errorsToString(), LOG_ERR); |
|
399 | 399 | return -1; |
400 | 400 | } |
401 | 401 | |
@@ -419,12 +419,12 @@ discard block |
||
419 | 419 | } |
420 | 420 | |
421 | 421 | if (!$error) { |
422 | - $sql = "DELETE FROM " . MAIN_DB_PREFIX . $this->table_element . " WHERE rowid = " . ((int) $this->id); |
|
422 | + $sql = "DELETE FROM ".MAIN_DB_PREFIX.$this->table_element." WHERE rowid = ".((int) $this->id); |
|
423 | 423 | |
424 | 424 | dol_syslog(__METHOD__, LOG_DEBUG); |
425 | 425 | $resql = $this->db->query($sql); |
426 | 426 | if (!$resql) { |
427 | - $this->errors[] = "Error " . $this->db->lasterror(); |
|
427 | + $this->errors[] = "Error ".$this->db->lasterror(); |
|
428 | 428 | $error++; |
429 | 429 | } |
430 | 430 | } |
@@ -457,16 +457,16 @@ discard block |
||
457 | 457 | $error++; |
458 | 458 | } |
459 | 459 | if ($error) { |
460 | - dol_syslog(__METHOD__ . ' ' . $this->errorsToString(), LOG_ERR); |
|
460 | + dol_syslog(__METHOD__.' '.$this->errorsToString(), LOG_ERR); |
|
461 | 461 | return -1; |
462 | 462 | } |
463 | 463 | |
464 | - $sql = "SELECT COUNT(*) AS nb FROM " . MAIN_DB_PREFIX . "product_attribute_combination2val WHERE fk_prod_attr_val = " . ((int) $this->id); |
|
464 | + $sql = "SELECT COUNT(*) AS nb FROM ".MAIN_DB_PREFIX."product_attribute_combination2val WHERE fk_prod_attr_val = ".((int) $this->id); |
|
465 | 465 | |
466 | 466 | dol_syslog(__METHOD__, LOG_DEBUG); |
467 | 467 | $resql = $this->db->query($sql); |
468 | 468 | if (!$resql) { |
469 | - $this->errors[] = "Error " . $this->db->lasterror(); |
|
469 | + $this->errors[] = "Error ".$this->db->lasterror(); |
|
470 | 470 | return -1; |
471 | 471 | } |
472 | 472 |
@@ -57,7 +57,9 @@ |
||
57 | 57 | |
58 | 58 | // Category |
59 | 59 | $selected_cat = (int) GETPOST('search_categ', 'int'); |
60 | -if ($selected_cat == -1) $selected_cat = ''; |
|
60 | +if ($selected_cat == -1) { |
|
61 | + $selected_cat = ''; |
|
62 | +} |
|
61 | 63 | $subcat = false; |
62 | 64 | if (GETPOST('subcat', 'alpha') === 'yes') { |
63 | 65 | $subcat = true; |
@@ -99,8 +99,8 @@ discard block |
||
99 | 99 | $month_current = dol_print_date(dol_now(), '%m'); |
100 | 100 | $year_start = $year; |
101 | 101 | } |
102 | -$date_start = dol_mktime(0, 0, 0, GETPOST("date_startmonth"), GETPOST("date_startday"), GETPOST("date_startyear"), 'tzserver'); // We use timezone of server so report is same from everywhere |
|
103 | -$date_end = dol_mktime(23, 59, 59, GETPOST("date_endmonth"), GETPOST("date_endday"), GETPOST("date_endyear"), 'tzserver'); // We use timezone of server so report is same from everywhere |
|
102 | +$date_start = dol_mktime(0, 0, 0, GETPOST("date_startmonth"), GETPOST("date_startday"), GETPOST("date_startyear"), 'tzserver'); // We use timezone of server so report is same from everywhere |
|
103 | +$date_end = dol_mktime(23, 59, 59, GETPOST("date_endmonth"), GETPOST("date_endday"), GETPOST("date_endyear"), 'tzserver'); // We use timezone of server so report is same from everywhere |
|
104 | 104 | // Quarter |
105 | 105 | if (empty($date_start) || empty($date_end)) { // We define date_start and date_end |
106 | 106 | $q = GETPOST("q", "int") ?GETPOST("q", "int") : 0; |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | $headerparams = array_merge($commonparams, $headerparams); |
180 | 180 | $tableparams = array_merge($commonparams, $tableparams); |
181 | 181 | |
182 | -$paramslink=""; |
|
182 | +$paramslink = ""; |
|
183 | 183 | foreach ($allparams as $key => $value) { |
184 | 184 | $paramslink .= '&'.$key.'='.$value; |
185 | 185 | } |
@@ -203,8 +203,8 @@ discard block |
||
203 | 203 | $modecompta = "RECETTES-DEPENSES"; |
204 | 204 | } |
205 | 205 | |
206 | -$exportlink=""; |
|
207 | -$namelink=""; |
|
206 | +$exportlink = ""; |
|
207 | +$namelink = ""; |
|
208 | 208 | |
209 | 209 | // Show report header |
210 | 210 | if ($modecompta == "CREANCES-DETTES") { |
@@ -289,7 +289,7 @@ |
||
289 | 289 | // phpcs:enable |
290 | 290 | $this->_Metric = $format['metric']; |
291 | 291 | $this->_Avery_Name = $format['name']; |
292 | - $this->_Avery_Code = empty($format['code'])?'':$format['code']; |
|
292 | + $this->_Avery_Code = empty($format['code']) ? '' : $format['code']; |
|
293 | 293 | $this->_Margin_Left = $this->convertMetric($format['marginLeft'], $this->_Metric, $this->_Metric_Doc); |
294 | 294 | $this->_Margin_Top = $this->convertMetric($format['marginTop'], $this->_Metric, $this->_Metric_Doc); |
295 | 295 | $this->_X_Space = $this->convertMetric($format['SpaceX'], $this->_Metric, $this->_Metric_Doc); |
@@ -813,7 +813,9 @@ |
||
813 | 813 | |
814 | 814 | // Complete vat rate with code |
815 | 815 | $vatrate = $newinvoiceline->tva_tx; |
816 | - if ($newinvoiceline->vat_src_code && ! preg_match('/\(.*\)/', $vatrate)) $vatrate.=' ('.$newinvoiceline->vat_src_code.')'; |
|
816 | + if ($newinvoiceline->vat_src_code && ! preg_match('/\(.*\)/', $vatrate)) { |
|
817 | + $vatrate.=' ('.$newinvoiceline->vat_src_code.')'; |
|
818 | + } |
|
817 | 819 | |
818 | 820 | $newinvoiceline->fk_parent_line = $fk_parent_line; |
819 | 821 |
@@ -470,7 +470,7 @@ discard block |
||
470 | 470 | $this->mode_reglement_id = 0; |
471 | 471 | } |
472 | 472 | $this->status = self::STATUS_DRAFT; |
473 | - $this->statut = self::STATUS_DRAFT; // deprecated |
|
473 | + $this->statut = self::STATUS_DRAFT; // deprecated |
|
474 | 474 | |
475 | 475 | if (!empty($this->multicurrency_code)) { |
476 | 476 | // Multicurrency (test on $this->multicurrency_tx because we should take the default rate of multicurrency_code only if not using original rate) |
@@ -551,7 +551,7 @@ discard block |
||
551 | 551 | |
552 | 552 | // Fields always coming from template |
553 | 553 | $this->remise_absolue = $_facrec->remise_absolue; |
554 | - $this->remise_percent = $_facrec->remise_percent; // TODO deprecated |
|
554 | + $this->remise_percent = $_facrec->remise_percent; // TODO deprecated |
|
555 | 555 | $this->fk_incoterms = $_facrec->fk_incoterms; |
556 | 556 | $this->location_incoterms = $_facrec->location_incoterms; |
557 | 557 | |
@@ -571,7 +571,7 @@ discard block |
||
571 | 571 | $this->mode_reglement_id = 0; |
572 | 572 | } |
573 | 573 | $this->status = self::STATUS_DRAFT; |
574 | - $this->statut = self::STATUS_DRAFT; // deprecated |
|
574 | + $this->statut = self::STATUS_DRAFT; // deprecated |
|
575 | 575 | |
576 | 576 | $this->linked_objects = $_facrec->linkedObjectsIds; |
577 | 577 | // We do not add link to template invoice or next invoice will be linked to all generated invoices |
@@ -654,7 +654,7 @@ discard block |
||
654 | 654 | $sql .= ", fk_soc"; |
655 | 655 | $sql .= ", datec"; |
656 | 656 | $sql .= ", remise_absolue"; |
657 | - $sql .= ", remise_percent"; // TODO deprecated |
|
657 | + $sql .= ", remise_percent"; // TODO deprecated |
|
658 | 658 | $sql .= ", datef"; |
659 | 659 | $sql .= ", date_pointoftax"; |
660 | 660 | $sql .= ", note_private"; |
@@ -681,7 +681,7 @@ discard block |
||
681 | 681 | $sql .= ", ".((int) $socid); |
682 | 682 | $sql .= ", '".$this->db->idate($now)."'"; |
683 | 683 | $sql .= ", ".($this->remise_absolue > 0 ? $this->remise_absolue : 'NULL'); |
684 | - $sql .= ", ".($this->remise_percent > 0 ? $this->remise_percent : 'NULL'); // TODO deprecated |
|
684 | + $sql .= ", ".($this->remise_percent > 0 ? $this->remise_percent : 'NULL'); // TODO deprecated |
|
685 | 685 | $sql .= ", '".$this->db->idate($this->date)."'"; |
686 | 686 | $sql .= ", ".(empty($this->date_pointoftax) ? "null" : "'".$this->db->idate($this->date_pointoftax)."'"); |
687 | 687 | $sql .= ", ".($this->note_private ? "'".$this->db->escape($this->note_private)."'" : "null"); |
@@ -820,7 +820,7 @@ discard block |
||
820 | 820 | |
821 | 821 | // Complete vat rate with code |
822 | 822 | $vatrate = $newinvoiceline->tva_tx; |
823 | - if ($newinvoiceline->vat_src_code && ! preg_match('/\(.*\)/', $vatrate)) $vatrate.=' ('.$newinvoiceline->vat_src_code.')'; |
|
823 | + if ($newinvoiceline->vat_src_code && !preg_match('/\(.*\)/', $vatrate)) $vatrate .= ' ('.$newinvoiceline->vat_src_code.')'; |
|
824 | 824 | |
825 | 825 | $newinvoiceline->fk_parent_line = $fk_parent_line; |
826 | 826 | |
@@ -1050,7 +1050,7 @@ discard block |
||
1050 | 1050 | $buyprice, |
1051 | 1051 | $_facrec->lines[$i]->label, |
1052 | 1052 | empty($_facrec->lines[$i]->array_options) ?null:$_facrec->lines[$i]->array_options, |
1053 | - 100, // situation percent is undefined on recurring invoice lines |
|
1053 | + 100, // situation percent is undefined on recurring invoice lines |
|
1054 | 1054 | '', |
1055 | 1055 | $_facrec->lines[$i]->fk_unit, |
1056 | 1056 | $_facrec->lines[$i]->multicurrency_subprice, |
@@ -1146,7 +1146,7 @@ discard block |
||
1146 | 1146 | |
1147 | 1147 | $facture->fk_facture_source = $this->fk_facture_source; |
1148 | 1148 | $facture->type = $this->type; |
1149 | - $facture->subtype = $this->subtype; |
|
1149 | + $facture->subtype = $this->subtype; |
|
1150 | 1150 | $facture->socid = $this->socid; |
1151 | 1151 | $facture->date = $this->date; |
1152 | 1152 | $facture->date_pointoftax = $this->date_pointoftax; |
@@ -1158,11 +1158,11 @@ discard block |
||
1158 | 1158 | $facture->cond_reglement_id = $this->cond_reglement_id; |
1159 | 1159 | $facture->mode_reglement_id = $this->mode_reglement_id; |
1160 | 1160 | $facture->remise_absolue = $this->remise_absolue; |
1161 | - $facture->remise_percent = $this->remise_percent; // TODO deprecated |
|
1161 | + $facture->remise_percent = $this->remise_percent; // TODO deprecated |
|
1162 | 1162 | |
1163 | 1163 | $facture->origin = $this->origin; |
1164 | 1164 | $facture->origin_id = $this->origin_id; |
1165 | - $facture->fk_account = $this->fk_account; |
|
1165 | + $facture->fk_account = $this->fk_account; |
|
1166 | 1166 | |
1167 | 1167 | $facture->lines = $this->lines; // Array of lines of invoice |
1168 | 1168 | $facture->situation_counter = $this->situation_counter; |
@@ -1633,7 +1633,7 @@ discard block |
||
1633 | 1633 | { |
1634 | 1634 | global $conf, $langs, $hookmanager, $action; |
1635 | 1635 | |
1636 | - if (! in_array($origin->element, array('propal', 'commande'))) { |
|
1636 | + if (!in_array($origin->element, array('propal', 'commande'))) { |
|
1637 | 1637 | $origin->error = 'ErrorCanOnlyAutomaticallyGenerateADepositFromProposalOrOrder'; |
1638 | 1638 | return null; |
1639 | 1639 | } |
@@ -1643,7 +1643,7 @@ discard block |
||
1643 | 1643 | return null; |
1644 | 1644 | } |
1645 | 1645 | |
1646 | - require_once DOL_DOCUMENT_ROOT . '/core/lib/date.lib.php'; |
|
1646 | + require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php'; |
|
1647 | 1647 | |
1648 | 1648 | if ($date > (dol_get_last_hour(dol_now('tzuserrel')) + (empty($conf->global->INVOICE_MAX_FUTURE_DELAY) ? 0 : $conf->global->INVOICE_MAX_FUTURE_DELAY))) { |
1649 | 1649 | $origin->error = 'ErrorDateIsInFuture'; |
@@ -1687,7 +1687,7 @@ discard block |
||
1687 | 1687 | $deposit->pos_source = $origin->pos_source; |
1688 | 1688 | $deposit->model_pdf = 'crabe'; |
1689 | 1689 | |
1690 | - $modelByTypeConfName = 'FACTURE_ADDON_PDF_' . $deposit->type; |
|
1690 | + $modelByTypeConfName = 'FACTURE_ADDON_PDF_'.$deposit->type; |
|
1691 | 1691 | |
1692 | 1692 | if (!empty($conf->global->$modelByTypeConfName)) { |
1693 | 1693 | $deposit->model_pdf = $conf->global->$modelByTypeConfName; |
@@ -1742,10 +1742,10 @@ discard block |
||
1742 | 1742 | continue; |
1743 | 1743 | } |
1744 | 1744 | $TTotalByTva[$line->tva_tx] += $line->total_ttc; |
1745 | - $descriptions[$line->tva_tx] .= '<li>' . (!empty($line->product_ref) ? $line->product_ref . ' - ' : ''); |
|
1746 | - $descriptions[$line->tva_tx] .= (!empty($line->product_label) ? $line->product_label . ' - ' : ''); |
|
1747 | - $descriptions[$line->tva_tx] .= $langs->trans('Qty') . ' : ' . $line->qty; |
|
1748 | - $descriptions[$line->tva_tx] .= ' - ' . $langs->trans('TotalHT') . ' : ' . price($line->total_ht) . '</li>'; |
|
1745 | + $descriptions[$line->tva_tx] .= '<li>'.(!empty($line->product_ref) ? $line->product_ref.' - ' : ''); |
|
1746 | + $descriptions[$line->tva_tx] .= (!empty($line->product_label) ? $line->product_label.' - ' : ''); |
|
1747 | + $descriptions[$line->tva_tx] .= $langs->trans('Qty').' : '.$line->qty; |
|
1748 | + $descriptions[$line->tva_tx] .= ' - '.$langs->trans('TotalHT').' : '.price($line->total_ht).'</li>'; |
|
1749 | 1749 | } |
1750 | 1750 | |
1751 | 1751 | foreach ($TTotalByTva as $tva => &$total) { |
@@ -1769,10 +1769,10 @@ discard block |
||
1769 | 1769 | $totalamount += $lines[$i]->total_ht; // Fixme : is it not for the customer ? Shouldn't we take total_ttc ? |
1770 | 1770 | $tva_tx = $lines[$i]->tva_tx; |
1771 | 1771 | $amountdeposit[$tva_tx] += ($lines[$i]->total_ht * $origin->deposit_percent) / 100; |
1772 | - $descriptions[$tva_tx] .= '<li>' . (!empty($lines[$i]->product_ref) ? $lines[$i]->product_ref . ' - ' : ''); |
|
1773 | - $descriptions[$tva_tx] .= (!empty($lines[$i]->product_label) ? $lines[$i]->product_label . ' - ' : ''); |
|
1774 | - $descriptions[$tva_tx] .= $langs->trans('Qty') . ' : ' . $lines[$i]->qty; |
|
1775 | - $descriptions[$tva_tx] .= ' - ' . $langs->trans('TotalHT') . ' : ' . price($lines[$i]->total_ht) . '</li>'; |
|
1772 | + $descriptions[$tva_tx] .= '<li>'.(!empty($lines[$i]->product_ref) ? $lines[$i]->product_ref.' - ' : ''); |
|
1773 | + $descriptions[$tva_tx] .= (!empty($lines[$i]->product_label) ? $lines[$i]->product_label.' - ' : ''); |
|
1774 | + $descriptions[$tva_tx] .= $langs->trans('Qty').' : '.$lines[$i]->qty; |
|
1775 | + $descriptions[$tva_tx] .= ' - '.$langs->trans('TotalHT').' : '.price($lines[$i]->total_ht).'</li>'; |
|
1776 | 1776 | } |
1777 | 1777 | |
1778 | 1778 | if ($totalamount == 0) { |
@@ -1787,11 +1787,11 @@ discard block |
||
1787 | 1787 | continue; |
1788 | 1788 | } |
1789 | 1789 | |
1790 | - $descline = '(DEPOSIT) ('. $origin->deposit_percent .'%) - '.$origin->ref; |
|
1790 | + $descline = '(DEPOSIT) ('.$origin->deposit_percent.'%) - '.$origin->ref; |
|
1791 | 1791 | |
1792 | 1792 | // Hidden conf |
1793 | 1793 | if (!empty($conf->global->INVOICE_DEPOSIT_VARIABLE_MODE_DETAIL_LINES_IN_DESCRIPTION) && !empty($descriptions[$tva])) { |
1794 | - $descline .= '<ul>' . $descriptions[$tva] . '</ul>'; |
|
1794 | + $descline .= '<ul>'.$descriptions[$tva].'</ul>'; |
|
1795 | 1795 | } |
1796 | 1796 | |
1797 | 1797 | $addlineResult = $deposit->addline( |
@@ -2053,7 +2053,7 @@ discard block |
||
2053 | 2053 | $label = $langs->trans("Invoice"); |
2054 | 2054 | $linkclose .= ' alt="'.dol_escape_htmltag($label, 1).'"'; |
2055 | 2055 | } |
2056 | - $linkclose .= ($label ? ' title="'.dol_escape_htmltag($label, 1).'"' : ' title="tocomplete"'); |
|
2056 | + $linkclose .= ($label ? ' title="'.dol_escape_htmltag($label, 1).'"' : ' title="tocomplete"'); |
|
2057 | 2057 | $linkclose .= $dataparams.' class="'.$classfortooltip.'"'; |
2058 | 2058 | } |
2059 | 2059 | |
@@ -2165,9 +2165,9 @@ discard block |
||
2165 | 2165 | $this->id = $obj->rowid; |
2166 | 2166 | $this->entity = $obj->entity; |
2167 | 2167 | |
2168 | - $this->ref = $obj->ref; |
|
2169 | - $this->ref_client = $obj->ref_client; |
|
2170 | - $this->ref_customer = $obj->ref_client; |
|
2168 | + $this->ref = $obj->ref; |
|
2169 | + $this->ref_client = $obj->ref_client; |
|
2170 | + $this->ref_customer = $obj->ref_client; |
|
2171 | 2171 | $this->ref_ext = $obj->ref_ext; |
2172 | 2172 | $this->type = $obj->type; |
2173 | 2173 | $this->subtype = $obj->subtype; |
@@ -2177,7 +2177,7 @@ discard block |
||
2177 | 2177 | $this->date_validation = $this->db->jdate($obj->datev); |
2178 | 2178 | $this->date_modification = $this->db->jdate($obj->datem); |
2179 | 2179 | $this->datem = $this->db->jdate($obj->datem); |
2180 | - $this->remise_percent = $obj->remise_percent; // TODO deprecated |
|
2180 | + $this->remise_percent = $obj->remise_percent; // TODO deprecated |
|
2181 | 2181 | $this->remise_absolue = $obj->remise_absolue; |
2182 | 2182 | $this->total_ht = $obj->total_ht; |
2183 | 2183 | $this->total_tva = $obj->total_tva; |
@@ -2195,7 +2195,7 @@ discard block |
||
2195 | 2195 | $this->fk_project = $obj->fk_project; |
2196 | 2196 | $this->project = null; // Clear if another value was already set by fetch_projet |
2197 | 2197 | |
2198 | - $this->statut = $obj->status; // deprecated |
|
2198 | + $this->statut = $obj->status; // deprecated |
|
2199 | 2199 | $this->status = $obj->status; |
2200 | 2200 | |
2201 | 2201 | $this->date_lim_reglement = $this->db->jdate($obj->dlr); |
@@ -2211,7 +2211,7 @@ discard block |
||
2211 | 2211 | $this->fk_fac_rec_source = $obj->fk_fac_rec_source; |
2212 | 2212 | $this->note = $obj->note_private; // deprecated |
2213 | 2213 | $this->note_private = $obj->note_private; |
2214 | - $this->note_public = $obj->note_public; |
|
2214 | + $this->note_public = $obj->note_public; |
|
2215 | 2215 | $this->user_creation_id = $obj->fk_user_author; // deprecated |
2216 | 2216 | $this->user_validation_id = $obj->fk_user_valid; // deprecated |
2217 | 2217 | $this->user_modification = $obj->fk_user_modif; // deprecated |
@@ -2327,7 +2327,7 @@ discard block |
||
2327 | 2327 | $line->ref = $objp->product_ref; // Ref product |
2328 | 2328 | $line->product_ref = $objp->product_ref; // Ref product |
2329 | 2329 | $line->libelle = $objp->product_label; // deprecated |
2330 | - $line->product_label = $objp->product_label; // Label product |
|
2330 | + $line->product_label = $objp->product_label; // Label product |
|
2331 | 2331 | $line->product_desc = $objp->product_desc; // Description product |
2332 | 2332 | $line->fk_product_type = $objp->fk_product_type; // Type of product |
2333 | 2333 | $line->qty = $objp->qty; |
@@ -2510,7 +2510,7 @@ discard block |
||
2510 | 2510 | $sql .= " date_pointoftax=".(strval($this->date_pointoftax) != '' ? "'".$this->db->idate($this->date_pointoftax)."'" : 'null').","; |
2511 | 2511 | $sql .= " date_valid=".(strval($this->date_validation) != '' ? "'".$this->db->idate($this->date_validation)."'" : 'null').","; |
2512 | 2512 | $sql .= " paye=".(isset($this->paye) ? $this->db->escape($this->paye) : 0).","; |
2513 | - $sql .= " remise_percent=".(isset($this->remise_percent) ? $this->db->escape($this->remise_percent) : "null").","; // TODO deprecated |
|
2513 | + $sql .= " remise_percent=".(isset($this->remise_percent) ? $this->db->escape($this->remise_percent) : "null").","; // TODO deprecated |
|
2514 | 2514 | $sql .= " remise_absolue=".(isset($this->remise_absolue) ? $this->db->escape($this->remise_absolue) : "null").","; |
2515 | 2515 | $sql .= " close_code=".(isset($this->close_code) ? "'".$this->db->escape($this->close_code)."'" : "null").","; |
2516 | 2516 | $sql .= " close_note=".(isset($this->close_note) ? "'".$this->db->escape($this->close_note)."'" : "null").","; |
@@ -2624,7 +2624,7 @@ discard block |
||
2624 | 2624 | $facligne->rang = 1; |
2625 | 2625 | $linecount = count($this->lines); |
2626 | 2626 | for ($ii = 1; $ii <= $linecount; $ii++) { |
2627 | - $this->updateRangOfLine($this->lines[$ii - 1]->id, $ii+1); |
|
2627 | + $this->updateRangOfLine($this->lines[$ii - 1]->id, $ii + 1); |
|
2628 | 2628 | } |
2629 | 2629 | } |
2630 | 2630 | |
@@ -3200,7 +3200,7 @@ discard block |
||
3200 | 3200 | if ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !$user->hasRight('facture', 'creer')) |
3201 | 3201 | || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !$user->hasRight('facture', 'invoice_advance', 'validate'))) { |
3202 | 3202 | $this->error = 'Permission denied'; |
3203 | - dol_syslog(get_class($this)."::validate ".$this->error.' MAIN_USE_ADVANCED_PERMS=' . getDolGlobalString('MAIN_USE_ADVANCED_PERMS'), LOG_ERR); |
|
3203 | + dol_syslog(get_class($this)."::validate ".$this->error.' MAIN_USE_ADVANCED_PERMS='.getDolGlobalString('MAIN_USE_ADVANCED_PERMS'), LOG_ERR); |
|
3204 | 3204 | return -1; |
3205 | 3205 | } |
3206 | 3206 | if (!empty($conf->global-> INVOICE_CHECK_POSTERIOR_DATE)) { |
@@ -3544,7 +3544,7 @@ discard block |
||
3544 | 3544 | // Set new ref and define current status |
3545 | 3545 | if (!$error) { |
3546 | 3546 | $this->ref = $num; |
3547 | - $this->statut = self::STATUS_VALIDATED; // deprecated |
|
3547 | + $this->statut = self::STATUS_VALIDATED; // deprecated |
|
3548 | 3548 | $this->status = self::STATUS_VALIDATED; |
3549 | 3549 | $this->date_validation = $now; |
3550 | 3550 | $i = 0; |
@@ -3689,7 +3689,7 @@ discard block |
||
3689 | 3689 | |
3690 | 3690 | if ($error == 0) { |
3691 | 3691 | $old_statut = $this->status; |
3692 | - $this->statut = self::STATUS_DRAFT; // deprecated |
|
3692 | + $this->statut = self::STATUS_DRAFT; // deprecated |
|
3693 | 3693 | $this->status = self::STATUS_DRAFT; |
3694 | 3694 | |
3695 | 3695 | // Call trigger |
@@ -4020,7 +4020,7 @@ discard block |
||
4020 | 4020 | return -2; |
4021 | 4021 | } |
4022 | 4022 | } else { |
4023 | - $this->errors[]='status of invoice must be Draft to allow use of ->addline()'; |
|
4023 | + $this->errors[] = 'status of invoice must be Draft to allow use of ->addline()'; |
|
4024 | 4024 | dol_syslog(get_class($this)."::addline status of invoice must be Draft to allow use of ->addline()", LOG_ERR); |
4025 | 4025 | return -3; |
4026 | 4026 | } |
@@ -4584,7 +4584,7 @@ discard block |
||
4584 | 4584 | } |
4585 | 4585 | |
4586 | 4586 | if (!empty($addon)) { |
4587 | - dol_syslog("Call getNextNumRef with ".$addonConstName." = " . getDolGlobalString('FACTURE_ADDON').", thirdparty=".$soc->name.", type=".$soc->typent_code.", mode=".$mode, LOG_DEBUG); |
|
4587 | + dol_syslog("Call getNextNumRef with ".$addonConstName." = ".getDolGlobalString('FACTURE_ADDON').", thirdparty=".$soc->name.", type=".$soc->typent_code.", mode=".$mode, LOG_DEBUG); |
|
4588 | 4588 | |
4589 | 4589 | $mybool = false; |
4590 | 4590 | |
@@ -5661,14 +5661,14 @@ discard block |
||
5661 | 5661 | if (!empty($paymentmode) && $paymentmode != 'all') { |
5662 | 5662 | $sql .= ", ".MAIN_DB_PREFIX."c_paiement as cp"; |
5663 | 5663 | } |
5664 | - $sql .= " WHERE f.paye = 0"; // Only unpaid |
|
5665 | - $sql .= " AND f.fk_statut = ".self::STATUS_VALIDATED; // Only validated status |
|
5664 | + $sql .= " WHERE f.paye = 0"; // Only unpaid |
|
5665 | + $sql .= " AND f.fk_statut = ".self::STATUS_VALIDATED; // Only validated status |
|
5666 | 5666 | if ($datetouse == 'invoicedate') { |
5667 | 5667 | $sql .= " AND f.datef = '".$this->db->idate($tmpidate, 'gmt')."'"; |
5668 | 5668 | } else { |
5669 | 5669 | $sql .= " AND f.date_lim_reglement = '".$this->db->idate($tmpidate, 'gmt')."'"; |
5670 | 5670 | } |
5671 | - $sql .= " AND f.entity IN (".getEntity('facture', 0).")"; // One batch process only one company (no sharing) |
|
5671 | + $sql .= " AND f.entity IN (".getEntity('facture', 0).")"; // One batch process only one company (no sharing) |
|
5672 | 5672 | if (!empty($paymentmode) && $paymentmode != 'all') { |
5673 | 5673 | $sql .= " AND f.fk_mode_reglement = cp.id AND cp.code = '".$this->db->escape($paymentmode)."'"; |
5674 | 5674 | } |
@@ -5876,7 +5876,7 @@ discard block |
||
5876 | 5876 | $actioncomm->create($user); |
5877 | 5877 | } |
5878 | 5878 | |
5879 | - $this->db->commit(); // We always commit |
|
5879 | + $this->db->commit(); // We always commit |
|
5880 | 5880 | } |
5881 | 5881 | |
5882 | 5882 | if ($errormesg) { |
@@ -5912,7 +5912,7 @@ discard block |
||
5912 | 5912 | // get date of last validated invoices of same type |
5913 | 5913 | $sql = "SELECT datef"; |
5914 | 5914 | $sql .= " FROM ".MAIN_DB_PREFIX."facture"; |
5915 | - $sql .= " WHERE type = " . (int) $this->type ; |
|
5915 | + $sql .= " WHERE type = ".(int) $this->type; |
|
5916 | 5916 | $sql .= " AND date_valid IS NOT NULL"; |
5917 | 5917 | $sql .= " AND entity IN (".getEntity('invoice').")"; |
5918 | 5918 | $sql .= " ORDER BY datef DESC LIMIT 1"; |
@@ -6102,7 +6102,7 @@ discard block |
||
6102 | 6102 | $objp = $this->db->fetch_object($result); |
6103 | 6103 | |
6104 | 6104 | if (!$objp) { |
6105 | - $this->error = 'InvoiceLine with id '. $rowid .' not found sql='.$sql; |
|
6105 | + $this->error = 'InvoiceLine with id '.$rowid.' not found sql='.$sql; |
|
6106 | 6106 | return 0; |
6107 | 6107 | } |
6108 | 6108 |
@@ -96,8 +96,14 @@ |
||
96 | 96 | } |
97 | 97 | |
98 | 98 | $daytoparsegmt = dol_now('gmt'); |
99 | -if ($yearofday && $monthofday && $dayofday) $daytoparsegmt = dol_mktime(0, 0, 0, $monthofday, $dayofday, $yearofday, 'gmt'); // xxxofday is value of day after submit action 'addtime' |
|
100 | -elseif ($year && $month && $day) $daytoparsegmt = dol_mktime(0, 0, 0, $month, $day, $year, 'gmt'); // this are value submited after submit of action 'submitdateselect' |
|
99 | +if ($yearofday && $monthofday && $dayofday) { |
|
100 | + $daytoparsegmt = dol_mktime(0, 0, 0, $monthofday, $dayofday, $yearofday, 'gmt'); |
|
101 | +} |
|
102 | +// xxxofday is value of day after submit action 'addtime' |
|
103 | +elseif ($year && $month && $day) { |
|
104 | + $daytoparsegmt = dol_mktime(0, 0, 0, $month, $day, $year, 'gmt'); |
|
105 | +} |
|
106 | +// this are value submited after submit of action 'submitdateselect' |
|
101 | 107 | |
102 | 108 | if (empty($search_usertoprocessid) || $search_usertoprocessid == $user->id) { |
103 | 109 | $usertoprocess = $user; |
@@ -53,20 +53,20 @@ discard block |
||
53 | 53 | // Security check |
54 | 54 | if ($user->socid) $socid = $user->socid; |
55 | 55 | |
56 | -$search_ref = GETPOST('search_ref', 'alpha'); |
|
57 | -$search_date_startday = GETPOST('search_date_startday', 'int'); |
|
58 | -$search_date_startmonth = GETPOST('search_date_startmonth', 'int'); |
|
59 | -$search_date_startyear = GETPOST('search_date_startyear', 'int'); |
|
56 | +$search_ref = GETPOST('search_ref', 'alpha'); |
|
57 | +$search_date_startday = GETPOST('search_date_startday', 'int'); |
|
58 | +$search_date_startmonth = GETPOST('search_date_startmonth', 'int'); |
|
59 | +$search_date_startyear = GETPOST('search_date_startyear', 'int'); |
|
60 | 60 | $search_date_endday = GETPOST('search_date_endday', 'int'); |
61 | -$search_date_endmonth = GETPOST('search_date_endmonth', 'int'); |
|
61 | +$search_date_endmonth = GETPOST('search_date_endmonth', 'int'); |
|
62 | 62 | $search_date_endyear = GETPOST('search_date_endyear', 'int'); |
63 | -$search_date_start = dol_mktime(0, 0, 0, $search_date_startmonth, $search_date_startday, $search_date_startyear); // Use tzserver |
|
64 | -$search_date_end = dol_mktime(23, 59, 59, $search_date_endmonth, $search_date_endday, $search_date_endyear); |
|
65 | -$search_user = GETPOST('search_user', 'alpha'); |
|
63 | +$search_date_start = dol_mktime(0, 0, 0, $search_date_startmonth, $search_date_startday, $search_date_startyear); // Use tzserver |
|
64 | +$search_date_end = dol_mktime(23, 59, 59, $search_date_endmonth, $search_date_endday, $search_date_endyear); |
|
65 | +$search_user = GETPOST('search_user', 'alpha'); |
|
66 | 66 | $search_payment_type = GETPOST('search_payment_type'); |
67 | -$search_cheque_num = GETPOST('search_cheque_num', 'alpha'); |
|
67 | +$search_cheque_num = GETPOST('search_cheque_num', 'alpha'); |
|
68 | 68 | $search_bank_account = GETPOST('search_bank_account', 'int'); |
69 | -$search_amount = GETPOST('search_amount', 'alpha'); // alpha because we must be able to search on '< x' |
|
69 | +$search_amount = GETPOST('search_amount', 'alpha'); // alpha because we must be able to search on '< x' |
|
70 | 70 | |
71 | 71 | $limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit; |
72 | 72 | $sortfield = GETPOST('sortfield', 'aZ09comma'); |
@@ -198,10 +198,10 @@ discard block |
||
198 | 198 | $sql .= natural_search('pndf.rowid', $search_ref); |
199 | 199 | } |
200 | 200 | if ($search_date_start) { |
201 | - $sql .= " AND pndf.datep >= '" . $db->idate($search_date_start) . "'"; |
|
201 | + $sql .= " AND pndf.datep >= '".$db->idate($search_date_start)."'"; |
|
202 | 202 | } |
203 | 203 | if ($search_date_end) { |
204 | - $sql .=" AND pndf.datep <= '" . $db->idate($search_date_end) . "'"; |
|
204 | + $sql .= " AND pndf.datep <= '".$db->idate($search_date_end)."'"; |
|
205 | 205 | } |
206 | 206 | |
207 | 207 | if ($search_user) { |
@@ -49,7 +49,9 @@ |
||
49 | 49 | $socid = GETPOST('socid', 'int'); |
50 | 50 | |
51 | 51 | // Security check |
52 | -if ($user->socid) $socid = $user->socid; |
|
52 | +if ($user->socid) { |
|
53 | + $socid = $user->socid; |
|
54 | +} |
|
53 | 55 | |
54 | 56 | $search_ref = GETPOST('search_ref', 'alpha'); |
55 | 57 | $search_date_startday = GETPOST('search_date_startday', 'int'); |
@@ -303,7 +303,7 @@ |
||
303 | 303 | $sql .= " AND t.".$db->escape($columnName)." >= '".$db->idate($search[$key])."'"; |
304 | 304 | } |
305 | 305 | if (preg_match('/_dtend$/', $key)) { |
306 | - $sql .= " AND t.".$db->escape($columnName)." <= '" . $db->idate($search[$key])."'"; |
|
306 | + $sql .= " AND t.".$db->escape($columnName)." <= '".$db->idate($search[$key])."'"; |
|
307 | 307 | } |
308 | 308 | } |
309 | 309 | } |
@@ -73,7 +73,7 @@ |
||
73 | 73 | { |
74 | 74 | global $conf; |
75 | 75 | |
76 | - $uselogfile = getDolGlobalInt('DEBUGBAR_USE_LOG_FILE'); |
|
76 | + $uselogfile = getDolGlobalInt('DEBUGBAR_USE_LOG_FILE'); |
|
77 | 77 | |
78 | 78 | if ($uselogfile) { |
79 | 79 | $this->getStorageLogs($this->path); |