dolibarr 24.0.0-beta
facture.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2002-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2013 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org>
5 * Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
6 * Copyright (C) 2005 Marc Barilley / Ocebo <marc@ocebo.com>
7 * Copyright (C) 2005-2014 Regis Houssin <regis.houssin@inodbox.com>
8 * Copyright (C) 2006 Andre Cianfarani <acianfa@free.fr>
9 * Copyright (C) 2007 Franky Van Liedekerke <franky.van.liedekerke@telenet.be>
10 * Copyright (C) 2010-2020 Juanjo Menent <jmenent@2byte.es>
11 * Copyright (C) 2012-2014 Christophe Battarel <christophe.battarel@altairis.fr>
12 * Copyright (C) 2012-2015 Marcos García <marcosgdf@gmail.com>
13 * Copyright (C) 2012 Cédric Salvador <csalvador@gpcsolutions.fr>
14 * Copyright (C) 2012-2014 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr>
15 * Copyright (C) 2013 Cedric Gross <c.gross@kreiz-it.fr>
16 * Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
17 * Copyright (C) 2016-2025 Ferran Marcet <fmarcet@2byte.es>
18 * Copyright (C) 2018-2026 Alexandre Spangaro <alexandre@inovea-conseil.com>
19 * Copyright (C) 2018 Nicolas ZABOURI <info@inovea-conseil.com>
20 * Copyright (C) 2022 Sylvain Legrand <contact@infras.fr>
21 * Copyright (C) 2022-2023 Solution Libre SAS <contact@solution-libre.fr>
22 * Copyright (C) 2023 Gauthier VERDOL <gauthier.verdol@atm-consulting.fr>
23 * Copyright (C) 2023 Nick Fragoulis
24 * Copyright (C) 2024-2026 MDW <mdeweerd@users.noreply.github.com>
25 * Copyright (C) 2024-2025 Frédéric France <frederic.france@free.fr>
26 * Copyright (C) 2025 Lenin Rivas <lenin.rivas777@gmail.com>
27 * Copyright (C) 2026 Vincent de Grandpré <vincent@de-grandpre.quebec>
28 *
29 * This program is free software; you can redistribute it and/or modify
30 * it under the terms of the GNU General Public License as published by
31 * the Free Software Foundation; either version 3 of the License, or
32 * (at your option) any later version.
33 *
34 * This program is distributed in the hope that it will be useful,
35 * but WITHOUT ANY WARRANTY; without even the implied warranty of
36 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
37 * GNU General Public License for more details.
38 *
39 * You should have received a copy of the GNU General Public License
40 * along with this program. If not, see <https://www.gnu.org/licenses/>.
41 */
42
49require_once DOL_DOCUMENT_ROOT.'/core/class/commoninvoice.class.php';
50require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/factureligne.class.php';
51require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
52require_once DOL_DOCUMENT_ROOT.'/societe/class/client.class.php';
53require_once DOL_DOCUMENT_ROOT.'/margin/lib/margins.lib.php';
54require_once DOL_DOCUMENT_ROOT.'/multicurrency/class/multicurrency.class.php';
55require_once DOL_DOCUMENT_ROOT.'/subtotals/class/commonsubtotal.class.php';
56
57if (isModEnabled('accounting')) {
58 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formaccounting.class.php';
59}
60if (isModEnabled('accounting')) {
61 require_once DOL_DOCUMENT_ROOT.'/accountancy/class/accountingaccount.class.php';
62}
63
68{
69 use CommonSubtotal;
70
74 public $element = 'facture';
75
79 public $table_element = 'facture';
80
84 public $table_element_line = 'facturedet';
85
89 public $class_element_line = 'FactureLigne';
90
94 public $fk_element = 'fk_facture';
95
99 public $picto = 'bill';
100
105 public $restrictiononfksoc = 1;
106
110 protected $table_ref_field = 'ref';
111
115 public $ref;
116
121 public $fk_user_author;
122
127 public $fk_user_valid;
128
133 public $fk_user_modif;
134
138 public $datem;
139
143 public $delivery_date; // Date expected of shipment (date of start of shipment, not the reception that occurs some days after)
144
150 public $ref_client;
151
155 public $ref_customer;
156
160 public $resteapayer;
161
166 public $paye;
167
171 public $module_source;
175 public $pos_source;
179 public $pos_print_counter = 0;
180
184 public $email_sent_counter = 0;
185
189 public $fk_fac_rec_source;
190
194 public $fk_facture_source;
195
199 public $fk_bank;
200
204 public $lines = array();
205
209 public $line;
213 public $extraparams = array();
214
218 public $fac_rec;
219
223 public $date_pointoftax;
224
225
229 public $situation_cycle_ref;
230
234 public $situation_counter;
235
239 public $situation_final;
240
244 public $tab_previous_situation_invoice = array();
245
249 public $tab_next_situation_invoice = array();
250
254 public $retained_warranty;
255
259 public $retained_warranty_date_limit;
260
264 public $retained_warranty_fk_cond_reglement;
265
269 public $availability_id;
270
274 public $date_closing;
275
279 public $source;
280
285 public $remise_percent;
286
290 public $online_payment_url;
291
295 public $ip;
296
297
323 // BEGIN MODULEBUILDER PROPERTIES
327 public $fields = array(
328 'rowid' => array('type' => 'integer', 'label' => 'TechnicalID', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 1),
329 'ref' => array('type' => 'varchar(30)', 'label' => 'Ref', 'enabled' => 1, 'visible' => 1, 'notnull' => 1, 'showoncombobox' => 1, 'position' => 5),
330 'entity' => array('type' => 'integer', 'label' => 'Entity', 'default' => '1', 'enabled' => 1, 'visible' => -2, 'notnull' => 1, 'position' => 20, 'index' => 1),
331 'ref_client' => array('type' => 'varchar(255)', 'label' => 'RefCustomer', 'enabled' => 1, 'visible' => -1, 'position' => 10),
332 'ref_ext' => array('type' => 'varchar(255)', 'label' => 'RefExt', 'enabled' => 1, 'visible' => 0, 'position' => 12),
333 'type' => array('type' => 'smallint(6)', 'label' => 'Type', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 15),
334 'subtype' => array('type' => 'smallint(6)', 'label' => 'InvoiceSubtype', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 15),
335 //'increment' =>array('type'=>'varchar(10)', 'label'=>'Increment', 'enabled'=>1, 'visible'=>-1, 'position'=>45),
336 'fk_soc' => array('type' => 'integer:Societe:societe/class/societe.class.php', 'label' => 'ThirdParty', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 50),
337 'datef' => array('type' => 'date', 'label' => 'DateInvoice', 'enabled' => 1, 'visible' => 1, 'position' => 20),
338 'date_valid' => array('type' => 'date', 'label' => 'DateValidation', 'enabled' => 1, 'visible' => -1, 'position' => 22),
339 'date_lim_reglement' => array('type' => 'date', 'label' => 'DateDue', 'enabled' => 1, 'visible' => 1, 'position' => 25),
340 'date_closing' => array('type' => 'datetime', 'label' => 'DateClosing', 'enabled' => 1, 'visible' => -1, 'position' => 30),
341 'paye' => array('type' => 'smallint(6)', 'label' => 'InvoicePaidCompletely', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 80),
342 'close_code' => array('type' => 'varchar(16)', 'label' => 'EarlyClosingReason', 'enabled' => 1, 'visible' => -1, 'position' => 92),
343 'close_note' => array('type' => 'varchar(128)', 'label' => 'EarlyClosingComment', 'enabled' => 1, 'visible' => -1, 'position' => 93),
344 'total_ht' => array('type' => 'double(24,8)', 'label' => 'AmountHT', 'enabled' => 1, 'visible' => 1, 'position' => 95, 'isameasure' => 1),
345 'total_tva' => array('type' => 'double(24,8)', 'label' => 'AmountVAT', 'enabled' => 1, 'visible' => -1, 'position' => 100, 'isameasure' => 1),
346 'localtax1' => array('type' => 'double(24,8)', 'label' => 'LT1', 'enabled' => 1, 'visible' => -1, 'position' => 110, 'isameasure' => 1),
347 'localtax2' => array('type' => 'double(24,8)', 'label' => 'LT2', 'enabled' => 1, 'visible' => -1, 'position' => 120, 'isameasure' => 1),
348 'revenuestamp' => array('type' => 'double(24,8)', 'label' => 'RevenueStamp', 'enabled' => 1, 'visible' => -1, 'position' => 115, 'isameasure' => 1),
349 'total_ttc' => array('type' => 'double(24,8)', 'label' => 'AmountTTC', 'enabled' => 1, 'visible' => 1, 'position' => 130, 'isameasure' => 1),
350 'fk_facture_source' => array('type' => 'integer', 'label' => 'SourceInvoice', 'enabled' => 1, 'visible' => -1, 'position' => 170),
351 'fk_projet' => array('type' => 'integer:Project:projet/class/project.class.php:1:(fk_statut:=:1)', 'label' => 'Project', 'enabled' => 1, 'visible' => -1, 'position' => 175),
352 'fk_account' => array('type' => 'integer', 'label' => 'Fk account', 'enabled' => 1, 'visible' => -1, 'position' => 180),
353 'fk_currency' => array('type' => 'varchar(3)', 'label' => 'CurrencyCode', 'enabled' => 1, 'visible' => -1, 'position' => 185),
354 'fk_cond_reglement' => array('type' => 'integer', 'label' => 'PaymentTerm', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 190),
355 'fk_mode_reglement' => array('type' => 'integer', 'label' => 'PaymentMode', 'enabled' => 1, 'visible' => -1, 'position' => 195),
356 'note_private' => array('type' => 'html', 'label' => 'NotePrivate', 'enabled' => 1, 'visible' => 0, 'position' => 205),
357 'note_public' => array('type' => 'html', 'label' => 'NotePublic', 'enabled' => 1, 'visible' => 0, 'position' => 210),
358 'model_pdf' => array('type' => 'varchar(255)', 'label' => 'Model pdf', 'enabled' => 1, 'visible' => 0, 'position' => 215),
359 'fk_input_reason' => array('type' => 'integer', 'label' => 'Source', 'enabled' => 1, 'visible' => -1, 'position' => 220),
360 'extraparams' => array('type' => 'varchar(255)', 'label' => 'Extraparams', 'enabled' => 1, 'visible' => -1, 'position' => 225),
361 'situation_cycle_ref' => array('type' => 'smallint(6)', 'label' => 'Situation cycle ref', 'enabled' => 'getDolGlobalInt("INVOICE_USE_SITUATION")', 'visible' => -1, 'position' => 230),
362 'situation_counter' => array('type' => 'smallint(6)', 'label' => 'Situation counter', 'enabled' => 'getDolGlobalInt("INVOICE_USE_SITUATION")', 'visible' => -1, 'position' => 235),
363 'situation_final' => array('type' => 'smallint(6)', 'label' => 'Situation final', 'enabled' => 'getDolGlobalInt("INVOICE_USE_SITUATION")', 'visible' => -1, 'position' => 240),
364 'retained_warranty' => array('type' => 'double', 'label' => 'Retained warranty', 'enabled' => 'getDolGlobalString("INVOICE_USE_RETAINED_WARRANTY")', 'visible' => -1, 'position' => 245),
365 'retained_warranty_date_limit' => array('type' => 'date', 'label' => 'Retained warranty date limit', 'enabled' => 'getDolGlobalString("INVOICE_USE_RETAINED_WARRANTY")', 'visible' => -1, 'position' => 250),
366 'retained_warranty_fk_cond_reglement' => array('type' => 'integer', 'label' => 'Retained warranty fk cond reglement', 'enabled' => 'getDolGlobalString("INVOICE_USE_RETAINED_WARRANTY")', 'visible' => -1, 'position' => 255),
367 'fk_incoterms' => array('type' => 'integer', 'label' => 'IncotermCode', 'enabled' => 'isModEnabled("incoterm")', 'visible' => -1, 'position' => 260),
368 'location_incoterms' => array('type' => 'varchar(255)', 'label' => 'IncotermLabel', 'enabled' => 'isModEnabled("incoterm")', 'visible' => -1, 'position' => 265),
369 'date_pointoftax' => array('type' => 'date', 'label' => 'DatePointOfTax', 'enabled' => 'getDolGlobalString("INVOICE_POINTOFTAX_DATE")', 'visible' => -1, 'position' => 270),
370 'fk_multicurrency' => array('type' => 'integer', 'label' => 'MulticurrencyID', 'enabled' => 'isModEnabled("multicurrency")', 'visible' => -1, 'position' => 275),
371 'multicurrency_code' => array('type' => 'varchar(255)', 'label' => 'Currency', 'enabled' => 'isModEnabled("multicurrency")', 'visible' => -1, 'position' => 280),
372 'multicurrency_tx' => array('type' => 'double(24,8)', 'label' => 'CurrencyRate', 'enabled' => 'isModEnabled("multicurrency")', 'visible' => -1, 'position' => 285, 'isameasure' => 1),
373 'multicurrency_total_ht' => array('type' => 'double(24,8)', 'label' => 'MulticurrencyAmountHT', 'enabled' => 'isModEnabled("multicurrency")', 'visible' => -1, 'position' => 290, 'isameasure' => 1),
374 'multicurrency_total_tva' => array('type' => 'double(24,8)', 'label' => 'MulticurrencyAmountVAT', 'enabled' => 'isModEnabled("multicurrency")', 'visible' => -1, 'position' => 291, 'isameasure' => 1),
375 'multicurrency_total_ttc' => array('type' => 'double(24,8)', 'label' => 'MulticurrencyAmountTTC', 'enabled' => 'isModEnabled("multicurrency")', 'visible' => -1, 'position' => 292, 'isameasure' => 1),
376 'fk_fac_rec_source' => array('type' => 'integer', 'label' => 'RecurringInvoiceSource', 'enabled' => 1, 'visible' => -1, 'position' => 305),
377 'last_main_doc' => array('type' => 'varchar(255)', 'label' => 'LastMainDoc', 'enabled' => 1, 'visible' => -1, 'position' => 310),
378 'module_source' => array('type' => 'varchar(32)', 'label' => 'POSModule', 'langfile' => 'cashdesk', 'enabled' => "(isModEnabled('cashdesk') || isModEnabled('takepos') || getDolGlobalInt('INVOICE_SHOW_POS'))", 'visible' => -1, 'position' => 315),
379 'pos_source' => array('type' => 'varchar(32)', 'label' => 'POSTerminal', 'langfile' => 'cashdesk', 'enabled' => "(isModEnabled('cashdesk') || isModEnabled('takepos') || getDolGlobalInt('INVOICE_SHOW_POS'))", 'visible' => -1, 'position' => 320),
380 'pos_print_counter' => array('type' => 'integer', 'label' => 'PrintCount', 'langfile' => 'cashdesk', 'enabled' => "(isModEnabled('cashdesk') || isModEnabled('takepos') || getDolGlobalInt('INVOICE_SHOW_POS'))", 'visible' => 0, 'position' => 325),
381 'datec' => array('type' => 'datetime', 'label' => 'DateCreation', 'enabled' => 1, 'visible' => -1, 'position' => 500),
382 'tms' => array('type' => 'timestamp', 'label' => 'DateModificationShort', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 502),
383 'fk_user_author' => array('type' => 'integer:User:user/class/user.class.php', 'label' => 'UserAuthor', 'enabled' => 1, 'visible' => -1, 'position' => 506),
384 'fk_user_modif' => array('type' => 'integer:User:user/class/user.class.php', 'label' => 'UserModification', 'enabled' => 1, 'visible' => -1, 'notnull' => -1, 'position' => 508),
385 'fk_user_valid' => array('type' => 'integer:User:user/class/user.class.php', 'label' => 'UserValidation', 'enabled' => 1, 'visible' => -1, 'position' => 510),
386 'fk_user_closing' => array('type' => 'integer:User:user/class/user.class.php', 'label' => 'UserClosing', 'enabled' => 1, 'visible' => -1, 'position' => 512),
387 'import_key' => array('type' => 'varchar(14)', 'label' => 'ImportId', 'enabled' => 1, 'visible' => -2, 'position' => 900),
388 'fk_statut' => array('type' => 'smallint(6)', 'label' => 'Status', 'enabled' => 1, 'visible' => 1, 'notnull' => 1, 'position' => 1000, 'arrayofkeyval' => array(0 => 'Draft', 1 => 'Validated', 2 => 'Paid', 3 => 'Abandonned')),
389 );
390 // END MODULEBUILDER PROPERTIES
391
395 const TYPE_STANDARD = 0;
396
401
406
410 const TYPE_DEPOSIT = 3;
411
415 const TYPE_PROFORMA = 4;
416
420 const TYPE_SITUATION = 5;
421
425 const STATUS_DRAFT = 0;
426
431
448 const STATUS_CLOSED = 2;
449
456
457
463 public function __construct(DoliDB $db)
464 {
465 $this->db = $db;
466
467 $this->ismultientitymanaged = 1;
468 $this->isextrafieldmanaged = 1;
469
470 $this->fields['ref_ext']['visible'] = getDolGlobalInt('MAIN_LIST_SHOW_REF_EXT');
471 }
472
484 public function create(User $user, $notrigger = 0, $forceduedate = 0, $updatecurrencyrate = 0)
485 {
486 global $langs, $conf, $mysoc;
487 $error = 0;
488 $origin_user_author_id = ($user->id > 0 ? (int) $user->id : 0);
489 // Clean parameters
490 if (empty($this->type)) {
491 $this->type = self::TYPE_STANDARD;
492 }
493
494 $this->ref_client = trim((string) $this->ref_client); // deprecated
495 $this->ref_customer = trim((string) $this->ref_customer);
496
497 $this->note_private = (isset($this->note_private) ? trim($this->note_private) : '');
498 $this->note = (isset($this->note) ? trim($this->note) : $this->note_private); // deprecated
499 $this->note_public = (isset($this->note_public) ? trim($this->note_public) : '');
500
501 if (!$this->cond_reglement_id) {
502 $this->cond_reglement_id = 0;
503 }
504 if (!$this->mode_reglement_id) {
505 $this->mode_reglement_id = 0;
506 }
507 $this->status = self::STATUS_DRAFT;
508 $this->statut = self::STATUS_DRAFT; // deprecated
509
510 if (!empty($this->multicurrency_code)) {
511 // Multicurrency (test on $this->multicurrency_tx because we should take the default rate of multicurrency_code only if not using original rate)
512 if (empty($this->multicurrency_tx)) {
513 // If original rate is not set, we take a default value from date
514 list($this->fk_multicurrency, $this->multicurrency_tx) = MultiCurrency::getIdAndTxFromCode($this->db, $this->multicurrency_code, $this->date);
515 } else {
516 // original rate multicurrency_tx and multicurrency_code are already known, so we keep them and we catch only the ID of the currency.
517 $this->fk_multicurrency = MultiCurrency::getIdFromCode($this->db, $this->multicurrency_code);
518 }
519 } else {
520 $this->fk_multicurrency = 0;
521 }
522 if (empty($this->fk_multicurrency)) {
523 $this->multicurrency_code = $conf->currency;
524 $this->fk_multicurrency = 0;
525 $this->multicurrency_tx = 1;
526 }
527 $this->entity = setEntity($this);
528
529 dol_syslog(get_class($this)."::create user=".$user->id." date=".$this->date);
530
531 // Check parameters
532 if (empty($this->date)) {
533 $this->error = "Try to create an invoice with an empty parameter (date)";
534 dol_syslog(get_class($this)."::create ".$this->error, LOG_ERR);
535 return -3;
536 }
537 $soc = new Societe($this->db);
538 $result = $soc->fetch($this->socid);
539 if ($result < 0) {
540 $this->error = "Failed to fetch company: ".$soc->error;
541 dol_syslog(get_class($this)."::create ".$this->error, LOG_ERR);
542 return -2;
543 }
544
545 $now = dol_now();
546 $this->date_creation = $now;
547
548 $this->db->begin();
549
550 $originaldatewhen = null;
551 $nextdatewhen = null;
552 $previousdaynextdatewhen = null;
553
554 $_facrec = null;
555
556 // Erase some properties of the invoice to create with the one of the recurring invoice
557 if ($this->fac_rec > 0) {
558 $this->fk_fac_rec_source = $this->fac_rec;
559
560 require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture-rec.class.php';
561 $_facrec = new FactureRec($this->db);
562 $result = $_facrec->fetch($this->fac_rec);
563 $result = $_facrec->fetchObjectLinked(null, '', null, '', 'OR', 1, 'sourcetype', 0); // This load $_facrec->linkedObjectsIds
564
565 if (getDolGlobalString('MODEL_FAC_REC_AUTHOR')) {
566 // If option MODEL_FAC_REC_AUTHOR is set, we want the same author than the author of recurring invoice instead of current user
567 $origin_user_author_id = ($_facrec->user_creation_id > 0 ? $_facrec->user_creation_id : $origin_user_author_id);
568 }
569
570 // Define some dates
571 $originaldatewhen = $_facrec->date_when;
572 $nextdatewhen = null;
573 $previousdaynextdatewhen = null;
574
575 if ($originaldatewhen) {
576 if ($_facrec->rule_for_lines_dates == 'postpaid') { // Bugged feature, should use different variable nameas we store something different.
577 $previousdaynextdatewhen = dol_time_plus_duree($originaldatewhen, -1, 'd');
578 $originaldatewhen = dol_time_plus_duree($originaldatewhen, -$_facrec->frequency, $_facrec->unit_frequency);
579 } else {
580 $nextdatewhen = dol_time_plus_duree($originaldatewhen, (int) $_facrec->frequency, $_facrec->unit_frequency);
581 $previousdaynextdatewhen = dol_time_plus_duree($nextdatewhen, -1, 'd');
582 }
583 }
584
585 // Define thirdparty
586 if (!empty($_facrec->frequency)) { // Invoice are created on same thirdparty than template when there is a recurrence, but not necessarily when there is no recurrence.
587 $this->socid = $_facrec->socid;
588 }
589
590 // Define the entity
591 $this->entity = $_facrec->entity; // Invoice created in same entity than template
592
593 // Fields coming from GUI.
594 // @TODO Value of template should be used as default value on the form on the GUI, and we should here always use the value from GUI
595 // set by posted page with $object->xxx = ... and this section should be removed.
596 $this->fk_project = GETPOSTINT('projectid') > 0 ? GETPOSTINT('projectid') : $_facrec->fk_project;
597 $this->note_public = GETPOSTISSET('note_public') ? GETPOST('note_public', 'restricthtml') : $_facrec->note_public;
598 $this->note_private = GETPOSTISSET('note_private') ? GETPOST('note_private', 'restricthtml') : $_facrec->note_private;
599 $this->model_pdf = GETPOSTISSET('model') ? GETPOST('model', 'alpha') : $_facrec->model_pdf;
600 $this->cond_reglement_id = GETPOSTINT('cond_reglement_id') > 0 ? GETPOSTINT('cond_reglement_id') : $_facrec->cond_reglement_id;
601 $this->mode_reglement_id = GETPOSTINT('mode_reglement_id') > 0 ? GETPOSTINT('mode_reglement_id') : $_facrec->mode_reglement_id;
602 $this->fk_account = GETPOST('fk_account') > 0 ? GETPOSTINT('fk_account') : $_facrec->fk_account;
603
604 // Set here to have this defined for substitution into notes, should be recalculated after adding lines to get same result
605 $this->total_ht = $_facrec->total_ht;
606 $this->total_ttc = $_facrec->total_ttc;
607
608 // Fields always coming from template
609 $this->fk_incoterms = $_facrec->fk_incoterms;
610 $this->location_incoterms = $_facrec->location_incoterms;
611
612 // Clean parameters
613 if (!$this->type) {
614 $this->type = self::TYPE_STANDARD;
615 }
616 $this->ref_client = trim($this->ref_client);
617 $this->ref_customer = trim($this->ref_customer);
618 $this->note_public = trim($this->note_public);
619 $this->note_private = trim($this->note_private);
620 $this->note_private = dol_concatdesc($this->note_private, $langs->trans("GeneratedFromRecurringInvoice", $_facrec->ref));
621
622 $this->array_options = $_facrec->array_options;
623
624 if (!$this->mode_reglement_id) {
625 $this->mode_reglement_id = 0;
626 }
627 $this->status = self::STATUS_DRAFT;
628 $this->statut = self::STATUS_DRAFT; // deprecated
629
630 $this->linked_objects = $_facrec->linkedObjectsIds;
631 // We do not add link to template invoice or next invoice will be linked to all generated invoices
632 //$this->linked_objects['facturerec'][0] = $this->fac_rec;
633
634 // For recurring invoices, update date and number of last generation of recurring template invoice, before inserting new invoice
635 if ($_facrec->frequency > 0) {
636 dol_syslog("This is a recurring invoice so we set date_last_gen and next date_when");
637 if (empty($_facrec->date_when)) {
638 $_facrec->date_when = $now;
639 }
640 $next_date = $_facrec->getNextDate(); // Calculate next date
641
642 $result = $_facrec->setValueFrom('date_last_gen', $now, '', null, 'date', '', $user, '');
643 //$_facrec->setValueFrom('nb_gen_done', $_facrec->nb_gen_done + 1); // Not required, +1 already included into setNextDate when second param is 1.
644
645 $result = $_facrec->setNextDate($next_date, 1);
646 }
647
648 // Define lang of customer
649 $outputlangs = $langs;
650 $newlang = '';
651
652 if (getDolGlobalInt('MAIN_MULTILANGS') && empty($newlang) && isset($this->thirdparty->default_lang)) {
653 $newlang = $this->thirdparty->default_lang; // for proposal, order, invoice, ...
654 }
655 // @phan-suppress-next-line PhanUndeclaredProperty
656 if (getDolGlobalInt('MAIN_MULTILANGS') && empty($newlang) && isset($this->default_lang)) {
657 $newlang = $this->default_lang; // for thirdparty @phan-suppress-current-line PhanUndeclaredProperty
658 }
659 if (!empty($newlang)) {
660 $outputlangs = new Translate("", $conf);
661 $outputlangs->setDefaultLang($newlang);
662 }
663
664 // Array of possible substitutions (See also file mailing-send.php that should manage same substitutions)
665 $substitutionarray = getCommonSubstitutionArray($outputlangs, 0, null, $this);
666 $substitutionarray['__INVOICE_PREVIOUS_MONTH__'] = dol_print_date(dol_time_plus_duree($this->date, -1, 'm'), '%m');
667 $substitutionarray['__INVOICE_MONTH__'] = dol_print_date($this->date, '%m');
668 $substitutionarray['__INVOICE_NEXT_MONTH__'] = dol_print_date(dol_time_plus_duree($this->date, 1, 'm'), '%m');
669 $substitutionarray['__INVOICE_PREVIOUS_MONTH_TEXT__'] = dol_print_date(dol_time_plus_duree($this->date, -1, 'm'), '%B');
670 $substitutionarray['__INVOICE_MONTH_TEXT__'] = dol_print_date($this->date, '%B');
671 $substitutionarray['__INVOICE_NEXT_MONTH_TEXT__'] = dol_print_date(dol_time_plus_duree($this->date, 1, 'm'), '%B');
672 $substitutionarray['__INVOICE_PREVIOUS_YEAR__'] = dol_print_date(dol_time_plus_duree($this->date, -1, 'y'), '%Y');
673 $substitutionarray['__INVOICE_YEAR__'] = dol_print_date($this->date, '%Y');
674 $substitutionarray['__INVOICE_NEXT_YEAR__'] = dol_print_date(dol_time_plus_duree($this->date, 1, 'y'), '%Y');
675 // Only for template invoice
676 $substitutionarray['__INVOICE_DATE_NEXT_INVOICE_BEFORE_GEN__'] = (isset($originaldatewhen) ? dol_print_date($originaldatewhen, 'dayhour') : '');
677 $substitutionarray['__INVOICE_DATE_NEXT_INVOICE_AFTER_GEN__'] = (isset($nextdatewhen) ? dol_print_date($nextdatewhen, 'dayhour') : '');
678 $substitutionarray['__INVOICE_PREVIOUS_DATE_NEXT_INVOICE_AFTER_GEN__'] = (isset($previousdaynextdatewhen) ? dol_print_date($previousdaynextdatewhen, 'dayhour') : '');
679 $substitutionarray['__INVOICE_COUNTER_CURRENT__'] = $_facrec->nb_gen_done;
680 $substitutionarray['__INVOICE_COUNTER_MAX__'] = $_facrec->nb_gen_max;
681
682 //var_dump($substitutionarray);exit;
683
684 complete_substitutions_array($substitutionarray, $outputlangs);
685
686 $this->note_public = make_substitutions($this->note_public, $substitutionarray);
687 $this->note_private = make_substitutions($this->note_private, $substitutionarray);
688 }
689
690 // Define due date if not already defined
691 if (empty($forceduedate)) {
692 $duedate = $this->calculate_date_lim_reglement();
693 /*if ($duedate < 0) { Regression, a date can be negative if before 1970.
694 dol_syslog(__METHOD__ . ' Error in calculate_date_lim_reglement. We got ' . $duedate, LOG_ERR);
695 return -1;
696 }*/
697 $this->date_lim_reglement = $duedate;
698 } else {
699 $this->date_lim_reglement = $forceduedate;
700 }
701
702 // Insert into database
703 $socid = $this->socid;
704
705 $sql = "INSERT INTO ".MAIN_DB_PREFIX."facture (";
706 $sql .= " ref";
707 $sql .= ", entity";
708 $sql .= ", ref_ext";
709 $sql .= ", type";
710 $sql .= ", subtype";
711 $sql .= ", fk_soc";
712 $sql .= ", datec";
713 $sql .= ", datef";
714 $sql .= ", date_pointoftax";
715 $sql .= ", note_private";
716 $sql .= ", note_public";
717 $sql .= ", ref_client";
718 $sql .= ", fk_account";
719 $sql .= ", module_source, pos_source, pos_print_counter, fk_fac_rec_source, fk_facture_source, fk_user_author, fk_projet";
720 $sql .= ", fk_cond_reglement, fk_mode_reglement, date_lim_reglement, model_pdf";
721 $sql .= ", fk_input_reason";
722 $sql .= ", situation_cycle_ref, situation_counter, situation_final";
723 $sql .= ", fk_incoterms, location_incoterms";
724 $sql .= ", fk_multicurrency";
725 $sql .= ", multicurrency_code";
726 $sql .= ", multicurrency_tx";
727 $sql .= ", retained_warranty";
728 $sql .= ", retained_warranty_date_limit";
729 $sql .= ", retained_warranty_fk_cond_reglement";
730 $sql .= ", ip";
731 $sql .= ")";
732 $sql .= " VALUES (";
733 $sql .= "'(PROV)'";
734 $sql .= ", ".(int) $this->entity;
735 $sql .= ", ".($this->ref_ext ? "'".$this->db->escape($this->ref_ext)."'" : "null");
736 $sql .= ", '".$this->db->escape((string) $this->type)."'";
737 $sql .= ", ".(isset($this->subtype) ? (int) $this->subtype : "null");
738 $sql .= ", ".((int) $socid);
739 $sql .= ", '".$this->db->idate($this->date_creation)."'";
740 // Date of invoice is a full day, if entered the 27-01 at 22:00 in timezone of user, it must be 27-01 00:00 after the conversion by idate, so when SQL is truncated we keep the 27-01.
741 // So we hope that caller has set the gmt datein ->date to match this.
742 $sql .= ", '".$this->db->idate($this->date)."'";
743 $sql .= ", ".(empty($this->date_pointoftax) ? "null" : "'".$this->db->idate($this->date_pointoftax)."'");
744 $sql .= ", ".($this->note_private ? "'".$this->db->escape($this->note_private)."'" : "null");
745 $sql .= ", ".($this->note_public ? "'".$this->db->escape($this->note_public)."'" : "null");
746 $sql .= ", ".($this->ref_customer ? "'".$this->db->escape($this->ref_customer)."'" : ($this->ref_client ? "'".$this->db->escape($this->ref_client)."'" : "null"));
747 $sql .= ", ".($this->fk_account > 0 ? $this->fk_account : 'NULL');
748 $sql .= ", ".($this->module_source ? "'".$this->db->escape($this->module_source)."'" : "null");
749 $sql .= ", ".($this->pos_source != '' ? "'".$this->db->escape((string) $this->pos_source)."'" : "null");
750 $sql .= ", ".(int) $this->pos_print_counter;
751 $sql .= ", ".($this->fk_fac_rec_source ? "'".$this->db->escape((string) $this->fk_fac_rec_source)."'" : "null");
752 $sql .= ", ".($this->fk_facture_source ? "'".$this->db->escape((string) $this->fk_facture_source)."'" : "null");
753 $sql .= ", ".($origin_user_author_id > 0 ? (int) $origin_user_author_id : "null");
754 $sql .= ", ".($this->fk_project ? (int) $this->fk_project : "null");
755 $sql .= ", ".((int) $this->cond_reglement_id);
756 $sql .= ", ".((int) $this->mode_reglement_id);
757 $sql .= ", '".$this->db->idate($this->date_lim_reglement)."'";
758 $sql .= ", ".(isset($this->model_pdf) ? "'".$this->db->escape($this->model_pdf)."'" : "null");
759 $sql .= ", ".($this->demand_reason_id > 0 ? (int) $this->demand_reason_id : "null");
760 $sql .= ", ".($this->situation_cycle_ref ? "'".$this->db->escape((string) $this->situation_cycle_ref)."'" : "null");
761 $sql .= ", ".($this->situation_counter ? "'".$this->db->escape((string) $this->situation_counter)."'" : "null");
762 $sql .= ", ".($this->situation_final ? (int) $this->situation_final : 0);
763 $sql .= ", ".(int) $this->fk_incoterms;
764 $sql .= ", '".$this->db->escape($this->location_incoterms)."'";
765 $sql .= ", ".(int) $this->fk_multicurrency;
766 $sql .= ", '".$this->db->escape($this->multicurrency_code)."'";
767 $sql .= ", ".(float) $this->multicurrency_tx;
768 $sql .= ", ".(empty($this->retained_warranty) ? "0" : $this->db->escape((string) $this->retained_warranty));
769 $sql .= ", ".(!empty($this->retained_warranty_date_limit) ? "'".$this->db->idate($this->retained_warranty_date_limit)."'" : 'NULL');
770 $sql .= ", ".(int) $this->retained_warranty_fk_cond_reglement;
771 $sql .= ", ".(!empty($this->ip) ? "'".$this->db->escape($this->ip)."'" : "null");
772 $sql .= ")";
773
774 $resql = $this->db->query($sql);
775 if ($resql) {
776 $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX.'facture');
777
778 // Update ref with new one
779 $this->ref = '(PROV'.$this->id.')';
780 $sql = 'UPDATE '.MAIN_DB_PREFIX."facture SET ref='".$this->db->escape($this->ref)."' WHERE rowid=".((int) $this->id);
781
782 $resql = $this->db->query($sql);
783 if (!$resql) {
784 $error++;
785 }
786
787 if (!empty($this->linkedObjectsIds) && empty($this->linked_objects)) { // To use new linkedObjectsIds instead of old linked_objects
788 $this->linked_objects = $this->linkedObjectsIds; // TODO Replace linked_objects with linkedObjectsIds
789 }
790
791 // Add object linked
792 if (!$error && $this->id && !empty($this->linked_objects) && is_array($this->linked_objects)) {
793 foreach ($this->linked_objects as $origin => $tmp_origin_id) {
794 if (is_array($tmp_origin_id)) { // New behaviour, if linked_object can have several links per type, so is something like array('contract'=>array(id1, id2, ...))
795 foreach ($tmp_origin_id as $origin_id) {
796 $ret = $this->add_object_linked($origin, $origin_id);
797 if (!$ret) {
798 $this->error = $this->db->lasterror();
799 $error++;
800 }
801 }
802 } else { // Old behaviour, if linked_object has only one link per type, so is something like array('contract'=>id1))
803 $origin_id = $tmp_origin_id;
804 $ret = $this->add_object_linked($origin, $origin_id);
805 if (!$ret) {
806 $this->error = $this->db->lasterror();
807 $error++;
808 }
809 }
810 }
811 }
812
813 // Propagate contacts
814 if (!$error && $this->id && getDolGlobalString('MAIN_PROPAGATE_CONTACTS_FROM_ORIGIN') && (!empty($this->origin_type) || !empty($this->origin)) && !empty($this->origin_id)) { // Get contact from origin object
815 $originforcontact = empty($this->origin_type) ? $this->origin : $this->origin_type;
816 $originidforcontact = $this->origin_id;
817 if ($originforcontact == 'shipping') { // shipment and order share the same contacts. If creating from shipment we take data of order
818 require_once DOL_DOCUMENT_ROOT.'/expedition/class/expedition.class.php';
819 $exp = new Expedition($this->db);
820 $exp->fetch($this->origin_id);
821 $exp->fetchObjectLinked(null, '', null, '', 'OR', 1, 'sourcetype', 0);
822 if (count($exp->linkedObjectsIds['commande']) > 0) {
823 foreach ($exp->linkedObjectsIds['commande'] as $key => $value) {
824 $originforcontact = 'commande';
825 if (is_object($value)) {
826 $originidforcontact = $value->id;
827 } else {
828 $originidforcontact = $value;
829 }
830 break; // We take first one
831 }
832 }
833 }
834
835 $sqlcontact = "SELECT ctc.code, ctc.source, ec.fk_socpeople";
836 $sqlcontact .= " FROM ".MAIN_DB_PREFIX."element_contact as ec, ".MAIN_DB_PREFIX."c_type_contact as ctc";
837 $sqlcontact .= " WHERE element_id = ".((int) $originidforcontact)." AND ec.fk_c_type_contact = ctc.rowid AND ctc.element = '".$this->db->escape($originforcontact)."'";
838
839 $resqlcontact = $this->db->query($sqlcontact);
840 if ($resqlcontact) {
841 while ($objcontact = $this->db->fetch_object($resqlcontact)) {
842 $this->add_contact($objcontact->fk_socpeople, $objcontact->code, $objcontact->source); // May failed because of duplicate key or because code of contact type does not exists for new object
843 }
844 } else {
845 dol_print_error($this->db);
846 }
847 }
848
849 // Insert lines of invoices, if not coming from template invoice, into database
850 if (!$error && empty($this->fac_rec) && count($this->lines) && is_object($this->lines[0])) { // If this->lines is array of InvoiceLines (preferred mode)
851 $fk_parent_line = 0;
852
853 dol_syslog("There is ".count($this->lines)." lines into ->lines that are InvoiceLines");
854 foreach ($this->lines as $i => $val) {
855 $newinvoiceline = $this->lines[$i];
856 '@phan-var-force FactureLigne $newinvoiceline';
857
858 $newinvoiceline->context = $this->context;
859
860 $newinvoiceline->fk_facture = $this->id;
861
862 $newinvoiceline->origin = $this->lines[$i]->element;
863 $newinvoiceline->origin_type = $this->lines[$i]->element;
864 $newinvoiceline->origin_id = $this->lines[$i]->id;
865
866 // Auto set date of service ?
867 if ($this->lines[$i]->date_start_fill == 1 && $originaldatewhen) { // $originaldatewhen is defined when generating from recurring invoice only
868 $newinvoiceline->date_start = $originaldatewhen;
869 }
870 if ($this->lines[$i]->date_end_fill == 1 && $previousdaynextdatewhen) { // $previousdaynextdatewhen is defined when generating from recurring invoice only
871 $newinvoiceline->date_end = $previousdaynextdatewhen;
872 }
873
874 if ($result >= 0) {
875 // Reset fk_parent_line for no child products and special product
876 if (($newinvoiceline->product_type != 9 && empty($newinvoiceline->fk_parent_line)) || $newinvoiceline->product_type == 9) {
877 $fk_parent_line = 0;
878 }
879
880 // Complete vat rate with code
881 $vatrate = $newinvoiceline->tva_tx;
882 if ($newinvoiceline->vat_src_code && ! preg_match('/\‍(.*\‍)/', (string) $vatrate)) {
883 $vatrate .= ' ('.$newinvoiceline->vat_src_code.')';
884 }
885
886 $newinvoiceline->fk_parent_line = $fk_parent_line;
887
888 if ($this->type == Facture::TYPE_REPLACEMENT && $newinvoiceline->fk_remise_except) {
889 $discount = new DiscountAbsolute($this->db);
890 $discount->fetch($newinvoiceline->fk_remise_except);
891
892 $discountId = $soc->set_remise_except($discount->amount_ht, $user, $discount->description, $discount->tva_tx);
893 $newinvoiceline->fk_remise_except = $discountId;
894 }
895
896 $result = $this->addline(
897 $newinvoiceline->desc,
898 $newinvoiceline->subprice,
899 $newinvoiceline->qty,
900 $vatrate,
901 $newinvoiceline->localtax1_tx,
902 $newinvoiceline->localtax2_tx,
903 $newinvoiceline->fk_product,
904 $newinvoiceline->remise_percent,
905 $newinvoiceline->date_start,
906 $newinvoiceline->date_end,
907 $newinvoiceline->fk_code_ventilation,
908 $newinvoiceline->info_bits,
909 $newinvoiceline->fk_remise_except,
910 'HT',
911 0,
912 $newinvoiceline->product_type,
913 $newinvoiceline->rang,
914 $newinvoiceline->special_code,
915 $newinvoiceline->element,
916 $newinvoiceline->id,
917 $fk_parent_line,
918 $newinvoiceline->fk_fournprice,
919 $newinvoiceline->pa_ht,
920 $newinvoiceline->label,
921 $newinvoiceline->array_options,
922 $newinvoiceline->situation_percent,
923 $newinvoiceline->fk_prev_id,
924 $newinvoiceline->fk_unit,
925 $newinvoiceline->multicurrency_subprice,
926 $newinvoiceline->ref_ext,
927 1
928 );
929
930 if ($result < 0) {
931 $this->setErrorsFromObject($newinvoiceline);
932 $error++;
933 break;
934 }
935
936 // Defined the new fk_parent_line
937 if ($result > 0 && $newinvoiceline->product_type == 9) {
938 $fk_parent_line = $result;
939 }
940 }
941 }
942 } elseif (!$error && empty($this->fac_rec)) { // If not coming from a template invoice and this->lines is an array of invoice line arrays
943 $fk_parent_line = 0;
944
945 dol_syslog("There is ".count($this->lines)." lines into ->lines as a simple array");
946
947 foreach ($this->lines as $i => $val) {
948 $line = $this->lines[$i];
949 '@phan-var-force FactureLigne $line';
950
951 // Test and convert into object this->lines[$i]. When coming from REST API, we may still have an array
952 //if (! is_object($line)) $line=json_decode(json_encode($line), false); // convert recursively array into object.
953 if (!is_object($line)) {
954 $line = (object) $line;
955 }
956
957 if ($result >= 0) {
958 // Reset fk_parent_line for no child products and special product
959 if (($line->product_type != 9 && empty($line->fk_parent_line)) || $line->product_type == 9) {
960 $fk_parent_line = 0;
961 }
962
963 // Complete vat rate with code
964 $vatrate = $line->tva_tx;
965 if ($line->vat_src_code && !preg_match('/\‍(.*\‍)/', (string) $vatrate)) {
966 $vatrate .= ' ('.$line->vat_src_code.')';
967 }
968
969 if (getDolGlobalString('MAIN_CREATEFROM_KEEP_LINE_ORIGIN_INFORMATION')) {
970 $originid = $line->origin_id;
971 $origintype = empty($line->origin_type) ? $line->origin : $line->origin_type;
972 } else { // old but bugged version (we store id of line and type of parent object)
973 $originid = $line->id;
974 $origintype = $this->element;
975 }
976
977 // init ref_ext
978 if (empty($line->ref_ext)) {
979 $line->ref_ext = '';
980 }
981
982 $result = $this->addline(
983 $line->desc,
984 $line->subprice,
985 $line->qty,
986 $vatrate,
987 $line->localtax1_tx,
988 $line->localtax2_tx,
989 $line->fk_product,
990 $line->remise_percent,
991 $line->date_start,
992 $line->date_end,
993 $line->fk_code_ventilation,
994 $line->info_bits,
995 $line->fk_remise_except,
996 'HT',
997 0,
998 $line->product_type,
999 $line->rang,
1000 $line->special_code,
1001 $origintype,
1002 $originid,
1003 $fk_parent_line,
1004 $line->fk_fournprice,
1005 $line->pa_ht,
1006 $line->label,
1007 $line->array_options,
1008 $line->situation_percent,
1009 $line->fk_prev_id,
1010 $line->fk_unit,
1011 $line->multicurrency_subprice,
1012 $line->ref_ext,
1013 1
1014 );
1015 if ($result < 0) {
1016 $this->error = $this->db->lasterror();
1017 dol_print_error($this->db);
1018 $this->db->rollback();
1019 return -1;
1020 }
1021
1022 // Defined the new fk_parent_line
1023 if ($result > 0 && $line->product_type == 9) {
1024 $fk_parent_line = $result;
1025 }
1026 }
1027 }
1028 }
1029
1030 // Insert lines when coming from a template invoice
1031 if (!$error && $this->fac_rec > 0 && is_object($_facrec)) {
1032 dol_syslog("There is ".count($_facrec->lines)." lines from recurring invoice");
1033 $fk_parent_line = 0;
1034
1035 foreach ($_facrec->lines as $i => $val) {
1036 // Reset fk_parent_line for no child products and special product
1037 if (($_facrec->lines[$i]->product_type != 9 && empty($_facrec->lines[$i]->fk_parent_line)) || $_facrec->lines[$i]->product_type == 9) {
1038 $fk_parent_line = 0;
1039 }
1040
1041 $tva_tx = $_facrec->lines[$i]->tva_tx.($_facrec->lines[$i]->vat_src_code ? '('.$_facrec->lines[$i]->vat_src_code.')' : '');
1042 $tva_npr = (int) $_facrec->lines[$i]->info_bits;
1043 if (empty($tva_tx)) {
1044 $tva_npr = 0;
1045 }
1046 $localtax1_tx = $_facrec->lines[$i]->localtax1_tx;
1047 $localtax2_tx = $_facrec->lines[$i]->localtax2_tx;
1048
1049 $fk_product_fournisseur_price = empty($_facrec->lines[$i]->fk_product_fournisseur_price) ? null : $_facrec->lines[$i]->fk_product_fournisseur_price;
1050 $buyprice = empty($_facrec->lines[$i]->buyprice) ? 0 : $_facrec->lines[$i]->buyprice;
1051
1052 // If buyprice not defined from template invoice, we try to guess the best value
1053 if (!$buyprice && $_facrec->lines[$i]->fk_product > 0) {
1054 require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.product.class.php';
1055 $producttmp = new ProductFournisseur($this->db);
1056 $producttmp->fetch($_facrec->lines[$i]->fk_product);
1057
1058 // If margin module defined on costprice, we try the costprice
1059 // If not defined or if module margin defined and pmp and stock module enabled, we try pmp price
1060 // else we get the best supplier price
1061 if (getDolGlobalString('MARGIN_TYPE') == 'costprice' && !empty($producttmp->cost_price)) {
1062 $buyprice = $producttmp->cost_price;
1063 } elseif (isModEnabled('stock') && (getDolGlobalString('MARGIN_TYPE') == 'costprice' || getDolGlobalString('MARGIN_TYPE') == 'pmp') && !empty($producttmp->pmp)) {
1064 $buyprice = $producttmp->pmp;
1065 } else {
1066 if ($producttmp->find_min_price_product_fournisseur($_facrec->lines[$i]->fk_product) > 0) {
1067 if ($producttmp->product_fourn_price_id > 0) {
1068 $buyprice = price2num($producttmp->fourn_unitprice * (1 - $producttmp->fourn_remise_percent / 100) + $producttmp->fourn_remise, 'MU');
1069 }
1070 }
1071 }
1072 }
1073
1074 // Update price according to $updatecurrencyrate
1075 if ($updatecurrencyrate == 1) {
1076 // TODO
1077 } elseif ($updatecurrencyrate == 2) {
1078 // TODO
1079 }
1080
1081 $result_insert = $this->addline(
1082 $_facrec->lines[$i]->desc,
1083 $_facrec->lines[$i]->subprice,
1084 $_facrec->lines[$i]->qty,
1085 $tva_tx,
1086 $localtax1_tx,
1087 $localtax2_tx,
1088 $_facrec->lines[$i]->fk_product,
1089 $_facrec->lines[$i]->remise_percent,
1090 ($_facrec->lines[$i]->date_start_fill == 1 && $originaldatewhen) ? $originaldatewhen : '',
1091 ($_facrec->lines[$i]->date_end_fill == 1 && $previousdaynextdatewhen) ? $previousdaynextdatewhen : '',
1092 0,
1093 $tva_npr,
1094 0, // fk_remise_except
1095 'HT',
1096 0,
1097 $_facrec->lines[$i]->product_type,
1098 $_facrec->lines[$i]->rang,
1099 $_facrec->lines[$i]->special_code,
1100 '',
1101 0,
1102 $fk_parent_line,
1103 $fk_product_fournisseur_price,
1104 is_null($buyprice) ? '' : $buyprice, // do not use (float) here, it may be ''
1105 $_facrec->lines[$i]->label,
1106 empty($_facrec->lines[$i]->array_options) ? null : $_facrec->lines[$i]->array_options,
1107 100, // situation percent is undefined on recurring invoice lines
1108 0, // fk_prev_id
1109 $_facrec->lines[$i]->fk_unit,
1110 $_facrec->lines[$i]->multicurrency_subprice,
1111 $_facrec->lines[$i]->ref_ext,
1112 1
1113 );
1114
1115 foreach ($this->lines as $line) {
1116 if ($line->id == $result_insert) {
1117 $line->extraparams = $_facrec->lines[$i]->extraparams;
1118 $line->setExtraParameters();
1119 }
1120 }
1121
1122 // Defined the new fk_parent_line
1123 if ($result_insert > 0 && $_facrec->lines[$i]->product_type == 9) {
1124 $fk_parent_line = $result_insert;
1125 }
1126
1127 if ($result_insert < 0) {
1128 $error++;
1129 $this->error = $this->db->error();
1130 break;
1131 }
1132 }
1133 }
1134
1135 if (!$error) {
1136 $result = $this->update_price(1, 'auto', 0, $mysoc);
1137 if ($result <= 0) {
1138 $this->error = $langs->trans('FailedToUpdatePrice');
1139 $this->db->rollback();
1140 return -3;
1141 }
1142 }
1143
1144 $action = 'create';
1145
1146 // Actions on extra fields
1147 if (!$error) {
1148 $result = $this->insertExtraFields();
1149 if ($result < 0) {
1150 $error++;
1151 }
1152 }
1153
1154 if (!$error && !$notrigger) {
1155 // Call trigger
1156 $result = $this->call_trigger('BILL_CREATE', $user);
1157 if ($result < 0) {
1158 $error++;
1159 }
1160 }
1161
1162 if (!$error) {
1163 $this->db->commit();
1164 return $this->id;
1165 } else {
1166 $this->db->rollback();
1167 return -4;
1168 }
1169 } else {
1170 $this->error = $this->db->error();
1171 $this->db->rollback();
1172 return -1;
1173 }
1174 }
1175
1176
1184 public function createFromCurrent(User $user, $invertdetail = 0)
1185 {
1186 // Source invoice load
1187 $facture = new Facture($this->db);
1188
1189 // Avoid updating the row ranks
1190 $facture->context['createfromclone'] = 1;
1191
1192 // Retrieve all extrafield
1193 // fetch optionals attributes and labels
1194 $this->fetch_optionals();
1195
1196 if (!empty($this->array_options)) {
1197 $facture->array_options = $this->array_options;
1198 }
1199
1200 foreach ($this->lines as &$line) {
1201 $line->fetch_optionals(); //fetch extrafields
1202 }
1203
1204 $facture->fk_facture_source = $this->fk_facture_source;
1205 $facture->type = $this->type;
1206 $facture->subtype = $this->subtype;
1207 $facture->socid = $this->socid;
1208 $facture->date = $this->date;
1209 $facture->date_pointoftax = $this->date_pointoftax;
1210 $facture->note_public = $this->note_public;
1211 $facture->note_private = $this->note_private;
1212 $facture->ref_client = $this->ref_client;
1213 $facture->ref_customer = $this->ref_customer;
1214 $facture->model_pdf = $this->model_pdf;
1215 $facture->fk_project = $this->fk_project;
1216 $facture->cond_reglement_id = $this->cond_reglement_id;
1217 $facture->mode_reglement_id = $this->mode_reglement_id;
1218
1219 $facture->origin = $this->origin;
1220 $facture->origin_id = $this->origin_id;
1221 $facture->fk_account = $this->fk_account;
1222
1223 $facture->lines = $this->lines; // Array of lines of invoice
1224 $facture->situation_counter = $this->situation_counter;
1225 $facture->situation_cycle_ref = $this->situation_cycle_ref;
1226 $facture->situation_final = $this->situation_final;
1227
1228 $facture->retained_warranty = $this->retained_warranty;
1229 $facture->retained_warranty_fk_cond_reglement = $this->retained_warranty_fk_cond_reglement;
1230 $facture->retained_warranty_date_limit = $this->retained_warranty_date_limit;
1231
1232 $facture->fk_user_author = $user->id;
1233 $facture->user_creation_id = $user->id;
1234
1235
1236 // Loop on each line of new invoice
1237 foreach ($facture->lines as $i => $tmpline) {
1238 $facture->lines[$i]->fk_prev_id = $this->lines[$i]->rowid;
1239 if ($invertdetail) {
1240 $facture->lines[$i]->subprice = -$facture->lines[$i]->subprice;
1241 $facture->lines[$i]->total_ht = -$facture->lines[$i]->total_ht;
1242 $facture->lines[$i]->total_tva = -$facture->lines[$i]->total_tva;
1243 $facture->lines[$i]->total_localtax1 = -$facture->lines[$i]->total_localtax1;
1244 $facture->lines[$i]->total_localtax2 = -$facture->lines[$i]->total_localtax2;
1245 $facture->lines[$i]->total_ttc = -$facture->lines[$i]->total_ttc;
1246 $facture->lines[$i]->ref_ext = '';
1247 }
1248 }
1249
1250 dol_syslog(get_class($this)."::createFromCurrent invertdetail=".$invertdetail." socid=".$this->socid." nboflines=".count($facture->lines));
1251
1252 $facid = $facture->create($user);
1253 if ($facid <= 0) {
1254 $this->error = $facture->error;
1255 $this->errors = $facture->errors;
1256 } elseif ($this->type == self::TYPE_SITUATION && getDolGlobalString('INVOICE_USE_SITUATION')) {
1257 $this->fetchObjectLinked(null, '', $this->id, 'facture');
1258
1259 foreach ($this->linkedObjectsIds as $typeObject => $Tfk_object) {
1260 foreach ($Tfk_object as $fk_object) {
1261 $facture->add_object_linked($typeObject, $fk_object);
1262 }
1263 }
1264
1265 $facture->add_object_linked('facture', $this->fk_facture_source);
1266 }
1267
1268 return $facid;
1269 }
1270
1271
1280 public function createFromClone(User $user, $fromid = 0, $forceentity = null)
1281 {
1282 global $hookmanager;
1283
1284 $error = 0;
1285
1286 $object = new Facture($this->db);
1287
1288 $this->db->begin();
1289
1290 $object->fetch($fromid);
1291 // fetch() clears $object->thirdparty, but the subsequent $object->create() path
1292 // reaches addLine() -> getLocalTaxesFromRate() -> get_localtax() and uses the
1293 // buyer thirdparty to decide whether IRPF/localtax2 applies. Without this fetch,
1294 // get_localtax() sees $thirdparty_buyer = null, returns 0 and the cloned lines
1295 // lose their localtax2_tx (see issue #29052).
1296 $object->fetch_thirdparty();
1297
1298 // Load source object
1299 $objFrom = clone $object;
1300
1301 // Change socid if needed
1302 if (!empty($this->socid) && $this->socid != $object->socid) {
1303 $objsoc = new Societe($this->db);
1304
1305 if ($objsoc->fetch($this->socid) > 0) {
1306 $object->socid = $objsoc->id;
1307 $object->cond_reglement_id = (!empty($objsoc->cond_reglement_id) ? $objsoc->cond_reglement_id : 0);
1308 $object->mode_reglement_id = (!empty($objsoc->mode_reglement_id) ? $objsoc->mode_reglement_id : 0);
1309 $object->fk_project = 0;
1310 $object->fk_delivery_address = 0;
1311 }
1312
1313 // TODO Change product price if multi-prices
1314 }
1315
1316 $object->entity = (!empty($forceentity) ? $forceentity : $object->entity);
1317
1318 $object->id = 0;
1319 $object->statut = self::STATUS_DRAFT;
1320 $object->status = self::STATUS_DRAFT;
1321
1322 // Clear fields
1323 $object->date = (empty($this->date) ? dol_now() : $this->date);
1324 $object->user_creation_id = $user->id;
1325 $object->user_validation_id = null;
1326 $object->user_modification_id = null;
1327 $object->fk_user_author = $user->id;
1328 $object->fk_user_valid = null;
1329 $object->fk_facture_source = 0;
1330 $object->fk_fac_rec_source = 0;
1331 $object->date_creation = '';
1332 $object->date_modification = '';
1333 $object->date_validation = '';
1334 $object->ref_client = '';
1335 $object->ref_customer = '';
1336 $object->close_code = '';
1337 $object->close_note = '';
1338 if (getDolGlobalInt('MAIN_DONT_KEEP_NOTE_ON_CLONING') == 1) {
1339 $object->note_private = '';
1340 $object->note_public = '';
1341 }
1342
1343 // Loop on each line of new invoice
1344 foreach ($object->lines as $i => $line) {
1345 '@phan-var-force FactureLigne $line';
1346 if (($line->info_bits & 0x02) == 0x02) { // We do not clone line of discounts
1347 unset($object->lines[$i]);
1348 continue;
1349 }
1350
1351 // Block to update dates of service (month by month only if previously filled and similar to start and end of month)
1352 // If it's a service with start and end dates
1353 if (getDolGlobalString('INVOICE_AUTO_NEXT_MONTH_ON_LINES') && !empty($line->date_start) && !empty($line->date_end)) {
1354 // Get the dates
1355 $start = dol_getdate($line->date_start);
1356 $end = dol_getdate($line->date_end);
1357
1358 // Get the first and last day of the month
1359 $first = dol_get_first_day($start['year'], $start['mon']);
1360 $last = dol_get_last_day($end['year'], $end['mon']);
1361
1362 //print dol_print_date(dol_mktime(0, 0, 0, $start['mon'], $start['mday'], $start['year'], 'gmt'), 'dayhour').' '.dol_print_date($first, 'dayhour').'<br>';
1363 //print dol_mktime(23, 59, 59, $end['mon'], $end['mday'], $end['year'], 'gmt').' '.$last.'<br>';exit;
1364 // If start date is first date of month and end date is last date of month
1365 if (dol_mktime(0, 0, 0, $start['mon'], $start['mday'], $start['year'], 'gmt') == $first
1366 && dol_mktime(23, 59, 59, $end['mon'], $end['mday'], $end['year'], 'gmt') == $last) {
1367 $nextMonth = dol_get_next_month($end['mon'], $end['year']);
1368 $newFirst = dol_get_first_day($nextMonth['year'], $nextMonth['month']);
1369 $newLast = dol_get_last_day($nextMonth['year'], $nextMonth['month']);
1370 $object->lines[$i]->date_start = $newFirst;
1371 $object->lines[$i]->date_end = $newLast;
1372 }
1373 }
1374
1375 $object->lines[$i]->ref_ext = ''; // Do not clone ref_ext
1376
1377 // Do not clone accountancy ventilation: a cloned invoice must reappear in "to dispatch" list
1378 $object->lines[$i]->fk_code_ventilation = 0;
1379 }
1380
1381 // Create clone
1382 $object->context['createfromclone'] = 'createfromclone';
1383 $result = $object->create($user);
1384
1385 if ($result < 0) {
1386 $error++;
1387 $this->setErrorsFromObject($object);
1388 } else {
1389 // copy internal contacts
1390 if ($object->copy_linked_contact($objFrom, 'internal') < 0) {
1391 $error++;
1392 $this->setErrorsFromObject($object);
1393 } elseif ($object->socid == $objFrom->socid) {
1394 // copy external contacts if same company
1395 if ($object->copy_linked_contact($objFrom, 'external') < 0) {
1396 $error++;
1397 $this->setErrorsFromObject($object);
1398 }
1399 }
1400 }
1401
1402 if (!$error) {
1403 // Hook of thirdparty module
1404 if (is_object($hookmanager)) {
1405 $parameters = array('objFrom' => $objFrom);
1406 $action = '';
1407 $reshook = $hookmanager->executeHooks('createFrom', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
1408 if ($reshook < 0) {
1409 $this->setErrorsFromObject($hookmanager);
1410 $error++;
1411 }
1412 }
1413 }
1414
1415 unset($object->context['createfromclone']);
1416
1417 // End
1418 if (!$error) {
1419 $this->db->commit();
1420 return $object->id;
1421 } else {
1422 $this->db->rollback();
1423 return -1;
1424 }
1425 }
1426
1434 public function createFromOrder($object, User $user)
1435 {
1436 global $hookmanager;
1437
1438 $error = 0;
1439
1440 // Closed order
1441 $this->date = dol_now();
1442 $this->source = 0;
1443
1444 // Avoid updating the row ranks
1445 $this->context['createfromclone'] = 1;
1446
1447 $num = count($object->lines);
1448 for ($i = 0; $i < $num; $i++) {
1449 $line = new FactureLigne($this->db);
1450 $src_line = $object->lines[$i];
1451 '@phan-var-force FactureLigne $src_line';
1452 $line->libelle = $src_line->libelle; // deprecated
1453 $line->label = $src_line->label;
1454 $line->desc = $src_line->desc;
1455 $line->subprice = $src_line->subprice;
1456 $line->total_ht = $src_line->total_ht;
1457 $line->total_tva = $src_line->total_tva;
1458 $line->total_localtax1 = $src_line->total_localtax1;
1459 $line->total_localtax2 = $src_line->total_localtax2;
1460 $line->total_ttc = $src_line->total_ttc;
1461 $line->vat_src_code = $src_line->vat_src_code;
1462 $line->tva_tx = $src_line->tva_tx;
1463 $line->localtax1_tx = $src_line->localtax1_tx;
1464 $line->localtax2_tx = $src_line->localtax2_tx;
1465 $line->qty = $src_line->qty;
1466 $line->fk_remise_except = $src_line->fk_remise_except;
1467 $line->remise_percent = $src_line->remise_percent;
1468 $line->fk_product = $src_line->fk_product;
1469 $line->info_bits = $src_line->info_bits;
1470 $line->product_type = $src_line->product_type;
1471 $line->rang = $src_line->rang;
1472 $line->special_code = $src_line->special_code;
1473 $line->fk_parent_line = $src_line->fk_parent_line;
1474 $line->fk_unit = $src_line->fk_unit;
1475 $line->date_start = $src_line->date_start;
1476 $line->date_end = $src_line->date_end;
1477
1478 // Multicurrency
1479 $line->fk_multicurrency = $src_line->fk_multicurrency;
1480 $line->multicurrency_code = $src_line->multicurrency_code;
1481 $line->multicurrency_subprice = $src_line->multicurrency_subprice;
1482 $line->multicurrency_total_ht = $src_line->multicurrency_total_ht;
1483 $line->multicurrency_total_tva = $src_line->multicurrency_total_tva;
1484 $line->multicurrency_total_ttc = $src_line->multicurrency_total_ttc;
1485
1486 $line->fk_fournprice = $src_line->fk_fournprice;
1487 $marginInfos = getMarginInfos($src_line->subprice, $src_line->remise_percent, $src_line->tva_tx, $src_line->localtax1_tx, $src_line->localtax2_tx, $src_line->fk_fournprice, $src_line->pa_ht);
1488 $line->pa_ht = $marginInfos[0];
1489
1490 // get extrafields from original line
1491 $src_line->fetch_optionals();
1492 foreach ($src_line->array_options as $options_key => $value) {
1493 $line->array_options[$options_key] = $value;
1494 }
1495
1496 $this->lines[$i] = $line;
1497 }
1498
1499 $this->socid = $object->socid;
1500 $this->fk_project = $object->fk_project;
1501 $this->fk_account = $object->fk_account;
1502 $this->cond_reglement_id = $object->cond_reglement_id;
1503 $this->mode_reglement_id = $object->mode_reglement_id;
1504 $this->fk_incoterms = $object->fk_incoterms;
1505 $this->location_incoterms = $object->location_incoterms;
1506 $this->availability_id = $object->availability_id;
1507 $this->demand_reason_id = $object->demand_reason_id;
1508 $this->delivery_date = $object->delivery_date;
1509 $this->fk_delivery_address = $object->fk_delivery_address; // deprecated
1510 $this->contact_id = $object->contact_id;
1511 $this->ref_client = $object->ref_client;
1512 $this->ref_customer = $object->ref_client;
1513
1514 if (!getDolGlobalString('MAIN_DISABLE_PROPAGATE_NOTES_FROM_ORIGIN')) {
1515 $this->note_private = $object->note_private;
1516 $this->note_public = $object->note_public;
1517 }
1518
1519 $this->module_source = $object->module_source;
1520 $this->pos_source = $object->pos_source;
1521
1522 $this->origin = $object->element;
1523 $this->origin_type = $object->element;
1524 $this->origin_id = $object->id;
1525
1526 $this->fk_user_author = $user->id;
1527 $this->user_creation_id = $user->id;
1528
1529 // get extrafields from original line
1530 $object->fetch_optionals();
1531 foreach ($object->array_options as $options_key => $value) {
1532 $this->array_options[$options_key] = $value;
1533 }
1534
1535 // Possibility to add external linked objects with hooks
1536 $this->linked_objects[$this->origin] = $this->origin_id;
1537 if (!empty($object->other_linked_objects) && is_array($object->other_linked_objects)) {
1538 $this->linked_objects = array_merge($this->linked_objects, $object->other_linked_objects);
1539 }
1540
1541 $ret = $this->create($user);
1542
1543 if ($ret > 0) {
1544 // Actions hooked (by external module)
1545 $hookmanager->initHooks(array('invoicedao'));
1546
1547 $parameters = array('objFrom' => $object);
1548 $action = '';
1549 $reshook = $hookmanager->executeHooks('createFrom', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
1550 if ($reshook < 0) {
1551 $this->setErrorsFromObject($hookmanager);
1552 $error++;
1553 }
1554 } else {
1555 $error++;
1556 }
1557
1558 unset($this->context['createfromclone']);
1559
1560 if (!$error) {
1561 return 1;
1562 } else {
1563 return -1;
1564 }
1565 }
1566
1575 public function createFromContract($object, User $user, $lines = array())
1576 {
1577 global $hookmanager;
1578
1579 $error = 0;
1580
1581 // Closed order
1582 $this->date = dol_now();
1583 $this->source = 0;
1584
1585 $use_all_lines = empty($lines);
1586 $num = count($object->lines);
1587 for ($i = 0; $i < $num; $i++) {
1588 if (!$use_all_lines && !in_array($object->lines[$i]->id, $lines)) {
1589 continue;
1590 }
1591
1592 $line = new FactureLigne($this->db);
1593
1594 $line->libelle = $object->lines[$i]->libelle; // deprecated
1595 $line->label = $object->lines[$i]->label;
1596 $line->desc = $object->lines[$i]->desc;
1597 $line->subprice = $object->lines[$i]->subprice;
1598 $line->total_ht = $object->lines[$i]->total_ht;
1599 $line->total_tva = $object->lines[$i]->total_tva;
1600 $line->total_localtax1 = $object->lines[$i]->total_localtax1;
1601 $line->total_localtax2 = $object->lines[$i]->total_localtax2;
1602 $line->total_ttc = $object->lines[$i]->total_ttc;
1603 $line->vat_src_code = $object->lines[$i]->vat_src_code;
1604 $line->tva_tx = $object->lines[$i]->tva_tx;
1605 $line->localtax1_tx = $object->lines[$i]->localtax1_tx;
1606 $line->localtax2_tx = $object->lines[$i]->localtax2_tx;
1607 $line->qty = $object->lines[$i]->qty;
1608 $line->fk_remise_except = $object->lines[$i]->fk_remise_except;
1609 $line->remise_percent = $object->lines[$i]->remise_percent;
1610 $line->fk_product = $object->lines[$i]->fk_product;
1611 $line->info_bits = $object->lines[$i]->info_bits;
1612 $line->product_type = $object->lines[$i]->product_type;
1613 $line->rang = $object->lines[$i]->rang;
1614 $line->special_code = $object->lines[$i]->special_code;
1615 $line->fk_parent_line = $object->lines[$i]->fk_parent_line;
1616 $line->fk_unit = $object->lines[$i]->fk_unit;
1617 $line->date_start = $object->lines[$i]->date_start;
1618 $line->date_end = $object->lines[$i]->date_end;
1619
1620 // Multicurrency
1621 $line->fk_multicurrency = $object->lines[$i]->fk_multicurrency;
1622 $line->multicurrency_code = $object->lines[$i]->multicurrency_code;
1623 $line->multicurrency_subprice = $object->lines[$i]->multicurrency_subprice;
1624 $line->multicurrency_total_ht = $object->lines[$i]->multicurrency_total_ht;
1625 $line->multicurrency_total_tva = $object->lines[$i]->multicurrency_total_tva;
1626 $line->multicurrency_total_ttc = $object->lines[$i]->multicurrency_total_ttc;
1627
1628 $line->fk_fournprice = $object->lines[$i]->fk_fournprice;
1629 $marginInfos = getMarginInfos($object->lines[$i]->subprice, $object->lines[$i]->remise_percent, $object->lines[$i]->tva_tx, $object->lines[$i]->localtax1_tx, $object->lines[$i]->localtax2_tx, $object->lines[$i]->fk_fournprice, $object->lines[$i]->pa_ht);
1630 $line->pa_ht = $marginInfos[0];
1631
1632 // get extrafields from original line
1633 $object->lines[$i]->fetch_optionals();
1634 foreach ($object->lines[$i]->array_options as $options_key => $value) {
1635 $line->array_options[$options_key] = $value;
1636 }
1637
1638 $this->lines[$i] = $line;
1639 }
1640
1641 $this->socid = $object->socid;
1642 $this->fk_project = $object->fk_project;
1643 $this->fk_account = $object->fk_account;
1644 $this->cond_reglement_id = $object->cond_reglement_id;
1645 $this->mode_reglement_id = $object->mode_reglement_id;
1646 $this->availability_id = $object->availability_id;
1647 $this->demand_reason_id = $object->demand_reason_id;
1648 $this->delivery_date = $object->delivery_date;
1649 $this->fk_delivery_address = $object->fk_delivery_address; // deprecated
1650 $this->contact_id = $object->contact_id;
1651 $this->ref_client = $object->ref_client;
1652
1653 if (!getDolGlobalString('MAIN_DISABLE_PROPAGATE_NOTES_FROM_ORIGIN')) {
1654 $this->note_private = $object->note_private;
1655 $this->note_public = $object->note_public;
1656 }
1657
1658 $this->module_source = $object->module_source;
1659 $this->pos_source = $object->pos_source;
1660
1661 $this->origin = $object->element;
1662 $this->origin_id = $object->id;
1663
1664 $this->fk_user_author = $user->id;
1665 $this->user_creation_id = $user->id;
1666
1667 // get extrafields from original line
1668 $object->fetch_optionals();
1669 foreach ($object->array_options as $options_key => $value) {
1670 $this->array_options[$options_key] = $value;
1671 }
1672
1673 // Possibility to add external linked objects with hooks
1674 $this->linked_objects[$this->origin] = $this->origin_id;
1675 if (!empty($object->other_linked_objects) && is_array($object->other_linked_objects)) {
1676 $this->linked_objects = array_merge($this->linked_objects, $object->other_linked_objects);
1677 }
1678
1679 $ret = $this->create($user);
1680
1681 if ($ret > 0) {
1682 // Actions hooked (by external module)
1683 $hookmanager->initHooks(array('invoicedao'));
1684
1685 $parameters = array('objFrom' => $object);
1686 $action = '';
1687 $reshook = $hookmanager->executeHooks('createFrom', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
1688 if ($reshook < 0) {
1689 $this->setErrorsFromObject($hookmanager);
1690 $error++;
1691 }
1692
1693 if (!$error) {
1694 return 1;
1695 } else {
1696 return -1;
1697 }
1698 } else {
1699 return -1;
1700 }
1701 }
1702
1715 public static function createDepositFromOrigin(CommonObject $origin, $date, $payment_terms_id, User $user, $notrigger = 0, $autoValidateDeposit = false, $overrideFields = array())
1716 {
1717 global $conf, $langs, $hookmanager, $action;
1718
1719 if (! in_array($origin->element, array('propal', 'commande'))) {
1720 $origin->error = 'ErrorCanOnlyAutomaticallyGenerateADepositFromProposalOrOrder';
1721 return null;
1722 }
1723
1724 if (empty($date)) {
1725 $origin->error = $langs->trans('ErrorFieldRequired', $langs->transnoentities('DateInvoice'));
1726 return null;
1727 }
1728
1729 require_once DOL_DOCUMENT_ROOT . '/core/lib/date.lib.php';
1730
1731 if ($date > (dol_get_last_hour(dol_now('tzuserrel')) + getDolGlobalInt('INVOICE_MAX_FUTURE_DELAY'))) {
1732 $origin->error = 'ErrorDateIsInFuture';
1733 return null;
1734 }
1735
1736 if ($payment_terms_id <= 0) {
1737 $origin->error = $langs->trans('ErrorFieldRequired', $langs->transnoentities('PaymentConditionsShort'));
1738 return null;
1739 }
1740
1741 $payment_conditions_deposit_percent = getDictionaryValue('c_payment_term', 'deposit_percent', $origin->cond_reglement_id);
1742
1743 if (empty($payment_conditions_deposit_percent)) {
1744 $origin->error = 'ErrorPaymentConditionsNotEligibleToDepositCreation';
1745 return null;
1746 }
1747
1748 if (empty($origin->deposit_percent)) {
1749 $origin->error = $langs->trans('ErrorFieldRequired', $langs->transnoentities('DepositPercent'));
1750 return null;
1751 }
1752
1753 $deposit = new self($origin->db);
1754 $deposit->socid = $origin->socid;
1755 $deposit->type = self::TYPE_DEPOSIT;
1756 $deposit->fk_project = $origin->fk_project;
1757 $deposit->ref_client = $origin->ref_client;
1758 $deposit->ref_customer = $origin->ref_client;
1759 $deposit->date = $date;
1760 $deposit->mode_reglement_id = $origin->mode_reglement_id;
1761 $deposit->cond_reglement_id = $payment_terms_id;
1762 $deposit->availability_id = $origin->availability_id;
1763 $deposit->demand_reason_id = $origin->demand_reason_id;
1764 $deposit->fk_account = $origin->fk_account;
1765 $deposit->fk_incoterms = $origin->fk_incoterms;
1766 $deposit->location_incoterms = $origin->location_incoterms;
1767 $deposit->fk_multicurrency = $origin->fk_multicurrency;
1768 $deposit->multicurrency_code = $origin->multicurrency_code;
1769 $deposit->multicurrency_tx = $origin->multicurrency_tx;
1770 $deposit->module_source = $origin->module_source;
1771 $deposit->pos_source = $origin->pos_source;
1772 $deposit->model_pdf = 'sponge';
1773
1774 $modelByTypeConfName = 'FACTURE_ADDON_PDF_' . $deposit->type;
1775
1776 if (getDolGlobalString($modelByTypeConfName)) {
1777 $deposit->model_pdf = getDolGlobalString($modelByTypeConfName);
1778 } elseif (getDolGlobalString('FACTURE_ADDON_PDF')) {
1779 $deposit->model_pdf = getDolGlobalString('FACTURE_ADDON_PDF');
1780 }
1781
1782 if (!getDolGlobalString('MAIN_DISABLE_PROPAGATE_NOTES_FROM_ORIGIN')) {
1783 $deposit->note_private = $origin->note_private;
1784 $deposit->note_public = $origin->note_public;
1785 }
1786
1787 $deposit->origin = $origin->element;
1788 $deposit->origin_type = $origin->element;
1789 $deposit->origin_id = $origin->id;
1790
1791 $origin->fetch_optionals();
1792
1793 foreach ($origin->array_options as $extrakey => $value) {
1794 $deposit->array_options[$extrakey] = $value;
1795 }
1796
1797 $deposit->linked_objects[$deposit->origin_type] = $deposit->origin_id;
1798
1799 foreach ($overrideFields as $key => $value) {
1800 $deposit->$key = $value;
1801 }
1802
1803 $deposit->context['createdepositfromorigin'] = 'createdepositfromorigin';
1804
1805 $origin->db->begin();
1806
1807 // Facture::create() also imports contact from origin
1808 $createReturn = $deposit->create($user, $notrigger);
1809
1810 if ($createReturn <= 0) {
1811 $origin->db->rollback();
1812 $origin->error = $deposit->error;
1813 $origin->errors = $deposit->errors;
1814 return null;
1815 }
1816
1817 $amount_ttc_diff = 0;
1818 $amountdeposit = array();
1819 $descriptions = array();
1820
1821 // Bucket lines by tva_tx + vat_src_code so addline below receives the rate in
1822 // the "tva (CODE)" format that Facture::addline knows how to parse. Bucketing
1823 // on tva_tx alone wipes out the dictionary Code on the generated deposit line
1824 // and on every downstream document derived from it (see issue #38035).
1825 if (getDolGlobalString('MAIN_DEPOSIT_MULTI_TVA')) {
1826 $amount = $origin->total_ttc * ($origin->deposit_percent / 100);
1827
1828 $TTotalByTva = array();
1829 foreach ($origin->lines as &$line) {
1830 if (!empty($line->special_code)) {
1831 continue;
1832 }
1833 $key = $line->tva_tx . ($line->vat_src_code ? ' ('.$line->vat_src_code.')' : '');
1834 if (!array_key_exists($key, $TTotalByTva)) {
1835 $TTotalByTva[$key] = 0;
1836 $descriptions[$key] = '';
1837 }
1838 $TTotalByTva[$key] += $line->total_ttc;
1839 $descriptions[$key] .= '<li>' . (!empty($line->product_ref) ? $line->product_ref . ' - ' : '');
1840 $descriptions[$key] .= (!empty($line->product_label) ? $line->product_label . ' - ' : '');
1841 $descriptions[$key] .= $langs->trans('Qty') . ' : ' . $line->qty;
1842 $descriptions[$key] .= ' - ' . $langs->trans('TotalHT') . ' : ' . price($line->total_ht) . '</li>';
1843 }
1844
1845 foreach ($TTotalByTva as $tva => &$total) {
1846 $tva_rate_only = preg_replace('/\s*\‍(.*\‍)/', '', (string) $tva);
1847 $coef = $total / $origin->total_ttc; // Calc coef
1848 $am = $amount * $coef;
1849 $amount_ttc_diff += $am;
1850 $amountdeposit[$tva] += $am / (1 + ((float) $tva_rate_only) / 100); // Convert into HT for the addline
1851 }
1852 } else {
1853 $totalamount = 0;
1854 $lines = $origin->lines;
1855 $numlines = count($lines);
1856 for ($i = 0; $i < $numlines; $i++) {
1857 if (empty($lines[$i]->qty)) {
1858 continue; // We discard qty=0, it is an option
1859 }
1860 if (!empty($lines[$i]->special_code)) {
1861 continue; // We discard special_code (frais port, ecotaxe, option, ...)
1862 }
1863
1864 $totalamount += $lines[$i]->total_ht; // Fixme : is it not for the customer ? Shouldn't we take total_ttc ?
1865 $tva_key = $lines[$i]->tva_tx . ($lines[$i]->vat_src_code ? ' ('.$lines[$i]->vat_src_code.')' : '');
1866 if (!isset($amountdeposit[$tva_key])) {
1867 $amountdeposit[$tva_key] = 0;
1868 $descriptions[$tva_key] = '';
1869 }
1870 $amountdeposit[$tva_key] += ((float) $lines[$i]->total_ht * (float) $origin->deposit_percent) / 100;
1871 $descriptions[$tva_key] .= '<li>' . (!empty($lines[$i]->product_ref) ? $lines[$i]->product_ref . ' - ' : '');
1872 $descriptions[$tva_key] .= (!empty($lines[$i]->product_label) ? $lines[$i]->product_label . ' - ' : '');
1873 $descriptions[$tva_key] .= $langs->trans('Qty') . ' : ' . $lines[$i]->qty;
1874 $descriptions[$tva_key] .= ' - ' . $langs->trans('TotalHT') . ' : ' . price($lines[$i]->total_ht) . '</li>';
1875 }
1876
1877 if ($totalamount == 0) {
1878 $amountdeposit[0] = 0;
1879 }
1880
1881 $amount_ttc_diff = $amountdeposit[0] ?? 0;
1882 }
1883
1884 foreach ($amountdeposit as $tva => $amount) {
1885 if (empty($amount)) {
1886 continue;
1887 }
1888
1889 $descline = '(DEPOSIT) ('. $origin->deposit_percent .'%) - '.$origin->ref;
1890
1891 // Hidden conf
1892 if (getDolGlobalString('INVOICE_DEPOSIT_VARIABLE_MODE_DETAIL_LINES_IN_DESCRIPTION') && !empty($descriptions[$tva])) {
1893 $descline .= '<ul>' . $descriptions[$tva] . '</ul>';
1894 }
1895
1896 $addlineResult = $deposit->addline(
1897 $descline,
1898 $amount, // subprice
1899 1, // quantity
1900 $tva, // vat rate
1901 0, // localtax1_tx
1902 0, // localtax2_tx
1903 (!getDolGlobalString('INVOICE_PRODUCTID_DEPOSIT') ? 0 : $conf->global->INVOICE_PRODUCTID_DEPOSIT), // fk_product
1904 0, // remise_percent
1905 0, // date_start
1906 0, // date_end
1907 0,
1908 0, // info_bits
1909 0,
1910 'HT',
1911 0,
1912 0, // product_type
1913 1,
1914 0, // special_code
1915 $deposit->origin,
1916 0,
1917 0,
1918 0,
1919 0
1920 //,$langs->trans('Deposit') //Deprecated
1921 );
1922
1923 if ($addlineResult < 0) {
1924 $origin->db->rollback();
1925 $origin->error = $deposit->error;
1926 $origin->errors = $deposit->errors;
1927 return null;
1928 }
1929 }
1930
1931 $diff = $deposit->total_ttc - $amount_ttc_diff;
1932
1933 if (getDolGlobalString('MAIN_DEPOSIT_MULTI_TVA') && $diff != 0) {
1934 $deposit->fetch_lines();
1935 $subprice_diff = $deposit->lines[0]->subprice - $diff / (1 + $deposit->lines[0]->tva_tx / 100);
1936
1937 // Pass tva_tx in the "rate (CODE)" form so updateline preserves the vat_src_code
1938 // it received from addline; passing the bare rate would wipe the code.
1939 $tva_tx_with_code = $deposit->lines[0]->tva_tx . ($deposit->lines[0]->vat_src_code ? ' ('.$deposit->lines[0]->vat_src_code.')' : '');
1940 $updatelineResult = $deposit->updateline(
1941 $deposit->lines[0]->id,
1942 $deposit->lines[0]->desc,
1943 $subprice_diff,
1944 $deposit->lines[0]->qty,
1945 $deposit->lines[0]->remise_percent,
1946 $deposit->lines[0]->date_start,
1947 $deposit->lines[0]->date_end,
1948 $tva_tx_with_code,
1949 0,
1950 0,
1951 'HT',
1952 $deposit->lines[0]->info_bits,
1953 $deposit->lines[0]->product_type,
1954 0,
1955 0,
1956 0,
1957 $deposit->lines[0]->pa_ht,
1958 $deposit->lines[0]->label,
1959 0,
1960 array(),
1961 100
1962 );
1963
1964 if ($updatelineResult < 0) {
1965 $origin->db->rollback();
1966 $origin->error = $deposit->error;
1967 $origin->errors = $deposit->errors;
1968 return null;
1969 }
1970 }
1971
1972 $hookmanager->initHooks(array('invoicedao'));
1973
1974 $parameters = array('objFrom' => $origin);
1975 $reshook = $hookmanager->executeHooks('createFrom', $parameters, $deposit, $action); // Note that $action and $object may have been
1976 // modified by hook
1977 if ($reshook < 0) {
1978 $origin->db->rollback();
1979 $origin->error = $hookmanager->error;
1980 $origin->errors = $hookmanager->errors;
1981 return null;
1982 }
1983
1984 if (!empty($autoValidateDeposit)) {
1985 $validateReturn = $deposit->validate($user, '', 0, $notrigger);
1986
1987 if ($validateReturn < 0) {
1988 $origin->db->rollback();
1989 $origin->error = $deposit->error;
1990 $origin->errors = $deposit->errors;
1991 return null;
1992 }
1993 }
1994
1995 unset($deposit->context['createdepositfromorigin']);
1996
1997 $origin->db->commit();
1998
1999 return $deposit;
2000 }
2001
2009 public function getTooltipContentArray($params)
2010 {
2011 global $conf, $langs, $mysoc, $user;
2012
2013 $langs->load('bills');
2014
2015 $datas = [];
2016 $moretitle = $params['moretitle'] ?? '';
2017
2018 $picto = $this->picto;
2019 if ($this->type == self::TYPE_REPLACEMENT) {
2020 $picto .= 'r'; // Replacement invoice
2021 }
2022 if ($this->type == self::TYPE_CREDIT_NOTE) {
2023 $picto .= 'a'; // Credit note
2024 }
2025 if ($this->type == self::TYPE_DEPOSIT) {
2026 $picto .= 'd'; // Deposit invoice
2027 }
2028
2029 if ($user->hasRight("facture", "read")) {
2030 $datas['picto'] = img_picto('', $picto).' <u class="paddingrightonly">'.$langs->trans("Invoice").'</u>';
2031
2032 $datas['picto'] .= '&nbsp;'.$this->getLibType(1);
2033
2034 // Complete datas
2035 if (!empty($params['fromajaxtooltip']) && !isset($this->totalpaid)) {
2036 $this->totalpaid = $this->getSommePaiement(0);
2037 }
2038 if (!empty($params['fromajaxtooltip']) && !isset($this->totalcreditnotes)) {
2039 $this->totalcreditnotes = $this->getSumCreditNotesUsed(0);
2040 }
2041 if (!empty($params['fromajaxtooltip']) && !isset($this->totaldeposits)) {
2042 $this->totaldeposits = $this->getSumDepositsUsed(0);
2043 }
2044 if (isset($this->status) && isset($this->totalpaid) && isset($this->totalcreditnotes) && isset($this->totaldeposits)) {
2045 $datas['picto'] .= ' '.$this->getLibStatut(5, $this->totalpaid + $this->totalcreditnotes + $this->totaldeposits);
2046 }
2047 if ($moretitle) {
2048 $datas['picto'] .= ' - '.$moretitle;
2049 }
2050 if (!empty($this->ref)) {
2051 $datas['ref'] = '<br><b>'.$langs->trans('Ref').':</b> '.$this->ref;
2052 }
2053 if (!empty($this->ref_customer)) {
2054 $datas['refcustomer'] = '<br><b>'.$langs->trans('RefCustomer').':</b> '.$this->ref_customer;
2055 }
2056 if (!empty($this->date)) {
2057 $datas['date'] = '<br><b>'.$langs->trans('Date').':</b> '.dol_print_date($this->date, 'day');
2058 }
2059 if (!empty($this->total_ht)) {
2060 $datas['amountht'] = '<br><b>'.$langs->trans('AmountHT').':</b> '.price($this->total_ht, 0, $langs, 0, -1, -1, $conf->currency);
2061 }
2062 if (!empty($this->total_tva)) {
2063 $datas['amountvat'] = '<br><b>'.$langs->trans('AmountVAT').':</b> '.price($this->total_tva, 0, $langs, 0, -1, -1, $conf->currency);
2064 }
2065 if (!empty($this->revenuestamp) && $this->revenuestamp != 0) {
2066 $datas['amountrevenustamp'] = '<br><b>'.$langs->trans('RevenueStamp').':</b> '.price($this->revenuestamp, 0, $langs, 0, -1, -1, $conf->currency);
2067 }
2068 if (!empty($this->total_localtax1) && $this->total_localtax1 != 0) {
2069 // We keep test != 0 because $this->total_localtax1 can be '0.00000000'
2070 $datas['amountlt1'] = '<br><b>'.$langs->transcountry('AmountLT1', $mysoc->country_code).':</b> '.price($this->total_localtax1, 0, $langs, 0, -1, -1, $conf->currency);
2071 }
2072 if (!empty($this->total_localtax2) && $this->total_localtax2 != 0) {
2073 $datas['amountlt2'] = '<br><b>'.$langs->transcountry('AmountLT2', $mysoc->country_code).':</b> '.price($this->total_localtax2, 0, $langs, 0, -1, -1, $conf->currency);
2074 }
2075 if (!empty($this->total_ttc)) {
2076 $datas['amountttc'] = '<br><b>'.$langs->trans('AmountTTC').':</b> '.price($this->total_ttc, 0, $langs, 0, -1, -1, $conf->currency);
2077 }
2078 }
2079
2080 return $datas;
2081 }
2082
2097 public function getNomUrl($withpicto = 0, $option = '', $max = 0, $short = 0, $moretitle = '', $notooltip = 0, $addlinktonotes = 0, $save_lastsearch_value = -1, $target = '')
2098 {
2099 global $langs, $conf, $user;
2100
2101 if (!empty($conf->dol_no_mouse_hover)) {
2102 $notooltip = 1; // Force disable tooltips
2103 }
2104
2105 $result = '';
2106
2107 if ($option == 'withdraw') {
2108 $url = DOL_URL_ROOT.'/compta/facture/prelevement.php?facid='.$this->id;
2109 } else {
2110 $url = DOL_URL_ROOT.'/compta/facture/card.php?id='.$this->id;
2111 }
2112
2113 if (!$user->hasRight("facture", "read")) {
2114 $option = 'nolink';
2115 }
2116
2117 if ($option !== 'nolink') {
2118 // Add param to save lastsearch_values or not
2119 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
2120 if ($save_lastsearch_value == -1 && isset($_SERVER["PHP_SELF"]) && preg_match('/list\.php/', $_SERVER["PHP_SELF"])) {
2121 $add_save_lastsearch_values = 1;
2122 }
2123 if ($add_save_lastsearch_values) {
2124 $url .= '&save_lastsearch_values=1';
2125 }
2126 }
2127
2128 if ($short) {
2129 return $url;
2130 }
2131
2132 $picto = $this->picto;
2133 if ($this->type == self::TYPE_REPLACEMENT) {
2134 $picto .= 'r'; // Replacement invoice
2135 }
2136 if ($this->type == self::TYPE_CREDIT_NOTE) {
2137 $picto .= 'a'; // Credit note
2138 }
2139 if ($this->type == self::TYPE_DEPOSIT) {
2140 $picto .= 'd'; // Deposit invoice
2141 }
2142
2143 $params = [
2144 'id' => $this->id,
2145 'objecttype' => $this->element,
2146 'moretitle' => $moretitle,
2147 'option' => $option,
2148 ];
2149 $classfortooltip = 'classfortooltip';
2150 $dataparams = '';
2151 if (getDolGlobalInt('MAIN_ENABLE_AJAX_TOOLTIP')) {
2152 $classfortooltip = 'classforajaxtooltip';
2153 $dataparams = ' data-params="'.dol_escape_htmltag(json_encode($params)).'"';
2154 $label = '';
2155 } else {
2156 $label = implode($this->getTooltipContentArray($params));
2157 }
2158
2159 $linkclose = ($target ? ' target="'.$target.'"' : '');
2160 if (empty($notooltip) && $user->hasRight("facture", "read")) {
2161 if (getDolGlobalString('MAIN_OPTIMIZEFORTEXTBROWSER')) {
2162 $label = $langs->trans("Invoice");
2163 $linkclose .= ' alt="'.dolPrintHTMLForAttribute($label).'"';
2164 }
2165 $linkclose .= ($label ? ' title="'.dolPrintHTMLForAttribute($label).'"' : ' title="tocomplete"');
2166 $linkclose .= $dataparams.' class="'.$classfortooltip.'"';
2167 }
2168
2169 $linkstart = '<a href="'.$url.'"';
2170 $linkstart .= $linkclose.'>';
2171 $linkend = '</a>';
2172
2173 if ($option == 'nolink') {
2174 $linkstart = '';
2175 $linkend = '';
2176 }
2177
2178 $result .= $linkstart;
2179 if ($withpicto) {
2180 $result .= img_object(($notooltip ? '' : $label), ($picto ? $picto : 'generic'), ($notooltip ? (($withpicto != 2) ? 'class="paddingright"' : '') : 'class="'.(($withpicto != 2) ? 'paddingright ' : '').'"'), 0, 0, $notooltip ? 0 : 1);
2181 }
2182 if ($withpicto != 2) {
2183 $result .= ($max ? dol_trunc($this->ref, $max) : $this->ref);
2184 }
2185 $result .= $linkend;
2186
2187 if ($addlinktonotes) {
2188 $txttoshow = ($user->socid > 0 ? $this->note_public : $this->note_private);
2189 if ($txttoshow) {
2190 $notetoshow = $langs->trans("ViewPrivateNote").':<br>'.$txttoshow;
2191 $result .= ' <span class="note inline-block">';
2192 $result .= '<a href="'.DOL_URL_ROOT.'/compta/facture/note.php?id='.$this->id.'" class="classfortooltip" title="'.dolPrintHTMLForAttribute($notetoshow).'">';
2193 $result .= img_picto('', 'note');
2194 $result .= '</a>';
2195 $result .= '</span>';
2196 }
2197 }
2198
2199 global $action, $hookmanager;
2200 $hookmanager->initHooks(array('invoicedao'));
2201 $parameters = array('id' => $this->id, 'getnomurl' => &$result, 'notooltip' => $notooltip, 'addlinktonotes' => $addlinktonotes, 'save_lastsearch_value' => $save_lastsearch_value, 'target' => $target);
2202 $reshook = $hookmanager->executeHooks('getNomUrl', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
2203 if ($reshook > 0) {
2204 $result = $hookmanager->resPrint;
2205 } else {
2206 $result .= $hookmanager->resPrint;
2207 }
2208
2209 return $result;
2210 }
2211
2222 public function fetch($rowid, $ref = '', $ref_ext = '', $notused = 0, $fetch_situation = false)
2223 {
2224 global $conf, $extrafields;
2225
2226 if (empty($rowid) && empty($ref) && empty($ref_ext)) {
2227 return -1;
2228 }
2229
2230 $extraFieldsCheck = false;
2231 $doFetchInOneSqlRequest = getDolGlobalInt('MAIN_DO_FETCH_IN_ONE_SQL_REQUEST');
2232
2233 if ($doFetchInOneSqlRequest) {
2234 // If $extrafields is not a known object, we initialize it
2235 if (!isset($extrafields) || !is_object($extrafields)) {
2236 require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
2237 $extrafields = new ExtraFields($this->db);
2238 }
2239
2240 // Load array of extrafields for elementype = $this->table_element
2241 if (empty($extrafields->attributes[$this->table_element]['loaded'])) {
2242 $extrafields->fetch_name_optionals_label($this->table_element);
2243 }
2244
2245 $extraFieldsCheck = (
2246 !empty($extrafields->attributes[$this->table_element]['label'])
2247 && is_array($extrafields->attributes[$this->table_element]['label'])
2248 && count($extrafields->attributes[$this->table_element]['label']) > 0
2249 );
2250 }
2251
2252
2253 // Original SQL query from fetch()
2254 $sql = 'SELECT f.rowid, f.entity, f.ref, f.ref_client, f.ref_ext, f.type, f.subtype, f.fk_soc';
2255 $sql .= ', f.total_tva, f.localtax1, f.localtax2, f.total_ht, f.total_ttc, f.revenuestamp';
2256 $sql .= ', f.datef as df, f.date_pointoftax';
2257 $sql .= ', f.date_lim_reglement as dlr';
2258 $sql .= ', f.datec as datec';
2259 $sql .= ', f.date_valid as datev';
2260 $sql .= ', f.tms as datem';
2261 $sql .= ', f.note_private, f.note_public, f.fk_statut as status, f.paye, f.close_code, f.close_note, f.fk_user_author, f.fk_user_valid, f.fk_user_modif, f.model_pdf, f.last_main_doc';
2262 $sql .= ", f.fk_input_reason";
2263 $sql .= ', f.fk_facture_source, f.fk_fac_rec_source';
2264 $sql .= ', f.fk_mode_reglement, f.fk_cond_reglement, f.fk_projet as fk_project, f.extraparams';
2265 $sql .= ', f.situation_cycle_ref, f.situation_counter, f.situation_final';
2266 $sql .= ', f.fk_account';
2267 $sql .= ", f.fk_multicurrency, f.multicurrency_code, f.multicurrency_tx, f.multicurrency_total_ht, f.multicurrency_total_tva, f.multicurrency_total_ttc";
2268 $sql .= ', p.code as mode_reglement_code, p.libelle as mode_reglement_libelle';
2269 $sql .= ', c.code as cond_reglement_code, c.libelle as cond_reglement_libelle, c.libelle_facture as cond_reglement_libelle_doc';
2270 $sql .= ', f.fk_incoterms, f.location_incoterms';
2271 $sql .= ', f.module_source, f.pos_source, f.pos_print_counter, f.email_sent_counter';
2272 $sql .= ", i.libelle as label_incoterms";
2273 $sql .= ", f.retained_warranty as retained_warranty, f.retained_warranty_date_limit as retained_warranty_date_limit, f.retained_warranty_fk_cond_reglement as retained_warranty_fk_cond_reglement";
2274 $sql .= ", f.payment_reference, f.dispute_status";
2275
2276 if ($doFetchInOneSqlRequest && $extraFieldsCheck) {
2277 foreach ($extrafields->attributes[$this->table_element]['label'] as $key => $val) {
2278 $type = !empty($extrafields->attributes[$this->table_element]['type'][$key])
2279 ? $extrafields->attributes[$this->table_element]['type'][$key]
2280 : '';
2281
2282 if ($type !== 'separate') {
2283 if (in_array($type, array('point','multipts','linestrg','polygon'))) {
2284 $sql .= ", ST_AsWKT(ef.".$this->db->sanitize($key).") as ".$this->db->sanitize($key);
2285 } else {
2286 $sql .= ", ef.".$this->db->sanitize($key);
2287 }
2288 }
2289 }
2290 }
2291
2292 $sql .= ' FROM '.$this->db->prefix().'facture as f';
2293
2294 // Add extrafields table to the join if we have extrafields for this entity
2295 if ($doFetchInOneSqlRequest && $extraFieldsCheck) {
2296 // Add LEFT JOIN for extrafields
2297 $sql .= ' LEFT JOIN '.$this->db->prefix().$this->table_element.'_extrafields as ef ON f.rowid = ef.fk_object';
2298 }
2299
2300 $sql .= ' LEFT JOIN '.$this->db->prefix().'c_payment_term as c ON f.fk_cond_reglement = c.rowid';
2301 $sql .= ' LEFT JOIN '.$this->db->prefix().'c_paiement as p ON f.fk_mode_reglement = p.id';
2302 $sql .= " LEFT JOIN ".$this->db->prefix()."c_input_reason as dr ON dr.rowid = f.fk_input_reason";
2303 $sql .= ' LEFT JOIN '.$this->db->prefix().'c_incoterms as i ON f.fk_incoterms = i.rowid';
2304
2305 if ($rowid) {
2306 $sql .= " WHERE f.rowid = ".((int) $rowid);
2307 } else {
2308 $sql .= ' WHERE f.entity IN ('.getEntity('invoice').')'; // Don't use entity if you use rowid
2309 if ($ref) {
2310 $sql .= " AND f.ref = '".$this->db->escape($ref)."'";
2311 }
2312 if ($ref_ext) {
2313 $sql .= " AND f.ref_ext = '".$this->db->escape($ref_ext)."'";
2314 }
2315 }
2316
2317 dol_syslog(get_class($this)."::fetch", LOG_DEBUG);
2318 $resql = $this->db->query($sql);
2319 if ($resql) {
2320 if ($this->db->num_rows($resql)) {
2321 $obj = $this->db->fetch_object($resql);
2322
2323 $this->id = $obj->rowid;
2324 $this->entity = $obj->entity;
2325
2326 $this->ref = $obj->ref;
2327 $this->ref_client = $obj->ref_client;
2328 $this->ref_customer = $obj->ref_client;
2329 $this->ref_ext = $obj->ref_ext;
2330 $this->type = $obj->type;
2331 $this->subtype = $obj->subtype;
2332 $this->date = $this->db->jdate($obj->df);
2333 $this->date_pointoftax = $this->db->jdate($obj->date_pointoftax);
2334 $this->date_creation = $this->db->jdate($obj->datec);
2335 $this->date_validation = $this->db->jdate($obj->datev);
2336 $this->date_modification = $this->db->jdate($obj->datem);
2337 $this->datem = $this->db->jdate($obj->datem);
2338 $this->total_ht = $obj->total_ht;
2339 $this->total_tva = $obj->total_tva;
2340 $this->total_localtax1 = $obj->localtax1;
2341 $this->total_localtax2 = $obj->localtax2;
2342 $this->total_ttc = $obj->total_ttc;
2343 $this->revenuestamp = $obj->revenuestamp;
2344 $this->paye = $obj->paye;
2345 $this->close_code = $obj->close_code;
2346 $this->close_note = $obj->close_note;
2347
2348 $this->socid = $obj->fk_soc;
2349 $this->thirdparty = null; // Clear if another value was already set by fetch_thirdparty
2350
2351 $this->fk_project = $obj->fk_project;
2352 $this->project = null; // Clear if another value was already set by fetch_projet
2353
2354 $this->statut = $obj->status; // deprecated
2355 $this->status = $obj->status;
2356
2357 $this->date_lim_reglement = $this->db->jdate($obj->dlr);
2358 $this->mode_reglement_id = $obj->fk_mode_reglement;
2359 $this->mode_reglement_code = $obj->mode_reglement_code;
2360 $this->mode_reglement = $obj->mode_reglement_libelle;
2361 $this->cond_reglement_id = $obj->fk_cond_reglement;
2362 $this->cond_reglement_code = $obj->cond_reglement_code;
2363 $this->cond_reglement = $obj->cond_reglement_libelle;
2364 $this->cond_reglement_doc = $obj->cond_reglement_libelle_doc;
2365 $this->fk_account = ($obj->fk_account > 0) ? $obj->fk_account : null;
2366 $this->fk_facture_source = $obj->fk_facture_source;
2367 $this->fk_fac_rec_source = $obj->fk_fac_rec_source;
2368 $this->note = $obj->note_private; // deprecated
2369 $this->note_private = $obj->note_private;
2370 $this->note_public = $obj->note_public;
2371 $this->user_creation_id = $obj->fk_user_author;
2372 $this->user_validation_id = $obj->fk_user_valid;
2373 $this->user_modification_id = $obj->fk_user_modif;
2374 $this->fk_user_author = $obj->fk_user_author;
2375 $this->fk_user_valid = $obj->fk_user_valid;
2376 $this->fk_user_modif = $obj->fk_user_modif;
2377 $this->model_pdf = $obj->model_pdf;
2378 $this->last_main_doc = $obj->last_main_doc;
2379 $this->demand_reason_id = $obj->fk_input_reason;
2380 $this->situation_cycle_ref = $obj->situation_cycle_ref;
2381 $this->situation_counter = $obj->situation_counter;
2382 $this->situation_final = $obj->situation_final;
2383 $this->retained_warranty = $obj->retained_warranty;
2384 $this->retained_warranty_date_limit = $this->db->jdate($obj->retained_warranty_date_limit);
2385 $this->retained_warranty_fk_cond_reglement = $obj->retained_warranty_fk_cond_reglement;
2386
2387 $this->payment_reference = $obj->payment_reference;
2388 $this->dispute_status = $obj->dispute_status;
2389
2390 $this->extraparams = !empty($obj->extraparams) ? (array) json_decode($obj->extraparams, true) : array();
2391
2392 //Incoterms
2393 $this->fk_incoterms = $obj->fk_incoterms;
2394 $this->location_incoterms = $obj->location_incoterms;
2395 $this->label_incoterms = $obj->label_incoterms;
2396
2397 $this->module_source = $obj->module_source;
2398 $this->pos_source = $obj->pos_source;
2399 $this->pos_print_counter = (int) $obj->pos_print_counter;
2400 $this->email_sent_counter = $obj->email_sent_counter;
2401
2402 // Multicurrency
2403 $this->fk_multicurrency = $obj->fk_multicurrency;
2404 $this->multicurrency_code = $obj->multicurrency_code;
2405 $this->multicurrency_tx = $obj->multicurrency_tx;
2406 $this->multicurrency_total_ht = $obj->multicurrency_total_ht;
2407 $this->multicurrency_total_tva = $obj->multicurrency_total_tva;
2408 $this->multicurrency_total_ttc = $obj->multicurrency_total_ttc;
2409
2410 // Now process extrafields
2411 if ($doFetchInOneSqlRequest && $extraFieldsCheck) {
2412 $this->array_options = array();
2413
2414 foreach ($extrafields->attributes[$this->table_element]['label'] as $key => $val) {
2415 $type = !empty($extrafields->attributes[$this->table_element]['type'][$key])
2416 ? $extrafields->attributes[$this->table_element]['type'][$key]
2417 : '';
2418
2419 if ($type !== 'separate') {
2420 $rawval = $obj->$key;
2421
2422 // date/datetime
2423 if (in_array($type, array('date', 'datetime'))) {
2424 $this->array_options['options_' . $key] = $this->db->jdate($rawval);
2425 } elseif ($type == 'password') {
2426 if (!empty($rawval) && preg_match('/^dolcrypt:/', $rawval)) {
2427 $this->array_options['options_' . $key] = dolDecrypt($rawval);
2428 } else {
2429 $this->array_options['options_' . $key] = $rawval;
2430 }
2431 } else {
2432 $this->array_options['options_' . $key] = $rawval;
2433 }
2434 }
2435 }
2436
2437 // Champs "computed"
2438 foreach ($extrafields->attributes[$this->table_element]['label'] as $key => $val) {
2439 if (!empty($extrafields->attributes[$this->table_element]['computed'][$key])) {
2440 if (empty($conf->disable_compute)) {
2441 global $objectoffield;
2442 $objectoffield = $this;
2443 $this->array_options['options_' . $key] = dol_eval((string) $extrafields->attributes[$this->table_element]['computed'][$key], 1, 0, '2');
2444 }
2445 }
2446 }
2447 }
2448
2449 if (($this->type == self::TYPE_SITUATION || ($this->type == self::TYPE_CREDIT_NOTE && $this->situation_cycle_ref > 0)) && $fetch_situation) {
2451 }
2452
2453 if (!$doFetchInOneSqlRequest) {
2454 // Retrieve all extrafield
2455 // fetch optionals attributes and labels
2456 $this->fetch_optionals();
2457 }
2458
2459 // Lines
2460 $this->lines = array();
2461
2462 $result = $this->fetch_lines();
2463 if ($result < 0) {
2464 $this->error = $this->db->error();
2465 return -3;
2466 }
2467
2468 $this->db->free($resql);
2469
2470 return 1;
2471 } else {
2472 $this->error = 'Invoice with id='.$rowid.' or ref='.$ref.' or ref_ext='.$ref_ext.' not found';
2473
2474 dol_syslog(__METHOD__.$this->error, LOG_WARNING);
2475 return 0;
2476 }
2477 } else {
2478 $this->error = $this->db->lasterror();
2479 return -1;
2480 }
2481 }
2482
2483
2484 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2492 public function fetch_lines($only_type_product = '', $loadalsotranslation = 0)
2493 {
2494 global $conf, $extrafields;
2495
2496 // phpcs:enable
2497 $this->lines = array();
2498
2499 $extraFieldsCheck = false;
2500 $doFetchInOneSqlRequest = getDolGlobalInt('MAIN_DO_FETCH_IN_ONE_SQL_REQUEST');
2501
2502 if ($doFetchInOneSqlRequest) {
2503 // If $extrafields is not a known object, we initialize it
2504 if (!isset($extrafields) || !is_object($extrafields)) {
2505 require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
2506 $extrafields = new ExtraFields($this->db);
2507 }
2508
2509 // Load array of extrafields for elementype = $this->table_element_line
2510 if (empty($extrafields->attributes[$this->table_element_line]['loaded'])) {
2511 $extrafields->fetch_name_optionals_label($this->table_element_line);
2512 }
2513
2514 $extraFieldsCheck = (
2515 !empty($extrafields->attributes[$this->table_element_line]['label'])
2516 && is_array($extrafields->attributes[$this->table_element_line]['label'])
2517 && count($extrafields->attributes[$this->table_element_line]['label']) > 0
2518 );
2519 }
2520
2521 $sql = 'SELECT l.rowid, l.fk_facture, l.fk_product, l.fk_parent_line, l.label as custom_label, l.description, l.product_type, l.price, l.qty, l.vat_src_code, l.tva_tx,';
2522 $sql .= ' l.localtax1_tx, l.localtax2_tx, l.localtax1_type, l.localtax2_type, l.remise_percent, l.fk_remise_except, l.subprice, l.ref_ext,';
2523 $sql .= ' l.situation_percent, l.fk_prev_id,';
2524 $sql .= ' l.rang, l.special_code, l.batch, l.fk_warehouse,';
2525 $sql .= ' l.date_start as date_start, l.date_end as date_end,';
2526 $sql .= ' l.info_bits, l.total_ht, l.total_tva, l.total_localtax1, l.total_localtax2, l.total_ttc, l.fk_code_ventilation, l.fk_product_fournisseur_price as fk_fournprice, l.buy_price_ht as pa_ht,';
2527 $sql .= ' l.fk_unit, l.extraparams,';
2528 $sql .= ' l.fk_multicurrency, l.multicurrency_code, l.multicurrency_subprice, l.multicurrency_total_ht, l.multicurrency_total_tva, l.multicurrency_total_ttc,';
2529 $sql .= ' p.ref as product_ref, p.fk_product_type as fk_product_type, p.label as product_label, p.description as product_desc, p.barcode as product_barcode';
2530
2531 if ($doFetchInOneSqlRequest && $extraFieldsCheck) {
2532 foreach ($extrafields->attributes[$this->table_element_line]['label'] as $key => $val) {
2533 $type = !empty($extrafields->attributes[$this->table_element_line]['type'][$key])
2534 ? $extrafields->attributes[$this->table_element_line]['type'][$key]
2535 : '';
2536
2537 if ($type !== 'separate') {
2538 if (in_array($type, array('point','multipts','linestrg','polygon'))) {
2539 $sql .= ", ST_AsWKT(ef.".$this->db->sanitize($key).") as ".$this->db->sanitize($key);
2540 } else {
2541 $sql .= ", ef.".$this->db->sanitize($key);
2542 }
2543 }
2544 }
2545 }
2546
2547 $sql .= ' FROM '.$this->db->prefix().'facturedet as l';
2548
2549 // Add extrafields table to the join if we have extrafields for this entity
2550 if ($doFetchInOneSqlRequest && $extraFieldsCheck) {
2551 // Add LEFT JOIN for extrafields
2552 $sql .= ' LEFT JOIN '.$this->db->prefix().$this->table_element_line.'_extrafields as ef ON l.rowid = ef.fk_object';
2553 }
2554
2555 $sql .= ' LEFT JOIN '.$this->db->prefix().'product as p ON l.fk_product = p.rowid';
2556 $sql .= ' WHERE l.fk_facture = '.((int) $this->id);
2557 if (is_int($only_type_product)) {
2558 $sql .= " AND p.fk_product_type = ".((int) $only_type_product);
2559 }
2560 $sql .= ' ORDER BY l.rang, l.rowid';
2561
2562 dol_syslog(get_class($this).'::fetch_lines', LOG_DEBUG);
2563 $result = $this->db->query($sql);
2564 if ($result) {
2565 $num = $this->db->num_rows($result);
2566 $i = 0;
2567 while ($i < $num) {
2568 $objp = $this->db->fetch_object($result);
2569 $line = new FactureLigne($this->db);
2570
2571 $line->id = $objp->rowid;
2572 $line->rowid = $objp->rowid; // deprecated
2573 $line->fk_facture = $objp->fk_facture;
2574 $line->label = $objp->custom_label; // deprecated
2575 $line->desc = $objp->description; // Description line
2576 $line->description = $objp->description; // Description line
2577 $line->product_type = $objp->product_type; // Type of line
2578 $line->ref = $objp->product_ref; // Ref product
2579 $line->product_ref = $objp->product_ref; // Ref product
2580 $line->libelle = $objp->product_label; // deprecated
2581 $line->product_label = $objp->product_label; // Label product
2582 $line->product_barcode = $objp->product_barcode; // Barcode number product
2583 $line->product_desc = $objp->product_desc; // Description product
2584 $line->fk_product_type = $objp->fk_product_type; // Type of product
2585 $line->qty = $objp->qty;
2586 $line->subprice = $objp->subprice;
2587 $line->ref_ext = $objp->ref_ext; // line external ref
2588
2589 $line->vat_src_code = $objp->vat_src_code;
2590 $line->tva_tx = $objp->tva_tx;
2591 $line->localtax1_tx = $objp->localtax1_tx;
2592 $line->localtax2_tx = $objp->localtax2_tx;
2593 $line->localtax1_type = $objp->localtax1_type;
2594 $line->localtax2_type = $objp->localtax2_type;
2595 $line->remise_percent = $objp->remise_percent;
2596 $line->fk_remise_except = $objp->fk_remise_except;
2597 $line->fk_product = $objp->fk_product;
2598 $line->date_start = $this->db->jdate($objp->date_start);
2599 $line->date_end = $this->db->jdate($objp->date_end);
2600 $line->info_bits = $objp->info_bits;
2601 $line->total_ht = $objp->total_ht;
2602 $line->total_tva = $objp->total_tva;
2603 $line->total_localtax1 = $objp->total_localtax1;
2604 $line->total_localtax2 = $objp->total_localtax2;
2605 $line->total_ttc = $objp->total_ttc;
2606
2607 $line->fk_fournprice = $objp->fk_fournprice;
2608 $marginInfos = getMarginInfos($objp->subprice, $objp->remise_percent, $objp->tva_tx, $objp->localtax1_tx, $objp->localtax2_tx, $line->fk_fournprice, $objp->pa_ht);
2609 $line->pa_ht = $marginInfos[0];
2610 $line->marge_tx = (string) $marginInfos[1];
2611 $line->marque_tx = (string) $marginInfos[2];
2612 $line->rang = $objp->rang;
2613 $line->special_code = $objp->special_code;
2614 $line->fk_parent_line = $objp->fk_parent_line;
2615 $line->situation_percent = $objp->situation_percent;
2616 $line->fk_prev_id = $objp->fk_prev_id;
2617 $line->fk_unit = $objp->fk_unit;
2618
2619 $line->extraparams = !empty($objp->extraparams) ? (array) json_decode($objp->extraparams, true) : array();
2620
2621 $line->batch = $objp->batch;
2622 $line->fk_warehouse = $objp->fk_warehouse;
2623
2624 // Accountancy
2625 $line->fk_code_ventilation = $objp->fk_code_ventilation;
2626
2627 // Multicurrency
2628 $line->fk_multicurrency = $objp->fk_multicurrency;
2629 $line->multicurrency_code = $objp->multicurrency_code;
2630 $line->multicurrency_subprice = $objp->multicurrency_subprice;
2631 $line->multicurrency_total_ht = $objp->multicurrency_total_ht;
2632 $line->multicurrency_total_tva = $objp->multicurrency_total_tva;
2633 $line->multicurrency_total_ttc = $objp->multicurrency_total_ttc;
2634
2635 $line->array_options = array();
2636 if ($doFetchInOneSqlRequest && $extraFieldsCheck) {
2637 foreach ($extrafields->attributes[$this->table_element_line]['label'] as $key => $val) {
2638 $type = !empty($extrafields->attributes[$this->table_element_line]['type'][$key])
2639 ? $extrafields->attributes[$this->table_element_line]['type'][$key]
2640 : '';
2641
2642 if ($type !== 'separate') {
2643 $rawval = $objp->$key;
2644
2645 // date/datetime
2646 if (in_array($type, array('date', 'datetime'))) {
2647 $line->array_options['options_' . $key] = $this->db->jdate($rawval);
2648 } elseif ($type == 'password') {
2649 if (!empty($rawval) && preg_match('/^dolcrypt:/', $rawval)) {
2650 $line->array_options['options_' . $key] = dolDecrypt($rawval);
2651 } else {
2652 $line->array_options['options_' . $key] = $rawval;
2653 }
2654 } else {
2655 $line->array_options['options_' . $key] = $rawval;
2656 }
2657 }
2658 }
2659
2660 // Champs "computed"
2661 foreach ($extrafields->attributes[$this->table_element_line]['label'] as $key => $val) {
2662 if (!empty($extrafields->attributes[$this->table_element_line]['computed'][$key])) {
2663 if (empty($conf->disable_compute)) {
2664 global $objectoffield;
2665 $objectoffield = $line;
2666 $line->array_options['options_' . $key] = dol_eval((string) $extrafields->attributes[$this->table_element_line]['computed'][$key], 1, 0, '2');
2667 }
2668 }
2669 }
2670 }
2671
2672 if (!$doFetchInOneSqlRequest) {
2673 // Retrieve all extrafield
2674 $line->fetch_optionals();
2675 }
2676
2677 // multilangs
2678 if (getDolGlobalInt('MAIN_MULTILANGS') && !empty($objp->fk_product) && !empty($loadalsotranslation)) {
2679 $tmpproduct = new Product($this->db);
2680 $tmpproduct->fetch($objp->fk_product);
2681 $tmpproduct->getMultiLangs();
2682
2683 $line->multilangs = $tmpproduct->multilangs;
2684 }
2685
2686 $this->lines[$i] = $line;
2687
2688 $i++;
2689 }
2690 $this->db->free($result);
2691 return 1;
2692 } else {
2693 $this->error = $this->db->error();
2694 return -3;
2695 }
2696 }
2697
2705 {
2706 $this->tab_previous_situation_invoice = array();
2707 $this->tab_next_situation_invoice = array();
2708
2709 $sql = 'SELECT rowid, type, situation_cycle_ref, situation_counter FROM '.MAIN_DB_PREFIX.'facture';
2710 $sql .= " WHERE rowid <> ".((int) $this->id);
2711 $sql .= ' AND entity = '.((int) $this->entity);
2712 $sql .= ' AND situation_cycle_ref = '.(int) $this->situation_cycle_ref;
2713 $sql .= ' ORDER BY situation_counter ASC';
2714
2715 dol_syslog(get_class($this).'::fetchPreviousNextSituationInvoice ', LOG_DEBUG);
2716 $result = $this->db->query($sql);
2717 if ($result && $this->db->num_rows($result) > 0) {
2718 while ($objp = $this->db->fetch_object($result)) {
2719 $invoice = new Facture($this->db);
2720 if ($invoice->fetch($objp->rowid) > 0) {
2721 if ($objp->situation_counter < $this->situation_counter
2722 || ($objp->situation_counter == $this->situation_counter && $objp->rowid < $this->id) // This case appear when there are credit notes
2723 ) {
2724 $this->tab_previous_situation_invoice[] = $invoice;
2725 } else {
2726 $this->tab_next_situation_invoice[] = $invoice;
2727 }
2728 }
2729 }
2730 }
2731 }
2732
2740 public function update(User $user, $notrigger = 0)
2741 {
2742 $error = 0;
2743
2744 $this->oldcopy = dol_clone($this, 2); // @phan-suppress-current-line PhanTypeMismatchProperty
2745
2746 // Clean parameters
2747 if (empty($this->type)) {
2748 $this->type = self::TYPE_STANDARD;
2749 }
2750 if (isset($this->subtype)) {
2751 $this->subtype = (int) $this->subtype;
2752 }
2753 if (isset($this->ref)) {
2754 $this->ref = trim($this->ref);
2755 }
2756 if (isset($this->ref_ext)) {
2757 $this->ref_ext = trim($this->ref_ext);
2758 }
2759 if (!empty($this->ref_customer)) {
2760 $this->ref_customer = trim($this->ref_customer);
2761 }
2762 if (isset($this->increment)) {
2763 $this->increment = trim($this->increment);
2764 }
2765 if (isset($this->close_code)) {
2766 $this->close_code = trim($this->close_code);
2767 }
2768 if (isset($this->close_note)) {
2769 $this->close_note = trim($this->close_note);
2770 }
2771 if (isset($this->note) || isset($this->note_private)) {
2772 $this->note = (isset($this->note) ? trim($this->note) : trim($this->note_private)); // deprecated
2773 }
2774 if (isset($this->note) || isset($this->note_private)) {
2775 $this->note_private = (isset($this->note_private) ? trim($this->note_private) : trim($this->note));
2776 }
2777 if (isset($this->note_public)) {
2778 $this->note_public = trim($this->note_public);
2779 }
2780 if (isset($this->model_pdf)) {
2781 $this->model_pdf = trim($this->model_pdf);
2782 }
2783 if (isset($this->import_key)) {
2784 $this->import_key = trim($this->import_key);
2785 }
2786 if (isset($this->retained_warranty)) {
2787 $this->retained_warranty = (float) $this->retained_warranty;
2788 }
2789 if (!isset($this->user_creation_id) && isset($this->fk_user_author)) {
2790 $this->user_creation_id = $this->fk_user_author;
2791 }
2792 if (!isset($this->user_modification_id) && !empty($user->id)) {
2793 $this->user_modification_id = $user->id;
2794 }
2795 if (!isset($this->user_validation_id) && isset($this->fk_user_valid)) {
2796 $this->user_validation_id = $this->fk_user_valid;
2797 }
2798
2799 // Update request
2800 $sql = "UPDATE ".MAIN_DB_PREFIX."facture SET";
2801 $sql .= " ref=".(isset($this->ref) ? "'".$this->db->escape($this->ref)."'" : "null").",";
2802 $sql .= " ref_ext=".(isset($this->ref_ext) ? "'".$this->db->escape($this->ref_ext)."'" : "null").",";
2803 $sql .= " type=".(isset($this->type) ? $this->db->escape((string) $this->type) : "null").",";
2804 $sql .= " subtype=".(isset($this->subtype) ? (int) $this->subtype : "null").",";
2805 $sql .= " ref_client=".(!empty($this->ref_customer) ? "'".$this->db->escape($this->ref_customer)."'" : (isset($this->ref_client) ? "'".$this->db->escape($this->ref_client)."'" : "null")).",";
2806 $sql .= " increment=".(isset($this->increment) ? "'".$this->db->escape($this->increment)."'" : "null").",";
2807 $sql .= " fk_soc=".(isset($this->socid) ? $this->db->escape((string) $this->socid) : "null").",";
2808 $sql .= " datec=".(strval($this->date_creation) != '' ? "'".$this->db->idate($this->date_creation)."'" : 'null').",";
2809 $sql .= " datef=".(strval($this->date) != '' ? "'".$this->db->idate($this->date)."'" : 'null').",";
2810 $sql .= " date_pointoftax=".(strval($this->date_pointoftax) != '' ? "'".$this->db->idate($this->date_pointoftax)."'" : 'null').",";
2811 $sql .= " date_valid=".(strval($this->date_validation) != '' ? "'".$this->db->idate($this->date_validation)."'" : 'null').",";
2812 $sql .= " paye=".(isset($this->paye) ? $this->db->escape((string) $this->paye) : 0).",";
2813 $sql .= " close_code=".(isset($this->close_code) ? "'".$this->db->escape($this->close_code)."'" : "null").",";
2814 $sql .= " close_note=".(isset($this->close_note) ? "'".$this->db->escape($this->close_note)."'" : "null").",";
2815 $sql .= " total_tva=".((float) $this->total_tva).",";
2816 $sql .= " localtax1=".((float) $this->total_localtax1).",";
2817 $sql .= " localtax2=".((float) $this->total_localtax2).",";
2818 $sql .= " total_ht=".((float) $this->total_ht).",";
2819 $sql .= " total_ttc=".((float) $this->total_ttc).",";
2820 $sql .= " revenuestamp=".((isset($this->revenuestamp) && $this->revenuestamp != '') ? (float) $this->revenuestamp : "null").",";
2821 $sql .= " fk_statut=".(isset($this->status) ? (int) $this->status : "null").",";
2822 $sql .= " fk_user_author=".(isset($this->user_creation_id) ? ((int) $this->user_creation_id) : "null").",";
2823 $sql .= " fk_user_modif=".(!empty($user->id) ? ((int) $user->id) : "null").",";
2824 $sql .= " fk_user_valid=".(isset($this->user_validation_id) ? (int) $this->user_validation_id : "null").",";
2825 $sql .= " fk_facture_source=".(isset($this->fk_facture_source) ? (int) $this->fk_facture_source : "null").",";
2826 $sql .= " fk_projet=".(isset($this->fk_project) ? (int) $this->fk_project : "null").",";
2827 $sql .= " fk_cond_reglement=".(isset($this->cond_reglement_id) ? (int) $this->cond_reglement_id : "null").",";
2828 $sql .= " fk_mode_reglement=".(isset($this->mode_reglement_id) ? (int) $this->mode_reglement_id : "null").",";
2829 $sql .= " date_lim_reglement=".(strval($this->date_lim_reglement) != '' ? "'".$this->db->idate($this->date_lim_reglement)."'" : 'null').",";
2830 $sql .= " note_private = ".(isset($this->note_private) ? "'".$this->db->escape($this->note_private)."'" : "null").",";
2831 $sql .= " note_public = ".(isset($this->note_public) ? "'".$this->db->escape($this->note_public)."'" : "null").",";
2832 $sql .= " model_pdf = ".(isset($this->model_pdf) ? "'".$this->db->escape($this->model_pdf)."'" : "null").",";
2833 $sql .= " import_key = ".(isset($this->import_key) ? "'".$this->db->escape($this->import_key)."'" : "null").",";
2834 $sql .= " module_source = ".(isset($this->module_source) ? "'".$this->db->escape($this->module_source)."'" : "null").",";
2835 $sql .= " pos_source = ".(isset($this->pos_source) ? "'".$this->db->escape($this->pos_source)."'" : "null").",";
2836 $sql .= " pos_print_counter = ".(int) $this->pos_print_counter.",";
2837 $sql .= " situation_cycle_ref = ".(empty($this->situation_cycle_ref) ? "null" : (int) $this->situation_cycle_ref).",";
2838 $sql .= " situation_counter = ".(empty($this->situation_counter) ? "null" : (int) $this->situation_counter).",";
2839 $sql .= " situation_final = ".(empty($this->situation_final) ? "0" : (int) $this->situation_final).",";
2840 $sql .= " retained_warranty = ".(empty($this->retained_warranty) ? "0" : (float) $this->retained_warranty).",";
2841 $sql .= " retained_warranty_date_limit = ".(strval($this->retained_warranty_date_limit) != '' ? "'".$this->db->idate($this->retained_warranty_date_limit)."'" : 'null').",";
2842 $sql .= " retained_warranty_fk_cond_reglement = ".(isset($this->retained_warranty_fk_cond_reglement) ? (int) $this->retained_warranty_fk_cond_reglement : "null");
2843 $sql .= " WHERE rowid = ".((int) $this->id);
2844
2845 $this->db->begin();
2846
2847 dol_syslog(get_class($this)."::update", LOG_DEBUG);
2848 $resql = $this->db->query($sql);
2849 if (!$resql) {
2850 $error++;
2851 $this->errors[] = "Error ".$this->db->lasterror();
2852 }
2853
2854 if (!$error) {
2855 $result = $this->insertExtraFields();
2856 if ($result < 0) {
2857 $error++;
2858 }
2859 }
2860
2861 if (!$error && !$notrigger) {
2862 // Call trigger
2863 $result = $this->call_trigger('BILL_MODIFY', $user);
2864 if ($result < 0) {
2865 $error++;
2866 }
2867 // End call triggers
2868 }
2869
2870 // Commit or rollback
2871 if ($error) {
2872 foreach ($this->errors as $errmsg) {
2873 dol_syslog(get_class($this)."::update ".$errmsg, LOG_ERR);
2874 $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
2875 }
2876 $this->db->rollback();
2877 return -1 * $error;
2878 } else {
2879 $this->db->commit();
2880 return 1;
2881 }
2882 }
2883
2884
2885 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2892 public function insert_discount($idremise)
2893 {
2894 // phpcs:enable
2895 global $langs;
2896
2897 include_once DOL_DOCUMENT_ROOT.'/core/lib/price.lib.php';
2898 include_once DOL_DOCUMENT_ROOT.'/core/class/discount.class.php';
2899
2900 $this->db->begin();
2901
2902 $remise = new DiscountAbsolute($this->db);
2903 $result = $remise->fetch($idremise);
2904
2905 if ($result > 0) {
2906 if ($remise->fk_facture) { // Protection against multiple submission
2907 $this->error = $langs->trans("ErrorDiscountAlreadyUsed");
2908 $this->db->rollback();
2909 return -5;
2910 }
2911
2912 $facligne = new FactureLigne($this->db);
2913 $facligne->fk_facture = $this->id;
2914 $facligne->fk_remise_except = $remise->id;
2915 $facligne->desc = $remise->description; // Description of the invoice line
2916 $facligne->vat_src_code = $remise->vat_src_code;
2917 $facligne->tva_tx = $remise->tva_tx;
2918 $facligne->localtax1_tx = $remise->localtax1_tx;
2919 $facligne->localtax1_type = (int) $remise->localtax1_type;
2920 $facligne->localtax2_tx = $remise->localtax1_tx;
2921 $facligne->localtax2_type = (int) $remise->localtax1_type;
2922 $facligne->subprice = -(float) $remise->total_ht;
2923 $facligne->fk_product = 0; // Predefined Product ID
2924 $facligne->qty = 1;
2925 $facligne->remise_percent = 0;
2926 $facligne->rang = -1;
2927 $facligne->info_bits = 2;
2928
2929 if (getDolGlobalString('MAIN_ADD_LINE_AT_POSITION')) {
2930 $facligne->rang = 1;
2931 $linecount = count($this->lines);
2932 for ($ii = 1; $ii <= $linecount; $ii++) {
2933 $this->updateRangOfLine($this->lines[$ii - 1]->id, $ii + 1);
2934 }
2935 }
2936
2937 // Get buy/cost price of invoice that is source of discount
2938 if ($remise->fk_facture_source > 0) {
2939 $srcinvoice = new Facture($this->db);
2940 $srcinvoice->fetch($remise->fk_facture_source);
2941 include_once DOL_DOCUMENT_ROOT.'/core/class/html.formmargin.class.php'; // TODO Move this into commonobject
2942 $formmargin = new FormMargin($this->db);
2943 $arraytmp = $formmargin->getMarginInfosArray($srcinvoice, false);
2944 $facligne->pa_ht = $arraytmp['pa_total'];
2945 }
2946
2947 $facligne->total_ht = -(float) $remise->total_ht;
2948 $facligne->total_tva = -(float) $remise->total_tva;
2949 $facligne->total_ttc = -(float) $remise->total_ttc;
2950 $facligne->total_localtax1 = -(float) $remise->total_localtax1;
2951 $facligne->total_localtax2 = -(float) $remise->total_localtax2;
2952
2953 $facligne->multicurrency_subprice = -(float) $remise->multicurrency_subprice;
2954 $facligne->multicurrency_total_ht = -(float) $remise->multicurrency_total_ht;
2955 $facligne->multicurrency_total_tva = -(float) $remise->multicurrency_total_tva;
2956 $facligne->multicurrency_total_ttc = -(float) $remise->multicurrency_total_ttc;
2957
2958 $lineid = $facligne->insert();
2959 if ($lineid > 0) {
2960 $result = $this->update_price(1);
2961 if ($result > 0) {
2962 // Create link between discount and invoice line
2963 $result = $remise->link_to_invoice($lineid, 0);
2964 if ($result < 0) {
2965 $this->error = $remise->error;
2966 $this->db->rollback();
2967 return -4;
2968 }
2969
2970 $this->db->commit();
2971 return 1;
2972 } else {
2973 $this->error = $facligne->error;
2974 $this->db->rollback();
2975 return -1;
2976 }
2977 } else {
2978 $this->error = $facligne->error;
2979 $this->db->rollback();
2980 return -2;
2981 }
2982 } else {
2983 $this->db->rollback();
2984 return -3;
2985 }
2986 }
2987
2988 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2996 public function set_ref_client($ref_client, $notrigger = 0)
2997 {
2998 // phpcs:enable
2999 global $user;
3000
3001 $error = 0;
3002
3003 $this->db->begin();
3004
3005 $sql = "UPDATE ".MAIN_DB_PREFIX."facture";
3006 if (empty($ref_client)) {
3007 $sql .= " SET ref_client = NULL";
3008 } else {
3009 $sql .= " SET ref_client = '".$this->db->escape($ref_client)."'";
3010 }
3011 $sql .= " WHERE rowid = ".((int) $this->id);
3012
3013 dol_syslog(__METHOD__.' this->id='.$this->id.', ref_client='.$ref_client, LOG_DEBUG);
3014 $resql = $this->db->query($sql);
3015 if (!$resql) {
3016 $this->errors[] = $this->db->error();
3017 $error++;
3018 }
3019
3020 if (!$error) {
3021 $this->ref_client = $ref_client; //deprecated
3022 $this->ref_customer = $ref_client;
3023 }
3024
3025 if (!$notrigger && empty($error)) {
3026 // Call trigger
3027 $result = $this->call_trigger('BILL_MODIFY', $user);
3028 if ($result < 0) {
3029 $error++;
3030 }
3031 // End call triggers
3032 }
3033
3034 if (!$error) {
3035 $this->ref_client = $ref_client; //deprecated
3036 $this->ref_customer = $ref_client;
3037
3038 $this->db->commit();
3039 return 1;
3040 } else {
3041 foreach ($this->errors as $errmsg) {
3042 dol_syslog(__METHOD__.' Error: '.$errmsg, LOG_ERR);
3043 $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
3044 }
3045 $this->db->rollback();
3046 return -1 * $error;
3047 }
3048 }
3049
3050 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
3058 public function setInputReason($inputReasonId, $notrigger = 0)
3059 {
3060 // phpcs:enable
3061 global $user;
3062
3063 $error = 0;
3064
3065 dol_syslog(__METHOD__.' : inputReasonId='.$inputReasonId, LOG_DEBUG);
3066 if ($this->status >= self::STATUS_DRAFT) {
3067 $this->oldcopy = dol_clone($this, 2);
3068 $this->demand_reason_id = $inputReasonId;
3069
3070 $this->db->begin();
3071
3072 $sql = "UPDATE ".$this->db->prefix().$this->table_element;
3073 $sql .= " SET fk_input_reason = ".($inputReasonId > 0 ? (int) $inputReasonId : 'null');
3074 $sql .= " WHERE rowid = ".((int) $this->id);
3075
3076 dol_syslog(__METHOD__, LOG_DEBUG);
3077 $res = $this->db->query($sql);
3078 if (!$res) {
3079 $error++;
3080 $this->error = $this->db->lasterror();
3081 $this->errors[] = $this->error;
3082 }
3083
3084 if (!$error) {
3085 if (!$notrigger) {
3086 // Call trigger
3087 $result = $this->call_trigger('BILL_MODIFY', $user);
3088 if ($result < 0) {
3089 $error++;
3090 }
3091 // End call triggers
3092 }
3093 }
3094
3095 if (!$error) {
3096 $this->db->commit();
3097 } else {
3098 $this->demand_reason_id = $this->oldcopy->demand_reason_id;
3099 $this->db->rollback();
3100 dol_syslog(__METHOD__.' Error : '.$this->errorsToString(), LOG_ERR);
3101 }
3102
3103 if (!$error) {
3104 return 1;
3105 } else {
3106 return -1;
3107 }
3108 }
3109
3110 return 0;
3111 }
3112
3121 public function delete($user, $notrigger = 0, $idwarehouse = -1)
3122 {
3123 global $langs, $conf;
3124 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
3125
3126 $rowid = $this->id;
3127
3128 dol_syslog(get_class($this)."::delete rowid=".$rowid.", ref=".$this->ref.", thirdparty=".(empty($this->thirdparty) ? '' : $this->thirdparty->name), LOG_DEBUG);
3129
3130 // Test to avoid invoice deletion (allowed if draft)
3131 $result = $this->is_erasable();
3132
3133 if ($result <= 0) {
3134 return 0;
3135 }
3136
3137 $error = 0;
3138
3139 $this->db->begin();
3140
3141 if (!$error && !$notrigger) {
3142 // Call trigger
3143 $result = $this->call_trigger('BILL_DELETE', $user);
3144 if ($result < 0) {
3145 $error++;
3146 }
3147 // End call triggers
3148 }
3149
3150 // Remove linked categories.
3151 if (!$error) {
3152 $sql = "DELETE FROM ".MAIN_DB_PREFIX."categorie_invoice";
3153 $sql .= " WHERE fk_invoice = ".((int) $this->id);
3154
3155 $result = $this->db->query($sql);
3156 if (!$result) {
3157 $error++;
3158 $this->errors[] = $this->db->lasterror();
3159 }
3160 }
3161
3162 // Removed extrafields
3163 if (!$error) {
3164 $result = $this->deleteExtraFields();
3165 if ($result < 0) {
3166 $error++;
3167 dol_syslog(get_class($this)."::delete error deleteExtraFields ".$this->error, LOG_ERR);
3168 }
3169 }
3170
3171 if (!$error) {
3172 // Delete linked object
3173 $res = $this->deleteObjectLinked();
3174 if ($res < 0) {
3175 $error++;
3176 }
3177 }
3178
3179 if (!$error) {
3180 // If invoice was converted into a discount not yet consumed, we remove discount
3181 $sql = 'DELETE FROM '.MAIN_DB_PREFIX.'societe_remise_except';
3182 $sql .= ' WHERE fk_facture_source = '.((int) $rowid);
3183 $sql .= ' AND fk_facture_line IS NULL';
3184 $resql = $this->db->query($sql);
3185
3186 // If invoice has consumed discounts
3187 $this->fetch_lines();
3188 $list_rowid_det = array();
3189 foreach ($this->lines as $key => $invoiceline) {
3190 $list_rowid_det[] = $invoiceline->id;
3191 }
3192
3193 // Consumed discounts are freed
3194 if (count($list_rowid_det)) {
3195 $sql = 'UPDATE '.MAIN_DB_PREFIX.'societe_remise_except';
3196 $sql .= ' SET fk_facture = NULL, fk_facture_line = NULL';
3197 $sql .= ' WHERE fk_facture_line IN ('.$this->db->sanitize(implode(',', $list_rowid_det)).')';
3198
3199 if (!$this->db->query($sql)) {
3200 $this->error = $this->db->error()." sql=".$sql;
3201 $this->errors[] = $this->error;
3202 $this->db->rollback();
3203 return -5;
3204 }
3205 }
3206
3207 // Remove other links to the deleted invoice
3208
3209 $sql = 'UPDATE '.MAIN_DB_PREFIX.'eventorganization_conferenceorboothattendee';
3210 $sql .= ' SET fk_invoice = NULL';
3211 $sql .= ' WHERE fk_invoice = '.((int) $rowid);
3212
3213 if (!$this->db->query($sql)) {
3214 $this->error = $this->db->error()." sql=".$sql;
3215 $this->errors[] = $this->error;
3216 $this->db->rollback();
3217 return -5;
3218 }
3219
3220 $sql = 'UPDATE '.MAIN_DB_PREFIX.'element_time';
3221 $sql .= ' SET invoice_id = NULL, invoice_line_id = NULL';
3222 $sql .= ' WHERE invoice_id = '.((int) $rowid);
3223
3224 if (!$this->db->query($sql)) {
3225 $this->error = $this->db->error()." sql=".$sql;
3226 $this->errors[] = $this->error;
3227 $this->db->rollback();
3228 return -5;
3229 }
3230
3231 // If we decrease stock on invoice validation, we increase back if a warehouse id was provided
3232 if ($this->type != self::TYPE_DEPOSIT && $result >= 0 && isModEnabled('stock') && getDolGlobalString('STOCK_CALCULATE_ON_BILL') && $idwarehouse != -1) {
3233 require_once DOL_DOCUMENT_ROOT.'/product/stock/class/mouvementstock.class.php';
3234 $langs->load("agenda");
3235
3236 $num = count($this->lines);
3237 for ($i = 0; $i < $num; $i++) {
3238 if ($this->lines[$i]->fk_product > 0) {
3239 $mouvP = new MouvementStock($this->db);
3240 $mouvP->origin = &$this;
3241 $mouvP->setOrigin($this->element, $this->id);
3242 // We decrease stock for product
3243 if ($this->type == self::TYPE_CREDIT_NOTE) {
3244 $result = $mouvP->livraison($user, $this->lines[$i]->fk_product, $idwarehouse, $this->lines[$i]->qty, $this->lines[$i]->subprice, $langs->trans("InvoiceDeleteDolibarr", $this->ref));
3245 } else {
3246 $result = $mouvP->reception($user, $this->lines[$i]->fk_product, $idwarehouse, $this->lines[$i]->qty, 0, $langs->trans("InvoiceDeleteDolibarr", $this->ref)); // we use 0 for price, to not change the weighted average value
3247 }
3248 }
3249 }
3250 }
3251
3252 // Invoice line extrafields
3253 $main = MAIN_DB_PREFIX.'facturedet';
3254 $ef = $main."_extrafields";
3255 $sqlef = "DELETE FROM ".$ef." WHERE fk_object IN (SELECT rowid FROM ".$main." WHERE fk_facture = ".((int) $rowid).")";
3256 // Delete invoice line
3257 $sql = 'DELETE FROM '.MAIN_DB_PREFIX.'facturedet WHERE fk_facture = '.((int) $rowid);
3258
3259 if ($this->db->query($sqlef) && $this->db->query($sql) && $this->delete_linked_contact() >= 0) {
3260 $sql = 'DELETE FROM '.MAIN_DB_PREFIX.'facture WHERE rowid = '.((int) $rowid);
3261
3262 $resql = $this->db->query($sql);
3263 if ($resql) {
3264 // Delete record into ECM index (Note that delete is also done when deleting files with the dol_delete_dir_recursive
3265 $this->deleteEcmFiles(0); // Deleting files physically is done later with the dol_delete_dir_recursive
3266 $this->deleteEcmFiles(1); // Deleting files physically is done later with the dol_delete_dir_recursive
3267
3268 // On efface le repertoire de pdf provisoire
3269 $ref = dol_sanitizeFileName($this->ref);
3270 if ($conf->facture->dir_output && !empty($this->ref)) {
3271 $dir = $conf->facture->dir_output."/".$ref;
3272 $file = $conf->facture->dir_output."/".$ref."/".$ref.".pdf";
3273 if (file_exists($file)) { // We must delete all files before deleting directory
3274 $ret = dol_delete_preview($this);
3275
3276 if (!dol_delete_file($file, 0, 0, 0, $this)) { // For triggers
3277 $langs->load("errors");
3278 $this->error = $langs->trans("ErrorFailToDeleteFile", $file);
3279 $this->errors[] = $this->error;
3280 $this->db->rollback();
3281 return 0;
3282 }
3283 }
3284 if (file_exists($dir)) {
3285 if (!dol_delete_dir_recursive($dir)) { // For remove dir and meta
3286 $langs->load("errors");
3287 $this->error = $langs->trans("ErrorFailToDeleteDir", $dir);
3288 $this->errors[] = $this->error;
3289 $this->db->rollback();
3290 return 0;
3291 }
3292 }
3293 }
3294
3295 $this->db->commit();
3296 return 1;
3297 } else {
3298 $this->error = $this->db->lasterror()." sql=".$sql;
3299 $this->errors[] = $this->error;
3300 $this->db->rollback();
3301 return -6;
3302 }
3303 } else {
3304 $this->error = $this->db->lasterror()." sql=".$sql;
3305 $this->errors[] = $this->error;
3306 $this->db->rollback();
3307 return -4;
3308 }
3309 } else {
3310 $this->db->rollback();
3311 return -2;
3312 }
3313 }
3314
3315 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
3327 public function set_paid($user, $close_code = '', $close_note = '')
3328 {
3329 // phpcs:enable
3330 dol_syslog(get_class($this)."::set_paid is deprecated, use setPaid instead", LOG_NOTICE);
3331 return $this->setPaid($user, $close_code, $close_note);
3332 }
3333
3344 public function setPaid($user, $close_code = '', $close_note = '')
3345 {
3346 $error = 0;
3347
3348 if ($this->paye != 1 || $this->status != self::STATUS_CLOSED) {
3349 $this->db->begin();
3350
3351 $now = dol_now();
3352
3353 dol_syslog(get_class($this)."::setPaid rowid=".((int) $this->id), LOG_DEBUG);
3354
3355 $sql = 'UPDATE '.MAIN_DB_PREFIX.'facture SET';
3356 $sql .= ' fk_statut = '.self::STATUS_CLOSED;
3357 if (!$close_code) {
3358 $sql .= ', paye = 1';
3359 }
3360 if ($close_code) {
3361 $sql .= ", close_code = '".$this->db->escape($close_code)."'";
3362 }
3363 if ($close_note) {
3364 $sql .= ", close_note = '".$this->db->escape($close_note)."'";
3365 }
3366 $sql .= ', fk_user_closing = '.((int) $user->id);
3367 $sql .= ", date_closing = '".$this->db->idate($now)."'";
3368 $sql .= " WHERE rowid = ".((int) $this->id);
3369
3370 $resql = $this->db->query($sql);
3371 if ($resql) {
3372 // Call trigger
3373 $result = $this->call_trigger('BILL_PAYED', $user);
3374 if ($result < 0) {
3375 $error++;
3376 }
3377 // End call triggers
3378 } else {
3379 $error++;
3380 $this->error = $this->db->lasterror();
3381 }
3382
3383 if (!$error) {
3384 $this->paye = 1;
3385 $this->status = self::STATUS_CLOSED;
3386 $this->db->commit();
3387 return 1;
3388 } else {
3389 $this->db->rollback();
3390 return -1;
3391 }
3392 } else {
3393 return 0;
3394 }
3395 }
3396
3397
3398 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
3409 public function set_unpaid($user)
3410 {
3411 // phpcs:enable
3412 dol_syslog(get_class($this)."::set_unpaid is deprecated, use setUnpaid instead", LOG_NOTICE);
3413 return $this->setUnpaid($user);
3414 }
3415
3424 public function setUnpaid($user)
3425 {
3426 $error = 0;
3427
3428 $this->db->begin();
3429
3430 $sql = 'UPDATE '.MAIN_DB_PREFIX.'facture';
3431 $sql .= ' SET paye=0, fk_statut='.self::STATUS_VALIDATED.', close_code=null, close_note=null,';
3432 $sql .= ' date_closing=null,';
3433 $sql .= ' fk_user_closing=null';
3434 $sql .= " WHERE rowid = ".((int) $this->id);
3435
3436 dol_syslog(get_class($this)."::setUnpaid", LOG_DEBUG);
3437 $resql = $this->db->query($sql);
3438 if ($resql) {
3439 // Call trigger
3440 $result = $this->call_trigger('BILL_UNPAYED', $user);
3441 if ($result < 0) {
3442 $error++;
3443 }
3444 // End call triggers
3445 } else {
3446 $error++;
3447 $this->error = $this->db->error();
3448 dol_print_error($this->db);
3449 }
3450
3451 if (!$error) {
3452 $this->db->commit();
3453 return 1;
3454 } else {
3455 $this->db->rollback();
3456 return -1;
3457 }
3458 }
3459
3460
3461 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
3474 public function set_canceled($user, $close_code = '', $close_note = '')
3475 {
3476 // phpcs:enable
3477 dol_syslog(get_class($this)."::set_canceled is deprecated, use setCanceled instead", LOG_NOTICE);
3478 return $this->setCanceled($user, $close_code, $close_note);
3479 }
3480
3491 public function setCanceled($user, $close_code = '', $close_note = '')
3492 {
3493 dol_syslog(get_class($this)."::setCanceled rowid=".((int) $this->id), LOG_DEBUG);
3494
3495 $this->db->begin();
3496 $now = dol_now();
3497
3498 $sql = 'UPDATE '.MAIN_DB_PREFIX.'facture SET';
3499 $sql .= ' fk_statut='.self::STATUS_ABANDONED;
3500 if ($close_code) {
3501 $sql .= ", close_code='".$this->db->escape($close_code)."'";
3502 }
3503 if ($close_note) {
3504 $sql .= ", close_note='".$this->db->escape($close_note)."'";
3505 }
3506 $sql .= ', fk_user_closing = '.((int) $user->id);
3507 $sql .= ", date_closing = '".$this->db->idate($now)."'";
3508 $sql .= " WHERE rowid = ".((int) $this->id);
3509
3510 $resql = $this->db->query($sql);
3511 if ($resql) {
3512 // Bound discounts are deducted from the invoice
3513 // as they have not been used since the invoice is abandoned.
3514 $sql = 'UPDATE '.MAIN_DB_PREFIX.'societe_remise_except';
3515 $sql .= ' SET fk_facture = NULL';
3516 $sql .= ' WHERE fk_facture = '.((int) $this->id);
3517
3518 $resql = $this->db->query($sql);
3519 if ($resql) {
3520 // Call trigger
3521 $result = $this->call_trigger('BILL_CANCEL', $user);
3522 if ($result < 0) {
3523 $this->db->rollback();
3524 return -1;
3525 }
3526 // End call triggers
3527
3528 $this->db->commit();
3529 return 1;
3530 } else {
3531 $this->error = $this->db->error()." sql=".$sql;
3532 $this->db->rollback();
3533 return -1;
3534 }
3535 } else {
3536 $this->error = $this->db->error()." sql=".$sql;
3537 $this->db->rollback();
3538 return -2;
3539 }
3540 }
3541
3554 public function validate($user, $force_number = '', $idwarehouse = 0, $notrigger = 0, $batch_rule = 0)
3555 {
3556 global $conf, $langs, $mysoc;
3557 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
3558
3559 $productStatic = null;
3560 $warehouseStatic = null;
3561 $productbatch = null;
3562 if ($batch_rule > 0) {
3563 require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
3564 require_once DOL_DOCUMENT_ROOT.'/product/class/productbatch.class.php';
3565 require_once DOL_DOCUMENT_ROOT.'/product/stock/class/entrepot.class.php';
3566 $productStatic = new Product($this->db);
3567 $warehouseStatic = new Entrepot($this->db);
3568 $productbatch = new Productbatch($this->db);
3569 }
3570
3571 $now = dol_now();
3572
3573 $error = 0;
3574 dol_syslog(get_class($this).'::validate user='.$user->id.', force_number='.$force_number.', idwarehouse='.$idwarehouse);
3575
3576 // Force to have object complete for checks
3577 $this->fetch_thirdparty();
3578 $this->fetch_lines();
3579
3580 // Check parameters
3581 if ($this->status != self::STATUS_DRAFT) {
3582 dol_syslog(get_class($this)."::validate Current status is not draft. operation canceled.", LOG_WARNING);
3583 return 0;
3584 }
3585 if (count($this->lines) <= 0) {
3586 $langs->load("errors");
3587 $this->error = $langs->trans("ErrorObjectMustHaveLinesToBeValidated", $this->ref);
3588 return -1;
3589 }
3590 if ((!getDolGlobalString('MAIN_USE_ADVANCED_PERMS') && !$user->hasRight('facture', 'creer'))
3591 || (getDolGlobalString('MAIN_USE_ADVANCED_PERMS') && !$user->hasRight('facture', 'invoice_advance', 'validate'))) {
3592 $this->error = 'Permission denied';
3593 dol_syslog(get_class($this)."::validate ".$this->error.' MAIN_USE_ADVANCED_PERMS=' . getDolGlobalString('MAIN_USE_ADVANCED_PERMS'), LOG_ERR);
3594 return -1;
3595 }
3596 if ((preg_match('/^[\‍(]?PROV/i', $this->ref) || empty($this->ref)) && // empty should not happened, but when it occurs, the test save life
3597 getDolGlobalString('FAC_FORCE_DATE_VALIDATION') // If option enabled, we force invoice date
3598 ) {
3599 $this->date = dol_now();
3600 $this->date_lim_reglement = $this->calculate_date_lim_reglement();
3601 }
3602 if (getDolGlobalString('INVOICE_CHECK_POSTERIOR_DATE')) {
3603 $last_of_type = $this->willBeLastOfSameType(true);
3604 if (!$last_of_type[0]) {
3605 $this->error = $langs->transnoentities("ErrorInvoiceIsNotLastOfSameType", $this->ref, dol_print_date($this->date, 'day'), dol_print_date($last_of_type[1], 'day'));
3606 return -1;
3607 }
3608 }
3609
3610 // Check for mandatory fields in thirdparty (defined into setup)
3611 if (!empty($this->thirdparty) && is_object($this->thirdparty)) {
3612 $array_to_check = array('IDPROF1', 'IDPROF2', 'IDPROF3', 'IDPROF4', 'IDPROF5', 'IDPROF6', 'EMAIL', 'TVA_INTRA', 'ACCOUNTANCY_CODE_CUSTOMER');
3613 foreach ($array_to_check as $key) {
3614 $keymin = strtolower($key);
3615 if (!property_exists($this->thirdparty, $keymin)) {
3616 continue;
3617 }
3618 $vallabel = $this->thirdparty->$keymin;
3619
3620 $i = (int) preg_replace('/[^0-9]/', '', $key);
3621 if ($i > 0) {
3622 if ($this->thirdparty->isACompany()) {
3623 // Check for mandatory prof id (but only if country is other than ours)
3624 if ($mysoc->country_id > 0 && $this->thirdparty->country_id == $mysoc->country_id) {
3625 $idprof_mandatory = 'SOCIETE_'.$key.'_INVOICE_MANDATORY';
3626 if (!$vallabel && getDolGlobalString($idprof_mandatory)) {
3627 $langs->load("errors");
3628 $this->error = $langs->trans('ErrorProdIdIsMandatory', $langs->transcountry('ProfId'.$i, $this->thirdparty->country_code)).' ('.$langs->trans("ForbiddenBySetupRules").') ['.$langs->trans('Company').' : '.$this->thirdparty->name.']';
3629 dol_syslog(__METHOD__.' '.$this->error, LOG_ERR);
3630 return -1;
3631 }
3632 }
3633 }
3634 } else {
3635 if ($key == 'EMAIL') {
3636 // Check for mandatory
3637 if (getDolGlobalString('SOCIETE_EMAIL_INVOICE_MANDATORY') && !isValidEmail($this->thirdparty->email)) {
3638 $langs->load("errors");
3639 $this->error = $langs->trans("ErrorBadEMail", $this->thirdparty->email).' ('.$langs->trans("ForbiddenBySetupRules").') ['.$langs->trans('Company').' : '.$this->thirdparty->name.']';
3640 dol_syslog(__METHOD__.' '.$this->error, LOG_ERR);
3641 return -1;
3642 }
3643 }
3644 if ($key == 'ACCOUNTANCY_CODE_CUSTOMER') {
3645 // Check for mandatory
3646 if (getDolGlobalString('SOCIETE_ACCOUNTANCY_CODE_CUSTOMER_INVOICE_MANDATORY') && empty($this->thirdparty->code_compta_client)) {
3647 $langs->load("errors");
3648 $this->error = $langs->trans("ErrorAccountancyCodeCustomerIsMandatory", $this->thirdparty->name).' ('.$langs->trans("ForbiddenBySetupRules").')';
3649 dol_syslog(__METHOD__.' '.$this->error, LOG_ERR);
3650 return -1;
3651 }
3652 }
3653 if ($key == 'TVA_INTRA') {
3654 // Check for mandatory vat number
3655 if (getDolGlobalString('SOCIETE_VAT_INTRA_INVOICE_MANDATORY') == 'eeconly') {
3656 if (($this->thirdparty->tva_assuj) && empty($this->thirdparty->tva_intra) && $this->thirdparty->isInEEC()) {
3657 $langs->load("errors");
3658 $this->error = $langs->trans('ErrorProdIdIsMandatoryForEuThirdparties', $langs->transnoentitiesnoconv('VATIntra')).' ('.$langs->transnoentitiesnoconv("ForbiddenBySetupRules").') ['.$langs->trans('Company').' : '.$this->thirdparty->name.']';
3659 dol_syslog(__METHOD__.' '.$this->error, LOG_ERR);
3660 return -1;
3661 }
3662 } elseif (getDolGlobalString('SOCIETE_VAT_INTRA_INVOICE_MANDATORY') && ($this->thirdparty->tva_assuj) && empty($this->thirdparty->tva_intra)) {
3663 $langs->load("errors");
3664 $this->error = $langs->trans('ErrorProdIdIsMandatory', $langs->transnoentitiesnoconv('VATIntra')).' ('.$langs->transnoentitiesnoconv("ForbiddenBySetupRules").') ['.$langs->trans('Company').' : '.$this->thirdparty->name.']';
3665 dol_syslog(__METHOD__.' '.$this->error, LOG_ERR);
3666 return -1;
3667 }
3668 }
3669 }
3670 }
3671 }
3672
3673 // Check for mandatory fields in $this
3674 $array_to_check = array('REF_CLIENT' => 'RefCustomer');
3675 foreach ($array_to_check as $key => $val) {
3676 $keymin = strtolower($key);
3677 $vallabel = $this->$keymin;
3678
3679 // Check for mandatory
3680 $keymandatory = 'INVOICE_'.$key.'_MANDATORY_FOR_VALIDATION';
3681 if (!$vallabel && getDolGlobalString($keymandatory)) {
3682 $langs->load("errors");
3683 $error++;
3684 $this->error = $langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv($val));
3685 }
3686 }
3687
3688 $this->db->begin();
3689
3690 // Check parameters
3691 if ($this->type == self::TYPE_REPLACEMENT) { // if this is a replacement invoice
3692 // Check that source invoice is known
3693 if ($this->fk_facture_source <= 0) {
3694 $this->error = $langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("InvoiceReplacement"));
3695 $this->db->rollback();
3696 return -10;
3697 }
3698
3699 // Load source invoice that has been replaced
3700 $facreplaced = new Facture($this->db);
3701 $result = $facreplaced->fetch($this->fk_facture_source);
3702 if ($result <= 0) {
3703 $this->error = $langs->trans("ErrorBadInvoice");
3704 $this->db->rollback();
3705 return -11;
3706 }
3707
3708 // Check that source invoice not already replaced by another one.
3709 $idreplacement = $facreplaced->getIdReplacingInvoice('validated');
3710 if ($idreplacement && $idreplacement != $this->id) {
3711 $facreplacement = new Facture($this->db);
3712 $facreplacement->fetch($idreplacement);
3713 $this->error = $langs->trans("ErrorInvoiceAlreadyReplaced", $facreplaced->ref, $facreplacement->ref);
3714 $this->db->rollback();
3715 return -12;
3716 }
3717
3718 $result = $facreplaced->setCanceled($user, self::CLOSECODE_REPLACED, '');
3719 if ($result < 0) {
3720 $this->error = $facreplaced->error;
3721 $this->db->rollback();
3722 return -13;
3723 }
3724 }
3725
3726 // Define new ref
3727 if ($force_number) {
3728 $num = $force_number;
3729 } elseif (preg_match('/^[\‍(]?PROV/i', $this->ref) || empty($this->ref)) { // empty should not happened, but when it occurs, the test save life
3730 if (getDolGlobalString('FAC_FORCE_DATE_VALIDATION')) { // If option enabled, we force invoice date
3731 $this->date = dol_now();
3732 $this->date_lim_reglement = $this->calculate_date_lim_reglement();
3733 }
3734 $num = $this->getNextNumRef($this->thirdparty);
3735 } else {
3736 $num = (string) $this->ref;
3737 }
3738
3739 if (!$num) {
3740 $error++;
3741 } else {
3742 $this->oldref = $this->ref;
3743 $this->newref = dol_sanitizeFileName($num);
3744 }
3745
3746 if (!$error) {
3747 $this->update_price(1);
3748
3749 // Validate
3750 $sql = 'UPDATE '.MAIN_DB_PREFIX.'facture';
3751 $sql .= " SET ref = '".$this->db->escape($num)."', fk_statut = ".self::STATUS_VALIDATED.", fk_user_valid = ".($user->id > 0 ? $user->id : "null").", date_valid = '".$this->db->idate($now)."'";
3752 if (getDolGlobalString('FAC_FORCE_DATE_VALIDATION')) { // If option enabled, we force invoice date
3753 $sql .= ", datef='".$this->db->idate($this->date)."'";
3754 $sql .= ", date_lim_reglement='".$this->db->idate($this->date_lim_reglement)."'";
3755 }
3756 $sql .= " WHERE rowid = ".((int) $this->id);
3757
3758 dol_syslog(get_class($this)."::validate", LOG_DEBUG);
3759 $resql = $this->db->query($sql);
3760 if (!$resql) {
3761 $this->error = $this->db->lasterror();
3762 $error++;
3763 }
3764 }
3765
3766 if (!$error) {
3767 // Define third party as a customer
3768 $result = $this->thirdparty->setAsCustomer();
3769
3770 // If active (STOCK_CALCULATE_ON_BILL), we decrement the main product and its components at invoice validation
3771 if ($this->type != self::TYPE_DEPOSIT && $result >= 0 && isModEnabled('stock') && getDolGlobalString('STOCK_CALCULATE_ON_BILL') && $idwarehouse > 0) {
3772 require_once DOL_DOCUMENT_ROOT.'/product/stock/class/mouvementstock.class.php';
3773 $langs->load("agenda");
3774
3775 // Loop on each line
3776 $cpt = count($this->lines);
3777 for ($i = 0; $i < $cpt; $i++) {
3778 if ($this->lines[$i]->fk_product > 0) {
3779 $mouvP = new MouvementStock($this->db);
3780 $mouvP->origin = &$this; // deprecated
3781 $mouvP->setOrigin($this->element, $this->id);
3782
3783 // We decrease stock for product
3784 if ($this->type == self::TYPE_CREDIT_NOTE) {
3785 // TODO If warehouseid has been set into invoice line, we should use this value in priority
3786 // $newidwarehouse = $this->lines[$i]->fk_warehouse ? $this->lines[$i]->fk_warehouse : $idwarehouse;
3787 $result = $mouvP->reception($user, $this->lines[$i]->fk_product, $idwarehouse, $this->lines[$i]->qty, 0, $langs->trans("InvoiceValidatedInDolibarr", $num), '', '', $this->lines[$i]->batch);
3788 if ($result < 0) {
3789 $error++;
3790 $this->setErrorsFromObject($mouvP);
3791 }
3792 } else {
3793 // TODO If warehouseid has been set into invoice line, we should use this value in priority
3794 // $newidwarehouse = $this->lines[$i]->fk_warehouse ? $this->lines[$i]->fk_warehouse : $idwarehouse;
3795
3796 $is_batch_line = false;
3797 if ($batch_rule > 0) {
3798 $productStatic->fetch($this->lines[$i]->fk_product);
3799 if ($productStatic->hasbatch() && is_object($productbatch)) {
3800 $is_batch_line = true;
3801 $product_qty_remain = $this->lines[$i]->qty;
3802
3803 $sortfield = '';
3804 $sortorder = '';
3805 // find lot/serial by sellby (DLC) and eatby dates (DLUO) first
3807 $sortfield = 'pl.sellby,pl.eatby,pb.qty,pl.rowid';
3808 $sortorder = 'ASC,ASC,ASC,ASC';
3809 }
3810
3811 $resBatchList = $productbatch->findAllForProduct($productStatic->id, $idwarehouse, (getDolGlobalInt('STOCK_DISALLOW_NEGATIVE_TRANSFER') ? 0 : null), $sortfield, $sortorder);
3812 if (!is_array($resBatchList)) {
3813 $error++;
3814 $this->error = $this->db->lasterror();
3815 }
3816
3817 if (!$error) {
3818 $batchList = $resBatchList;
3819 if (empty($batchList)) {
3820 $error++;
3821 $langs->load('errors');
3822 $warehouseStatic->fetch($idwarehouse);
3823 $this->error = $langs->trans('ErrorBatchNoFoundForProductInWarehouse', $productStatic->label, $warehouseStatic->ref);
3824 dol_syslog(__METHOD__.' Error: '.$langs->transnoentitiesnoconv('ErrorBatchNoFoundForProductInWarehouse', $productStatic->label, $warehouseStatic->ref), LOG_ERR);
3825 }
3826
3827 foreach ($batchList as $batch) {
3828 if ($batch->qty <= 0) {
3829 continue; // try to decrement only batches have positive quantity first
3830 }
3831
3832 // enough quantity in this batch
3833 if ($batch->qty >= $product_qty_remain) {
3834 $product_batch_qty = $product_qty_remain;
3835 } else {
3836 // not enough (take all in batch)
3837 $product_batch_qty = $batch->qty;
3838 }
3839 $result = $mouvP->livraison($user, $productStatic->id, $idwarehouse, $product_batch_qty, $this->lines[$i]->subprice, $langs->trans('InvoiceValidatedInDolibarr', $num), '', '', '', $batch->batch);
3840 if ($result < 0) {
3841 $error++;
3842 $this->setErrorsFromObject($mouvP);
3843 break;
3844 }
3845
3846 $product_qty_remain -= $product_batch_qty;
3847 // all product quantity was decremented
3848 if ($product_qty_remain <= 0) {
3849 break;
3850 }
3851 }
3852
3853 if (!$error && $product_qty_remain > 0) {
3854 if (getDolGlobalInt('STOCK_DISALLOW_NEGATIVE_TRANSFER')) {
3855 $error++;
3856 $langs->load('errors');
3857 $warehouseStatic->fetch($idwarehouse);
3858 $this->error = $langs->trans('ErrorBatchNoFoundEnoughQuantityForProductInWarehouse', $productStatic->label, $warehouseStatic->ref);
3859 dol_syslog(__METHOD__.' Error: '.$langs->transnoentitiesnoconv('ErrorBatchNoFoundEnoughQuantityForProductInWarehouse', $productStatic->label, $warehouseStatic->ref), LOG_ERR);
3860 } else {
3861 // take in the first batch
3862 $batch = $batchList[0];
3863 $result = $mouvP->livraison($user, $productStatic->id, $idwarehouse, $product_qty_remain, $this->lines[$i]->subprice, $langs->trans('InvoiceValidatedInDolibarr', $num), '', '', '', $batch->batch);
3864 if ($result < 0) {
3865 $error++;
3866 $this->setErrorsFromObject($mouvP);
3867 }
3868 }
3869 }
3870 }
3871 }
3872 }
3873
3874 if (!$is_batch_line) { // If stock move not yet processed
3875 $result = $mouvP->livraison($user, $this->lines[$i]->fk_product, $idwarehouse, $this->lines[$i]->qty, $this->lines[$i]->subprice, $langs->trans("InvoiceValidatedInDolibarr", $num));
3876 if ($result < 0) {
3877 $error++;
3878 $this->setErrorsFromObject($mouvP);
3879 }
3880 }
3881 }
3882 }
3883 }
3884 }
3885
3886 /*
3887 * Set situation_final to 0 if is a credit note and the invoice source is a invoice situation (case when invoice situation is at 100%)
3888 * So we can continue to create new invoice situation
3889 */
3890 if (!$error && $this->type == self::TYPE_CREDIT_NOTE && $this->fk_facture_source > 0) {
3891 $invoice_situation = new Facture($this->db);
3892 $result = $invoice_situation->fetch($this->fk_facture_source);
3893 if ($result > 0 && $invoice_situation->type == self::TYPE_SITUATION && $invoice_situation->situation_final == 1) {
3894 $invoice_situation->situation_final = 0;
3895 // Disable triggers because module can force situation_final to 1 by triggers (ex: SubTotal)
3896 $result = $invoice_situation->setFinal($user, 1);
3897 }
3898 if ($result < 0) {
3899 $this->error = $invoice_situation->error;
3900 $this->errors = array_merge($this->errors, $invoice_situation->errors);
3901 $error++;
3902 }
3903 }
3904
3905 // Trigger calls
3906 if (!$error && !$notrigger) {
3907 // Call trigger
3908 $result = $this->call_trigger('BILL_VALIDATE', $user);
3909 if ($result < 0) {
3910 $error++;
3911 }
3912 // End call triggers
3913 }
3914
3915 if (!$error) {
3916 // Rename directory in index entry if dir was a temporary ref
3917 if (preg_match('/^[\‍(]?PROV/i', $this->ref)) {
3918 // Now we rename also files into index
3919 $sql = 'UPDATE '.MAIN_DB_PREFIX."ecm_files set filename = CONCAT('".$this->db->escape($this->newref)."', SUBSTR(filename, ".(strlen($this->ref) + 1).")), filepath = 'facture/".$this->db->escape($this->newref)."'";
3920 $sql .= " WHERE filename LIKE '".$this->db->escape($this->ref)."%' AND filepath = 'facture/".$this->db->escape($this->ref)."' and entity = ".(int) $conf->entity;
3921 $resql = $this->db->query($sql);
3922 if (!$resql) {
3923 $error++;
3924 $this->error = $this->db->lasterror();
3925 }
3926 $sql = 'UPDATE '.MAIN_DB_PREFIX."ecm_files set filepath = 'facture/".$this->db->escape($this->newref)."'";
3927 $sql .= " WHERE filepath = 'facture/".$this->db->escape($this->ref)."' and entity = ".(int) $conf->entity;
3928 $resql = $this->db->query($sql);
3929 if (!$resql) {
3930 $error++;
3931 $this->error = $this->db->lasterror();
3932 }
3933 }
3934 }
3935
3936 if (!$error && !$this->is_last_in_cycle()) {
3937 $resupdatenext = $this->updatePriceNextInvoice($langs);
3938 if (!$resupdatenext) {
3939 $error++;
3940 }
3941 }
3942
3943 // Set new ref and define current status
3944 if (!$error) {
3945 $this->ref = $num;
3946 $this->statut = self::STATUS_VALIDATED; // deprecated
3948 $this->date_validation = $now;
3949 $i = 0;
3950
3951 if (getDolGlobalInt('INVOICE_USE_SITUATION')) {
3952 $final = true;
3953 $nboflines = count($this->lines);
3954 while (($i < $nboflines) && $final) {
3955 $line = $this->lines[$i];
3956 '@phan-var-force FactureLigne $line';
3957 if (getDolGlobalInt('INVOICE_USE_SITUATION') == 2) {
3958 $previousprogress = $line->getAllPrevProgress($line->fk_facture);
3959 $current_progress = (float) $line->situation_percent;
3960 $full_progress = $previousprogress + $current_progress;
3961 $final = ($full_progress == 100);
3962 } else {
3963 $final = ($line->situation_percent == 100);
3964 }
3965 $i++;
3966 }
3967
3968 if (!$final) {
3969 if ($this->situation_final) {
3970 // If we must change situation_final
3971 $this->situation_final = 0;
3972 $this->setFinal($user, 1); // Trigger is disabled, already run by the validate
3973 }
3974 } else {
3975 if (!$this->situation_final) {
3976 // If we must change situation_final
3977 $this->situation_final = 1;
3978 $this->setFinal($user, 1); // Trigger is disabled, already run by the validate
3979 }
3980 }
3981 }
3982 }
3983 }
3984
3985 // All database actions are now complete
3986 // We rename the directory and files on disk if old dir was a temporary ref.
3987 if (!$error && preg_match('/^[\‍(]?PROV/i', $this->oldref)) {
3988 // We rename directory ($this->ref = old ref, $num = new ref) in order not to lose the attachments
3989 $oldref = dol_sanitizeFileName($this->oldref);
3990 $newref = dol_sanitizeFileName($num);
3991 $dirsource = $conf->facture->dir_output.'/'.$oldref;
3992 $dirdest = $conf->facture->dir_output.'/'.$newref;
3993 if (!$error && file_exists($dirsource)) {
3994 dol_syslog(get_class($this)."::validate rename dir ".$dirsource." into ".$dirdest);
3995
3996 if (@rename($dirsource, $dirdest)) {
3997 dol_syslog("Rename ok");
3998 // Rename also docs starting with $oldref with $newref
3999 $listoffiles = dol_dir_list($conf->facture->dir_output.'/'.$newref, 'files', 1, '^'.preg_quote($oldref, '/'));
4000 foreach ($listoffiles as $fileentry) {
4001 $dirsource = $fileentry['name'];
4002 $dirdest = preg_replace('/^'.preg_quote($oldref, '/').'/', $newref, $dirsource);
4003 $dirsource = $fileentry['path'].'/'.$dirsource;
4004 $dirdest = $fileentry['path'].'/'.$dirdest;
4005 @rename($dirsource, $dirdest);
4006 }
4007 }
4008 }
4009 }
4010
4011 if (!$error) {
4012 $this->db->commit();
4013 return 1;
4014 } else {
4015 $this->db->rollback();
4016 return -1;
4017 }
4018 }
4019
4026 public function updatePriceNextInvoice(&$langs)
4027 {
4028 foreach ($this->tab_next_situation_invoice as $next_invoice) {
4029 $is_last = $next_invoice->is_last_in_cycle();
4030
4031 if ($next_invoice->status == self::STATUS_DRAFT && $is_last != 1) {
4032 $this->error = $langs->trans('updatePriceNextInvoiceErrorUpdateline', $next_invoice->ref);
4033 return false;
4034 }
4035
4036 foreach ($next_invoice->lines as $line) {
4037 '@phan-var-force FactureLigne $line';
4038 $result = $next_invoice->updateline(
4039 $line->id,
4040 $line->desc,
4041 $line->subprice,
4042 $line->qty,
4043 $line->remise_percent,
4044 $line->date_start,
4045 $line->date_end,
4046 $line->tva_tx,
4047 $line->localtax1_tx,
4048 $line->localtax2_tx,
4049 'HT',
4050 $line->info_bits,
4051 $line->product_type,
4052 $line->fk_parent_line,
4053 0,
4054 $line->fk_fournprice,
4055 $line->pa_ht,
4056 $line->label,
4057 $line->special_code,
4058 $line->array_options,
4059 $line->situation_percent,
4060 $line->fk_unit
4061 );
4062
4063 if ($result < 0) {
4064 $this->error = $langs->trans('updatePriceNextInvoiceErrorUpdateline', $next_invoice->ref);
4065 return false;
4066 }
4067 }
4068
4069 break; // Only the next invoice and not each next invoice
4070 }
4071
4072 return true;
4073 }
4074
4082 public function setDraft($user, $idwarehouse = -1)
4083 {
4084 // phpcs:enable
4085 global $langs;
4086
4087 $error = 0;
4088
4089 if ($this->status == self::STATUS_DRAFT) {
4090 dol_syslog(__METHOD__." already draft status", LOG_WARNING);
4091 return 0;
4092 }
4093
4094 dol_syslog(__METHOD__, LOG_DEBUG);
4095
4096 $this->db->begin();
4097
4098 $sql = "UPDATE ".MAIN_DB_PREFIX."facture";
4099 $sql .= " SET fk_statut = ".self::STATUS_DRAFT;
4100 $sql .= " WHERE rowid = ".((int) $this->id);
4101
4102 $result = $this->db->query($sql);
4103 if ($result) {
4104 if (!$error) {
4105 $this->oldcopy = clone $this;
4106 }
4107
4108 // If we decrease stock on invoice validation, we increase back
4109 if ($this->type != self::TYPE_DEPOSIT && $result >= 0 && isModEnabled('stock') && getDolGlobalString('STOCK_CALCULATE_ON_BILL')) {
4110 require_once DOL_DOCUMENT_ROOT.'/product/stock/class/mouvementstock.class.php';
4111 $langs->load("agenda");
4112
4113 $num = count($this->lines);
4114 for ($i = 0; $i < $num; $i++) {
4115 if ($this->lines[$i]->fk_product > 0) {
4116 $mouvP = new MouvementStock($this->db);
4117 $mouvP->origin = &$this;
4118 $mouvP->setOrigin($this->element, $this->id);
4119 // We decrease stock for product
4120 if ($this->type == self::TYPE_CREDIT_NOTE) {
4121 $result = $mouvP->livraison($user, $this->lines[$i]->fk_product, $idwarehouse, $this->lines[$i]->qty, $this->lines[$i]->subprice, $langs->trans("InvoiceBackToDraftInDolibarr", $this->ref));
4122 } else {
4123 $result = $mouvP->reception($user, $this->lines[$i]->fk_product, $idwarehouse, $this->lines[$i]->qty, 0, $langs->trans("InvoiceBackToDraftInDolibarr", $this->ref)); // we use 0 for price, to not change the weighted average value
4124 }
4125 }
4126 }
4127 }
4128
4129 if ($error == 0) {
4130 $old_statut = $this->status;
4131 $this->statut = self::STATUS_DRAFT; // deprecated
4132 $this->status = self::STATUS_DRAFT;
4133
4134 // Call trigger
4135 $result = $this->call_trigger('BILL_UNVALIDATE', $user);
4136 if ($result < 0) {
4137 $error++;
4138 $this->statut = $old_statut; // deprecated
4139 $this->status = $old_statut;
4140 }
4141 // End call triggers
4142 } else {
4143 $this->db->rollback();
4144 return -1;
4145 }
4146
4147 if ($error == 0) {
4148 $this->db->commit();
4149 return 1;
4150 } else {
4151 $this->db->rollback();
4152 return -1;
4153 }
4154 } else {
4155 $this->error = $this->db->error();
4156 $this->db->rollback();
4157 return -1;
4158 }
4159 }
4160
4161
4202 public function addline(
4203 $desc,
4204 $pu_ht,
4205 $qty,
4206 $txtva,
4207 $txlocaltax1 = 0,
4208 $txlocaltax2 = 0,
4209 $fk_product = 0,
4210 $remise_percent = 0,
4211 $date_start = '',
4212 $date_end = '',
4213 $fk_code_ventilation = 0,
4214 $info_bits = 0,
4215 $fk_remise_except = 0,
4216 $price_base_type = 'HT',
4217 $pu_ttc = 0,
4218 $type = 0,
4219 $rang = -1,
4220 $special_code = 0,
4221 $origin = '',
4222 $origin_id = 0,
4223 $fk_parent_line = 0,
4224 $fk_fournprice = null,
4225 $pa_ht = 0,
4226 $label = '',
4227 $array_options = array(),
4228 $situation_percent = 100,
4229 $fk_prev_id = 0,
4230 $fk_unit = null,
4231 $pu_ht_devise = 0,
4232 $ref_ext = '',
4233 $noupdateafterinsertline = 0
4234 ) {
4235 // Deprecation warning
4236 if ($label) {
4237 dol_syslog(__METHOD__.": using line label is deprecated", LOG_WARNING);
4238 //var_dump(getCallerInfoString());exit;
4239 }
4240
4241 global $mysoc, $langs;
4242
4243 dol_syslog(get_class($this)."::addline id=$this->id, pu_ht=$pu_ht, qty=$qty, txtva=$txtva, txlocaltax1=$txlocaltax1, txlocaltax2=$txlocaltax2, fk_product=$fk_product, remise_percent=$remise_percent, date_start=$date_start, date_end=$date_end, fk_code_ventilation=$fk_code_ventilation, info_bits=$info_bits, fk_remise_except=$fk_remise_except, price_base_type=$price_base_type, pu_ttc=$pu_ttc, type=$type, fk_unit=$fk_unit, desc=".dol_trunc($desc, 25), LOG_DEBUG);
4244
4245 if ($this->status == self::STATUS_DRAFT) {
4246 include_once DOL_DOCUMENT_ROOT.'/core/lib/price.lib.php';
4247
4248 // Clean parameters
4249 if (empty($remise_percent)) {
4250 $remise_percent = 0;
4251 }
4252 if (empty($qty)) {
4253 $qty = 0;
4254 }
4255 if (empty($info_bits)) {
4256 $info_bits = 0;
4257 }
4258 if (empty($rang)) {
4259 $rang = 0;
4260 }
4261 if (empty($fk_code_ventilation)) {
4262 $fk_code_ventilation = 0;
4263 }
4264 if (empty($txtva)) {
4265 $txtva = 0;
4266 }
4267 if (empty($txlocaltax1)) {
4268 $txlocaltax1 = 0;
4269 }
4270 if (empty($txlocaltax2)) {
4271 $txlocaltax2 = 0;
4272 }
4273 if (empty($fk_parent_line) || $fk_parent_line < 0) {
4274 $fk_parent_line = 0;
4275 }
4276 if (empty($fk_prev_id)) {
4277 $fk_prev_id = 'null';
4278 }
4279
4280 if (!isset($situation_percent) || $situation_percent > 100 || (string) $situation_percent == '') {
4281 // INVOICE_USE_SITUATION = 2 - Lines situation percent on new lines must be 0 (No cumulative). They will be added by changing the percent that is initialized to 0.
4282 if ($this->isSituationInvoice() && getDolGlobalInt('INVOICE_USE_SITUATION') == 2) {
4283 $situation_percent = 0;
4284 } else {
4285 $situation_percent = 100;
4286 }
4287 }
4288
4289 if (empty($ref_ext)) {
4290 $ref_ext = '';
4291 }
4292
4293 $remise_percent = (float) price2num($remise_percent);
4294
4295 $qty = (float) price2num($qty);
4296 $pu_ht = (float) price2num($pu_ht);
4297 $pu_ht_devise = (float) price2num($pu_ht_devise);
4298 $pu_ttc = (float) price2num($pu_ttc);
4299 $pa_ht = price2num($pa_ht); // do not convert to float here, it breaks the functioning of $pa_ht_isemptystring
4300 if (strpos((string) $txtva, '*') !== false) {
4301 $info_bits |= 1;
4302 }
4303 if (!preg_match('/\‍((.*)\‍)/', (string) $txtva)) {
4304 $txtva = price2num($txtva); // $txtva can have format '5.0(XXX)' or '5'
4305 }
4306 $txlocaltax1 = (float) price2num($txlocaltax1);
4307 $txlocaltax2 = (float) price2num($txlocaltax2);
4308
4309 if ($price_base_type == 'HT') {
4310 $pu = $pu_ht;
4311 } else {
4312 $pu = $pu_ttc;
4313 }
4314
4315 // Check parameters
4316 if ($type < 0) {
4317 return -1;
4318 }
4319
4320 if ($date_start && $date_end && $date_start > $date_end) {
4321 $langs->load("errors");
4322 $this->error = $langs->trans('ErrorStartDateGreaterEnd');
4323 return -1;
4324 }
4325
4326 $this->db->begin();
4327
4328 $product_type = $type;
4329 if (!empty($fk_product) && $fk_product > 0) {
4330 $product = new Product($this->db);
4331 $result = $product->fetch($fk_product);
4332 $product_type = $product->type;
4333
4334 if (getDolGlobalString('STOCK_MUST_BE_ENOUGH_FOR_INVOICE') && $product->isStockManaged()) {
4335 // get real stock
4336 $productChildrenNb = 0;
4337 if (getDolGlobalInt('PRODUIT_SOUSPRODUITS')) {
4338 $productChildrenNb = $product->hasFatherOrChild(1);
4339 }
4340 if ($productChildrenNb > 0) {
4341 // compute real stock from each subcomponent
4342 $product_stock = null;
4343 $product->loadStockForVirtualProduct('warehouseopen', $qty);
4344 foreach ($product->stock_warehouse as $componentStockWarehouse) {
4345 if ($product_stock === null) {
4346 $product_stock = $componentStockWarehouse->real;
4347 } else {
4348 $product_stock = min($product_stock, $componentStockWarehouse->real);
4349 }
4350 }
4351 if ($product_stock === null) {
4352 $product_stock = 0;
4353 }
4354 } else {
4355 $product_stock = $product->stock_reel;
4356 }
4357
4358 if ($product_stock < $qty) {
4359 $langs->load("errors");
4360 $this->error = $langs->trans('ErrorStockIsNotEnoughToAddProductOnInvoice', $product->ref);
4361 $this->db->rollback();
4362 return -3;
4363 }
4364 }
4365
4366 if (getDolGlobalString('PRODUCT_USE_CUSTOMER_PACKAGING')) {
4367 $tmpproduct = new Product($this->db);
4368 $result = $tmpproduct->fetch($fk_product);
4369 if (abs((float) $qty) < $tmpproduct->packaging) {
4370 $qty = (float) $tmpproduct->packaging;
4371 setEventMessages($langs->trans('QtyRecalculatedWithPackaging'), null, 'warnings');
4372 } else {
4373 if (!empty($tmpproduct->packaging) && (float) price2num(fmod((float) $qty, (float) $tmpproduct->packaging), 'MS')) {
4374 $coeff = intval(abs((float) $qty) / $tmpproduct->packaging) + 1;
4375 $qty = price2num((float) $tmpproduct->packaging * $coeff, 'MS');
4376 setEventMessages($langs->trans('QtyRecalculatedWithPackaging'), null, 'warnings');
4377 }
4378 }
4379 }
4380 }
4381
4382 $localtaxes_type = getLocalTaxesFromRate($txtva, 0, $this->thirdparty, $mysoc);
4383
4384 // Clean vat code
4385 $reg = array();
4386 $vat_src_code = '';
4387 if (preg_match('/\‍((.*)\‍)/', $txtva, $reg)) {
4388 $vat_src_code = $reg[1];
4389 $txtva = preg_replace('/\s*\‍(.*\‍)/', '', $txtva); // Remove code into vatrate.
4390 }
4391
4392 // Calculation of the gross total (TTC) and VAT for the line from qty, pu, remise_percent and txtva
4393 // VERY IMPORTANT: It's at the time of line insertion that we must store the net, VAT, and gross amounts,
4394 // and this is done at the line level, which has its own VAT rate
4395
4396 $tabprice = calcul_price_total($qty, $pu, $remise_percent, $txtva, $txlocaltax1, $txlocaltax2, 0, $price_base_type, $info_bits, $product_type, $mysoc, $localtaxes_type, $situation_percent, $this->multicurrency_tx, $pu_ht_devise);
4397
4398 $total_ht = $tabprice[0];
4399 $total_tva = $tabprice[1];
4400 $total_ttc = $tabprice[2];
4401 $total_localtax1 = $tabprice[9];
4402 $total_localtax2 = $tabprice[10];
4403 $pu_ht = $tabprice[3];
4404
4405 // MultiCurrency
4406 $multicurrency_total_ht = $tabprice[16];
4407 $multicurrency_total_tva = $tabprice[17];
4408 $multicurrency_total_ttc = $tabprice[18];
4409 $pu_ht_devise = $tabprice[19];
4410
4411 // Rank to use
4412 $ranktouse = $rang;
4413 if (empty($ranktouse) || $ranktouse == -1) {
4414 $rangmax = $this->line_max($fk_parent_line);
4415 $ranktouse = $rangmax + 1;
4416 }
4417
4418 // Insert line
4419 $this->line = new FactureLigne($this->db);
4420
4421 $this->line->context = $this->context;
4422
4423 $this->line->fk_facture = $this->id;
4424 $this->line->label = $label; // deprecated
4425 $this->line->desc = $desc;
4426 $this->line->ref_ext = $ref_ext;
4427
4428 $this->line->qty = ($this->type == self::TYPE_CREDIT_NOTE ? abs((float) $qty) : (float) $qty); // For credit note, quantity is always positive and unit price negative
4429 $this->line->subprice = ($this->type == self::TYPE_CREDIT_NOTE ? -abs((float) $pu_ht) : (float) $pu_ht); // For credit note, unit price always negative, always positive otherwise
4430
4431 $this->line->vat_src_code = $vat_src_code;
4432 $this->line->tva_tx = $txtva;
4433 $this->line->localtax1_tx = ($total_localtax1 ? $localtaxes_type[1] : 0);
4434 $this->line->localtax2_tx = ($total_localtax2 ? $localtaxes_type[3] : 0);
4435 $this->line->localtax1_type = empty($localtaxes_type[0]) ? 0 : $localtaxes_type[0];
4436 $this->line->localtax2_type = empty($localtaxes_type[2]) ? 0 : $localtaxes_type[2];
4437
4438 $this->line->total_ht = (($this->type == self::TYPE_CREDIT_NOTE || $qty < 0) ? -abs((float) $total_ht) : (float) $total_ht); // For credit note and if qty is negative, total is negative
4439 $this->line->total_ttc = (($this->type == self::TYPE_CREDIT_NOTE || $qty < 0) ? -abs((float) $total_ttc) : (float) $total_ttc); // For credit note and if qty is negative, total is negative
4440 $this->line->total_tva = (($this->type == self::TYPE_CREDIT_NOTE || $qty < 0) ? -abs((float) $total_tva) : (float) $total_tva); // For credit note and if qty is negative, total is negative
4441 $this->line->total_localtax1 = (($this->type == self::TYPE_CREDIT_NOTE || $qty < 0) ? -abs((float) $total_localtax1) : (float) $total_localtax1); // For credit note and if qty is negative, total is negative
4442 $this->line->total_localtax2 = (($this->type == self::TYPE_CREDIT_NOTE || $qty < 0) ? -abs((float) $total_localtax2) : (float) $total_localtax2); // For credit note and if qty is negative, total is negative
4443
4444 $this->line->fk_product = $fk_product;
4445 $this->line->product_type = $product_type;
4446 $this->line->remise_percent = $remise_percent;
4447 $this->line->date_start = $date_start;
4448 $this->line->date_end = $date_end;
4449 $this->line->fk_code_ventilation = $fk_code_ventilation;
4450 $this->line->rang = $ranktouse;
4451 $this->line->info_bits = $info_bits;
4452 $this->line->fk_remise_except = $fk_remise_except;
4453
4454 $this->line->special_code = $special_code;
4455 $this->line->fk_parent_line = $fk_parent_line;
4456
4457 $this->line->origin = $origin;
4458 $this->line->origin_id = $origin_id;
4459
4460 $this->line->situation_percent = $situation_percent;
4461 $this->line->fk_prev_id = $fk_prev_id;
4462 $this->line->fk_unit = $fk_unit;
4463
4464 // infos margin
4465 $this->line->fk_fournprice = $fk_fournprice;
4466 $this->line->pa_ht = $pa_ht;
4467
4468 // Multicurrency
4469 $this->line->fk_multicurrency = $this->fk_multicurrency;
4470 $this->line->multicurrency_code = $this->multicurrency_code;
4471 $this->line->multicurrency_subprice = ($this->type == self::TYPE_CREDIT_NOTE ? -abs((float) $pu_ht_devise) : (float) $pu_ht_devise); // For credit note, unit price always negative, always positive otherwise
4472
4473 $this->line->multicurrency_total_ht = (($this->type == self::TYPE_CREDIT_NOTE || $qty < 0) ? -abs((float) $multicurrency_total_ht) : (float) $multicurrency_total_ht); // For credit note and if qty is negative, total is negative
4474 $this->line->multicurrency_total_tva = (($this->type == self::TYPE_CREDIT_NOTE || $qty < 0) ? -abs((float) $multicurrency_total_tva) : (float) $multicurrency_total_tva); // For credit note and if qty is negative, total is negative
4475 $this->line->multicurrency_total_ttc = (($this->type == self::TYPE_CREDIT_NOTE || $qty < 0) ? -abs((float) $multicurrency_total_ttc) : (float) $multicurrency_total_ttc); // For credit note and if qty is negative, total is negative
4476
4477 if (is_array($array_options) && count($array_options) > 0) {
4478 $this->line->array_options = $array_options;
4479 }
4480
4481 $result = $this->line->insert();
4482 if ($result > 0) {
4483 // Update denormalized fields at the order level
4484 if (empty($noupdateafterinsertline)) {
4485 $result = $this->update_price(1, 'auto', 0, $mysoc); // The addline method is designed to add line from user input so total calculation with update_price must be done using 'auto' mode.
4486 }
4487
4488 if (!isset($this->context['createfromclone'])) {
4489 if (!empty($fk_parent_line)) {
4490 // Always reorder if child line
4491 $this->line_order(true, 'DESC');
4492 } elseif ($ranktouse > 0 && $ranktouse <= count($this->lines)) {
4493 // Update all rank of all other lines starting from the same $ranktouse
4494 $linecount = count($this->lines);
4495 for ($ii = $ranktouse; $ii <= $linecount; $ii++) {
4496 $this->updateRangOfLine($this->lines[$ii - 1]->id, $ii + 1);
4497 }
4498 }
4499
4500 $this->lines[] = $this->line;
4501 } else {
4502 // Loop on all lines of parent object
4503 foreach ($this->lines as $tmpline) {
4504 if ($tmpline->id == $origin_id && $tmpline->element == $origin) {
4505 $this->line->extraparams = $tmpline->extraparams;
4506 $this->line->setExtraParameters();
4507 }
4508 }
4509 }
4510
4511 if ($result > 0) {
4512 $this->db->commit();
4513 return $this->line->id;
4514 } else {
4515 $this->error = $this->db->lasterror();
4516 $this->db->rollback();
4517 return -1;
4518 }
4519 } else {
4520 $this->error = $this->line->error;
4521 $this->errors = $this->line->errors;
4522 $this->db->rollback();
4523 return -2;
4524 }
4525 } else {
4526 $this->errors[] = 'status of invoice must be Draft to allow use of ->addline()';
4527 dol_syslog(get_class($this)."::addline status of invoice must be Draft to allow use of ->addline()", LOG_ERR);
4528 return -3;
4529 }
4530 }
4531
4563 public function updateline($rowid, $desc, $pu, $qty, $remise_percent, $date_start, $date_end, $txtva, $txlocaltax1 = 0, $txlocaltax2 = 0, $price_base_type = 'HT', $info_bits = 0, $type = self::TYPE_STANDARD, $fk_parent_line = 0, $skip_update_total = 0, $fk_fournprice = null, $pa_ht = 0, $label = '', $special_code = 0, $array_options = array(), $situation_percent = 100, $fk_unit = null, $pu_ht_devise = 0, $notrigger = 0, $ref_ext = '', $rang = 0)
4564 {
4565 global $user;
4566
4567 // Deprecation warning
4568 if ($label) {
4569 dol_syslog(__METHOD__.": using line label is deprecated", LOG_WARNING);
4570 }
4571
4572 include_once DOL_DOCUMENT_ROOT.'/core/lib/price.lib.php';
4573
4574 global $mysoc, $langs;
4575
4576 dol_syslog(get_class($this)."::updateline rowid=$rowid, desc=$desc, pu=$pu, qty=$qty, remise_percent=$remise_percent, date_start=$date_start, date_end=$date_end, txtva=$txtva, txlocaltax1=$txlocaltax1, txlocaltax2=$txlocaltax2, price_base_type=$price_base_type, info_bits=$info_bits, type=$type, fk_parent_line=$fk_parent_line pa_ht=$pa_ht, special_code=$special_code, fk_unit=$fk_unit, pu_ht_devise=$pu_ht_devise", LOG_DEBUG);
4577
4578 if ($this->status == self::STATUS_DRAFT) {
4579 if (!$this->is_last_in_cycle() && empty($this->error)) {
4580 if (!$this->checkProgressLine($rowid, $situation_percent)) {
4581 if (!$this->error) {
4582 $this->error = $langs->trans('invoiceLineProgressError');
4583 }
4584 return -3;
4585 }
4586 }
4587
4588 if ($date_start && $date_end && $date_start > $date_end) {
4589 $langs->load("errors");
4590 $this->error = $langs->trans('ErrorStartDateGreaterEnd');
4591 return -1;
4592 }
4593
4594 $this->db->begin();
4595
4596 // Clean parameters
4597 if (empty($qty)) {
4598 $qty = 0;
4599 }
4600 if (empty($fk_parent_line) || $fk_parent_line < 0) {
4601 $fk_parent_line = 0;
4602 }
4603 if (empty($special_code) || $special_code == 3) {
4604 $special_code = 0;
4605 }
4606 if (!isset($situation_percent) || $situation_percent > 100 || (string) $situation_percent == '' || $situation_percent == null) {
4607 // INVOICE_USE_SITUATION = 2 - If there is no progress on a line, percent must not be 100% (No cumulative)
4608 if ($this->type == Facture::TYPE_SITUATION && getDolGlobalInt('INVOICE_USE_SITUATION') == 2 && (int) $situation_percent < 100) {
4609 $situation_percent = 0;
4610 } else {
4611 $situation_percent = 100;
4612 }
4613 }
4614 if (empty($ref_ext)) {
4615 $ref_ext = '';
4616 }
4617
4618 $remise_percent = (float) price2num($remise_percent);
4619
4620 $qty = (float) price2num($qty);
4621 $pu = (float) price2num($pu);
4622 $pu_ht_devise = (float) price2num($pu_ht_devise);
4623 $pa_ht = price2num($pa_ht); // do not convert to float here, it breaks the functioning of $pa_ht_isemptystring
4624
4625 if (strpos((string) $txtva, '*') !== false) {
4626 $info_bits |= 1;
4627 }
4628 if (!preg_match('/\‍((.*)\‍)/', (string) $txtva)) {
4629 $txtva = price2num($txtva); // $txtva can have format '5.0(XXX)' or '5'
4630 }
4631 $txlocaltax1 = (float) price2num($txlocaltax1);
4632 $txlocaltax2 = (float) price2num($txlocaltax2);
4633
4634 // Check parameters
4635 if ($type < 0) {
4636 return -1;
4637 }
4638
4639 // Calculation of the gross total (TTC) and VAT for the line from qty, pu, remise_percent and txtva
4640 // VERY IMPORTANT: It's at the time of line insertion that we must store the net, VAT, and gross amounts,
4641 // and this is done at the line level, which has its own VAT rate
4642
4643 $localtaxes_type = getLocalTaxesFromRate($txtva, 0, $this->thirdparty, $mysoc);
4644
4645 // Clean vat code
4646 $reg = array();
4647 $vat_src_code = '';
4648 if (preg_match('/\‍((.*)\‍)/', $txtva, $reg)) {
4649 $vat_src_code = $reg[1];
4650 $txtva = preg_replace('/\s*\‍(.*\‍)/', '', $txtva); // Remove code into vatrate.
4651 }
4652
4653 $tabprice = calcul_price_total($qty, $pu, $remise_percent, $txtva, $txlocaltax1, $txlocaltax2, 0, $price_base_type, $info_bits, $type, $mysoc, $localtaxes_type, $situation_percent, $this->multicurrency_tx, $pu_ht_devise);
4654
4655 $total_ht = $tabprice[0];
4656 $total_tva = $tabprice[1];
4657 $total_ttc = $tabprice[2];
4658 $total_localtax1 = $tabprice[9];
4659 $total_localtax2 = $tabprice[10];
4660 $pu_ht = $tabprice[3];
4661 $pu_tva = $tabprice[4];
4662 $pu_ttc = $tabprice[5];
4663
4664 // MultiCurrency
4665 $multicurrency_total_ht = $tabprice[16];
4666 $multicurrency_total_tva = $tabprice[17];
4667 $multicurrency_total_ttc = $tabprice[18];
4668 $pu_ht_devise = $tabprice[19];
4669
4670 // Old properties: $price, $remise (deprecated)
4671 $price = $pu;
4672 $remise = 0;
4673 if ($remise_percent > 0) {
4674 $remise = round(((float) $pu * (float) $remise_percent / 100), 2);
4675 $price = ((float) $pu - $remise);
4676 }
4677 $price = price2num($price);
4678
4679 // Fetch current line from the database and then clone the object and set it in $oldline property
4680 $line = new FactureLigne($this->db);
4681 $line->fetch($rowid);
4682 $line->fetch_optionals();
4683
4684 if (!empty($line->fk_product)) {
4685 $product = new Product($this->db);
4686 $result = $product->fetch($line->fk_product);
4687 $product_type = $product->type;
4688
4689 if (getDolGlobalString('STOCK_MUST_BE_ENOUGH_FOR_INVOICE') && $product->isStockManaged()) {
4690 // get real stock
4691 $productChildrenNb = 0;
4692 if (getDolGlobalInt('PRODUIT_SOUSPRODUITS')) {
4693 $productChildrenNb = $product->hasFatherOrChild(1);
4694 }
4695 if ($productChildrenNb > 0) {
4696 // compute real stock from each subcomponent
4697 $product_stock = null;
4698 $product->loadStockForVirtualProduct('warehouseopen', $qty);
4699 foreach ($product->stock_warehouse as $componentStockWarehouse) {
4700 if ($product_stock === null) {
4701 $product_stock = $componentStockWarehouse->real;
4702 } else {
4703 $product_stock = min($product_stock, $componentStockWarehouse->real);
4704 }
4705 }
4706 if ($product_stock === null) {
4707 $product_stock = 0;
4708 }
4709 } else {
4710 $product_stock = $product->stock_reel;
4711 }
4712
4713 if ($product_stock < $qty) {
4714 $langs->load("errors");
4715 $this->error = $langs->trans('ErrorStockIsNotEnoughToAddProductOnInvoice', (string) $product->ref);
4716 $this->db->rollback();
4717 return -3;
4718 }
4719 }
4720 }
4721
4722 $staticline = clone $line;
4723
4724 $line->oldline = $staticline;
4725 $this->line = $line;
4726 $this->line->context = $this->context;
4727 $this->line->rang = $rang;
4728
4729 // Reorder if fk_parent_line change
4730 if (!empty($fk_parent_line) && !empty($staticline->fk_parent_line) && $fk_parent_line != $staticline->fk_parent_line) {
4731 $rangmax = $this->line_max($fk_parent_line);
4732 $this->line->rang = $rangmax + 1;
4733 }
4734 $apply_abs_price_on_credit_note = false;
4735 if ($this->type == self::TYPE_CREDIT_NOTE && !(getDolGlobalInt('FACTURE_ENABLE_NEGATIVE_LINES') && getDolGlobalInt('INVOICE_KEEP_DISCOUNT_LINES_AS_IN_ORIGIN'))) {
4736 $apply_abs_price_on_credit_note = true;
4737 }
4738
4739
4740 if (getDolGlobalString('PRODUCT_USE_CUSTOMER_PACKAGING')) {
4741 if ($qty < $this->line->packaging) {
4742 $qty = $this->line->packaging;
4743 setEventMessage($langs->trans('QtyRecalculatedWithPackaging'), 'warnings');
4744 } else {
4745 if (!empty($this->line->packaging)
4746 && is_numeric($this->line->packaging)
4747 && (float) $this->line->packaging > 0
4748 && (float) price2num(fmod((float) $qty, (float) $this->line->packaging), 'MS')) {
4749 $coeff = intval($qty / $this->line->packaging) + 1;
4750 $qty = $this->line->packaging * $coeff;
4751 setEventMessage($langs->trans('QtyRecalculatedWithPackaging'), 'warnings');
4752 }
4753 }
4754 }
4755
4756 $this->line->id = $rowid;
4757 $this->line->rowid = $rowid;
4758 $this->line->label = $label;
4759 $this->line->desc = $desc;
4760 $this->line->ref_ext = $ref_ext;
4761 $this->line->qty = ($this->type == self::TYPE_CREDIT_NOTE ? abs((float) $qty) : $qty); // For credit note, quantity is always positive and unit price negative
4762
4763 $this->line->vat_src_code = $vat_src_code;
4764 $this->line->tva_tx = $txtva;
4765 $this->line->localtax1_tx = $txlocaltax1;
4766 $this->line->localtax2_tx = $txlocaltax2;
4767 $this->line->localtax1_type = empty($localtaxes_type[0]) ? 0 : $localtaxes_type[0];
4768 $this->line->localtax2_type = empty($localtaxes_type[2]) ? 0 : $localtaxes_type[2];
4769
4770 $this->line->remise_percent = $remise_percent;
4771 $this->line->subprice = ($apply_abs_price_on_credit_note ? -abs((float) $pu_ht) : (float) $pu_ht); // For credit note, unit price always negative, always positive otherwise
4772 $this->line->date_start = $date_start;
4773 $this->line->date_end = $date_end;
4774 $this->line->total_ht = (($apply_abs_price_on_credit_note || $qty < 0) ? -abs((float) $total_ht) : (float) $total_ht); // For credit note and if qty is negative, total is negative
4775 $this->line->total_tva = (($apply_abs_price_on_credit_note || $qty < 0) ? -abs((float) $total_tva) : (float) $total_tva);
4776 $this->line->total_localtax1 = (float) $total_localtax1;
4777 $this->line->total_localtax2 = (float) $total_localtax2;
4778 $this->line->total_ttc = (($apply_abs_price_on_credit_note || $qty < 0) ? -abs((float) $total_ttc) : (float) $total_ttc);
4779 $this->line->info_bits = $info_bits;
4780 $this->line->special_code = $special_code;
4781 $this->line->product_type = $type;
4782 $this->line->fk_parent_line = $fk_parent_line;
4783 $this->line->skip_update_total = $skip_update_total;
4784 $this->line->situation_percent = $situation_percent;
4785 $this->line->fk_unit = $fk_unit;
4786
4787 $this->line->fk_fournprice = $fk_fournprice;
4788 $this->line->pa_ht = $pa_ht;
4789
4790 // Multicurrency
4791 $this->line->multicurrency_subprice = ($apply_abs_price_on_credit_note ? -abs((float) $pu_ht_devise) : (float) $pu_ht_devise); // For credit note, unit price always negative, always positive otherwise
4792 $this->line->multicurrency_total_ht = (($apply_abs_price_on_credit_note || $qty < 0) ? -abs((float) $multicurrency_total_ht) : (float) $multicurrency_total_ht); // For credit note and if qty is negative, total is negative
4793 $this->line->multicurrency_total_tva = (($apply_abs_price_on_credit_note || $qty < 0) ? -abs((float) $multicurrency_total_tva) : (float) $multicurrency_total_tva);
4794 $this->line->multicurrency_total_ttc = (($apply_abs_price_on_credit_note || $qty < 0) ? -abs((float) $multicurrency_total_ttc) : (float) $multicurrency_total_ttc);
4795
4796 if (is_array($array_options) && count($array_options) > 0) {
4797 // We replace values in this->line->array_options only for entries defined into $array_options
4798 foreach ($array_options as $key => $value) {
4799 $this->line->array_options[$key] = $array_options[$key];
4800 }
4801 }
4802
4803 $result = $this->line->update($user, $notrigger);
4804 if ($result > 0) {
4805 // Reorder if child line
4806 if (!empty($fk_parent_line)) {
4807 $this->line_order(true, 'DESC');
4808 }
4809
4810 // Update denormalized information at the invoice level
4811 $this->update_price(1, 'auto');
4812 $this->db->commit();
4813 return $result;
4814 } else {
4815 $this->error = $this->line->error;
4816 $this->db->rollback();
4817 return -1;
4818 }
4819 } else {
4820 $this->error = "Invoice statut makes operation forbidden";
4821 return -2;
4822 }
4823 }
4824
4832 public function checkProgressLine($idline, $situation_percent)
4833 {
4834 $sql = 'SELECT fd.situation_percent FROM '.MAIN_DB_PREFIX.'facturedet fd
4835 INNER JOIN '.MAIN_DB_PREFIX.'facture f ON (fd.fk_facture = f.rowid)
4836 WHERE fd.fk_prev_id = '.((int) $idline).' AND f.fk_statut <> 0';
4837
4838 $result = $this->db->query($sql);
4839 if (!$result) {
4840 $this->error = $this->db->error();
4841 return false;
4842 }
4843
4844 $obj = $this->db->fetch_object($result);
4845
4846 if ($obj === null) {
4847 return true;
4848 } else {
4849 return ($situation_percent < $obj->situation_percent);
4850 }
4851 }
4852
4853 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
4862 public function update_percent($line, $percent, $update_price = true)
4863 {
4864 // phpcs:enable
4865 global $mysoc, $user;
4866
4867 // Progress should never be changed for discount lines
4868 if (($line->info_bits & 2) == 2) {
4869 return;
4870 }
4871
4872 include_once DOL_DOCUMENT_ROOT.'/core/lib/price.lib.php';
4873
4874 // Cap percentages to 100
4875 if ($percent > 100) {
4876 $percent = 100;
4877 }
4878 if (getDolGlobalInt('INVOICE_USE_SITUATION') == 2) {
4879 $previous_progress = $line->getAllPrevProgress($line->fk_facture);
4880 $current_progress = $percent - $previous_progress;
4881 $line->situation_percent = $current_progress;
4882 $tabprice = calcul_price_total($line->qty, $line->subprice, $line->remise_percent, $line->tva_tx, $line->localtax1_tx, $line->localtax2_tx, 0, 'HT', 0, $line->product_type, $mysoc, array(), $current_progress);
4883 } else {
4884 $line->situation_percent = $percent;
4885 $tabprice = calcul_price_total($line->qty, $line->subprice, $line->remise_percent, $line->tva_tx, $line->localtax1_tx, $line->localtax2_tx, 0, 'HT', 0, $line->product_type, $mysoc, array(), $percent);
4886 }
4887 $line->total_ht = (float) $tabprice[0];
4888 $line->total_tva = (float) $tabprice[1];
4889 $line->total_ttc = (float) $tabprice[2];
4890 $line->total_localtax1 = (float) $tabprice[9];
4891 $line->total_localtax2 = (float) $tabprice[10];
4892 $line->multicurrency_total_ht = (float) $tabprice[16];
4893 $line->multicurrency_total_tva = (float) $tabprice[17];
4894 $line->multicurrency_total_ttc = (float) $tabprice[18];
4895 $line->update($user);
4896
4897 // sometimes it is better to not update price for each line, ie when updating situation on all lines
4898 if ($update_price) {
4899 $this->update_price(1);
4900 }
4901 }
4902
4910 public function deleteLine($rowid, $id = 0)
4911 {
4912 global $user;
4913
4914 dol_syslog(get_class($this)."::deleteline rowid=".((int) $rowid), LOG_DEBUG);
4915
4916 if ($this->status != self::STATUS_DRAFT) {
4917 $this->error = 'ErrorDeleteLineNotAllowedByObjectStatus';
4918 return -1;
4919 }
4920
4921 $line = new FactureLigne($this->db);
4922
4923 $line->context = $this->context;
4924
4925 // Load line
4926 $result = $line->fetch($rowid);
4927 if (!($result > 0)) {
4928 dol_print_error($this->db, $line->error, $line->errors);
4929 return -1;
4930 }
4931
4932 if ($id > 0 && $line->fk_facture != $id) {
4933 $this->error = 'ErrorLineIDDoesNotMatchWithObjectID';
4934 return -1;
4935 }
4936
4937 $this->db->begin();
4938
4939 // Memorize previous line for triggers
4940 $staticline = clone $line;
4941 $line->oldline = $staticline;
4942
4943 if ($line->delete($user) > 0) {
4944 $result = $this->update_price(1);
4945
4946 if ($result > 0) {
4947 $this->db->commit();
4948 return 1;
4949 } else {
4950 $this->db->rollback();
4951 $this->error = $this->db->lasterror();
4952 return -1;
4953 }
4954 } else {
4955 $this->db->rollback();
4956 $this->error = $line->error;
4957 return -1;
4958 }
4959 }
4960
4961 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
4972 public function set_remise($user, $remise, $notrigger = 0)
4973 {
4974 // phpcs:enable
4975 dol_syslog(get_class($this)."::set_remise is deprecated, use setDiscount instead", LOG_NOTICE);
4976 // @phan-suppress-next-line PhanDeprecatedFunction
4977 return $this->setDiscount($user, $remise, $notrigger);
4978 }
4979
4988 public function setDiscount($user, $remise, $notrigger = 0)
4989 {
4990 // Clean parameters
4991 if (empty($remise)) {
4992 $remise = 0;
4993 }
4994
4995 if ($user->hasRight('facture', 'creer')) {
4996 $remise = (float) price2num($remise, 2);
4997
4998 $error = 0;
4999
5000 $this->db->begin();
5001
5002 $sql = "UPDATE ".MAIN_DB_PREFIX."facture";
5003 $sql .= " SET remise_percent = ".((float) $remise);
5004 $sql .= " WHERE rowid = ".((int) $this->id);
5005 $sql .= " AND fk_statut = ".((int) self::STATUS_DRAFT);
5006
5007 dol_syslog(__METHOD__, LOG_DEBUG);
5008 $resql = $this->db->query($sql);
5009 if (!$resql) {
5010 $this->errors[] = $this->db->error();
5011 $error++;
5012 }
5013
5014 if (!$notrigger && empty($error)) {
5015 // Call trigger
5016 $result = $this->call_trigger('BILL_MODIFY', $user);
5017 if ($result < 0) {
5018 $error++;
5019 }
5020 // End call triggers
5021 }
5022
5023 if (!$error) {
5024 $this->remise_percent = $remise;
5025 $this->update_price(1);
5026
5027 $this->db->commit();
5028 return 1;
5029 } else {
5030 foreach ($this->errors as $errmsg) {
5031 dol_syslog(__METHOD__.' Error: '.$errmsg, LOG_ERR);
5032 $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
5033 }
5034 $this->db->rollback();
5035 return -1 * $error;
5036 }
5037 }
5038
5039 return 0;
5040 }
5041
5042
5053 public function setCategories($categories)
5054 {
5055 require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
5056 return parent::setCategoriesCommon($categories, Categorie::TYPE_INVOICE);
5057 }
5058
5067 public function getNextNumRef($soc, $mode = 'next')
5068 {
5069 global $conf, $langs;
5070
5071 if ($this->module_source == 'takepos') {
5072 $langs->load('cashdesk');
5073
5074 $moduleName = 'takepos';
5075 $moduleSourceName = 'Takepos';
5076 $addonConstName = 'TAKEPOS_REF_ADDON';
5077
5078 // Clean parameters (if not defined or using deprecated value)
5079 if (!getDolGlobalString('TAKEPOS_REF_ADDON')) {
5080 $conf->global->TAKEPOS_REF_ADDON = 'mod_takepos_ref_simple';
5081 }
5082
5083 $addon = getDolGlobalString('TAKEPOS_REF_ADDON');
5084 } else {
5085 $langs->load('bills');
5086
5087 $moduleName = 'facture';
5088 $moduleSourceName = 'Invoice';
5089 $addonConstName = 'FACTURE_ADDON';
5090
5091 // Clean parameters (if not defined or using deprecated value)
5092 if (!getDolGlobalString('FACTURE_ADDON')) {
5093 $conf->global->FACTURE_ADDON = 'mod_facture_mars';
5094 } elseif (getDolGlobalString('FACTURE_ADDON') == 'terre') { // terre is deprecated
5095 $conf->global->FACTURE_ADDON = 'mod_facture_mars';
5096 } elseif (getDolGlobalString('FACTURE_ADDON') == 'mercure') {
5097 $conf->global->FACTURE_ADDON = 'mod_facture_mercure';
5098 }
5099
5100 $addon = getDolGlobalString('FACTURE_ADDON');
5101 }
5102
5103 if (!empty($addon)) {
5104 dol_syslog("Call getNextNumRef with ".$addonConstName." = " . getDolGlobalString('FACTURE_ADDON').", thirdparty=".$soc->name.", type=".$soc->typent_code.", mode=".$mode, LOG_DEBUG);
5105
5106 $mybool = false;
5107
5108 $file = $addon.'.php';
5109 $classname = $addon;
5110
5111
5112 // Include file with class
5113 $dirmodels = array_merge(array('/'), (array) $conf->modules_parts['models']);
5114 foreach ($dirmodels as $reldir) {
5115 $dir = dol_buildpath($reldir.'core/modules/'.$moduleName.'/');
5116
5117 // Load file with numbering class (if found)
5118 if (is_file($dir.$file) && is_readable($dir.$file)) {
5119 $mybool = ((bool) include_once $dir.$file) || $mybool;
5120 }
5121 }
5122
5123 // For compatibility
5124 if (!$mybool) {
5125 $file = $addon.'/'.$addon.'.modules.php';
5126 $classname = 'mod_'.$moduleName.'_'.$addon;
5127 $classname = preg_replace('/\-.*$/', '', $classname);
5128 // Include file with class
5129 foreach ($conf->file->dol_document_root as $dirroot) {
5130 $dir = $dirroot.'/core/modules/'.$moduleName.'/';
5131
5132 // Load file with numbering class (if found)
5133 if (is_file($dir.$file) && is_readable($dir.$file)) {
5134 $mybool = (include_once $dir.$file) || $mybool;
5135 }
5136 }
5137 }
5138
5139 if (!$mybool) {
5140 dol_print_error(null, 'Failed to include file '.$file);
5141 return '';
5142 }
5143
5144 $obj = new $classname();
5145 '@phan-var-force ModeleNumRefFactures $obj';
5146
5147 $numref = $obj->getNextValue($soc, $this, $mode);
5148
5149
5154 if ($mode != 'last' && !$numref) {
5155 $this->error = $obj->error;
5156 return '';
5157 }
5158
5159 return $numref;
5160 } else {
5161 $langs->load('errors');
5162 print $langs->trans('Error').' '.$langs->trans('ErrorModuleSetupNotComplete', $langs->transnoentitiesnoconv($moduleSourceName));
5163 return '';
5164 }
5165 }
5166
5173 public function info($id)
5174 {
5175 $sql = 'SELECT c.rowid, datec, date_valid as datev, tms as datem,';
5176 $sql .= ' date_closing as dateclosing,';
5177 $sql .= ' fk_user_author, fk_user_modif, fk_user_valid, fk_user_closing';
5178 $sql .= ' FROM '.MAIN_DB_PREFIX.'facture as c';
5179 $sql .= ' WHERE c.rowid = '.((int) $id);
5180
5181 $result = $this->db->query($sql);
5182 if ($result) {
5183 if ($this->db->num_rows($result)) {
5184 $obj = $this->db->fetch_object($result);
5185
5186 $this->id = $obj->rowid;
5187 $this->user_creation_id = $obj->fk_user_author;
5188 $this->user_modification_id = $obj->fk_user_modif;
5189 $this->user_validation_id = $obj->fk_user_valid;
5190 $this->user_closing_id = $obj->fk_user_closing;
5191
5192 $this->date_creation = $this->db->jdate($obj->datec);
5193 $this->date_modification = $this->db->jdate($obj->datem);
5194 $this->date_validation = $this->db->jdate($obj->datev);
5195 $this->date_closing = $this->db->jdate($obj->dateclosing);
5196 }
5197 $this->db->free($result);
5198 } else {
5199 dol_print_error($this->db);
5200 }
5201 }
5202
5203
5204 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
5218 public function liste_array($shortlist = 0, $draft = 0, $excluser = null, $socid = 0, $limit = 0, $offset = 0, $sortfield = 'f.datef,f.rowid', $sortorder = 'DESC')
5219 {
5220 // phpcs:enable
5221 global $user;
5222
5223 $ga = array();
5224
5225 $sql = "SELECT s.rowid, s.nom as name, s.client,";
5226 $sql .= " f.rowid as fid, f.ref as ref, f.datef as df";
5227 $sql .= " FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."facture as f";
5228 $sql .= " WHERE f.entity IN (".getEntity('invoice').")";
5229 $sql .= " AND f.fk_soc = s.rowid";
5230 if ($draft) {
5231 $sql .= " AND f.fk_statut = ".self::STATUS_DRAFT;
5232 }
5233 if (is_object($excluser)) {
5234 $sql .= " AND f.fk_user_author <> ".((int) $excluser->id);
5235 }
5236 // If the internal user must only see his customers, force searching by him
5237 $search_sale = 0;
5238 if (empty($user->socid) && !$user->hasRight('societe', 'client', 'voir')) {
5239 $search_sale = $user->id;
5240 }
5241 // Search on sale representative
5242 if ($search_sale && $search_sale != '-1') {
5243 if ($search_sale == -2) {
5244 $sql .= " AND NOT EXISTS (SELECT sc.fk_soc FROM ".MAIN_DB_PREFIX."societe_commerciaux as sc WHERE sc.fk_soc = f.fk_soc)";
5245 } elseif ($search_sale > 0) {
5246 $sql .= " AND EXISTS (SELECT sc.fk_soc FROM ".MAIN_DB_PREFIX."societe_commerciaux as sc WHERE sc.fk_soc = f.fk_soc AND sc.fk_user = ".((int) $search_sale).")";
5247 }
5248 }
5249 // Search on socid
5250 if ($socid) {
5251 $sql .= " AND f.fk_soc = ".((int) $socid);
5252 }
5253 $sql .= $this->db->order($sortfield, $sortorder);
5254 $sql .= $this->db->plimit($limit, $offset);
5255
5256 $result = $this->db->query($sql);
5257 if ($result) {
5258 $numc = $this->db->num_rows($result);
5259 if ($numc) {
5260 $i = 0;
5261 while ($i < $numc) {
5262 $obj = $this->db->fetch_object($result);
5263
5264 if ($shortlist == 1) {
5265 $ga[$obj->fid] = $obj->ref;
5266 } elseif ($shortlist == 2) {
5267 $ga[$obj->fid] = $obj->ref.' ('.$obj->name.')';
5268 } else {
5269 $ga[$i]['id'] = $obj->fid;
5270 $ga[$i]['ref'] = $obj->ref;
5271 $ga[$i]['name'] = $obj->name;
5272 }
5273 $i++;
5274 }
5275 }
5276 return $ga;
5277 } else {
5278 dol_print_error($this->db);
5279 return -1;
5280 }
5281 }
5282
5283
5284 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
5293 public function list_replacable_invoices($socid = 0)
5294 {
5295 // phpcs:enable
5296 global $conf;
5297
5298 $return = array();
5299
5300 $sql = "SELECT f.rowid as rowid, f.ref, f.fk_statut as status, f.paye as paid,";
5301 $sql .= " ff.rowid as rowidnext";
5302 //$sql .= ", SUM(pf.amount) as alreadypaid";
5303 $sql .= " FROM ".MAIN_DB_PREFIX."facture as f";
5304 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."paiement_facture as pf ON f.rowid = pf.fk_facture";
5305 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."facture as ff ON f.rowid = ff.fk_facture_source";
5306 $sql .= " WHERE (f.fk_statut = ".self::STATUS_VALIDATED." OR (f.fk_statut = ".self::STATUS_ABANDONED." AND f.close_code = '".self::CLOSECODE_ABANDONED."'))";
5307 $sql .= " AND f.entity IN (".getEntity('invoice').")";
5308 $sql .= " AND f.paye = 0"; // Not paid completely
5309 $sql .= " AND pf.fk_paiement IS NULL"; // No payment already done
5310 $sql .= " AND ff.fk_statut IS NULL"; // Return true if it is not a replacement invoice
5311 if ($socid > 0) {
5312 $sql .= " AND f.fk_soc = ".((int) $socid);
5313 }
5314 //$sql .= " GROUP BY f.rowid, f.ref, f.fk_statut, f.paye, ff.rowid";
5315 $sql .= " ORDER BY f.ref";
5316
5317 dol_syslog(get_class($this)."::list_replacable_invoices", LOG_DEBUG);
5318 $resql = $this->db->query($sql);
5319 if ($resql) {
5320 while ($obj = $this->db->fetch_object($resql)) {
5321 $return[$obj->rowid] = array(
5322 'id' => $obj->rowid,
5323 'ref' => $obj->ref,
5324 'status' => $obj->status,
5325 'paid' => $obj->paid,
5326 'alreadypaid' => 0
5327 );
5328 }
5329 //print_r($return);
5330 return $return;
5331 } else {
5332 $this->error = $this->db->error();
5333 return -1;
5334 }
5335 }
5336
5337
5338 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
5348 public function list_qualified_avoir_invoices($socid = 0)
5349 {
5350 // phpcs:enable
5351 global $conf;
5352
5353 $return = array();
5354
5355
5356 $sql = "SELECT f.rowid as rowid, f.ref, f.fk_statut, f.type, f.subtype, f.paye, pf.fk_paiement";
5357 $sql .= " FROM ".MAIN_DB_PREFIX."facture as f";
5358 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."paiement_facture as pf ON f.rowid = pf.fk_facture";
5359 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."facture as ff ON (f.rowid = ff.fk_facture_source AND ff.type=".self::TYPE_REPLACEMENT.")";
5360 $sql .= " WHERE f.entity IN (".getEntity('invoice').")";
5361 $sql .= " AND f.fk_statut in (".self::STATUS_VALIDATED.",".self::STATUS_CLOSED.")";
5362 // $sql.= " WHERE f.fk_statut >= 1";
5363 // $sql.= " AND (f.paye = 1"; // Classee payee completement
5364 // $sql.= " OR f.close_code IS NOT NULL)"; // Classee payee partiellement
5365 $sql .= " AND ff.type IS NULL"; // Return true if there isn't any replacement invoice
5366 $sql .= " AND f.type <> ".self::TYPE_CREDIT_NOTE; // Exclude credit note invoices from selection
5367
5368 if (getDolGlobalString('INVOICE_USE_SITUATION_CREDIT_NOTE')) {
5369 // Keep invoices that are not situation invoices or that are the last in series if it is a situation invoice
5370 $sql .= " AND (f.type <> ".self::TYPE_SITUATION." OR f.rowid IN ";
5371 $sql .= '(SELECT MAX(fs.rowid)'; // This select returns several ID because of the group by later
5372 $sql .= " FROM ".MAIN_DB_PREFIX."facture as fs";
5373 $sql .= " WHERE fs.entity IN (".getEntity('invoice').")";
5374 $sql .= " AND fs.type = ".self::TYPE_SITUATION;
5375 $sql .= " AND fs.fk_statut IN (".self::STATUS_VALIDATED.",".self::STATUS_CLOSED.")";
5376 if ($socid > 0) {
5377 $sql .= " AND fs.fk_soc = ".((int) $socid);
5378 }
5379 $sql .= " GROUP BY fs.situation_cycle_ref)"; // For each situation_cycle_ref, we take the higher rowid
5380 $sql .= ")";
5381 } else {
5382 $sql .= " AND f.type <> ".self::TYPE_SITUATION; // Keep invoices that are not situation invoices
5383 }
5384
5385 if ($socid > 0) {
5386 $sql .= " AND f.fk_soc = ".((int) $socid);
5387 }
5388
5389 if (getDolGlobalInt('LIST_OF_QUALIFIED_INVOICES_LIMIT_DEFINED') > 0) {
5390 $sql .= " ORDER BY CASE WHEN f.rowid = ".((int) GETPOST('fac_avoir'))." THEN 0 ELSE 1 END, f.ref";
5391 $sql .= " DESC";
5392 $sql .= $this->db->plimit(getDolGlobalInt('LIST_OF_QUALIFIED_INVOICES_LIMIT_DEFINED'));
5393 } else {
5394 $sql .= " ORDER BY f.ref";
5395 }
5396
5397 dol_syslog(get_class($this)."::list_qualified_avoir_invoices", LOG_DEBUG);
5398 $resql = $this->db->query($sql);
5399 if ($resql) {
5400 while ($obj = $this->db->fetch_object($resql)) {
5401 $qualified = 0;
5402 if ($obj->fk_statut == self::STATUS_VALIDATED) {
5403 $qualified = 1;
5404 }
5405 if ($obj->fk_statut == self::STATUS_CLOSED) {
5406 $qualified = 1;
5407 }
5408 if ($qualified) {
5409 //$ref=$obj->ref;
5410 $paymentornot = ($obj->fk_paiement ? 1 : 0);
5411 $return[$obj->rowid] = array('ref' => $obj->ref, 'status' => $obj->fk_statut, 'type' => $obj->type, 'paye' => $obj->paye, 'paymentornot' => $paymentornot);
5412 }
5413 }
5414
5415 return $return;
5416 } else {
5417 $this->error = $this->db->error();
5418 return -1;
5419 }
5420 }
5421
5422
5423 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
5430 public function load_board($user)
5431 {
5432 // phpcs:enable
5433 global $conf, $langs;
5434
5435 $sanitizedclause = " WHERE";
5436
5437 $sql = "SELECT f.rowid, f.date_lim_reglement as datefin, f.fk_statut as status, f.total_ht";
5438 $sql .= " FROM ".MAIN_DB_PREFIX."facture as f";
5439 if (empty($user->socid) && !$user->hasRight('societe', 'client', 'voir')) {
5440 $sql .= " JOIN ".MAIN_DB_PREFIX."societe_commerciaux as sc ON f.fk_soc = sc.fk_soc";
5441 $sql .= " WHERE sc.fk_user = ".((int) $user->id);
5442 $sanitizedclause = " AND";
5443 }
5444 $sql .= $sanitizedclause." f.paye=0";
5445 $sql .= " AND f.entity IN (".getEntity('invoice').")";
5446 $sql .= " AND f.fk_statut = ".self::STATUS_VALIDATED;
5447 if ($user->socid) {
5448 $sql .= " AND f.fk_soc = ".((int) $user->socid);
5449 }
5450
5451 $resql = $this->db->query($sql);
5452 if ($resql) {
5453 $langs->load("bills");
5454 $now = dol_now();
5455 $response = new WorkboardResponse();
5456 $response->warning_delay = getWarningDelay('invoice', 'client') / 60 / 60 / 24;
5457 $response->label = $langs->trans("CustomerBillsUnpaid");
5458 $response->labelShort = $langs->trans("Unpaid");
5459 $response->url = DOL_URL_ROOT.'/compta/facture/list.php?search_status=1&mainmenu=billing&leftmenu=customers_bills';
5460 $response->img = img_object('', "bill");
5461
5462 $generic_facture = new Facture($this->db);
5463
5464 while ($obj = $this->db->fetch_object($resql)) {
5465 $generic_facture->date_lim_reglement = $this->db->jdate($obj->datefin);
5466 $generic_facture->statut = $obj->status;
5467 $generic_facture->status = $obj->status;
5468
5469 $response->nbtodo++;
5470 $response->total += $obj->total_ht;
5471
5472 if ($generic_facture->hasDelay()) {
5473 $response->nbtodolate++;
5474 $response->url_late = DOL_URL_ROOT.'/compta/facture/list.php?search_option=late&mainmenu=billing&leftmenu=customers_bills';
5475 }
5476 }
5477
5478 $this->db->free($resql);
5479 return $response;
5480 } else {
5481 dol_print_error($this->db);
5482 $this->error = $this->db->error();
5483 return -1;
5484 }
5485 }
5486
5487
5488 /* Management of a bill's contacts */
5489
5495 public function getIdBillingContact()
5496 {
5497 return $this->getIdContact('external', 'BILLING');
5498 }
5499
5505 public function getIdShippingContact()
5506 {
5507 return $this->getIdContact('external', 'SHIPPING');
5508 }
5509
5510
5519 public function initAsSpecimen($option = '')
5520 {
5521 global $conf, $langs, $user;
5522
5523 $now = dol_now();
5524 $arraynow = dol_getdate($now);
5525 $nownotime = dol_mktime(0, 0, 0, $arraynow['mon'], $arraynow['mday'], $arraynow['year']);
5526
5527 // Load array of products prodids
5528 $num_prods = 0;
5529 $prodids = array();
5530 $sql = "SELECT rowid";
5531 $sql .= " FROM ".MAIN_DB_PREFIX."product";
5532 $sql .= " WHERE entity IN (".getEntity('product').")";
5533 $sql .= $this->db->plimit(100);
5534
5535 $resql = $this->db->query($sql);
5536 if ($resql) {
5537 $num_prods = $this->db->num_rows($resql);
5538 $i = 0;
5539 while ($i < $num_prods) {
5540 $i++;
5541 $row = $this->db->fetch_row($resql);
5542 $prodids[$i] = $row[0];
5543 }
5544 }
5545 //Avoid php warning Warning: mt_rand(): max(0) is smaller than min(1) when no product exists
5546 if (empty($num_prods)) {
5547 $num_prods = 1;
5548 $prodids[$num_prods] = 1;
5549 }
5550
5551 // Initialize parameters
5552 $this->id = 0;
5553 $this->entity = $conf->entity;
5554 $this->ref = 'SPECIMEN';
5555 $this->specimen = 1;
5556 $this->socid = 1;
5557 $this->date = $nownotime;
5558 $this->date_lim_reglement = $nownotime + 3600 * 24 * 30;
5559 $this->cond_reglement_id = 1;
5560 $this->cond_reglement_code = 'RECEP';
5561 $this->date_lim_reglement = $this->calculate_date_lim_reglement();
5562 $this->mode_reglement_id = 0; // Not forced to show payment mode CHQ + VIR
5563 $this->mode_reglement_code = ''; // Not forced to show payment mode CHQ + VIR
5564
5565 $this->note_public = 'This is a comment (public)';
5566 $this->note_private = 'This is a comment (private)';
5567
5568 $this->user_creation_id = $user->id;
5569
5570 $this->multicurrency_tx = 1;
5571 $this->multicurrency_code = $conf->currency;
5572
5573 $this->fk_incoterms = 0;
5574 $this->location_incoterms = '';
5575
5576 $this->pos_print_counter = 0; // Already printed 0 times
5577 $this->email_sent_counter = 0; // Already sent by email 0 times
5578
5579 $this->status = 0;
5580
5581 if (empty($option) || $option != 'nolines') {
5582 // Lines
5583 $nbp = min(1000, GETPOSTINT('nblines') ? GETPOSTINT('nblines') : 5); // We can force the nb of lines to test from command line (but not more than 1000)
5584 $xnbp = 0;
5585 while ($xnbp < $nbp) {
5586 $line = new FactureLigne($this->db);
5587 $line->desc = $langs->trans("Description")." ".$xnbp;
5588 $line->qty = 1;
5589 $line->subprice = 100;
5590 $line->tva_tx = 19.6;
5591 $line->localtax1_tx = 0;
5592 $line->localtax2_tx = 0;
5593 $line->remise_percent = 0;
5594 if ($xnbp == 1 && $option != 'takepos' && $option != 'nonegativeup') { // Qty is negative (product line)
5595 $prodid = mt_rand(1, $num_prods);
5596 if (isset($prodids[$prodid])) {
5597 $line->fk_product = $prodids[$prodid];
5598 }
5599 $line->qty = -1;
5600 $line->total_ht = -100;
5601 $line->total_ttc = -119.6;
5602 $line->total_tva = -19.6;
5603 $line->multicurrency_total_ht = -200;
5604 $line->multicurrency_total_ttc = -239.2;
5605 $line->multicurrency_total_tva = -39.2;
5606 } elseif ($xnbp == 2 && $option != 'takepos' && $option != 'nonegativeup') { // UP is negative (free line)
5607 $line->subprice = -100;
5608 $line->total_ht = -100;
5609 $line->total_ttc = -119.6;
5610 $line->total_tva = -19.6;
5611 $line->remise_percent = 0;
5612 $line->multicurrency_total_ht = -200;
5613 $line->multicurrency_total_ttc = -239.2;
5614 $line->multicurrency_total_tva = -39.2;
5615 } elseif ($xnbp == 3) { // Discount is 50% (product line)
5616 $prodid = mt_rand(1, $num_prods);
5617 if (isset($prodids[$prodid])) {
5618 $line->fk_product = $prodids[$prodid];
5619 }
5620 $line->total_ht = 50;
5621 $line->total_ttc = 59.8;
5622 $line->total_tva = 9.8;
5623 $line->multicurrency_total_ht = 100;
5624 $line->multicurrency_total_ttc = 119.6;
5625 $line->multicurrency_total_tva = 19.6;
5626 $line->remise_percent = 50;
5627 } else { // (product line)
5628 $prodid = mt_rand(1, $num_prods);
5629 if (isset($prodids[$prodid])) {
5630 $line->fk_product = $prodids[$prodid];
5631 }
5632 $line->total_ht = 100;
5633 $line->total_ttc = 119.6;
5634 $line->total_tva = 19.6;
5635 $line->multicurrency_total_ht = 200;
5636 $line->multicurrency_total_ttc = 239.2;
5637 $line->multicurrency_total_tva = 39.2;
5638 $line->remise_percent = 0;
5639 }
5640
5641 $this->lines[$xnbp] = $line;
5642
5643
5644 $this->total_ht += $line->total_ht;
5645 $this->total_tva += $line->total_tva;
5646 $this->total_ttc += $line->total_ttc;
5647
5648 $this->multicurrency_total_ht += $line->multicurrency_total_ht;
5649 $this->multicurrency_total_tva += $line->multicurrency_total_tva;
5650 $this->multicurrency_total_ttc += $line->multicurrency_total_ttc;
5651
5652 $xnbp++;
5653 }
5654 $this->revenuestamp = 0;
5655
5656 // Add a line "offered"
5657 if ($option != 'takepos') {
5658 $line = new FactureLigne($this->db);
5659 $line->desc = $langs->trans("Description")." (offered line)";
5660 $line->qty = 1;
5661 $line->subprice = 100;
5662 $line->tva_tx = 19.6;
5663 $line->localtax1_tx = 0;
5664 $line->localtax2_tx = 0;
5665 $line->remise_percent = 100;
5666 $line->total_ht = 0;
5667 $line->total_ttc = 0; // 90 * 1.196
5668 $line->total_tva = 0;
5669 $line->multicurrency_total_ht = 0;
5670 $line->multicurrency_total_ttc = 0;
5671 $line->multicurrency_total_tva = 0;
5672 $prodid = mt_rand(1, $num_prods);
5673 if (isset($prodids[$prodid])) {
5674 $line->fk_product = $prodids[$prodid];
5675 }
5676
5677 $this->lines[$xnbp] = $line;
5678 $xnbp++;
5679 }
5680 }
5681
5682 return 1;
5683 }
5684
5690 public function loadStateBoard()
5691 {
5692 global $user;
5693
5694 $this->nb = array();
5695
5696 $sanitizedclause = "WHERE";
5697
5698 $sql = "SELECT count(f.rowid) as nb";
5699 $sql .= " FROM ".MAIN_DB_PREFIX."facture as f";
5700 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s ON f.fk_soc = s.rowid";
5701 if (empty($user->socid) && !$user->hasRight('societe', 'client', 'voir')) {
5702 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe_commerciaux as sc ON s.rowid = sc.fk_soc";
5703 $sql .= " WHERE sc.fk_user = ".((int) $user->id);
5704 $sanitizedclause = "AND";
5705 }
5706 $sql .= " ".$sanitizedclause." f.entity IN (".getEntity('invoice').")";
5707
5708 $resql = $this->db->query($sql);
5709 if ($resql) {
5710 while ($obj = $this->db->fetch_object($resql)) {
5711 $this->nb["invoices"] = $obj->nb;
5712 }
5713 $this->db->free($resql);
5714 return 1;
5715 } else {
5716 dol_print_error($this->db);
5717 $this->error = $this->db->error();
5718 return -1;
5719 }
5720 }
5721
5727 public function getLinesArray()
5728 {
5729 return $this->fetch_lines();
5730 }
5731
5743 public function generateDocument($modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0, $moreparams = null)
5744 {
5745 $outputlangs->loadLangs(array("bills", "products"));
5746
5747 if (!dol_strlen($modele)) {
5748 $modele = 'sponge';
5749 $thisTypeConfName = 'FACTURE_ADDON_PDF_'.$this->type;
5750
5751 if (!empty($this->model_pdf)) {
5752 $modele = $this->model_pdf;
5753 } elseif (getDolGlobalString($thisTypeConfName)) {
5754 $modele = getDolGlobalString($thisTypeConfName);
5755 } elseif (getDolGlobalString('FACTURE_ADDON_PDF')) {
5756 $modele = getDolGlobalString('FACTURE_ADDON_PDF');
5757 }
5758 }
5759
5760 $modelpath = "core/modules/facture/doc/";
5761
5762 return $this->commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams);
5763 }
5764
5770 public function newCycle()
5771 {
5772 $sql = "SELECT max(situation_cycle_ref) as maxsituationref";
5773 $sql .= " FROM ".MAIN_DB_PREFIX."facture as f";
5774 $sql .= " WHERE f.entity IN (".getEntity('invoice', 0).")";
5775
5776 $resql = $this->db->query($sql);
5777 if ($resql) {
5778 if ($this->db->num_rows($resql) > 0) {
5779 $ref = 0;
5780 $obj = $this->db->fetch_object($resql);
5781 if ($obj) {
5782 $ref = (int) $obj->maxsituationref;
5783 }
5784 $ref++;
5785 } else {
5786 $ref = 1;
5787 }
5788 $this->db->free($resql);
5789 return $ref;
5790 } else {
5791 $this->error = $this->db->lasterror();
5792 dol_syslog("Error sql=".$sql.", error=".$this->error, LOG_ERR);
5793 return -1;
5794 }
5795 }
5796
5797 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
5803 public function is_first()
5804 {
5805 // phpcs:enable
5806 return ($this->situation_counter == 1);
5807 }
5808
5809 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
5815 public function get_prev_sits()
5816 {
5817 // phpcs:enable
5818 global $conf;
5819
5820 $sql = 'SELECT rowid FROM '.MAIN_DB_PREFIX.'facture';
5821 $sql .= ' WHERE situation_cycle_ref = '.((int) $this->situation_cycle_ref);
5822 $sql .= ' AND situation_counter < '.((int) $this->situation_counter);
5823 $sql .= ' AND entity = '.($this->entity > 0 ? ((int) $this->entity) : ((int) $conf->entity));
5824 $resql = $this->db->query($sql);
5825 $res = array();
5826 if ($resql && $this->db->num_rows($resql) > 0) {
5827 while ($row = $this->db->fetch_object($resql)) {
5828 $id = $row->rowid;
5829 $situation = new Facture($this->db);
5830 $situation->fetch($id);
5831 $res[] = $situation;
5832 }
5833 } else {
5834 $this->error = $this->db->error();
5835 dol_syslog("Error sql=".$sql.", error=".$this->error, LOG_ERR);
5836 return -1;
5837 }
5838
5839 return $res;
5840 }
5841
5849 public function setFinal(User $user, $notrigger = 0)
5850 {
5851 $error = 0;
5852
5853 $this->db->begin();
5854
5855 $sql = 'UPDATE '.MAIN_DB_PREFIX.'facture SET situation_final = '.((int) $this->situation_final).' WHERE rowid = '.((int) $this->id);
5856
5857 dol_syslog(__METHOD__, LOG_DEBUG);
5858 $resql = $this->db->query($sql);
5859 if (!$resql) {
5860 $this->errors[] = $this->db->error();
5861 $error++;
5862 }
5863
5864 if (!$notrigger && empty($error)) {
5865 // Call trigger
5866 $result = $this->call_trigger('BILL_MODIFY', $user);
5867 if ($result < 0) {
5868 $error++;
5869 }
5870 // End call triggers
5871 }
5872
5873 if (!$error) {
5874 $this->db->commit();
5875 return 1;
5876 } else {
5877 foreach ($this->errors as $errmsg) {
5878 dol_syslog(__METHOD__.' Error: '.$errmsg, LOG_ERR);
5879 $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
5880 }
5881 $this->db->rollback();
5882 return -1 * $error;
5883 }
5884 }
5885
5886 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
5892 public function is_last_in_cycle()
5893 {
5894 // phpcs:enable
5895 global $conf;
5896
5897 if (!empty($this->situation_cycle_ref)) {
5898 // No point in testing anything if we're not inside a cycle
5899 $sql = 'SELECT max(situation_counter) FROM '.MAIN_DB_PREFIX.'facture';
5900 $sql .= ' WHERE situation_cycle_ref = '.((int) $this->situation_cycle_ref);
5901 $sql .= ' AND entity = '.($this->entity > 0 ? ((int) $this->entity) : ((int) $conf->entity));
5902 $resql = $this->db->query($sql);
5903
5904 if ($resql && $this->db->num_rows($resql) > 0 && $res = $this->db->fetch_array($resql)) {
5905 $last = $res['max(situation_counter)'];
5906 return ($last == $this->situation_counter);
5907 } else {
5908 $this->error = $this->db->lasterror();
5909 dol_syslog(get_class($this)."::select Error ".$this->error, LOG_ERR);
5910 return false;
5911 }
5912 } else {
5913 return true;
5914 }
5915 }
5916
5925 public static function replaceThirdparty(DoliDB $dbs, $origin_id, $dest_id)
5926 {
5927 $tables = array(
5928 'facture'
5929 );
5930
5931 return CommonObject::commonReplaceThirdparty($dbs, $origin_id, $dest_id, $tables);
5932 }
5933
5942 public static function replaceProduct(DoliDB $db, $origin_id, $dest_id)
5943 {
5944 $tables = array(
5945 'facturedet'
5946 );
5947
5948 return CommonObject::commonReplaceProduct($db, $origin_id, $dest_id, $tables);
5949 }
5950
5956 public function hasDelay()
5957 {
5958 global $conf;
5959
5960 $now = dol_now();
5961
5962 // Paid invoices have status STATUS_CLOSED
5963 if ($this->status != Facture::STATUS_VALIDATED) {
5964 return false;
5965 }
5966
5967 $hasDelay = $this->date_lim_reglement < ($now - getWarningDelay('invoice', 'client'));
5968 if ($hasDelay && !empty($this->retained_warranty) && !empty($this->retained_warranty_date_limit)) {
5969 $totalpaid = $this->getSommePaiement(0);
5970 $totalpaid = (float) $totalpaid;
5971 $retainedWarrantyAmount = $this->getRetainedWarrantyAmount('MT');
5972 if ($totalpaid >= 0 && $retainedWarrantyAmount >= 0) {
5973 if (($totalpaid < $this->total_ttc - $retainedWarrantyAmount) && $this->date_lim_reglement < ($now - getWarningDelay('invoice', 'client'))) {
5974 $hasDelay = 1;
5975 } elseif ($totalpaid < $this->total_ttc && $this->retained_warranty_date_limit < ($now - getWarningDelay('invoice', 'client'))) {
5976 $hasDelay = 1;
5977 } else {
5978 $hasDelay = 0;
5979 }
5980 }
5981 }
5982
5983 return $hasDelay;
5984 }
5985
5991 public function isSituationInvoice()
5992 {
5993 return $this->situation_cycle_ref;
5994 }
5995
6000 public function displayRetainedWarranty()
6001 {
6002 // TODO : add a flag on invoices to store this conf : INVOICE_RETAINED_WARRANTY_LIMITED_TO_FINAL_SITUATION
6003
6004 // note : we don't need to test INVOICE_USE_RETAINED_WARRANTY because if $this->retained_warranty is not empty it's because it was set when this conf was active
6005
6006 $displayWarranty = false;
6007 if (!empty($this->retained_warranty)) {
6008 $displayWarranty = true;
6009
6010 if ($this->isSituationInvoice() && getDolGlobalString('INVOICE_RETAINED_WARRANTY_LIMITED_TO_FINAL_SITUATION')) {
6011 // Check if this situation invoice is 100% for real
6012 $displayWarranty = false;
6013 if (!empty($this->situation_final)) {
6014 $displayWarranty = true;
6015 } elseif (!empty($this->lines) && $this->status == Facture::STATUS_DRAFT) {
6016 // $object->situation_final need validation to be done so this test is need for draft
6017 $displayWarranty = true;
6018
6019 foreach ($this->lines as $i => $line) {
6020 if ($line->product_type < 2 && $line->situation_percent < 100) {
6021 $displayWarranty = false;
6022 break;
6023 }
6024 }
6025 }
6026 }
6027 }
6028
6029 return $displayWarranty;
6030 }
6031
6038 public function getRetainedWarrantyAmount($rounding = 'MT')
6039 {
6040 if (empty($this->retained_warranty)) {
6041 return -1;
6042 }
6043
6044 $retainedWarrantyAmount = 0;
6045
6046 // Billed - retained warranty
6047 if ($this->isSituationInvoice() && getDolGlobalString('INVOICE_RETAINED_WARRANTY_LIMITED_TO_FINAL_SITUATION')) {
6048 $displayWarranty = true;
6049 // Check if this situation invoice is 100% for real
6050 if (!empty($this->lines)) {
6051 foreach ($this->lines as $i => $line) {
6052 if ($line->product_type < 2 && $line->situation_percent < 100) {
6053 $displayWarranty = false;
6054 break;
6055 }
6056 }
6057 }
6058
6059 if ($displayWarranty && !empty($this->situation_final)) {
6061 $TPreviousIncoice = $this->tab_previous_situation_invoice;
6062
6063 // Sum the total including tax of all previous invoices, including the current one.
6064 $total2BillWT = 0;
6065 foreach ($TPreviousIncoice as &$fac) {
6066 $total2BillWT += $fac->total_ttc;
6067 }
6068 $total2BillWT += $this->total_ttc;
6069
6070 // Take the percent
6071 $retainedWarrantyAmount = $total2BillWT * $this->retained_warranty / 100;
6072 } else {
6073 return -1;
6074 }
6075 } else {
6076 // Because one day retained warranty could be used on standard invoices
6077 $retainedWarrantyAmount = $this->total_ttc * $this->retained_warranty / 100;
6078 }
6079
6080 if (is_numeric($rounding) && $rounding < 0) {
6081 $rounding = min(getDolGlobalString('MAIN_MAX_DECIMALS_UNIT'), getDolGlobalString('MAIN_MAX_DECIMALS_TOT'));
6082 }
6083
6084 if (is_numeric($rounding) && $rounding > 0) {
6085 return round($retainedWarrantyAmount, $rounding);
6086 }
6087
6088 return (float) price2num($retainedWarrantyAmount, $rounding);
6089 }
6090
6097 public function setRetainedWarranty($value)
6098 {
6099 dol_syslog(get_class($this).'::setRetainedWarranty('.$value.')');
6100
6101 if ($this->status >= 0) {
6102 $sql = 'UPDATE '.MAIN_DB_PREFIX.$this->table_element;
6103 $sql .= " SET retained_warranty = ".((float) $value);
6104 $sql .= ' WHERE rowid='.((int) $this->id);
6105
6106 if ($this->db->query($sql)) {
6107 $this->retained_warranty = (float) $value;
6108 return 1;
6109 } else {
6110 dol_syslog(get_class($this).'::setRetainedWarranty Erreur '.$sql.' - '.$this->db->error());
6111 $this->error = $this->db->error();
6112 return -1;
6113 }
6114 } else {
6115 dol_syslog(get_class($this).'::setRetainedWarranty, status of the object is incompatible');
6116 $this->error = 'Status of the object is incompatible '.$this->status;
6117 return -2;
6118 }
6119 }
6120
6121
6129 public function setRetainedWarrantyDateLimit($timestamp, $dateYmd = '')
6130 {
6131 if (!$timestamp && $dateYmd) {
6132 $timestamp = $this->db->jdate($dateYmd);
6133 }
6134
6135
6136 dol_syslog(get_class($this).'::setRetainedWarrantyDateLimit('.$timestamp.')');
6137 if ($this->status >= 0) {
6138 $sql = 'UPDATE '.MAIN_DB_PREFIX.$this->table_element;
6139 $sql .= " SET retained_warranty_date_limit = ".(strval($timestamp) != '' ? "'".$this->db->idate($timestamp)."'" : 'null');
6140 $sql .= ' WHERE rowid = '.((int) $this->id);
6141
6142 if ($this->db->query($sql)) {
6143 $this->retained_warranty_date_limit = $timestamp;
6144 return 1;
6145 } else {
6146 dol_syslog(get_class($this).'::setRetainedWarrantyDateLimit Erreur '.$sql.' - '.$this->db->error());
6147 $this->error = $this->db->error();
6148 return -1;
6149 }
6150 } else {
6151 dol_syslog(get_class($this).'::setRetainedWarrantyDateLimit, status of the object is incompatible');
6152 $this->error = 'Status of the object is incompatible '.$this->status;
6153 return -2;
6154 }
6155 }
6156
6157
6169 public function sendEmailsRemindersOnInvoiceDueDate($nbdays = 0, $paymentmode = 'all', $template = '', $datetouse = 'duedate', $forcerecipient = '')
6170 {
6171 global $conf, $langs, $user;
6172
6173 $error = 0;
6174 $this->output = '';
6175 $this->error = '';
6176 $nbMailSend = 0;
6177 $errorsMsg = array();
6178
6179 $langs->load("bills");
6180
6181 if (!isModEnabled('invoice')) { // Should not happen. If module disabled, cron job should not be visible.
6182 $this->output .= $langs->trans('ModuleNotEnabled', $langs->transnoentitiesnoconv("Invoice"));
6183 return 0;
6184 }
6185 if (!in_array($datetouse, array('duedate', 'invoicedate'))) {
6186 $this->output .= 'Bad value for parameter datetouse. Must be "duedate" or "invoicedate"';
6187 return 0;
6188 }
6189 /*if (empty($conf->global->FACTURE_REMINDER_EMAIL)) {
6190 $langs->load("bills");
6191 $this->output .= $langs->trans('EventRemindersByEmailNotEnabled', $langs->transnoentitiesnoconv("Invoice"));
6192 return 0;
6193 }
6194 */
6195
6196 require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
6197 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formmail.class.php';
6198 require_once DOL_DOCUMENT_ROOT.'/core/class/CMailFile.class.php';
6199 $formmail = new FormMail($this->db);
6200
6201 $now = dol_now();
6202 $tmpidate = dol_get_first_hour(dol_time_plus_duree($now, $nbdays, 'd'), 'gmt');
6203
6204 $tmpinvoice = new Facture($this->db);
6205
6206 dol_syslog(__METHOD__." start", LOG_INFO);
6207
6208 // Select all action comm reminder
6209 $sql = "SELECT rowid as id FROM ".MAIN_DB_PREFIX."facture as f";
6210 if (!empty($paymentmode) && $paymentmode != 'all') {
6211 $sql .= ", ".MAIN_DB_PREFIX."c_paiement as cp";
6212 }
6213 $sql .= " WHERE f.paye = 0"; // Only unpaid
6214 $sql .= " AND f.fk_statut = ".self::STATUS_VALIDATED; // Only validated status
6215 if ($datetouse == 'invoicedate') {
6216 $sql .= " AND f.datef = '".$this->db->idate($tmpidate, 'gmt')."'";
6217 } else {
6218 $sql .= " AND f.date_lim_reglement = '".$this->db->idate($tmpidate, 'gmt')."'";
6219 }
6220 $sql .= " AND f.entity IN (".getEntity('facture', 0).")"; // One batch processes only one company (no sharing)
6221 if (!empty($paymentmode) && $paymentmode != 'all') {
6222 $sql .= " AND f.fk_mode_reglement = cp.id AND cp.code = '".$this->db->escape($paymentmode)."'";
6223 }
6224 // TODO Add a filter to check there is no payment started yet
6225 if ($datetouse == 'invoicedate') {
6226 $sql .= $this->db->order("datef", "ASC");
6227 } else {
6228 $sql .= $this->db->order("date_lim_reglement", "ASC");
6229 }
6230 // TODO Add a date date_last_remind_email in select. We can update date after the result of sendfile() later. To avoid to send it twiceif we rerun the batch.
6231
6232 $resql = $this->db->query($sql);
6233
6234 $stmpidate = dol_print_date($tmpidate, 'day', 'gmt');
6235 if ($datetouse == 'invoicedate') {
6236 $this->output .= $langs->transnoentitiesnoconv("SearchValidatedInvoicesWithDate", $stmpidate);
6237 } else {
6238 $this->output .= $langs->transnoentitiesnoconv("SearchUnpaidInvoicesWithDueDate", $stmpidate);
6239 }
6240 if (!empty($paymentmode) && $paymentmode != 'all') {
6241 $this->output .= ' ('.$langs->transnoentitiesnoconv("PaymentMode").' '.$paymentmode.')';
6242 }
6243 $this->output .= '<br>';
6244
6245 if ($resql) {
6246 while ($obj = $this->db->fetch_object($resql)) {
6247 // Create a loopError that is reset at each loop, this counter is added to the global counter at the end of loop
6248 $loopError = 0;
6249
6250 // Load event
6251 $res = $tmpinvoice->fetch($obj->id);
6252 if ($res > 0) {
6253 $tmpinvoice->fetch_thirdparty();
6254
6255 $outputlangs = new Translate('', $conf);
6256 if ($tmpinvoice->thirdparty->default_lang) {
6257 $outputlangs->setDefaultLang($tmpinvoice->thirdparty->default_lang);
6258 $outputlangs->loadLangs(array("main", "bills"));
6259 } else {
6260 $outputlangs = $langs;
6261 }
6262
6263 // Select email template according to language of recipient
6264 $arraymessage = $formmail->getEMailTemplate($this->db, 'facture_send', $user, $outputlangs, (is_numeric($template) ? $template : 0), 1, (is_numeric($template) ? '' : $template));
6265 if (is_numeric($arraymessage) && $arraymessage <= 0) {
6266 $langs->load("errors");
6267 $this->output .= $langs->trans('ErrorFailedToFindEmailTemplate', $template);
6268 return 0;
6269 }
6270
6271 // PREPARE EMAIL
6272 $errormesg = '';
6273
6274 // Make substitution in email content
6275 $substitutionarray = getCommonSubstitutionArray($outputlangs, 0, null, $tmpinvoice);
6276
6277 complete_substitutions_array($substitutionarray, $outputlangs, $tmpinvoice);
6278
6279 // Topic
6280 $sendTopic = make_substitutions(empty($arraymessage->topic) ? $outputlangs->transnoentitiesnoconv('InformationMessage') : $arraymessage->topic, $substitutionarray, $outputlangs, 1);
6281
6282 // Content
6283 $content = $outputlangs->transnoentitiesnoconv($arraymessage->content);
6284
6285 $sendContent = make_substitutions($content, $substitutionarray, $outputlangs, 1);
6286
6287 // Recipient
6288 $to = array();
6289 if ($forcerecipient) { // If a recipient was forced
6290 $to = array($forcerecipient);
6291 } else {
6292 $res = $tmpinvoice->fetch_thirdparty();
6293 $recipient = $tmpinvoice->thirdparty;
6294 if ($res > 0) {
6295 $tmparraycontact = $tmpinvoice->liste_contact(-1, 'external', 0, 'BILLING');
6296 if (is_array($tmparraycontact) && count($tmparraycontact) > 0) {
6297 foreach ($tmparraycontact as $data_email) {
6298 if (!empty($data_email['email'])) {
6299 $to[] = $tmpinvoice->thirdparty->contact_get_property($data_email['id'], 'email');
6300 }
6301 }
6302 }
6303 if (empty($to) && !empty($recipient->email)) {
6304 $to[] = $recipient->email;
6305 }
6306 if (empty($to)) {
6307 $errormesg = "Failed to send remind to thirdparty id=".$tmpinvoice->socid.". No email defined for invoice or customer.";
6308 $loopError++;
6309 }
6310 } else {
6311 $errormesg = "Failed to load recipient with thirdparty id=".$tmpinvoice->socid;
6312 $loopError++;
6313 }
6314 }
6315
6316 // Sender
6317 $from = getDolGlobalString('MAIN_MAIL_EMAIL_FROM');
6318 if (!empty($arraymessage->email_from)) { // If a sender is defined into template, we use it in priority
6319 $from = (string) $arraymessage->email_from;
6320 }
6321 if (empty($from)) {
6322 $errormesg = "Failed to get sender into global setup MAIN_MAIL_EMAIL_FROM";
6323 $loopError++;
6324 }
6325
6326 if (!$loopError && !empty($to)) {
6327 $to = implode(',', $to);
6328 if (!empty($arraymessage->email_to)) { // If a recipient is defined into template, we add it
6329 $to = $to.','.$arraymessage->email_to;
6330 }
6331
6332 // Errors Recipient
6333 $errors_to = getDolGlobalString('MAIN_MAIL_ERRORS_TO');
6334
6335 $trackid = 'inv'.$tmpinvoice->id;
6336 $sendcontext = 'standard';
6337
6338 $email_tocc = '';
6339 if (!empty($arraymessage->email_tocc)) { // If a CC is defined into template, we use it
6340 $email_tocc = (string) $arraymessage->email_tocc;
6341 }
6342
6343 $email_tobcc = '';
6344 if (!empty($arraymessage->email_tobcc)) { // If a BCC is defined into template, we use it
6345 $email_tobcc = (string) $arraymessage->email_tobcc;
6346 }
6347
6348 //join file is asked
6349 $joinFile = [];
6350 $joinFileName = [];
6351 $joinFileMime = [];
6352 if ($arraymessage->joinfiles == 1 && !empty($tmpinvoice->last_main_doc)) {
6353 $joinFile[] = DOL_DATA_ROOT.'/'.$tmpinvoice->last_main_doc;
6354 $joinFileName[] = basename($tmpinvoice->last_main_doc);
6355 $joinFileMime[] = dol_mimetype(DOL_DATA_ROOT.'/'.$tmpinvoice->last_main_doc);
6356 }
6357
6358 // Mail Creation
6359 $cMailFile = new CMailFile($sendTopic, $to, $from, $sendContent, $joinFile, $joinFileMime, $joinFileName, $email_tocc, $email_tobcc, 0, 1, $errors_to, '', $trackid, '', $sendcontext, '');
6360
6361 $resultsendmail = $cMailFile->sendfile();
6362
6363 $this->db->begin();
6364
6365 // Sending Mail
6366 if ($resultsendmail) {
6367 $nbMailSend++;
6368
6369 // Add a line into event table
6370 require_once DOL_DOCUMENT_ROOT.'/comm/action/class/actioncomm.class.php';
6371
6372 // Insert record of emails sent
6373 $actioncomm = new ActionComm($this->db);
6374
6375 $actioncomm->type_code = 'AC_OTH_AUTO'; // Event insert into agenda automatically
6376 $actioncomm->socid = $tmpinvoice->thirdparty->id; // To link to a company
6377 $actioncomm->contact_id = 0;
6378
6379 $actioncomm->code = 'AC_EMAIL';
6380 $actioncomm->label = 'sendEmailsRemindersOnInvoiceDueDateOK (nbdays='.$nbdays.' paymentmode='.$paymentmode.' template='.$template.' datetouse='.$datetouse.' forcerecipient='.$forcerecipient.')';
6381 $actioncomm->note_private = $sendContent;
6382 $actioncomm->fk_project = $tmpinvoice->fk_project;
6383 $actioncomm->datep = dol_now();
6384 $actioncomm->datef = $actioncomm->datep;
6385 $actioncomm->percentage = -1; // Not applicable
6386 $actioncomm->authorid = $user->id; // User saving action
6387 $actioncomm->userownerid = $user->id; // Owner of action
6388 // Fields when action is an email (content should be added into note)
6389 $actioncomm->email_msgid = $cMailFile->msgid;
6390 $actioncomm->email_subject = $sendTopic;
6391 $actioncomm->email_from = $from;
6392 $actioncomm->email_sender = '';
6393 $actioncomm->email_to = $to;
6394 //$actioncomm->email_tocc = $sendtocc;
6395 //$actioncomm->email_tobcc = $sendtobcc;
6396 //$actioncomm->email_subject = $subject;
6397 $actioncomm->errors_to = $errors_to;
6398
6399 $actioncomm->elementtype = 'invoice';
6400 $actioncomm->elementid = $tmpinvoice->id;
6401
6402 //$actioncomm->extraparams = $extraparams;
6403
6404 $actioncomm->create($user);
6405 } else {
6406 $errormesg = $cMailFile->error.' : '.$to;
6407 $loopError++;
6408
6409 // Add a line into event table
6410 require_once DOL_DOCUMENT_ROOT.'/comm/action/class/actioncomm.class.php';
6411
6412 // Insert record of emails sent
6413 $actioncomm = new ActionComm($this->db);
6414
6415 $actioncomm->type_code = 'AC_OTH_AUTO'; // Event insert into agenda automatically
6416 $actioncomm->socid = $tmpinvoice->thirdparty->id; // To link to a company
6417 $actioncomm->contact_id = 0;
6418
6419 $actioncomm->code = 'AC_EMAIL';
6420 $actioncomm->label = 'sendEmailsRemindersOnInvoiceDueDateKO';
6421 $actioncomm->note_private = $errormesg;
6422 $actioncomm->fk_project = $tmpinvoice->fk_project;
6423 $actioncomm->datep = dol_now();
6424 $actioncomm->datef = $actioncomm->datep;
6425 $actioncomm->percentage = -1; // Not applicable
6426 $actioncomm->authorid = $user->id; // User saving action
6427 $actioncomm->userownerid = $user->id; // Owner of action
6428 // Fields when action is an email (content should be added into note)
6429 $actioncomm->email_msgid = $cMailFile->msgid;
6430 $actioncomm->email_subject = $sendTopic;
6431 $actioncomm->email_from = $from;
6432 $actioncomm->email_sender = '';
6433 $actioncomm->email_to = $to;
6434 //$actioncomm->email_tocc = $sendtocc;
6435 //$actioncomm->email_tobcc = $sendtobcc;
6436 //$actioncomm->email_subject = $subject;
6437 $actioncomm->errors_to = $errors_to;
6438
6439 $actioncomm->elementtype = 'invoice';
6440 $actioncomm->elementid = $tmpinvoice->id;
6441
6442 //$actioncomm->extraparams = $extraparams;
6443
6444 $actioncomm->create($user);
6445 }
6446
6447 $this->db->commit(); // We always commit
6448 }
6449
6450 if ($errormesg) {
6451 $errorsMsg[] = $errormesg;
6452 }
6453 } else {
6454 $errorsMsg[] = 'Failed to fetch record invoice with ID = '.$obj->id;
6455 $loopError++;
6456 }
6457
6458 $error += $loopError;
6459 }
6460 } else {
6461 $error++;
6462 }
6463
6464 if (!$error) {
6465 $this->output .= 'Nb of emails sent : '.$nbMailSend;
6466
6467 dol_syslog(__METHOD__." end - ".$this->output, LOG_INFO);
6468
6469 return 0;
6470 } else {
6471 $this->error = 'Nb of emails sent : '.$nbMailSend.', '.(!empty($errorsMsg) ? implode(', ', $errorsMsg) : $error);
6472
6473 dol_syslog(__METHOD__." end - ".$this->error, LOG_INFO);
6474
6475 return $error;
6476 }
6477 }
6478
6485 public function willBeLastOfSameType($allow_validated_drafts = false)
6486 {
6487 // get date of last validated invoices of same type
6488 $sql = "SELECT datef";
6489 $sql .= " FROM ".MAIN_DB_PREFIX."facture";
6490 $sql .= " WHERE type = " . (int) $this->type ;
6491 $sql .= " AND date_valid IS NOT NULL";
6492 $sql .= " AND entity IN (".getEntity('invoice').")";
6493 $sql .= " ORDER BY datef DESC LIMIT 1";
6494
6495 $result = $this->db->query($sql);
6496 if ($result) {
6497 // compare with current validation date
6498 if ($this->db->num_rows($result)) {
6499 $obj = $this->db->fetch_object($result);
6500 $last_date = $this->db->jdate($obj->datef);
6501 $invoice_date = $this->date;
6502
6503 $is_last_of_same_type = $invoice_date >= $last_date;
6504 if ($allow_validated_drafts) {
6505 $is_last_of_same_type = $is_last_of_same_type || (!strpos($this->ref, 'PROV') && $this->status == self::STATUS_DRAFT);
6506 }
6507
6508 return array($is_last_of_same_type, $last_date);
6509 } else {
6510 // element is first of type to be validated
6511 return array(true);
6512 }
6513 } else {
6514 dol_print_error($this->db);
6515 }
6516
6517 return array();
6518 }
6519
6527 public function getKanbanView($option = '', $arraydata = null)
6528 {
6529 global $langs;
6530
6531 $selected = (empty($arraydata['selected']) ? 0 : $arraydata['selected']);
6532
6533 $picto = $this->picto;
6534 if ($this->type == self::TYPE_REPLACEMENT) {
6535 $picto .= 'r'; // Replacement invoice
6536 }
6537 if ($this->type == self::TYPE_CREDIT_NOTE) {
6538 $picto .= 'a'; // Credit note
6539 }
6540 if ($this->type == self::TYPE_DEPOSIT) {
6541 $picto .= 'd'; // Deposit invoice
6542 }
6543
6544 $return = '<div class="box-flex-item box-flex-grow-zero">';
6545 $return .= '<div class="info-box info-box-sm">';
6546 $return .= '<span class="info-box-icon bg-infobox-action">';
6547 $return .= img_picto('', $picto);
6548 $return .= '</span>';
6549 $return .= '<div class="info-box-content">';
6550 $return .= '<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">'.(method_exists($this, 'getNomUrl') ? $this->getNomUrl(1) : $this->ref).'</span>';
6551 if ($selected >= 0) {
6552 $return .= '<input id="cb'.$this->id.'" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="'.$this->id.'"'.($selected ? ' checked="checked"' : '').'>';
6553 }
6554 if (!empty($arraydata['thirdparty'])) {
6555 $return .= '<br><span class="info-box-label">'.$arraydata['thirdparty'].'</span>';
6556 }
6557 if (property_exists($this, 'date')) {
6558 $return .= '<br><span class="info-box-label">'.dol_print_date($this->date, 'day').'</span>';
6559 }
6560 if (property_exists($this, 'total_ht')) {
6561 $return .= ' &nbsp; <span class="info-box-label amount" title="'.dol_escape_htmltag($langs->trans("AmountHT")).'">'.price($this->total_ht);
6562 $return .= ' '.$langs->trans("HT");
6563 $return .= '</span>';
6564 }
6565 if (method_exists($this, 'getLibStatut')) {
6566 $alreadypaid = (empty($arraydata['alreadypaid']) ? 0 : $arraydata['alreadypaid']);
6567 $return .= '<br><div class="info-box-status">'.$this->getLibStatut(3, $alreadypaid).'</div>';
6568 }
6569 $return .= '</div>';
6570 $return .= '</div>';
6571 $return .= '</div>';
6572 return $return;
6573 }
6574}
if(! $sortfield) if(! $sortorder) $object
Definition account.php:100
$object ref
Definition info.php:90
Class to manage agenda events (actions)
Class to send emails (with attachments or not) Usage: $mailfile = new CMailFile($subject,...
Superclass for invoice classes.
getSumCreditNotesUsed($multicurrency=0)
Return amount (with tax) of all credit notes invoices + excess received used by invoice.
getSumDepositsUsed($multicurrency=0)
Return amount (with tax) of all deposits invoices used by invoice.
getSommePaiement($multicurrency=0)
Return amount of payments already done.
calculate_date_lim_reglement($cond_reglement=0)
Returns an invoice payment deadline based on the invoice settlement conditions and billing date.
is_erasable()
Return if an invoice can be deleted Rule is: If invoice is draft and has a temporary ref -> yes (1) I...
Parent class of all other business classes (invoices, contracts, proposals, orders,...
fetch_optionals($rowid=null, $optionsArray=null)
Function to get extra fields of an object into $this->array_options This method is in most cases call...
line_order($renum=false, $rowidorder='ASC', $fk_parent_line=true)
Save a new position (field rang) for details lines.
deleteEcmFiles($mode=0)
Delete related files of object in database.
update_price($exclspec=0, $roundingadjust='auto', $nodatabaseupdate=0, $seller=null)
Update total_ht, total_ttc, total_vat, total_localtax1, total_localtax2 for an object (sum of lines).
add_object_linked($origin=null, $origin_id=null, $f_user=null, $notrigger=0)
Add an object link into llx_element_element.
commonGenerateDocument($modelspath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams=null)
Common function for all objects extending CommonObject for generating documents.
fetch_thirdparty($force_thirdparty_id=0)
Load the third party of object, from id $this->socid or $this->fk_soc, into this->thirdparty.
getIdContact($source, $code, $status=0)
Return id of contacts for a source and a contact code.
deleteObjectLinked($sourceid=null, $sourcetype='', $targetid=null, $targettype='', $rowid=0, $f_user=null, $notrigger=0)
Delete all links between an object $this.
setErrorsFromObject($object)
setErrorsFromObject
updateRangOfLine($rowid, $rang)
Update position of line (rang)
deleteExtraFields()
Delete all extra fields values for the current object.
fetchObjectLinked($sourceid=null, $sourcetype='', $targetid=null, $targettype='', $clause='OR', $alsosametype=1, $orderby='sourcetype', $loadalsoobjects=1)
Fetch array of objects linked to current object (object of enabled modules only).
static commonReplaceThirdparty(DoliDB $dbs, $origin_id, $dest_id, array $tables, $ignoreerrors=0)
Function used to replace a thirdparty id with another one.
static commonReplaceProduct(DoliDB $dbs, $origin_id, $dest_id, array $tables, $ignoreerrors=0)
Function used to replace a product id with another one.
line_max($fk_parent_line=0)
Get max value used for position of line (rang)
insertExtraFields($trigger='', $userused=null)
Add/Update all extra fields values for the current object.
delete_linked_contact($source='', $code='')
Delete all links between an object $this and all its contacts in llx_element_contact.
add_contact($fk_socpeople, $type_contact, $source='external', $notrigger=0)
Add a link between element $this->element and a contact.
Class to manage absolute discounts.
Class to manage Dolibarr database access.
Class to manage warehouses.
Class to manage standard extra fields.
Class to manage invoices.
setDraft($user, $idwarehouse=-1)
Set draft status.
loadStateBoard()
Load indicators for dashboard (this->nbtodo and this->nbtodolate)
getIdShippingContact()
Returns the IDs of the customer shipping contacts.
setFinal(User $user, $notrigger=0)
Sets the invoice as a final situation.
setCanceled($user, $close_code='', $close_note='')
Tag invoice as canceled, with no payment on it (example for replacement invoice or payment never rece...
createFromClone(User $user, $fromid=0, $forceentity=null)
Load an object from its id and create a new one in database.
static createDepositFromOrigin(CommonObject $origin, $date, $payment_terms_id, User $user, $notrigger=0, $autoValidateDeposit=false, $overrideFields=array())
Creates a deposit from a proposal or an order by grouping lines by VAT rates.
static replaceThirdparty(DoliDB $dbs, $origin_id, $dest_id)
Replace a thirdparty id with another one.
list_replacable_invoices($socid=0)
Return list of invoices qualified to be replaced by another invoice.
insert_discount($idremise)
Add a discount line into an invoice (as an invoice line) using an existing absolute discount (Consume...
createFromOrder($object, User $user)
Load an object from an order and create a new invoice into database.
willBeLastOfSameType($allow_validated_drafts=false)
See if current invoice date is posterior to the last invoice date among validated invoices of same ty...
update_percent($line, $percent, $update_price=true)
Update invoice line with percentage.
const TYPE_REPLACEMENT
Replacement invoice.
validate($user, $force_number='', $idwarehouse=0, $notrigger=0, $batch_rule=0)
Tag invoice as validated + call trigger BILL_VALIDATE Object must have lines loaded with fetch_lines ...
update(User $user, $notrigger=0)
Update database.
liste_array($shortlist=0, $draft=0, $excluser=null, $socid=0, $limit=0, $offset=0, $sortfield='f.datef, f.rowid', $sortorder='DESC')
Return list of invoices (eventually filtered on a user) into an array.
getIdBillingContact()
Returns the IDs of the customer billing contacts.
__construct(DoliDB $db)
Constructor.
const STATUS_DRAFT
Draft status.
updateline($rowid, $desc, $pu, $qty, $remise_percent, $date_start, $date_end, $txtva, $txlocaltax1=0, $txlocaltax2=0, $price_base_type='HT', $info_bits=0, $type=self::TYPE_STANDARD, $fk_parent_line=0, $skip_update_total=0, $fk_fournprice=null, $pa_ht=0, $label='', $special_code=0, $array_options=array(), $situation_percent=100, $fk_unit=null, $pu_ht_devise=0, $notrigger=0, $ref_ext='', $rang=0)
Update a detail line.
getNomUrl($withpicto=0, $option='', $max=0, $short=0, $moretitle='', $notooltip=0, $addlinktonotes=0, $save_lastsearch_value=-1, $target='')
Return clickable link of object (with eventually picto)
load_board($user)
Load indicators for dashboard (this->nbtodo and this->nbtodolate)
fetchPreviousNextSituationInvoice()
Fetch previous and next situations invoices.
fetch($rowid, $ref='', $ref_ext='', $notused=0, $fetch_situation=false)
Get object from database.
setInputReason($inputReasonId, $notrigger=0)
Update invoice input reason.
const TYPE_STANDARD
Standard invoice.
const TYPE_SITUATION
Situation invoice.
updatePriceNextInvoice(&$langs)
Update price of next invoice.
getRetainedWarrantyAmount($rounding='MT')
Calculate the amount of the retained warranty (from the percentage).
static replaceProduct(DoliDB $db, $origin_id, $dest_id)
Replace a product id with another one.
setRetainedWarrantyDateLimit($timestamp, $dateYmd='')
Change the retained_warranty_date_limit.
sendEmailsRemindersOnInvoiceDueDate($nbdays=0, $paymentmode='all', $template='', $datetouse='duedate', $forcerecipient='')
Send reminders by emails for invoices validated that are due.
info($id)
Load miscellaneous information for tab "Info".
const TYPE_PROFORMA
Proforma invoice (should not be used.
getKanbanView($option='', $arraydata=null)
Return clickable link of object (with eventually picto)
generateDocument($modele, $outputlangs, $hidedetails=0, $hidedesc=0, $hideref=0, $moreparams=null)
Create a document onto disk according to template module.
setRetainedWarranty($value)
Change the retained warranty.
get_prev_sits()
Returns an array containing the previous situations as Invoice objects.
list_qualified_avoir_invoices($socid=0)
Return list of invoices qualified to be corrected by a credit note.
set_canceled($user, $close_code='', $close_note='')
Tag invoice as canceled, with no payment on it (example for replacement invoice or payment never rece...
newCycle()
Gets the smallest reference available for a new cycle.
setDiscount($user, $remise, $notrigger=0)
Set percent discount.
isSituationInvoice()
Check if an invoice is a situation invoice.
set_ref_client($ref_client, $notrigger=0)
Set customer ref.
is_first()
Checks if the invoice is the first of a cycle.
set_remise($user, $remise, $notrigger=0)
Set percent discount.
getTooltipContentArray($params)
getTooltipContentArray
getNextNumRef($soc, $mode='next')
Return next reference of customer invoice not already used (or last reference) according to numbering...
fetch_lines($only_type_product='', $loadalsotranslation=0)
Load all detailed lines into this->lines.
checkProgressLine($idline, $situation_percent)
Check if the percent edited is lower of next invoice line.
const STATUS_VALIDATED
Validated (need to be paid)
hasDelay()
Is the customer invoice delayed?
getLinesArray()
Create an array of invoice lines.
set_unpaid($user)
Tags the invoice as incompletely paid and call the trigger BILL_UNPAYED This method is used when a di...
const TYPE_DEPOSIT
Deposit invoice.
set_paid($user, $close_code='', $close_note='')
Tag the invoice as paid completely (if close_code is filled) => this->fk_statut=2,...
const STATUS_ABANDONED
Classified abandoned and no payment done.
createFromCurrent(User $user, $invertdetail=0)
Create a new invoice in database from current invoice.
setPaid($user, $close_code='', $close_note='')
Tag the invoice as :
displayRetainedWarranty()
Currently used for documents generation : to know if retained warranty need to be displayed.
const TYPE_CREDIT_NOTE
Credit note invoice.
is_last_in_cycle()
Checks if the invoice is the last in its cycle.
create(User $user, $notrigger=0, $forceduedate=0, $updatecurrencyrate=0)
Create invoice in database.
initAsSpecimen($option='')
Initialise an instance with random values.
deleteLine($rowid, $id=0)
Delete line in database.
addline( $desc, $pu_ht, $qty, $txtva, $txlocaltax1=0, $txlocaltax2=0, $fk_product=0, $remise_percent=0, $date_start='', $date_end='', $fk_code_ventilation=0, $info_bits=0, $fk_remise_except=0, $price_base_type='HT', $pu_ttc=0, $type=0, $rang=-1, $special_code=0, $origin='', $origin_id=0, $fk_parent_line=0, $fk_fournprice=null, $pa_ht=0, $label='', $array_options=array(), $situation_percent=100, $fk_prev_id=0, $fk_unit=null, $pu_ht_devise=0, $ref_ext='', $noupdateafterinsertline=0)
Add an invoice line into database (linked to product/service or not).
setUnpaid($user)
Tag the invoice as incompletely paid and call the trigger BILL_UNPAYED This method is used when a dir...
const STATUS_CLOSED
Classified paid.
setCategories($categories)
Sets object to given categories.
createFromContract($object, User $user, $lines=array())
Load an object from a contract and create a new invoice into database.
Class to manage invoice lines.
Class to manage invoice templates.
Class to manage a HTML form to send a unitary email Usage: $formail = new FormMail($db) $formmail->pr...
Class to manage "other" html components Only common components are here.
Class to manage stock movements.
static getIdAndTxFromCode($dbs, $code, $date_document=0)
Get id and rate of currency from code.
static getIdFromCode($dbs, $code)
Get id of currency from code.
Class to manage predefined suppliers products.
Class to manage products or services.
Manage record for batch number management.
const BATCH_RULE_SELLBY_EATBY_DATES_FIRST
Batches rules.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage translations.
Class to manage Dolibarr users.
hasRight($module, $permlevel1, $permlevel2='')
Return if a user has a permission.
print $langs trans("Ref").' m titre as m m statut as status
Or an array listing all the potential status of the object: array: int of the status => translated la...
Definition index.php:168
global $mysoc
dol_get_first_hour($date, $gm='tzserver')
Return GMT time for first hour of a given GMT date (it removes hours, min and second part)
Definition date.lib.php:664
dol_get_last_hour($date, $gm='tzserver')
Return GMT time for last hour of a given GMT date (it replaces hours, min and second part to 23:59:59...
Definition date.lib.php:650
dol_get_first_day($year, $month=1, $gm=false)
Return GMT time for first day of a month or year.
Definition date.lib.php:604
dol_get_next_month($month, $year)
Return next month.
Definition date.lib.php:542
dol_time_plus_duree($time, $duration_value, $duration_unit, $ruleforendofmonth=0)
Add a delay to a date.
Definition date.lib.php:126
dol_get_last_day($year, $month=12, $gm=false)
Return GMT time for last day of a month or year.
Definition date.lib.php:623
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $db
API class for accounts.
dol_delete_file($file, $disableglob=0, $nophperrors=0, $nohook=0, $object=null, $allowdotdot=false, $indexdatabase=1, $nolog=0)
Remove a file or several files with a mask.
dol_delete_dir_recursive($dir, $count=0, $nophperrors=0, $onlysub=0, &$countdeleted=0, $indexdatabase=1, $nolog=0, $level=0)
Remove a directory $dir and its subdirectories (or only files and subdirectories)
dol_dir_list($utf8_path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
Definition files.lib.php:64
dol_delete_preview($object)
Delete all preview files linked to object instance.
$date_start
Variables from include:
dol_now($mode='gmt')
Return date for now.
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed information (by default a local PHP server timestamp) Rep...
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
setEntity($currentobject)
Set entity id to use when to create an object.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
dol_eval($s, $returnvalue=1, $hideerrors=1, $onlysimplestring='1')
Replace eval function to add more security.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $allowothertags=array())
Show a picto called object_picto (generic function)
setEventMessage($mesgs, $style='mesgs', $noduplicate=0, $attop=0)
Set event message in dol_events session object.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1, $includequotes=0, $allowdash=0)
Clean a string to use it as a file name.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
getLocalTaxesFromRate($vatrate, $local, $buyer, $seller, $firstparamisid=0)
Get type and rate of localtaxes for a particular vat rate/country of a thirdparty.
dol_concatdesc($text1, $text2, $forxml=false, $invert=false)
Concat 2 descriptions with a new line between them (second operand after first one with appropriate n...
dolPrintHTMLForAttribute($s, $escapeonlyhtmltags=0, $allowothertags=array())
Return a string ready to be output into an HTML attribute (alt, title, data-html, ....
complete_substitutions_array(&$substitutionarray, $outputlangs, $object=null, $parameters=null, $callfunc="completesubstitutionarray")
Complete the $substitutionarray with more entries coming from external module that had set the "subst...
make_substitutions($text, $substitutionarray, $outputlangs=null, $converttextinhtmlifnecessary=0)
Make substitution into a text string, replacing keys with vals from $substitutionarray (oldval=>newva...
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_clone($srcobject, $native=2)
Create a clone of instance of object (new instance with same value for each properties) With native =...
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false, $decorate=0)
Output date in a string format according to outputlangs (or langs if not defined).
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_trunc($string, $size=40, $trunc='right', $stringencoding='UTF-8', $nodot=0, $display=0)
Truncate a string to a particular length adding '…' if string larger than length.
isValidEmail($address, $acceptsupervisorkey=0, $acceptuserkey=0)
Return true if email syntax is ok.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
getWarningDelay($module, $parmlevel1, $parmlevel2='')
Return a warning delay You can use it like this: if (getWarningDelay('module', 'paramlevel1')) It rep...
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
getEntity($element, $shared=1, $currentobject=null)
Get list of entity id to use.
dol_getdate($timestamp, $fast=false, $forcetimezone='')
Return an array with locale date info.
print $langs trans("Show") . '< td style="' . $timeColor . '" align="center"> s</td > badge status0 badge status4 badge status3 Error badge status8< td align="center">< span class="badge ' . $badge . '"></span ></td >< td align="center">< a href="#" class="button button-small" onclick="openLogModal(this)" data-req="' . dol_escape_htmltag($reqSafe) . '" data-res="' . dol_escape_htmltag($resSafe) . '" data-err="' . dol_escape_htmltag($errSafe) . '">< span class="fa fa-search-plus"></span ></a ></td ></tr >< tr >< td colspan="' . $colspan . '" class="opacitymedium"></td ></tr ></table ></div ></form > logModal none logModal none s a JSON string
buildzip.php
getMarginInfos($pv_ht, $remise_percent, $tva_tx, $localtax1_tx, $localtax2_tx, $fk_pa, $pa_ht)
Return an array with margins information of a line.
calcul_price_total($qty, $pu, $remise_percent_ligne, $txtva, $uselocaltax1_rate, $uselocaltax2_rate, $remise_percent_global, $price_base_type, $info_bits, $type, $seller=null, $localtaxes_array=[], $progress=100, $multicurrency_tx=1, $pu_devise=0, $multicurrency_code='')
Calculate totals (net, vat, ...) of a line.
Definition price.lib.php:90
print $langs trans('Date')." left Ref Label right Qty right Price right TotalHT right TotalTTC right right right right right right right right right centpercent right TotalHT right n right VAT right n right TotalVAT right n No sujeto a RE IRPF right TotalLT1 right n right TotalLT2 right n right TotalTTC right n takeposcustomercurrency takeposcustomercurrency takeposcustomercurrency takeposcustomercurrency right TotalTTC takeposcustomercurrency right takeposcustomercurrency n right Paid right PaymentTypeShortLIQ right SELECT p pos_change as p datep as date
Definition receipt.php:487
if(preg_match('/(crypted|dolcrypt):/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
'integer', 'integer:ObjectClass:PathToClass[:AddCreateButtonOrNot[:Filter[:Sortfield]]]',...
Definition repair.php:130
dolDecrypt($chain, $key='', $patterntotest='')
Decode a string with a symmetric encryption.