dolibarr  16.0.1
supplier_proposal.class.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2002-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2004 Eric Seigne <eric.seigne@ryxeo.com>
4  * Copyright (C) 2004-2011 Laurent Destailleur <eldy@users.sourceforge.net>
5  * Copyright (C) 2005 Marc Barilley <marc@ocebo.com>
6  * Copyright (C) 2005-2013 Regis Houssin <regis.houssin@inodbox.com>
7  * Copyright (C) 2006 Andre Cianfarani <acianfa@free.fr>
8  * Copyright (C) 2008 Raphael Bertrand <raphael.bertrand@resultic.fr>
9  * Copyright (C) 2010-2020 Juanjo Menent <jmenent@2byte.es>
10  * Copyright (C) 2010-2018 Philippe Grand <philippe.grand@atoo-net.com>
11  * Copyright (C) 2012-2014 Christophe Battarel <christophe.battarel@altairis.fr>
12  * Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
13  * Copyright (C) 2014 Marcos García <marcosgdf@gmail.com>
14  * Copyright (C) 2016 Ferran Marcet <fmarcet@2byte.es>
15  * Copyright (C) 2018 Nicolas ZABOURI <info@inovea-conseil.com>
16  * Copyright (C) 2019-2022 Frédéric France <frederic.france@netlogic.fr>
17  * Copyright (C) 2020 Tobias Sekan <tobias.sekan@startmail.com>
18  * Copyright (C) 2022 Gauthier VERDOL <gauthier.verdol@atm-consulting.fr>
19  *
20  * This program is free software; you can redistribute it and/or modify
21  * it under the terms of the GNU General Public License as published by
22  * the Free Software Foundation; either version 3 of the License, or
23  * (at your option) any later version.
24  *
25  * This program is distributed in the hope that it will be useful,
26  * but WITHOUT ANY WARRANTY; without even the implied warranty of
27  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28  * GNU General Public License for more details.
29  *
30  * You should have received a copy of the GNU General Public License
31  * along with this program. If not, see <https://www.gnu.org/licenses/>.
32  */
33 
39 require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.product.class.php';
40 require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php';
41 require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
42 require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
43 require_once DOL_DOCUMENT_ROOT.'/margin/lib/margins.lib.php';
44 require_once DOL_DOCUMENT_ROOT.'/multicurrency/class/multicurrency.class.php';
45 require_once DOL_DOCUMENT_ROOT.'/core/class/commonincoterm.class.php';
46 
51 {
52  use CommonIncoterm;
53 
57  public $element = 'supplier_proposal';
58 
62  public $table_element = 'supplier_proposal';
63 
67  public $table_element_line = 'supplier_proposaldet';
68 
72  public $fk_element = 'fk_supplier_proposal';
73 
77  public $picto = 'supplier_proposal';
78 
83  public $ismultientitymanaged = 1;
84 
89  public $restrictiononfksoc = 1;
90 
94  protected $table_ref_field = 'ref';
95 
96  public $socid; // Id client
97 
102  public $author;
103 
104  public $ref_fourn; //Reference saisie lors de l'ajout d'une ligne à la demande
105  public $ref_supplier; //Reference saisie lors de l'ajout d'une ligne à la demande
106  public $statut; // 0 (draft), 1 (validated), 2 (signed), 3 (not signed), 4 (processed/billed)
107 
111  public $date;
112 
117  public $date_livraison;
118 
122  public $delivery_date;
123 
128  public $datec;
129 
133  public $date_creation;
134 
139  public $datev;
140 
144  public $date_validation;
145 
146 
147  public $user_author_id;
148  public $user_valid_id;
149  public $user_close_id;
150 
155  public $price;
156 
161  public $tva;
162 
167  public $total;
168 
169  public $cond_reglement_code;
170  public $mode_reglement_code;
171  public $remise = 0;
172  public $remise_percent = 0;
173  public $remise_absolue = 0;
174 
175  public $extraparams = array();
176  public $lines = array();
177  public $line;
178 
179  public $labelStatus = array();
180  public $labelStatusShort = array();
181 
182  public $nbtodo;
183  public $nbtodolate;
184 
185  // Multicurrency
189  public $fk_multicurrency;
190 
191  public $multicurrency_code;
192  public $multicurrency_tx;
193  public $multicurrency_total_ht;
194  public $multicurrency_total_tva;
195  public $multicurrency_total_ttc;
196 
200  const STATUS_DRAFT = 0;
201 
205  const STATUS_VALIDATED = 1;
206 
210  const STATUS_SIGNED = 2;
211 
215  const STATUS_NOTSIGNED = 3;
216 
220  const STATUS_CLOSE = 4;
221 
222 
223 
231  public function __construct($db, $socid = "", $supplier_proposalid = 0)
232  {
233  global $conf, $langs;
234 
235  $this->db = $db;
236 
237  $this->socid = $socid;
238  $this->id = $supplier_proposalid;
239  }
240 
241 
242  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
253  public function add_product($idproduct, $qty, $remise_percent = 0)
254  {
255  // phpcs:enable
256  global $conf, $mysoc;
257 
258  if (!$qty) {
259  $qty = 1;
260  }
261 
262  dol_syslog(get_class($this)."::add_product $idproduct, $qty, $remise_percent");
263  if ($idproduct > 0) {
264  $prod = new Product($this->db);
265  $prod->fetch($idproduct);
266 
267  $productdesc = $prod->description;
268 
269  $tva_tx = get_default_tva($mysoc, $this->thirdparty, $prod->id);
270  $tva_npr = get_default_npr($mysoc, $this->thirdparty, $prod->id);
271  if (empty($tva_tx)) {
272  $tva_npr = 0;
273  }
274  $localtax1_tx = get_localtax($tva_tx, 1, $mysoc, $this->thirdparty, $tva_npr);
275  $localtax2_tx = get_localtax($tva_tx, 2, $mysoc, $this->thirdparty, $tva_npr);
276 
277  // multiprix
278  if ($conf->global->PRODUIT_MULTIPRICES && $this->thirdparty->price_level) {
279  $price = $prod->multiprices[$this->thirdparty->price_level];
280  } else {
281  $price = $prod->price;
282  }
283 
284  $line = new SupplierProposalLine($this->db);
285 
286  $line->fk_product = $idproduct;
287  $line->desc = $productdesc;
288  $line->qty = $qty;
289  $line->subprice = $price;
290  $line->remise_percent = $remise_percent;
291  $line->tva_tx = $tva_tx;
292 
293  $this->lines[] = $line;
294  return 1;
295  }
296  return -1;
297  }
298 
299  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
306  public function insert_discount($idremise)
307  {
308  // phpcs:enable
309  global $langs;
310 
311  include_once DOL_DOCUMENT_ROOT.'/core/lib/price.lib.php';
312  include_once DOL_DOCUMENT_ROOT.'/core/class/discount.class.php';
313 
314  $this->db->begin();
315 
316  $remise = new DiscountAbsolute($this->db);
317  $result = $remise->fetch($idremise);
318 
319  if ($result > 0) {
320  if ($remise->fk_facture) { // Protection against multiple submission
321  $this->error = $langs->trans("ErrorDiscountAlreadyUsed");
322  $this->db->rollback();
323  return -5;
324  }
325 
326  $supplier_proposalligne = new SupplierProposalLine($this->db);
327  $supplier_proposalligne->fk_supplier_proposal = $this->id;
328  $supplier_proposalligne->fk_remise_except = $remise->id;
329  $supplier_proposalligne->desc = $remise->description; // Description ligne
330  $supplier_proposalligne->tva_tx = $remise->tva_tx;
331  $supplier_proposalligne->subprice = -$remise->amount_ht;
332  $supplier_proposalligne->fk_product = 0; // Id produit predefini
333  $supplier_proposalligne->qty = 1;
334  $supplier_proposalligne->remise_percent = 0;
335  $supplier_proposalligne->rang = -1;
336  $supplier_proposalligne->info_bits = 2;
337 
338  $supplier_proposalligne->total_ht = -$remise->amount_ht;
339  $supplier_proposalligne->total_tva = -$remise->amount_tva;
340  $supplier_proposalligne->total_ttc = -$remise->amount_ttc;
341 
342  $result = $supplier_proposalligne->insert();
343  if ($result > 0) {
344  $result = $this->update_price(1);
345  if ($result > 0) {
346  $this->db->commit();
347  return 1;
348  } else {
349  $this->db->rollback();
350  return -1;
351  }
352  } else {
353  $this->error = $supplier_proposalligne->error;
354  $this->db->rollback();
355  return -2;
356  }
357  } else {
358  $this->db->rollback();
359  return -2;
360  }
361  }
362 
400  public function addline($desc, $pu_ht, $qty, $txtva, $txlocaltax1 = 0, $txlocaltax2 = 0, $fk_product = 0, $remise_percent = 0, $price_base_type = 'HT', $pu_ttc = 0, $info_bits = 0, $type = 0, $rang = -1, $special_code = 0, $fk_parent_line = 0, $fk_fournprice = 0, $pa_ht = 0, $label = '', $array_options = 0, $ref_supplier = '', $fk_unit = '', $origin = '', $origin_id = 0, $pu_ht_devise = 0, $date_start = 0, $date_end = 0)
401  {
402  global $mysoc, $conf, $langs;
403 
404  dol_syslog(get_class($this)."::addline supplier_proposalid=$this->id, desc=$desc, pu_ht=$pu_ht, qty=$qty, txtva=$txtva, fk_product=$fk_product, remise_except=$remise_percent, price_base_type=$price_base_type, pu_ttc=$pu_ttc, info_bits=$info_bits, type=$type");
405  include_once DOL_DOCUMENT_ROOT.'/core/lib/price.lib.php';
406 
407  // Clean parameters
408  if (empty($remise_percent)) {
409  $remise_percent = 0;
410  }
411  if (empty($qty)) {
412  $qty = 0;
413  }
414  if (empty($info_bits)) {
415  $info_bits = 0;
416  }
417  if (empty($rang)) {
418  $rang = 0;
419  }
420  if (empty($fk_parent_line) || $fk_parent_line < 0) {
421  $fk_parent_line = 0;
422  }
423  if (empty($pu_ht)) {
424  $pu_ht = 0;
425  }
426 
427  $remise_percent = price2num($remise_percent);
428  $qty = price2num($qty);
429  $pu_ht = price2num($pu_ht);
430  $pu_ttc = price2num($pu_ttc);
431  if (!preg_match('/\((.*)\)/', $txtva)) {
432  $txtva = price2num($txtva); // $txtva can have format '5.0(XXX)' or '5'
433  }
434  $txlocaltax1 = price2num($txlocaltax1);
435  $txlocaltax2 = price2num($txlocaltax2);
436  $pa_ht = price2num($pa_ht);
437  if ($price_base_type == 'HT') {
438  $pu = $pu_ht;
439  } else {
440  $pu = $pu_ttc;
441  }
442 
443  // Check parameters
444  if ($type < 0) {
445  return -1;
446  }
447 
448  if ($this->statut == self::STATUS_DRAFT) {
449  $this->db->begin();
450 
451  if ($fk_product > 0) {
452  if (!empty($conf->global->SUPPLIER_PROPOSAL_WITH_PREDEFINED_PRICES_ONLY)) {
453  // Check quantity is enough
454  dol_syslog(get_class($this)."::addline we check supplier prices fk_product=".$fk_product." fk_fournprice=".$fk_fournprice." qty=".$qty." ref_supplier=".$ref_supplier);
455  $prod = new Product($this->db);
456  if ($prod->fetch($fk_product) > 0) {
457  $product_type = $prod->type;
458  $label = $prod->label;
459  $fk_prod_fourn_price = $fk_fournprice;
460 
461  // We use 'none' instead of $ref_supplier, because fourn_ref may not exists anymore. So we will take the first supplier price ok.
462  // If we want a dedicated supplier price, we must provide $fk_prod_fourn_price.
463  $result = $prod->get_buyprice($fk_prod_fourn_price, $qty, $fk_product, 'none', ($this->fk_soc ? $this->fk_soc : $this->socid)); // Search on couple $fk_prod_fourn_price/$qty first, then on triplet $qty/$fk_product/$ref_supplier/$this->fk_soc
464  if ($result > 0) {
465  $pu = $prod->fourn_pu; // Unit price supplier price set by get_buyprice
466  $ref_supplier = $prod->ref_supplier; // Ref supplier price set by get_buyprice
467  // is remise percent not keyed but present for the product we add it
468  if ($remise_percent == 0 && $prod->remise_percent != 0) {
469  $remise_percent = $prod->remise_percent;
470  }
471  }
472  if ($result == 0) { // If result == 0, we failed to found the supplier reference price
473  $langs->load("errors");
474  $this->error = "Ref ".$prod->ref." ".$langs->trans("ErrorQtyTooLowForThisSupplier");
475  $this->db->rollback();
476  dol_syslog(get_class($this)."::addline we did not found supplier price, so we can't guess unit price");
477  //$pu = $prod->fourn_pu; // We do not overwrite unit price
478  //$ref = $prod->ref_fourn; // We do not overwrite ref supplier price
479  return -1;
480  }
481  if ($result == -1) {
482  $langs->load("errors");
483  $this->error = "Ref ".$prod->ref." ".$langs->trans("ErrorQtyTooLowForThisSupplier");
484  $this->db->rollback();
485  dol_syslog(get_class($this)."::addline result=".$result." - ".$this->error, LOG_DEBUG);
486  return -1;
487  }
488  if ($result < -1) {
489  $this->error = $prod->error;
490  $this->errors = $prod->errors;
491  $this->db->rollback();
492  dol_syslog(get_class($this)."::addline result=".$result." - ".$this->error, LOG_ERR);
493  return -1;
494  }
495  } else {
496  $this->error = $prod->error;
497  $this->errors = $prod->errors;
498  $this->db->rollback();
499  return -1;
500  }
501  }
502  } else {
503  $product_type = $type;
504  }
505 
506  // Calcul du total TTC et de la TVA pour la ligne a partir de
507  // qty, pu, remise_percent et txtva
508  // TRES IMPORTANT: C'est au moment de l'insertion ligne qu'on doit stocker
509  // la part ht, tva et ttc, et ce au niveau de la ligne qui a son propre taux tva.
510 
511  $localtaxes_type = getLocalTaxesFromRate($txtva, 0, $this->thirdparty, $mysoc);
512 
513  // Clean vat code
514  $reg = array();
515  $vat_src_code = '';
516  if (preg_match('/\((.*)\)/', $txtva, $reg)) {
517  $vat_src_code = $reg[1];
518  $txtva = preg_replace('/\s*\(.*\)/', '', $txtva); // Remove code into vatrate.
519  }
520 
521  if (!empty($conf->multicurrency->enabled) && $pu_ht_devise > 0) {
522  $pu = 0;
523  }
524 
525  $tabprice = calcul_price_total($qty, $pu, $remise_percent, $txtva, $txlocaltax1, $txlocaltax2, 0, $price_base_type, $info_bits, $type, $this->thirdparty, $localtaxes_type, 100, $this->multicurrency_tx, $pu_ht_devise);
526  $total_ht = $tabprice[0];
527  $total_tva = $tabprice[1];
528  $total_ttc = $tabprice[2];
529  $total_localtax1 = $tabprice[9];
530  $total_localtax2 = $tabprice[10];
531  $pu = $pu_ht = $tabprice[3];
532 
533  // MultiCurrency
534  $multicurrency_total_ht = $tabprice[16];
535  $multicurrency_total_tva = $tabprice[17];
536  $multicurrency_total_ttc = $tabprice[18];
537  $pu_ht_devise = $tabprice[19];
538 
539  // Rang to use
540  $ranktouse = $rang;
541  if ($ranktouse == -1) {
542  $rangmax = $this->line_max($fk_parent_line);
543  $ranktouse = $rangmax + 1;
544  }
545 
546  // TODO A virer
547  // Anciens indicateurs: $price, $remise (a ne plus utiliser)
548  $price = $pu;
549  $remise = 0;
550  if ($remise_percent > 0) {
551  $remise = round(($pu * $remise_percent / 100), 2);
552  $price = $pu - $remise;
553  }
554 
555  // Insert line
556  $this->line = new SupplierProposalLine($this->db);
557 
558  $this->line->fk_supplier_proposal = $this->id;
559  $this->line->label = $label;
560  $this->line->desc = $desc;
561  $this->line->qty = $qty;
562 
563  $this->line->vat_src_code = $vat_src_code;
564  $this->line->tva_tx = $txtva;
565  $this->line->localtax1_tx = ($total_localtax1 ? $localtaxes_type[1] : 0);
566  $this->line->localtax2_tx = ($total_localtax2 ? $localtaxes_type[3] : 0);
567  $this->line->localtax1_type = empty($localtaxes_type[0]) ? '' : $localtaxes_type[0];
568  $this->line->localtax2_type = empty($localtaxes_type[2]) ? '' : $localtaxes_type[2];
569  $this->line->fk_product = $fk_product;
570  $this->line->remise_percent = $remise_percent;
571  $this->line->subprice = $pu_ht;
572  $this->line->rang = $ranktouse;
573  $this->line->info_bits = $info_bits;
574  $this->line->total_ht = $total_ht;
575  $this->line->total_tva = $total_tva;
576  $this->line->total_localtax1 = $total_localtax1;
577  $this->line->total_localtax2 = $total_localtax2;
578  $this->line->total_ttc = $total_ttc;
579  $this->line->product_type = $type;
580  $this->line->special_code = $special_code;
581  $this->line->fk_parent_line = $fk_parent_line;
582  $this->line->fk_unit = $fk_unit;
583  $this->line->origin = $origin;
584  $this->line->origin_id = $origin_id;
585  $this->line->ref_fourn = $this->db->escape($ref_supplier);
586  $this->line->date_start = $date_start;
587  $this->line->date_end = $date_end;
588 
589  // infos marge
590  if (!empty($fk_product) && $fk_product > 0 && empty($fk_fournprice) && empty($pa_ht)) {
591  // When fk_fournprice is 0, we take the lowest buying price
592  include_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.product.class.php';
593  $productFournisseur = new ProductFournisseur($this->db);
594  $productFournisseur->find_min_price_product_fournisseur($fk_product);
595  $this->line->fk_fournprice = $productFournisseur->product_fourn_price_id;
596  } else {
597  $this->line->fk_fournprice = ($fk_fournprice > 0 ? $fk_fournprice : 0); // If fk_fournprice is -1, we will not use fk_fournprice
598  }
599  $this->line->pa_ht = $pa_ht;
600  //var_dump($this->line->fk_fournprice);exit;
601 
602  // Multicurrency
603  $this->line->fk_multicurrency = $this->fk_multicurrency;
604  $this->line->multicurrency_code = $this->multicurrency_code;
605  $this->line->multicurrency_subprice = $pu_ht_devise;
606  $this->line->multicurrency_total_ht = $multicurrency_total_ht;
607  $this->line->multicurrency_total_tva = $multicurrency_total_tva;
608  $this->line->multicurrency_total_ttc = $multicurrency_total_ttc;
609 
610  // Mise en option de la ligne
611  if (empty($qty) && empty($special_code)) {
612  $this->line->special_code = 3;
613  }
614 
615  if (is_array($array_options) && count($array_options) > 0) {
616  $this->line->array_options = $array_options;
617  }
618 
619  $result = $this->line->insert();
620  if ($result > 0) {
621  // Reorder if child line
622  if (!empty($fk_parent_line)) {
623  $this->line_order(true, 'DESC');
624  } elseif ($ranktouse > 0 && $ranktouse <= count($this->lines)) { // Update all rank of all other lines
625  $linecount = count($this->lines);
626  for ($ii = $ranktouse; $ii <= $linecount; $ii++) {
627  $this->updateRangOfLine($this->lines[$ii - 1]->id, $ii + 1);
628  }
629  }
630 
631  // Mise a jour informations denormalisees au niveau de la propale meme
632  $result = $this->update_price(1, 'auto', 0, $this->thirdparty); // This method is designed to add line from user input so total calculation must be done using 'auto' mode.
633  if ($result > 0) {
634  $this->db->commit();
635  return $this->line->id;
636  } else {
637  $this->error = $this->error();
638  $this->errors = $this->errors();
639  $this->db->rollback();
640  return -1;
641  }
642  } else {
643  $this->error = $this->line->error;
644  $this->errors = $this->line->errors;
645  $this->db->rollback();
646  return -2;
647  }
648  } else {
649  $this->error = 'BadStatusOfObjectToAddLine';
650  return -5;
651  }
652  }
653 
654 
681  public function updateline($rowid, $pu, $qty, $remise_percent, $txtva, $txlocaltax1 = 0, $txlocaltax2 = 0, $desc = '', $price_base_type = 'HT', $info_bits = 0, $special_code = 0, $fk_parent_line = 0, $skip_update_total = 0, $fk_fournprice = 0, $pa_ht = 0, $label = '', $type = 0, $array_options = 0, $ref_supplier = '', $fk_unit = '', $pu_ht_devise = 0)
682  {
683  global $conf, $user, $langs, $mysoc;
684 
685  dol_syslog(get_class($this)."::updateLine $rowid, $pu, $qty, $remise_percent, $txtva, $desc, $price_base_type, $info_bits");
686  include_once DOL_DOCUMENT_ROOT.'/core/lib/price.lib.php';
687 
688  // Clean parameters
689  $remise_percent = price2num($remise_percent);
690  $qty = price2num($qty);
691  $pu = price2num($pu);
692  if (!preg_match('/\((.*)\)/', $txtva)) {
693  $txtva = price2num($txtva); // $txtva can have format '5.0(XXX)' or '5'
694  }
695  $txlocaltax1 = price2num($txlocaltax1);
696  $txlocaltax2 = price2num($txlocaltax2);
697  $pa_ht = price2num($pa_ht);
698  if (empty($qty) && empty($special_code)) {
699  $special_code = 3; // Set option tag
700  }
701  if (!empty($qty) && $special_code == 3) {
702  $special_code = 0; // Remove option tag
703  }
704 
705  if ($this->statut == 0) {
706  $this->db->begin();
707 
708  // Calcul du total TTC et de la TVA pour la ligne a partir de
709  // qty, pu, remise_percent et txtva
710  // TRES IMPORTANT: C'est au moment de l'insertion ligne qu'on doit stocker
711  // la part ht, tva et ttc, et ce au niveau de la ligne qui a son propre taux tva.
712 
713  $localtaxes_type = getLocalTaxesFromRate($txtva, 0, $mysoc, $this->thirdparty);
714 
715  // Clean vat code
716  $reg = array();
717  $vat_src_code = '';
718  if (preg_match('/\((.*)\)/', $txtva, $reg)) {
719  $vat_src_code = $reg[1];
720  $txtva = preg_replace('/\s*\(.*\)/', '', $txtva); // Remove code into vatrate.
721  }
722 
723  if (!empty($conf->multicurrency->enabled) && $pu_ht_devise > 0) {
724  $pu = 0;
725  }
726 
727  $tabprice = calcul_price_total($qty, $pu, $remise_percent, $txtva, $txlocaltax1, $txlocaltax2, 0, $price_base_type, $info_bits, $type, $this->thirdparty, $localtaxes_type, 100, $this->multicurrency_tx, $pu_ht_devise);
728  $total_ht = $tabprice[0];
729  $total_tva = $tabprice[1];
730  $total_ttc = $tabprice[2];
731  $total_localtax1 = $tabprice[9];
732  $total_localtax2 = $tabprice[10];
733  $pu_ht = $tabprice[3];
734  $pu_tva = $tabprice[4];
735  $pu_ttc = $tabprice[5];
736 
737  // MultiCurrency
738  $multicurrency_total_ht = $tabprice[16];
739  $multicurrency_total_tva = $tabprice[17];
740  $multicurrency_total_ttc = $tabprice[18];
741  $pu_ht_devise = $tabprice[19];
742 
743  $pu = $pu_ht;
744  if ($price_base_type == 'TTC') {
745  $pu = $pu_ttc;
746  }
747 
748  //Fetch current line from the database and then clone the object and set it in $oldline property
749  $line = new SupplierProposalLine($this->db);
750  $line->fetch($rowid);
751  $line->fetch_optionals();
752 
753  // Stock previous line records
754  $staticline = clone $line;
755 
756  $line->oldline = $staticline;
757  $this->line = $line;
758  $this->line->context = $this->context;
759 
760  // Reorder if fk_parent_line change
761  if (!empty($fk_parent_line) && !empty($staticline->fk_parent_line) && $fk_parent_line != $staticline->fk_parent_line) {
762  $rangmax = $this->line_max($fk_parent_line);
763  $this->line->rang = $rangmax + 1;
764  }
765 
766  $this->line->id = $rowid;
767  $this->line->label = $label;
768  $this->line->desc = $desc;
769  $this->line->qty = $qty;
770  $this->line->product_type = $type;
771 
772  $this->line->vat_src_code = $vat_src_code;
773  $this->line->tva_tx = $txtva;
774  $this->line->localtax1_tx = $txlocaltax1;
775  $this->line->localtax2_tx = $txlocaltax2;
776  $this->line->localtax1_type = empty($localtaxes_type[0]) ? '' : $localtaxes_type[0];
777  $this->line->localtax2_type = empty($localtaxes_type[2]) ? '' : $localtaxes_type[2];
778  $this->line->remise_percent = $remise_percent;
779  $this->line->subprice = $pu;
780  $this->line->info_bits = $info_bits;
781  $this->line->total_ht = $total_ht;
782  $this->line->total_tva = $total_tva;
783  $this->line->total_localtax1 = $total_localtax1;
784  $this->line->total_localtax2 = $total_localtax2;
785  $this->line->total_ttc = $total_ttc;
786  $this->line->special_code = $special_code;
787  $this->line->fk_parent_line = $fk_parent_line;
788  $this->line->skip_update_total = $skip_update_total;
789  $this->line->ref_fourn = $ref_supplier;
790  $this->line->fk_unit = $fk_unit;
791 
792  // infos marge
793  if (!empty($fk_product) && $fk_product > 0 && empty($fk_fournprice) && empty($pa_ht)) {
794  // by external module, take lowest buying price
795  include_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.product.class.php';
796  $productFournisseur = new ProductFournisseur($this->db);
797  $productFournisseur->find_min_price_product_fournisseur($fk_product);
798  $this->line->fk_fournprice = $productFournisseur->product_fourn_price_id;
799  } else {
800  $this->line->fk_fournprice = $fk_fournprice;
801  }
802  $this->line->pa_ht = $pa_ht;
803 
804  if (is_array($array_options) && count($array_options) > 0) {
805  // We replace values in this->line->array_options only for entries defined into $array_options
806  foreach ($array_options as $key => $value) {
807  $this->line->array_options[$key] = $array_options[$key];
808  }
809  }
810 
811  // Multicurrency
812  $this->line->multicurrency_subprice = $pu_ht_devise;
813  $this->line->multicurrency_total_ht = $multicurrency_total_ht;
814  $this->line->multicurrency_total_tva = $multicurrency_total_tva;
815  $this->line->multicurrency_total_ttc = $multicurrency_total_ttc;
816 
817  $result = $this->line->update();
818  if ($result > 0) {
819  // Reorder if child line
820  if (!empty($fk_parent_line)) {
821  $this->line_order(true, 'DESC');
822  }
823 
824  $this->update_price(1);
825 
826  $this->fk_supplier_proposal = $this->id;
827 
828  $this->db->commit();
829  return $result;
830  } else {
831  $this->error = $this->db->error();
832  $this->db->rollback();
833  return -1;
834  }
835  } else {
836  dol_syslog(get_class($this)."::updateline Erreur -2 SupplierProposal en mode incompatible pour cette action");
837  return -2;
838  }
839  }
840 
841 
848  public function deleteline($lineid)
849  {
850  if ($this->statut == 0) {
851  $line = new SupplierProposalLine($this->db);
852 
853  // For triggers
854  $line->fetch($lineid);
855 
856  if ($line->delete() > 0) {
857  $this->update_price(1);
858 
859  return 1;
860  } else {
861  return -1;
862  }
863  } else {
864  return -2;
865  }
866  }
867 
868 
877  public function create($user, $notrigger = 0)
878  {
879  global $langs, $conf, $mysoc, $hookmanager;
880  $error = 0;
881 
882  $now = dol_now();
883 
884  dol_syslog(get_class($this)."::create");
885 
886  // Check parameters
887  $result = $this->fetch_thirdparty();
888  if ($result < 0) {
889  $this->error = "Failed to fetch company";
890  dol_syslog(get_class($this)."::create ".$this->error, LOG_ERR);
891  return -3;
892  }
893  if (!empty($this->ref)) { // We check that ref is not already used
894  $result = self::isExistingObject($this->element, 0, $this->ref); // Check ref is not yet used
895  if ($result > 0) {
896  $this->error = 'ErrorRefAlreadyExists';
897  dol_syslog(get_class($this)."::create ".$this->error, LOG_WARNING);
898  $this->db->rollback();
899  return -1;
900  }
901  }
902 
903  // Set tmp vars
904  $delivery_date = empty($this->delivery_date) ? $this->date_livraison : $this->delivery_date;
905 
906  // Multicurrency
907  if (!empty($this->multicurrency_code)) {
908  list($this->fk_multicurrency, $this->multicurrency_tx) = MultiCurrency::getIdAndTxFromCode($this->db, $this->multicurrency_code, $now);
909  }
910  if (empty($this->fk_multicurrency)) {
911  $this->multicurrency_code = $conf->currency;
912  $this->fk_multicurrency = 0;
913  $this->multicurrency_tx = 1;
914  }
915 
916  $this->db->begin();
917 
918  // Insert into database
919  $sql = "INSERT INTO ".MAIN_DB_PREFIX."supplier_proposal (";
920  $sql .= "fk_soc";
921  $sql .= ", price";
922  $sql .= ", remise";
923  $sql .= ", remise_percent";
924  $sql .= ", remise_absolue";
925  $sql .= ", total_tva";
926  $sql .= ", total_ttc";
927  $sql .= ", datec";
928  $sql .= ", ref";
929  $sql .= ", fk_user_author";
930  $sql .= ", note_private";
931  $sql .= ", note_public";
932  $sql .= ", model_pdf";
933  $sql .= ", fk_cond_reglement";
934  $sql .= ", fk_mode_reglement";
935  $sql .= ", fk_account";
936  $sql .= ", date_livraison";
937  $sql .= ", fk_shipping_method";
938  $sql .= ", fk_projet";
939  $sql .= ", entity";
940  $sql .= ", fk_multicurrency";
941  $sql .= ", multicurrency_code";
942  $sql .= ", multicurrency_tx";
943  $sql .= ") ";
944  $sql .= " VALUES (";
945  $sql .= ((int) $this->socid);
946  $sql .= ", 0";
947  $sql .= ", ".((double) $this->remise);
948  $sql .= ", ".($this->remise_percent ? ((double) $this->remise_percent) : 'null');
949  $sql .= ", ".($this->remise_absolue ? ((double) $this->remise_absolue) : 'null');
950  $sql .= ", 0";
951  $sql .= ", 0";
952  $sql .= ", '".$this->db->idate($now)."'";
953  $sql .= ", '(PROV)'";
954  $sql .= ", ".($user->id > 0 ? ((int) $user->id) : "null");
955  $sql .= ", '".$this->db->escape($this->note_private)."'";
956  $sql .= ", '".$this->db->escape($this->note_public)."'";
957  $sql .= ", '".$this->db->escape($this->model_pdf)."'";
958  $sql .= ", ".($this->cond_reglement_id > 0 ? ((int) $this->cond_reglement_id) : 'NULL');
959  $sql .= ", ".($this->mode_reglement_id > 0 ? ((int) $this->mode_reglement_id) : 'NULL');
960  $sql .= ", ".($this->fk_account > 0 ? ((int) $this->fk_account) : 'NULL');
961  $sql .= ", ".($delivery_date ? "'".$this->db->idate($delivery_date)."'" : "null");
962  $sql .= ", ".($this->shipping_method_id > 0 ? ((int) $this->shipping_method_id) : 'NULL');
963  $sql .= ", ".($this->fk_project > 0 ? ((int) $this->fk_project) : "null");
964  $sql .= ", ".((int) $conf->entity);
965  $sql .= ", ".((int) $this->fk_multicurrency);
966  $sql .= ", '".$this->db->escape($this->multicurrency_code)."'";
967  $sql .= ", ".((double) $this->multicurrency_tx);
968  $sql .= ")";
969 
970  dol_syslog(get_class($this)."::create", LOG_DEBUG);
971  $resql = $this->db->query($sql);
972  if ($resql) {
973  $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX."supplier_proposal");
974 
975  if ($this->id) {
976  $this->ref = '(PROV'.$this->id.')';
977  $sql = 'UPDATE '.MAIN_DB_PREFIX."supplier_proposal SET ref='".$this->db->escape($this->ref)."' WHERE rowid=".((int) $this->id);
978 
979  dol_syslog(get_class($this)."::create", LOG_DEBUG);
980  $resql = $this->db->query($sql);
981  if (!$resql) {
982  $error++;
983  }
984 
985  if (!empty($this->linkedObjectsIds) && empty($this->linked_objects)) { // To use new linkedObjectsIds instead of old linked_objects
986  $this->linked_objects = $this->linkedObjectsIds; // TODO Replace linked_objects with linkedObjectsIds
987  }
988 
989  // Add object linked
990  if (!$error && $this->id && !empty($this->linked_objects) && is_array($this->linked_objects)) {
991  foreach ($this->linked_objects as $origin => $tmp_origin_id) {
992  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, ...))
993  foreach ($tmp_origin_id as $origin_id) {
994  $ret = $this->add_object_linked($origin, $origin_id);
995  if (!$ret) {
996  dol_print_error($this->db);
997  $error++;
998  }
999  }
1000  }
1001  }
1002  }
1003 
1004  /*
1005  * Insertion du detail des produits dans la base
1006  */
1007  if (!$error) {
1008  $fk_parent_line = 0;
1009  $num = count($this->lines);
1010 
1011  for ($i = 0; $i < $num; $i++) {
1012  // Reset fk_parent_line for no child products and special product
1013  if (($this->lines[$i]->product_type != 9 && empty($this->lines[$i]->fk_parent_line)) || $this->lines[$i]->product_type == 9) {
1014  $fk_parent_line = 0;
1015  }
1016 
1017  $result = $this->addline(
1018  $this->lines[$i]->desc,
1019  $this->lines[$i]->subprice,
1020  $this->lines[$i]->qty,
1021  $this->lines[$i]->tva_tx,
1022  $this->lines[$i]->localtax1_tx,
1023  $this->lines[$i]->localtax2_tx,
1024  $this->lines[$i]->fk_product,
1025  $this->lines[$i]->remise_percent,
1026  'HT',
1027  0,
1028  0,
1029  $this->lines[$i]->product_type,
1030  $this->lines[$i]->rang,
1031  $this->lines[$i]->special_code,
1032  $fk_parent_line,
1033  $this->lines[$i]->fk_fournprice,
1034  $this->lines[$i]->pa_ht,
1035  empty($this->lines[$i]->label) ? '' : $this->lines[$i]->label, // deprecated
1036  $this->lines[$i]->array_options,
1037  $this->lines[$i]->ref_fourn,
1038  $this->lines[$i]->fk_unit,
1039  'supplier_proposal',
1040  $this->lines[$i]->rowid
1041  );
1042 
1043  if ($result < 0) {
1044  $error++;
1045  $this->error = $this->db->error;
1046  dol_print_error($this->db);
1047  break;
1048  }
1049  // Defined the new fk_parent_line
1050  if ($result > 0 && $this->lines[$i]->product_type == 9) {
1051  $fk_parent_line = $result;
1052  }
1053  }
1054  }
1055 
1056  if (!$error) {
1057  // Mise a jour infos denormalisees
1058  $resql = $this->update_price(1);
1059  if ($resql) {
1060  $action = 'update';
1061 
1062  // Actions on extra fields
1063  if (!$error) {
1064  $result = $this->insertExtraFields();
1065  if ($result < 0) {
1066  $error++;
1067  }
1068  }
1069 
1070  if (!$error && !$notrigger) {
1071  // Call trigger
1072  $result = $this->call_trigger('PROPOSAL_SUPPLIER_CREATE', $user);
1073  if ($result < 0) {
1074  $error++;
1075  }
1076  // End call triggers
1077  }
1078  } else {
1079  $this->error = $this->db->lasterror();
1080  $error++;
1081  }
1082  }
1083  } else {
1084  $this->error = $this->db->lasterror();
1085  $error++;
1086  }
1087 
1088  if (!$error) {
1089  $this->db->commit();
1090  dol_syslog(get_class($this)."::create done id=".$this->id);
1091  return $this->id;
1092  } else {
1093  $this->db->rollback();
1094  return -2;
1095  }
1096  } else {
1097  $this->error = $this->db->lasterror();
1098  $this->db->rollback();
1099  return -1;
1100  }
1101  }
1102 
1110  public function createFromClone(User $user, $fromid = 0)
1111  {
1112  global $conf, $hookmanager;
1113 
1114  $error = 0;
1115  $now = dol_now();
1116 
1117  $this->db->begin();
1118 
1119  // get extrafields so they will be clone
1120  foreach ($this->lines as $line) {
1121  $line->fetch_optionals();
1122  }
1123 
1124  // Load source object
1125  $objFrom = clone $this;
1126 
1127  $objsoc = new Societe($this->db);
1128 
1129  // Change socid if needed
1130  if (!empty($fromid) && $fromid != $this->socid) {
1131  if ($objsoc->fetch($fromid) > 0) {
1132  $this->socid = $objsoc->id;
1133  $this->cond_reglement_id = (!empty($objsoc->cond_reglement_id) ? $objsoc->cond_reglement_id : 0);
1134  $this->mode_reglement_id = (!empty($objsoc->mode_reglement_id) ? $objsoc->mode_reglement_id : 0);
1135  $this->fk_project = '';
1136  }
1137 
1138  // TODO Change product price if multi-prices
1139  } else {
1140  $objsoc->fetch($this->socid);
1141  }
1142 
1143  $this->id = 0;
1144  $this->statut = 0;
1145 
1146  if (empty($conf->global->SUPPLIER_PROPOSAL_ADDON) || !is_readable(DOL_DOCUMENT_ROOT."/core/modules/supplier_proposal/".$conf->global->SUPPLIER_PROPOSAL_ADDON.".php")) {
1147  $this->error = 'ErrorSetupNotComplete';
1148  return -1;
1149  }
1150 
1151  // Clear fields
1152  $this->user_author = $user->id;
1153  $this->user_valid = '';
1154  $this->date = $now;
1155 
1156  // Set ref
1157  require_once DOL_DOCUMENT_ROOT."/core/modules/supplier_proposal/".$conf->global->SUPPLIER_PROPOSAL_ADDON.'.php';
1158  $obj = $conf->global->SUPPLIER_PROPOSAL_ADDON;
1159  $modSupplierProposal = new $obj;
1160  $this->ref = $modSupplierProposal->getNextValue($objsoc, $this);
1161 
1162  // Create clone
1163  $this->context['createfromclone'] = 'createfromclone';
1164  $result = $this->create($user);
1165  if ($result < 0) {
1166  $error++;
1167  }
1168 
1169  if (!$error) {
1170  // Hook of thirdparty module
1171  if (is_object($hookmanager)) {
1172  $parameters = array('objFrom'=>$objFrom);
1173  $action = '';
1174  $reshook = $hookmanager->executeHooks('createFrom', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
1175  if ($reshook < 0) {
1176  $error++;
1177  }
1178  }
1179  }
1180 
1181  unset($this->context['createfromclone']);
1182 
1183  // End
1184  if (!$error) {
1185  $this->db->commit();
1186  return $this->id;
1187  } else {
1188  $this->db->rollback();
1189  return -1;
1190  }
1191  }
1192 
1200  public function fetch($rowid, $ref = '')
1201  {
1202  global $conf;
1203 
1204  $sql = "SELECT p.rowid, p.entity, p.ref, p.remise, p.remise_percent, p.remise_absolue, p.fk_soc";
1205  $sql .= ", p.total_ttc, p.total_tva, p.localtax1, p.localtax2, p.total_ht";
1206  $sql .= ", p.datec";
1207  $sql .= ", p.date_valid as datev";
1208  $sql .= ", p.date_livraison as delivery_date";
1209  $sql .= ", p.model_pdf, p.extraparams";
1210  $sql .= ", p.note_private, p.note_public";
1211  $sql .= ", p.fk_projet as fk_project, p.fk_statut";
1212  $sql .= ", p.fk_user_author, p.fk_user_valid, p.fk_user_cloture";
1213  $sql .= ", p.fk_cond_reglement";
1214  $sql .= ", p.fk_mode_reglement";
1215  $sql .= ', p.fk_account';
1216  $sql .= ", p.fk_shipping_method";
1217  $sql .= ", p.fk_multicurrency, p.multicurrency_code, p.multicurrency_tx, p.multicurrency_total_ht, p.multicurrency_total_tva, p.multicurrency_total_ttc";
1218  $sql .= ", c.label as statut_label";
1219  $sql .= ", cr.code as cond_reglement_code, cr.libelle as cond_reglement, cr.libelle_facture as cond_reglement_libelle_doc";
1220  $sql .= ", cp.code as mode_reglement_code, cp.libelle as mode_reglement";
1221  $sql .= " FROM ".MAIN_DB_PREFIX."c_propalst as c, ".MAIN_DB_PREFIX."supplier_proposal as p";
1222  $sql .= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_paiement as cp ON p.fk_mode_reglement = cp.id';
1223  $sql .= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_payment_term as cr ON p.fk_cond_reglement = cr.rowid';
1224  $sql .= " WHERE p.fk_statut = c.id";
1225  $sql .= " AND p.entity IN (".getEntity('supplier_proposal').")";
1226  if ($ref) {
1227  $sql .= " AND p.ref = '".$this->db->escape($ref)."'";
1228  } else {
1229  $sql .= " AND p.rowid = ".((int) $rowid);
1230  }
1231 
1232  dol_syslog(get_class($this)."::fetch", LOG_DEBUG);
1233  $resql = $this->db->query($sql);
1234  if ($resql) {
1235  if ($this->db->num_rows($resql)) {
1236  $obj = $this->db->fetch_object($resql);
1237 
1238  $this->id = $obj->rowid;
1239  $this->entity = $obj->entity;
1240 
1241  $this->ref = $obj->ref;
1242  $this->remise = $obj->remise;
1243  $this->remise_percent = $obj->remise_percent;
1244  $this->remise_absolue = $obj->remise_absolue;
1245  $this->total_ht = $obj->total_ht;
1246  $this->total_tva = $obj->total_tva;
1247  $this->total_localtax1 = $obj->localtax1;
1248  $this->total_localtax2 = $obj->localtax2;
1249  $this->total_ttc = $obj->total_ttc;
1250  $this->socid = $obj->fk_soc;
1251  $this->fk_project = $obj->fk_project;
1252  $this->model_pdf = $obj->model_pdf;
1253  $this->modelpdf = $obj->model_pdf; // deprecated
1254  $this->note = $obj->note_private; // TODO deprecated
1255  $this->note_private = $obj->note_private;
1256  $this->note_public = $obj->note_public;
1257  $this->statut = (int) $obj->fk_statut;
1258  $this->statut_libelle = $obj->statut_label;
1259  $this->datec = $this->db->jdate($obj->datec); // TODO deprecated
1260  $this->datev = $this->db->jdate($obj->datev); // TODO deprecated
1261  $this->date_creation = $this->db->jdate($obj->datec); //Creation date
1262  $this->date_validation = $this->db->jdate($obj->datev); //Validation date
1263  $this->date_livraison = $this->db->jdate($obj->delivery_date); // deprecated
1264  $this->delivery_date = $this->db->jdate($obj->delivery_date);
1265  $this->shipping_method_id = ($obj->fk_shipping_method > 0) ? $obj->fk_shipping_method : null;
1266 
1267  $this->mode_reglement_id = $obj->fk_mode_reglement;
1268  $this->mode_reglement_code = $obj->mode_reglement_code;
1269  $this->mode_reglement = $obj->mode_reglement;
1270  $this->fk_account = ($obj->fk_account > 0) ? $obj->fk_account : null;
1271  $this->cond_reglement_id = $obj->fk_cond_reglement;
1272  $this->cond_reglement_code = $obj->cond_reglement_code;
1273  $this->cond_reglement = $obj->cond_reglement;
1274  $this->cond_reglement_doc = $obj->cond_reglement_libelle_doc;
1275 
1276  $this->extraparams = (array) json_decode($obj->extraparams, true);
1277 
1278  $this->user_author_id = $obj->fk_user_author;
1279  $this->user_valid_id = $obj->fk_user_valid;
1280  $this->user_close_id = $obj->fk_user_cloture;
1281 
1282  // Multicurrency
1283  $this->fk_multicurrency = $obj->fk_multicurrency;
1284  $this->multicurrency_code = $obj->multicurrency_code;
1285  $this->multicurrency_tx = $obj->multicurrency_tx;
1286  $this->multicurrency_total_ht = $obj->multicurrency_total_ht;
1287  $this->multicurrency_total_tva = $obj->multicurrency_total_tva;
1288  $this->multicurrency_total_ttc = $obj->multicurrency_total_ttc;
1289 
1290  if ($obj->fk_statut == 0) {
1291  $this->brouillon = 1;
1292  }
1293 
1294  // Retrieve all extrafield
1295  // fetch optionals attributes and labels
1296  $this->fetch_optionals();
1297 
1298  $this->db->free($resql);
1299 
1300  $this->lines = array();
1301 
1302  // Lines of supplier proposals
1303  $sql = "SELECT d.rowid, d.fk_supplier_proposal, d.fk_parent_line, d.label as custom_label, d.description, d.price, d.tva_tx, d.localtax1_tx, d.localtax2_tx, d.qty, d.fk_remise_except, d.remise_percent, d.subprice, d.fk_product,";
1304  $sql .= " d.info_bits, d.total_ht, d.total_tva, d.total_localtax1, d.total_localtax2, d.total_ttc, d.fk_product_fournisseur_price as fk_fournprice, d.buy_price_ht as pa_ht, d.special_code, d.rang, d.product_type,";
1305  $sql .= ' p.ref as product_ref, p.description as product_desc, p.fk_product_type, p.label as product_label,';
1306  $sql .= ' d.ref_fourn as ref_produit_fourn,';
1307  $sql .= ' d.fk_multicurrency, d.multicurrency_code, d.multicurrency_subprice, d.multicurrency_total_ht, d.multicurrency_total_tva, d.multicurrency_total_ttc, d.fk_unit';
1308  $sql .= " FROM ".MAIN_DB_PREFIX."supplier_proposaldet as d";
1309  $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."product as p ON d.fk_product = p.rowid";
1310  $sql .= " WHERE d.fk_supplier_proposal = ".((int) $this->id);
1311  $sql .= " ORDER by d.rang";
1312 
1313  $result = $this->db->query($sql);
1314  if ($result) {
1315  $num = $this->db->num_rows($result);
1316  $i = 0;
1317 
1318  while ($i < $num) {
1319  $objp = $this->db->fetch_object($result);
1320 
1321  $line = new SupplierProposalLine($this->db);
1322 
1323  $line->rowid = $objp->rowid; // deprecated
1324  $line->id = $objp->rowid;
1325  $line->fk_supplier_proposal = $objp->fk_supplier_proposal;
1326  $line->fk_parent_line = $objp->fk_parent_line;
1327  $line->product_type = $objp->product_type;
1328  $line->label = $objp->custom_label;
1329  $line->desc = $objp->description; // Description ligne
1330  $line->qty = $objp->qty;
1331  $line->tva_tx = $objp->tva_tx;
1332  $line->localtax1_tx = $objp->localtax1_tx;
1333  $line->localtax2_tx = $objp->localtax2_tx;
1334  $line->subprice = $objp->subprice;
1335  $line->fk_remise_except = $objp->fk_remise_except;
1336  $line->remise_percent = $objp->remise_percent;
1337 
1338  $line->info_bits = $objp->info_bits;
1339  $line->total_ht = $objp->total_ht;
1340  $line->total_tva = $objp->total_tva;
1341  $line->total_localtax1 = $objp->total_localtax1;
1342  $line->total_localtax2 = $objp->total_localtax2;
1343  $line->total_ttc = $objp->total_ttc;
1344  $line->fk_fournprice = $objp->fk_fournprice;
1345  $marginInfos = getMarginInfos($objp->subprice, $objp->remise_percent, $objp->tva_tx, $objp->localtax1_tx, $objp->localtax2_tx, $line->fk_fournprice, $objp->pa_ht);
1346  $line->pa_ht = $marginInfos[0];
1347  $line->marge_tx = $marginInfos[1];
1348  $line->marque_tx = $marginInfos[2];
1349  $line->special_code = $objp->special_code;
1350  $line->rang = $objp->rang;
1351 
1352  $line->fk_product = $objp->fk_product;
1353 
1354  $line->ref = $objp->product_ref; // deprecated
1355  $line->product_ref = $objp->product_ref;
1356  $line->libelle = $objp->product_label; // deprecated
1357  $line->product_label = $objp->product_label;
1358  $line->product_desc = $objp->product_desc; // Description produit
1359  $line->fk_product_type = $objp->fk_product_type;
1360 
1361  $line->ref_fourn = $objp->ref_produit_fourn;
1362 
1363  // Multicurrency
1364  $line->fk_multicurrency = $objp->fk_multicurrency;
1365  $line->multicurrency_code = $objp->multicurrency_code;
1366  $line->multicurrency_subprice = $objp->multicurrency_subprice;
1367  $line->multicurrency_total_ht = $objp->multicurrency_total_ht;
1368  $line->multicurrency_total_tva = $objp->multicurrency_total_tva;
1369  $line->multicurrency_total_ttc = $objp->multicurrency_total_ttc;
1370  $line->fk_unit = $objp->fk_unit;
1371 
1372  $this->lines[$i] = $line;
1373 
1374  $i++;
1375  }
1376  $this->db->free($result);
1377  } else {
1378  $this->error = $this->db->error();
1379  return -1;
1380  }
1381 
1382  // Retrieve all extrafield
1383  // fetch optionals attributes and labels
1384  $this->fetch_optionals();
1385 
1386  return 1;
1387  }
1388 
1389  $this->error = "Record Not Found";
1390  return 0;
1391  } else {
1392  $this->error = $this->db->error();
1393  return -1;
1394  }
1395  }
1396 
1404  public function valid($user, $notrigger = 0)
1405  {
1406  require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
1407 
1408  global $conf, $langs;
1409 
1410  $error = 0;
1411  $now = dol_now();
1412 
1413  if ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->supplier_proposal->creer))
1414  || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->supplier_proposal->validate_advance))) {
1415  $this->db->begin();
1416 
1417  // Numbering module definition
1418  $soc = new Societe($this->db);
1419  $result = $soc->fetch($this->socid);
1420 
1421  if ($result < 0) {
1422  return -1;
1423  }
1424 
1425  // Define new ref
1426  if (preg_match('/^[\(]?PROV/i', $this->ref) || empty($this->ref)) { // empty should not happened, but when it occurs, the test save life
1427  $num = $this->getNextNumRef($soc);
1428  } else {
1429  $num = $this->ref;
1430  }
1431  $this->newref = dol_sanitizeFileName($num);
1432 
1433  $sql = "UPDATE ".MAIN_DB_PREFIX."supplier_proposal";
1434  $sql .= " SET ref = '".$this->db->escape($num)."',";
1435  $sql .= " fk_statut = 1, date_valid='".$this->db->idate($now)."', fk_user_valid=".((int) $user->id);
1436  $sql .= " WHERE rowid = ".((int) $this->id)." AND fk_statut = 0";
1437 
1438  dol_syslog(get_class($this)."::valid", LOG_DEBUG);
1439  $resql = $this->db->query($sql);
1440  if (!$resql) {
1441  dol_print_error($this->db);
1442  $error++;
1443  }
1444 
1445  // Trigger calls
1446  if (!$error && !$notrigger) {
1447  // Call trigger
1448  $result = $this->call_trigger('PROPOSAL_SUPPLIER_VALIDATE', $user);
1449  if ($result < 0) {
1450  $error++;
1451  }
1452  // End call triggers
1453  }
1454 
1455  if (!$error) {
1456  $this->oldref = $this->ref;
1457 
1458  // Rename directory if dir was a temporary ref
1459  if (preg_match('/^[\(]?PROV/i', $this->ref)) {
1460  // Now we rename also files into index
1461  $sql = 'UPDATE '.MAIN_DB_PREFIX."ecm_files set filename = CONCAT('".$this->db->escape($this->newref)."', SUBSTR(filename, ".(strlen($this->ref) + 1).")), filepath = 'supplier_proposal/".$this->db->escape($this->newref)."'";
1462  $sql .= " WHERE filename LIKE '".$this->db->escape($this->ref)."%' AND filepath = 'supplier_proposal/".$this->db->escape($this->ref)."' and entity = ".$conf->entity;
1463  $resql = $this->db->query($sql);
1464  if (!$resql) {
1465  $error++; $this->error = $this->db->lasterror();
1466  }
1467 
1468  // We rename directory ($this->ref = old ref, $num = new ref) in order not to lose the attachments
1469  $oldref = dol_sanitizeFileName($this->ref);
1470  $newref = dol_sanitizeFileName($num);
1471  $dirsource = $conf->supplier_proposal->dir_output.'/'.$oldref;
1472  $dirdest = $conf->supplier_proposal->dir_output.'/'.$newref;
1473  if (!$error && file_exists($dirsource)) {
1474  dol_syslog(get_class($this)."::valid rename dir ".$dirsource." into ".$dirdest);
1475  if (@rename($dirsource, $dirdest)) {
1476  dol_syslog("Rename ok");
1477  // Rename docs starting with $oldref with $newref
1478  $listoffiles = dol_dir_list($conf->supplier_proposal->dir_output.'/'.$newref, 'files', 1, '^'.preg_quote($oldref, '/'));
1479  foreach ($listoffiles as $fileentry) {
1480  $dirsource = $fileentry['name'];
1481  $dirdest = preg_replace('/^'.preg_quote($oldref, '/').'/', $newref, $dirsource);
1482  $dirsource = $fileentry['path'].'/'.$dirsource;
1483  $dirdest = $fileentry['path'].'/'.$dirdest;
1484  @rename($dirsource, $dirdest);
1485  }
1486  }
1487  }
1488  }
1489 
1490  $this->ref = $num;
1491  $this->brouillon = 0;
1492  $this->statut = 1;
1493  $this->user_valid_id = $user->id;
1494  $this->datev = $now;
1495 
1496  $this->db->commit();
1497  return 1;
1498  } else {
1499  $this->db->rollback();
1500  return -1;
1501  }
1502  } else {
1503  dol_syslog("You don't have permission to validate supplier proposal", LOG_WARNING);
1504  return -2;
1505  }
1506  }
1507 
1508  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1517  public function set_date_livraison($user, $delivery_date)
1518  {
1519  // phpcs:enable
1520  return $this->setDeliveryDate($user, $delivery_date);
1521  }
1522 
1530  public function setDeliveryDate($user, $delivery_date)
1531  {
1532  if (!empty($user->rights->supplier_proposal->creer)) {
1533  $sql = "UPDATE ".MAIN_DB_PREFIX."supplier_proposal ";
1534  $sql .= " SET date_livraison = ".($delivery_date != '' ? "'".$this->db->idate($delivery_date)."'" : 'null');
1535  $sql .= " WHERE rowid = ".((int) $this->id);
1536 
1537  if ($this->db->query($sql)) {
1538  $this->date_livraison = $delivery_date;
1539  $this->delivery_date = $delivery_date;
1540  return 1;
1541  } else {
1542  $this->error = $this->db->error();
1543  dol_syslog(get_class($this)."::setDeliveryDate Erreur SQL");
1544  return -1;
1545  }
1546  }
1547  return 0;
1548  }
1549 
1550  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1558  public function set_remise_percent($user, $remise)
1559  {
1560  // phpcs:enable
1561  $remise = trim($remise) ?trim($remise) : 0;
1562 
1563  if (!empty($user->rights->supplier_proposal->creer)) {
1564  $remise = price2num($remise, 2);
1565 
1566  $sql = "UPDATE ".MAIN_DB_PREFIX."supplier_proposal SET remise_percent = ".((float) $remise);
1567  $sql .= " WHERE rowid = ".((int) $this->id)." AND fk_statut = 0";
1568 
1569  if ($this->db->query($sql)) {
1570  $this->remise_percent = ((float) $remise);
1571  $this->update_price(1);
1572  return 1;
1573  } else {
1574  $this->error = $this->db->error();
1575  return -1;
1576  }
1577  }
1578  return 0;
1579  }
1580 
1581 
1582  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1590  public function set_remise_absolue($user, $remise)
1591  {
1592  // phpcs:enable
1593  if (empty($remise)) {
1594  $remise = 0;
1595  }
1596 
1597  $remise = price2num($remise);
1598 
1599  if (!empty($user->rights->supplier_proposal->creer)) {
1600  $sql = "UPDATE ".MAIN_DB_PREFIX."supplier_proposal ";
1601  $sql .= " SET remise_absolue = ".((float) $remise);
1602  $sql .= " WHERE rowid = ".((int) $this->id)." AND fk_statut = 0";
1603 
1604  if ($this->db->query($sql)) {
1605  $this->remise_absolue = $remise;
1606  $this->update_price(1);
1607  return 1;
1608  } else {
1609  $this->error = $this->db->error();
1610  return -1;
1611  }
1612  }
1613  return 0;
1614  }
1615 
1616 
1617 
1627  public function reopen($user, $statut, $note = '', $notrigger = 0)
1628  {
1629  global $langs, $conf;
1630 
1631  $this->statut = $statut;
1632  $error = 0;
1633 
1634  $sql = "UPDATE ".MAIN_DB_PREFIX."supplier_proposal";
1635  $sql .= " SET fk_statut = ".((int) $this->statut).",";
1636  if (!empty($note)) {
1637  $sql .= " note_private = '".$this->db->escape($note)."',";
1638  }
1639  $sql .= " date_cloture=NULL, fk_user_cloture=NULL";
1640  $sql .= " WHERE rowid = ".((int) $this->id);
1641 
1642  $this->db->begin();
1643 
1644  dol_syslog(get_class($this)."::reopen", LOG_DEBUG);
1645  $resql = $this->db->query($sql);
1646  if (!$resql) {
1647  $error++; $this->errors[] = "Error ".$this->db->lasterror();
1648  }
1649  if (!$error) {
1650  if (!$notrigger) {
1651  // Call trigger
1652  $result = $this->call_trigger('PROPOSAL_SUPPLIER_REOPEN', $user);
1653  if ($result < 0) {
1654  $error++;
1655  }
1656  // End call triggers
1657  }
1658  }
1659 
1660  // Commit or rollback
1661  if ($error) {
1662  if (!empty($this->errors)) {
1663  foreach ($this->errors as $errmsg) {
1664  dol_syslog(get_class($this)."::update ".$errmsg, LOG_ERR);
1665  $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
1666  }
1667  }
1668  $this->db->rollback();
1669  return -1 * $error;
1670  } else {
1671  $this->db->commit();
1672  return 1;
1673  }
1674  }
1675 
1676 
1685  public function cloture($user, $status, $note)
1686  {
1687  global $langs, $conf;
1688  $hidedetails = 0;
1689  $hidedesc = 0;
1690  $hideref = 0;
1691  $this->statut = $status;
1692  $error = 0;
1693  $now = dol_now();
1694 
1695  $this->db->begin();
1696 
1697  $sql = "UPDATE ".MAIN_DB_PREFIX."supplier_proposal";
1698  $sql .= " SET fk_statut = ".((int) $status).", note_private = '".$this->db->escape($note)."', date_cloture='".$this->db->idate($now)."', fk_user_cloture=".$user->id;
1699  $sql .= " WHERE rowid = ".((int) $this->id);
1700 
1701  $resql = $this->db->query($sql);
1702  if ($resql) {
1703  $modelpdf = $conf->global->SUPPLIER_PROPOSAL_ADDON_PDF_ODT_CLOSED ? $conf->global->SUPPLIER_PROPOSAL_ADDON_PDF_ODT_CLOSED : (empty($this->model_pdf) ? '' : $this->model_pdf);
1704  $triggerName = 'PROPOSAL_SUPPLIER_CLOSE_REFUSED';
1705 
1706  if ($status == 2) {
1707  $triggerName = 'PROPOSAL_SUPPLIER_CLOSE_SIGNED';
1708  $modelpdf = $conf->global->SUPPLIER_PROPOSAL_ADDON_PDF_ODT_TOBILL ? $conf->global->SUPPLIER_PROPOSAL_ADDON_PDF_ODT_TOBILL : (empty($this->model_pdf) ? '' : $this->model_pdf);
1709 
1710  if (!empty($conf->global->SUPPLIER_PROPOSAL_UPDATE_PRICE_ON_SUPPlIER_PROPOSAL)) { // TODO This option was not tested correctly. Error if product ref does not exists
1711  $result = $this->updateOrCreatePriceFournisseur($user);
1712  }
1713  }
1714  if ($status == 4) {
1715  $triggerName = 'PROPOSAL_SUPPLIER_CLASSIFY_BILLED';
1716  }
1717 
1718  if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE)) {
1719  // Define output language
1720  $outputlangs = $langs;
1721  if (!empty($conf->global->MAIN_MULTILANGS)) {
1722  $outputlangs = new Translate("", $conf);
1723  $newlang = (GETPOST('lang_id', 'aZ09') ? GETPOST('lang_id', 'aZ09') : $this->thirdparty->default_lang);
1724  $outputlangs->setDefaultLang($newlang);
1725  }
1726  //$ret=$object->fetch($id); // Reload to get new records
1727  $this->generateDocument($modelpdf, $outputlangs, $hidedetails, $hidedesc, $hideref);
1728  }
1729 
1730  // Call trigger
1731  $result = $this->call_trigger($triggerName, $user);
1732  if ($result < 0) {
1733  $error++;
1734  }
1735  // End call triggers
1736 
1737  if (!$error) {
1738  $this->db->commit();
1739  return 1;
1740  } else {
1741  $this->db->rollback();
1742  return -1;
1743  }
1744  } else {
1745  $this->error = $this->db->lasterror();
1746  $this->errors[] = $this->db->lasterror();
1747  $this->db->rollback();
1748  return -1;
1749  }
1750  }
1751 
1758  public function updateOrCreatePriceFournisseur($user)
1759  {
1760  global $conf;
1761 
1762  dol_syslog(get_class($this)."::updateOrCreatePriceFournisseur", LOG_DEBUG);
1763  foreach ($this->lines as $product) {
1764  if ($product->subprice <= 0) {
1765  continue;
1766  }
1767  $productsupplier = new ProductFournisseur($this->db);
1768 
1769  $multicurrency_tx = 1;
1770  $fk_multicurrency = 0;
1771 
1772  if (empty($this->thirdparty)) {
1773  $this->fetch_thirdparty();
1774  }
1775 
1776  $ref_fourn = $product->ref_fourn;
1777  if (empty($ref_fourn)) {
1778  $ref_fourn = $product->ref_supplier;
1779  }
1780  if (!empty($conf->multicurrency->enabled) && !empty($product->multicurrency_code)) {
1781  list($fk_multicurrency, $multicurrency_tx) = MultiCurrency::getIdAndTxFromCode($this->db, $product->multicurrency_code);
1782  }
1783  $productsupplier->id = $product->fk_product;
1784 
1785  $productsupplier->update_buyprice($product->qty, $product->total_ht, $user, 'HT', $this->thirdparty, '', $ref_fourn, $product->tva_tx, 0, 0, 0, $product->info_bits, '', '', array(), '', $product->multicurrency_total_ht, 'HT', $multicurrency_tx, $product->multicurrency_code, '', '', '');
1786  }
1787 
1788  return 1;
1789  }
1790 
1799  public function updatePriceFournisseur($idProductFournPrice, $product, $user)
1800  {
1801  $price = price2num($product->subprice * $product->qty, 'MU');
1802  $unitPrice = price2num($product->subprice, 'MU');
1803 
1804  $sql = 'UPDATE '.MAIN_DB_PREFIX.'product_fournisseur_price SET '.(!empty($product->ref_fourn) ? 'ref_fourn = "'.$this->db->escape($product->ref_fourn).'", ' : '').' price ='.((float) $price).', unitprice ='.((float) $unitPrice).' WHERE rowid = '.((int) $idProductFournPrice);
1805 
1806  $resql = $this->db->query($sql);
1807  if (!$resql) {
1808  $this->error = $this->db->error();
1809  $this->db->rollback();
1810  return -1;
1811  }
1812  return 1;
1813  }
1814 
1822  public function createPriceFournisseur($product, $user)
1823  {
1824  global $conf;
1825 
1826  $price = price2num($product->subprice * $product->qty, 'MU');
1827  $qty = price2num($product->qty);
1828  $unitPrice = price2num($product->subprice, 'MU');
1829 
1830  $now = dol_now();
1831 
1832  $values = array(
1833  "'".$this->db->idate($now)."'",
1834  $product->fk_product,
1835  $this->thirdparty->id,
1836  "'".$product->ref_fourn."'",
1837  $price,
1838  $qty,
1839  $unitPrice,
1840  $product->tva_tx,
1841  $user->id
1842  );
1843  if (!empty($conf->multicurrency->enabled)) {
1844  if (!empty($product->multicurrency_code)) {
1845  include_once DOL_DOCUMENT_ROOT.'/multicurrency/class/multicurrency.class.php';
1846  $multicurrency = new MultiCurrency($this->db); //need to fetch because empty fk_multicurrency and rate
1847  $multicurrency->fetch(0, $product->multicurrency_code);
1848  if (!empty($multicurrency->id)) {
1849  $values[] = $multicurrency->id;
1850  $values[] = "'".$product->multicurrency_code."'";
1851  $values[] = $product->multicurrency_subprice;
1852  $values[] = $product->multicurrency_total_ht;
1853  $values[] = $multicurrency->rate->rate;
1854  } else {
1855  for ($i = 0; $i < 5; $i++) {
1856  $values[] = 'NULL';
1857  }
1858  }
1859  }
1860  }
1861 
1862  $sql = 'INSERT INTO '.MAIN_DB_PREFIX.'product_fournisseur_price ';
1863  $sql .= '(datec, fk_product, fk_soc, ref_fourn, price, quantity, unitprice, tva_tx, fk_user';
1864  if (!empty($conf->multicurrency->enabled) && !empty($product->multicurrency_code)) {
1865  $sql .= ',fk_multicurrency, multicurrency_code, multicurrency_unitprice, multicurrency_price, multicurrency_tx';
1866  }
1867  $sql .= ') VALUES ('.implode(',', $values).')';
1868 
1869  $resql = $this->db->query($sql);
1870  if (!$resql) {
1871  $this->error = $this->db->error();
1872  $this->db->rollback();
1873  return -1;
1874  }
1875  return 1;
1876  }
1877 
1878  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1885  public function setDraft($user)
1886  {
1887  // phpcs:enable
1888  global $conf, $langs;
1889 
1890  $error = 0;
1891 
1892  if ($this->statut == self::STATUS_DRAFT) {
1893  dol_syslog(get_class($this)."::setDraft already draft status", LOG_WARNING);
1894  return 0;
1895  }
1896 
1897  $sql = "UPDATE ".MAIN_DB_PREFIX."supplier_proposal";
1898  $sql .= " SET fk_statut = ".self::STATUS_DRAFT;
1899  $sql .= " WHERE rowid = ".((int) $this->id);
1900 
1901  if ($this->db->query($sql)) {
1902  if (!$error) {
1903  $this->oldcopy = clone $this;
1904  }
1905 
1906  if (!$error) {
1907  // Call trigger
1908  $result = $this->call_trigger('PROPOSAL_SUPPLIER_UNVALIDATE', $user);
1909  if ($result < 0) {
1910  $error++;
1911  }
1912  }
1913 
1914  if (!$error) {
1915  $this->statut = self::STATUS_DRAFT;
1916  $this->brouillon = 1;
1917  $this->db->commit();
1918  return 1;
1919  } else {
1920  $this->db->rollback();
1921  return -1;
1922  }
1923  } else {
1924  return -1;
1925  }
1926  }
1927 
1928 
1929  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1943  public function liste_array($shortlist = 0, $draft = 0, $notcurrentuser = 0, $socid = 0, $limit = 0, $offset = 0, $sortfield = 'p.datec', $sortorder = 'DESC')
1944  {
1945  // phpcs:enable
1946  global $conf, $user;
1947 
1948  $ga = array();
1949 
1950  $sql = "SELECT s.rowid, s.nom as name, s.client,";
1951  $sql .= " p.rowid as supplier_proposalid, p.fk_statut, p.total_ht, p.ref, p.remise, ";
1952  $sql .= " p.datep as dp, p.fin_validite as datelimite";
1953  if (empty($user->rights->societe->client->voir) && !$socid) {
1954  $sql .= ", sc.fk_soc, sc.fk_user";
1955  }
1956  $sql .= " FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."supplier_proposal as p, ".MAIN_DB_PREFIX."c_propalst as c";
1957  if (empty($user->rights->societe->client->voir) && !$socid) {
1958  $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
1959  }
1960  $sql .= " WHERE p.entity IN (".getEntity('supplier_proposal').")";
1961  $sql .= " AND p.fk_soc = s.rowid";
1962  $sql .= " AND p.fk_statut = c.id";
1963  if (empty($user->rights->societe->client->voir) && !$socid) { //restriction
1964  $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
1965  }
1966  if ($socid) {
1967  $sql .= " AND s.rowid = ".((int) $socid);
1968  }
1969  if ($draft) {
1970  $sql .= " AND p.fk_statut = 0";
1971  }
1972  if ($notcurrentuser > 0) {
1973  $sql .= " AND p.fk_user_author <> ".$user->id;
1974  }
1975  $sql .= $this->db->order($sortfield, $sortorder);
1976  $sql .= $this->db->plimit($limit, $offset);
1977 
1978  $result = $this->db->query($sql);
1979  if ($result) {
1980  $num = $this->db->num_rows($result);
1981  if ($num) {
1982  $i = 0;
1983  while ($i < $num) {
1984  $obj = $this->db->fetch_object($result);
1985 
1986  if ($shortlist == 1) {
1987  $ga[$obj->supplier_proposalid] = $obj->ref;
1988  } elseif ($shortlist == 2) {
1989  $ga[$obj->supplier_proposalid] = $obj->ref.' ('.$obj->name.')';
1990  } else {
1991  $ga[$i]['id'] = $obj->supplier_proposalid;
1992  $ga[$i]['ref'] = $obj->ref;
1993  $ga[$i]['name'] = $obj->name;
1994  }
1995 
1996  $i++;
1997  }
1998  }
1999  return $ga;
2000  } else {
2001  dol_print_error($this->db);
2002  return -1;
2003  }
2004  }
2005 
2013  public function delete($user, $notrigger = 0)
2014  {
2015  global $conf, $langs;
2016  require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
2017 
2018  $error = 0;
2019 
2020  $this->db->begin();
2021 
2022  if (!$notrigger) {
2023  // Call trigger
2024  $result = $this->call_trigger('PROPOSAL_SUPPLIER_DELETE', $user);
2025  if ($result < 0) {
2026  $error++;
2027  }
2028  // End call triggers
2029  }
2030 
2031  if (!$error) {
2032  $main = MAIN_DB_PREFIX.'supplier_proposaldet';
2033  $ef = $main."_extrafields";
2034  $sqlef = "DELETE FROM $ef WHERE fk_object IN (SELECT rowid FROM $main WHERE fk_supplier_proposal = ".((int) $this->id).")";
2035  $sql = "DELETE FROM ".MAIN_DB_PREFIX."supplier_proposaldet WHERE fk_supplier_proposal = ".((int) $this->id);
2036  if ($this->db->query($sql)) {
2037  $sql = "DELETE FROM ".MAIN_DB_PREFIX."supplier_proposal WHERE rowid = ".((int) $this->id);
2038  if ($this->db->query($sqlef) && $this->db->query($sql)) {
2039  // Delete linked object
2040  $res = $this->deleteObjectLinked();
2041  if ($res < 0) {
2042  $error++;
2043  }
2044 
2045  if (!$error) {
2046  // Delete record into ECM index (Note that delete is also done when deleting files with the dol_delete_dir_recursive
2047  $this->deleteEcmFiles();
2048 
2049  // We remove directory
2050  $ref = dol_sanitizeFileName($this->ref);
2051  if ($conf->supplier_proposal->dir_output && !empty($this->ref)) {
2052  $dir = $conf->supplier_proposal->dir_output."/".$ref;
2053  $file = $dir."/".$ref.".pdf";
2054  if (file_exists($file)) {
2055  dol_delete_preview($this);
2056 
2057  if (!dol_delete_file($file, 0, 0, 0, $this)) { // For triggers
2058  $this->error = 'ErrorFailToDeleteFile';
2059  $this->errors = array('ErrorFailToDeleteFile');
2060  $this->db->rollback();
2061  return 0;
2062  }
2063  }
2064  if (file_exists($dir)) {
2065  $res = @dol_delete_dir_recursive($dir);
2066  if (!$res) {
2067  $this->error = 'ErrorFailToDeleteDir';
2068  $this->errors = array('ErrorFailToDeleteDir');
2069  $this->db->rollback();
2070  return 0;
2071  }
2072  }
2073  }
2074  }
2075 
2076  // Removed extrafields
2077  if (!$error) {
2078  $result = $this->deleteExtraFields();
2079  if ($result < 0) {
2080  $error++;
2081  $errorflag = -4;
2082  dol_syslog(get_class($this)."::delete erreur ".$errorflag." ".$this->error, LOG_ERR);
2083  }
2084  }
2085 
2086  if (!$error) {
2087  dol_syslog(get_class($this)."::delete ".$this->id." by ".$user->id, LOG_DEBUG);
2088  $this->db->commit();
2089  return 1;
2090  } else {
2091  $this->error = $this->db->lasterror();
2092  $this->db->rollback();
2093  return 0;
2094  }
2095  } else {
2096  $this->error = $this->db->lasterror();
2097  $this->db->rollback();
2098  return -3;
2099  }
2100  } else {
2101  $this->error = $this->db->lasterror();
2102  $this->db->rollback();
2103  return -2;
2104  }
2105  } else {
2106  $this->db->rollback();
2107  return -1;
2108  }
2109  }
2110 
2117  public function info($id)
2118  {
2119  $sql = "SELECT c.rowid, ";
2120  $sql .= " c.datec, c.date_valid as datev, c.date_cloture as dateo,";
2121  $sql .= " c.fk_user_author, c.fk_user_valid, c.fk_user_cloture";
2122  $sql .= " FROM ".MAIN_DB_PREFIX."supplier_proposal as c";
2123  $sql .= " WHERE c.rowid = ".((int) $id);
2124 
2125  $result = $this->db->query($sql);
2126 
2127  if ($result) {
2128  if ($this->db->num_rows($result)) {
2129  $obj = $this->db->fetch_object($result);
2130 
2131  $this->id = $obj->rowid;
2132 
2133  $this->date_creation = $this->db->jdate($obj->datec);
2134  $this->date_validation = $this->db->jdate($obj->datev);
2135  $this->date_cloture = $this->db->jdate($obj->dateo);
2136 
2137  $cuser = new User($this->db);
2138  $cuser->fetch($obj->fk_user_author);
2139  $this->user_creation = $cuser;
2140 
2141  if ($obj->fk_user_valid) {
2142  $vuser = new User($this->db);
2143  $vuser->fetch($obj->fk_user_valid);
2144  $this->user_validation = $vuser;
2145  }
2146 
2147  if ($obj->fk_user_cloture) {
2148  $cluser = new User($this->db);
2149  $cluser->fetch($obj->fk_user_cloture);
2150  $this->user_cloture = $cluser;
2151  }
2152  }
2153  $this->db->free($result);
2154  } else {
2155  dol_print_error($this->db);
2156  }
2157  }
2158 
2159 
2166  public function getLibStatut($mode = 0)
2167  {
2168  return $this->LibStatut((isset($this->statut) ? $this->statut : $this->status), $mode);
2169  }
2170 
2171  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2179  public function LibStatut($status, $mode = 1)
2180  {
2181  // phpcs:enable
2182 
2183  // Init/load array of translation of status
2184  if (empty($this->labelStatus) || empty($this->labelStatusShort)) {
2185  global $langs;
2186  $langs->load("supplier_proposal");
2187  $this->labelStatus[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv("SupplierProposalStatusDraft");
2188  $this->labelStatus[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv("SupplierProposalStatusValidated");
2189  $this->labelStatus[self::STATUS_SIGNED] = $langs->transnoentitiesnoconv("SupplierProposalStatusSigned");
2190  $this->labelStatus[self::STATUS_NOTSIGNED] = $langs->transnoentitiesnoconv("SupplierProposalStatusNotSigned");
2191  $this->labelStatus[self::STATUS_CLOSE] = $langs->transnoentitiesnoconv("SupplierProposalStatusClosed");
2192  $this->labelStatusShort[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv("SupplierProposalStatusDraftShort");
2193  $this->labelStatusShort[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv("Opened");
2194  $this->labelStatusShort[self::STATUS_SIGNED] = $langs->transnoentitiesnoconv("SupplierProposalStatusSignedShort");
2195  $this->labelStatusShort[self::STATUS_NOTSIGNED] = $langs->transnoentitiesnoconv("SupplierProposalStatusNotSignedShort");
2196  $this->labelStatusShort[self::STATUS_CLOSE] = $langs->transnoentitiesnoconv("SupplierProposalStatusClosedShort");
2197  }
2198 
2199  $statusnew = '';
2200  if ($status == self::STATUS_DRAFT) {
2201  $statusnew = 'status0';
2202  } elseif ($status == self::STATUS_VALIDATED) {
2203  $statusnew = 'status1';
2204  } elseif ($status == self::STATUS_SIGNED) {
2205  $statusnew = 'status4';
2206  } elseif ($status == self::STATUS_NOTSIGNED) {
2207  $statusnew = 'status9';
2208  } elseif ($status == self::STATUS_CLOSE) {
2209  $statusnew = 'status6';
2210  }
2211 
2212  return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status], '', $statusnew, $mode);
2213  }
2214 
2215 
2216  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2224  public function load_board($user, $mode)
2225  {
2226  // phpcs:enable
2227  global $conf, $user, $langs;
2228 
2229  $now = dol_now();
2230 
2231  $this->nbtodo = $this->nbtodolate = 0;
2232  $clause = " WHERE";
2233 
2234  $sql = "SELECT p.rowid, p.ref, p.datec as datec, p.date_cloture as datefin";
2235  $sql .= " FROM ".MAIN_DB_PREFIX."supplier_proposal as p";
2236  if (empty($user->rights->societe->client->voir) && !$user->socid) {
2237  $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe_commerciaux as sc ON p.fk_soc = sc.fk_soc";
2238  $sql .= " WHERE sc.fk_user = ".((int) $user->id);
2239  $clause = " AND";
2240  }
2241  $sql .= $clause." p.entity IN (".getEntity('supplier_proposal').")";
2242  if ($mode == 'opened') {
2243  $sql .= " AND p.fk_statut = 1";
2244  }
2245  if ($mode == 'signed') {
2246  $sql .= " AND p.fk_statut = 2";
2247  }
2248  if ($user->socid) {
2249  $sql .= " AND p.fk_soc = ".((int) $user->socid);
2250  }
2251 
2252  $resql = $this->db->query($sql);
2253  if ($resql) {
2254  $label = $labelShort = '';
2255  $status = '';
2256  if ($mode == 'opened') {
2257  $delay_warning = !empty($conf->supplier_proposal->cloture->warning_delay) ? $conf->supplier_proposal->cloture->warning_delay : 0;
2258  $status = self::STATUS_VALIDATED;
2259  $label = $langs->trans("SupplierProposalsToClose");
2260  $labelShort = $langs->trans("ToAcceptRefuse");
2261  }
2262  if ($mode == 'signed') {
2263  $delay_warning = !empty($conf->supplier_proposal->facturation->warning_delay) ? $conf->supplier_proposal->facturation->warning_delay : 0;
2264  $status = self::STATUS_SIGNED;
2265  $label = $langs->trans("SupplierProposalsToProcess"); // May be billed or ordered
2266  $labelShort = $langs->trans("ToClose");
2267  }
2268 
2269  $response = new WorkboardResponse();
2270  $response->warning_delay = $delay_warning / 60 / 60 / 24;
2271  $response->label = $label;
2272  $response->labelShort = $labelShort;
2273  $response->url = DOL_URL_ROOT.'/supplier_proposal/list.php?search_status='.$status;
2274  $response->img = img_object('', "propal");
2275 
2276  // This assignment in condition is not a bug. It allows walking the results.
2277  while ($obj = $this->db->fetch_object($resql)) {
2278  $response->nbtodo++;
2279  if ($mode == 'opened') {
2280  $datelimit = $this->db->jdate($obj->datefin);
2281  if ($datelimit < ($now - $delay_warning)) {
2282  $response->nbtodolate++;
2283  }
2284  }
2285  // TODO Definir regle des propales a facturer en retard
2286  // if ($mode == 'signed' && ! count($this->FactureListeArray($obj->rowid))) $this->nbtodolate++;
2287  }
2288  return $response;
2289  } else {
2290  $this->error = $this->db->lasterror();
2291  return -1;
2292  }
2293  }
2294 
2295 
2303  public function initAsSpecimen()
2304  {
2305  global $user, $langs, $conf;
2306 
2307  // Load array of products prodids
2308  $num_prods = 0;
2309  $prodids = array();
2310  $sql = "SELECT rowid";
2311  $sql .= " FROM ".MAIN_DB_PREFIX."product";
2312  $sql .= " WHERE entity IN (".getEntity('product').")";
2313  $sql .= $this->db->plimit(100);
2314 
2315  $resql = $this->db->query($sql);
2316  if ($resql) {
2317  $num_prods = $this->db->num_rows($resql);
2318  $i = 0;
2319  while ($i < $num_prods) {
2320  $i++;
2321  $row = $this->db->fetch_row($resql);
2322  $prodids[$i] = $row[0];
2323  }
2324  }
2325 
2326  // Initialise parametres
2327  $this->id = 0;
2328  $this->ref = 'SPECIMEN';
2329  $this->specimen = 1;
2330  $this->socid = 1;
2331  $this->date = time();
2332  $this->cond_reglement_id = 1;
2333  $this->cond_reglement_code = 'RECEP';
2334  $this->mode_reglement_id = 7;
2335  $this->mode_reglement_code = 'CHQ';
2336  $this->note_public = 'This is a comment (public)';
2337  $this->note_private = 'This is a comment (private)';
2338  // Lines
2339  $nbp = 5;
2340  $xnbp = 0;
2341  while ($xnbp < $nbp) {
2342  $line = new SupplierProposalLine($this->db);
2343  $line->desc = $langs->trans("Description")." ".$xnbp;
2344  $line->qty = 1;
2345  $line->subprice = 100;
2346  $line->tva_tx = 19.6;
2347  $line->localtax1_tx = 0;
2348  $line->localtax2_tx = 0;
2349  if ($xnbp == 2) {
2350  $line->total_ht = 50;
2351  $line->total_ttc = 59.8;
2352  $line->total_tva = 9.8;
2353  $line->remise_percent = 50;
2354  } else {
2355  $line->total_ht = 100;
2356  $line->total_ttc = 119.6;
2357  $line->total_tva = 19.6;
2358  $line->remise_percent = 00;
2359  }
2360 
2361  if ($num_prods > 0) {
2362  $prodid = mt_rand(1, $num_prods);
2363  $line->fk_product = $prodids[$prodid];
2364  }
2365 
2366  $this->lines[$xnbp] = $line;
2367 
2368  $this->total_ht += $line->total_ht;
2369  $this->total_tva += $line->total_tva;
2370  $this->total_ttc += $line->total_ttc;
2371 
2372  $xnbp++;
2373  }
2374  }
2375 
2376  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2382  public function load_state_board()
2383  {
2384  // phpcs:enable
2385  global $conf, $user;
2386 
2387  $this->nb = array();
2388  $clause = "WHERE";
2389 
2390  $sql = "SELECT count(p.rowid) as nb";
2391  $sql .= " FROM ".MAIN_DB_PREFIX."supplier_proposal as p";
2392  $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s ON p.fk_soc = s.rowid";
2393  if (empty($user->rights->societe->client->voir) && !$user->socid) {
2394  $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe_commerciaux as sc ON s.rowid = sc.fk_soc";
2395  $sql .= " WHERE sc.fk_user = ".((int) $user->id);
2396  $clause = "AND";
2397  }
2398  $sql .= " ".$clause." p.entity IN (".getEntity('supplier_proposal').")";
2399 
2400  $resql = $this->db->query($sql);
2401  if ($resql) {
2402  // This assignment in condition is not a bug. It allows walking the results.
2403  while ($obj = $this->db->fetch_object($resql)) {
2404  $this->nb["supplier_proposals"] = $obj->nb;
2405  }
2406  $this->db->free($resql);
2407  return 1;
2408  } else {
2409  dol_print_error($this->db);
2410  $this->error = $this->db->lasterror();
2411  return -1;
2412  }
2413  }
2414 
2415 
2423  public function getNextNumRef($soc)
2424  {
2425  global $conf, $db, $langs;
2426  $langs->load("supplier_proposal");
2427 
2428  if (!empty($conf->global->SUPPLIER_PROPOSAL_ADDON)) {
2429  $mybool = false;
2430 
2431  $file = $conf->global->SUPPLIER_PROPOSAL_ADDON.".php";
2432  $classname = $conf->global->SUPPLIER_PROPOSAL_ADDON;
2433 
2434  // Include file with class
2435  $dirmodels = array_merge(array('/'), (array) $conf->modules_parts['models']);
2436  foreach ($dirmodels as $reldir) {
2437  $dir = dol_buildpath($reldir."core/modules/supplier_proposal/");
2438 
2439  // Load file with numbering class (if found)
2440  $mybool |= @include_once $dir.$file;
2441  }
2442 
2443  if (!$mybool) {
2444  dol_print_error('', "Failed to include file ".$file);
2445  return '';
2446  }
2447 
2448  $obj = new $classname();
2449  $numref = "";
2450  $numref = $obj->getNextValue($soc, $this);
2451 
2452  if ($numref != "") {
2453  return $numref;
2454  } else {
2455  $this->error = $obj->error;
2456  return "";
2457  }
2458  } else {
2459  $langs->load("errors");
2460  print $langs->trans("Error")." ".$langs->trans("ErrorModuleSetupNotComplete", $langs->transnoentitiesnoconv("SupplierProposal"));
2461  return "";
2462  }
2463  }
2464 
2476  public function getNomUrl($withpicto = 0, $option = '', $get_params = '', $notooltip = 0, $save_lastsearch_value = -1, $addlinktonotes = 0)
2477  {
2478  global $langs, $conf, $user, $hookmanager;
2479 
2480  if (!empty($conf->dol_no_mouse_hover)) {
2481  $notooltip = 1; // Force disable tooltips
2482  }
2483 
2484  $url = '';
2485  $result = '';
2486 
2487  $label = img_picto('', $this->picto).' <u class="paddingrightonly">'.$langs->trans("SupplierProposal").'</u>';
2488  if (isset($this->status)) {
2489  $label .= ' '.$this->getLibStatut(5);
2490  }
2491  if (!empty($this->ref)) {
2492  $label .= '<br><b>'.$langs->trans('Ref').':</b> '.$this->ref;
2493  }
2494  if (!empty($this->ref_fourn)) {
2495  $label .= '<br><b>'.$langs->trans('RefSupplier').':</b> '.$this->ref_fourn;
2496  }
2497  if (!empty($this->total_ht)) {
2498  $label .= '<br><b>'.$langs->trans('AmountHT').':</b> '.price($this->total_ht, 0, $langs, 0, -1, -1, $conf->currency);
2499  }
2500  if (!empty($this->total_tva)) {
2501  $label .= '<br><b>'.$langs->trans('VAT').':</b> '.price($this->total_tva, 0, $langs, 0, -1, -1, $conf->currency);
2502  }
2503  if (!empty($this->total_ttc)) {
2504  $label .= '<br><b>'.$langs->trans('AmountTTC').':</b> '.price($this->total_ttc, 0, $langs, 0, -1, -1, $conf->currency);
2505  }
2506 
2507  if ($option == '') {
2508  $url = DOL_URL_ROOT.'/supplier_proposal/card.php?id='.$this->id.$get_params;
2509  }
2510  if ($option == 'document') {
2511  $url = DOL_URL_ROOT.'/supplier_proposal/document.php?id='.$this->id.$get_params;
2512  }
2513 
2514  if ($option !== 'nolink') {
2515  // Add param to save lastsearch_values or not
2516  $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
2517  if ($save_lastsearch_value == -1 && preg_match('/list\.php/', $_SERVER["PHP_SELF"])) {
2518  $add_save_lastsearch_values = 1;
2519  }
2520  if ($add_save_lastsearch_values) {
2521  $url .= '&save_lastsearch_values=1';
2522  }
2523  }
2524 
2525  $linkclose = '';
2526  if (empty($notooltip) && $user->rights->propal->lire) {
2527  if (!empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER)) {
2528  $label = $langs->trans("ShowSupplierProposal");
2529  $linkclose .= ' alt="'.dol_escape_htmltag($label, 1).'"';
2530  }
2531  $linkclose .= ' title="'.dol_escape_htmltag($label, 1).'"';
2532  $linkclose .= ' class="classfortooltip"';
2533  }
2534 
2535  $linkstart = '<a href="'.$url.'"';
2536  $linkstart .= $linkclose.'>';
2537  $linkend = '</a>';
2538 
2539  $result .= $linkstart;
2540  if ($withpicto) {
2541  $result .= img_object(($notooltip ? '' : $label), $this->picto, ($notooltip ? (($withpicto != 2) ? 'class="paddingright"' : '') : 'class="'.(($withpicto != 2) ? 'paddingright ' : '').'classfortooltip"'), 0, 0, $notooltip ? 0 : 1);
2542  }
2543  if ($withpicto != 2) {
2544  $result .= $this->ref;
2545  }
2546  $result .= $linkend;
2547 
2548  if ($addlinktonotes) {
2549  $txttoshow = ($user->socid > 0 ? $this->note_public : $this->note_private);
2550  if ($txttoshow) {
2551  $notetoshow = $langs->trans("ViewPrivateNote").':<br>'.dol_string_nohtmltag($txttoshow, 1);
2552  $result .= ' <span class="note inline-block">';
2553  $result .= '<a href="'.DOL_URL_ROOT.'/supplier_proposal/note.php?id='.$this->id.'" class="classfortooltip" title="'.dol_escape_htmltag($notetoshow).'">';
2554  $result .= img_picto('', 'note');
2555  $result .= '</a>';
2556  //$result.=img_picto($langs->trans("ViewNote"),'object_generic');
2557  //$result.='</a>';
2558  $result .= '</span>';
2559  }
2560  }
2561  global $action;
2562  $hookmanager->initHooks(array($this->element . 'dao'));
2563  $parameters = array('id'=>$this->id, 'getnomurl' => &$result);
2564  $reshook = $hookmanager->executeHooks('getNomUrl', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
2565  if ($reshook > 0) {
2566  $result = $hookmanager->resPrint;
2567  } else {
2568  $result .= $hookmanager->resPrint;
2569  }
2570  return $result;
2571  }
2572 
2578  public function getLinesArray()
2579  {
2580  // For other object, here we call fetch_lines. But fetch_lines does not exists on supplier proposal
2581 
2582  $sql = 'SELECT pt.rowid, pt.label as custom_label, pt.description, pt.fk_product, pt.fk_remise_except,';
2583  $sql .= ' pt.qty, pt.tva_tx, pt.remise_percent, pt.subprice, pt.info_bits,';
2584  $sql .= ' pt.total_ht, pt.total_tva, pt.total_ttc, pt.fk_product_fournisseur_price as fk_fournprice, pt.buy_price_ht as pa_ht, pt.special_code, pt.localtax1_tx, pt.localtax2_tx,';
2585  $sql .= ' pt.product_type, pt.rang, pt.fk_parent_line,';
2586  $sql .= ' p.label as product_label, p.ref, p.fk_product_type, p.rowid as prodid,';
2587  $sql .= ' p.description as product_desc, pt.ref_fourn as ref_supplier,';
2588  $sql .= ' pt.fk_multicurrency, pt.multicurrency_code, pt.multicurrency_subprice, pt.multicurrency_total_ht, pt.multicurrency_total_tva, pt.multicurrency_total_ttc, pt.fk_unit';
2589  $sql .= ' FROM '.MAIN_DB_PREFIX.'supplier_proposaldet as pt';
2590  $sql .= ' LEFT JOIN '.MAIN_DB_PREFIX.'product as p ON pt.fk_product=p.rowid';
2591  $sql .= ' WHERE pt.fk_supplier_proposal = '.((int) $this->id);
2592  $sql .= ' ORDER BY pt.rang ASC, pt.rowid';
2593 
2594  dol_syslog(get_class($this).'::getLinesArray', LOG_DEBUG);
2595  $resql = $this->db->query($sql);
2596  if ($resql) {
2597  $num = $this->db->num_rows($resql);
2598  $i = 0;
2599 
2600  while ($i < $num) {
2601  $obj = $this->db->fetch_object($resql);
2602 
2603  $this->lines[$i] = new SupplierProposalLine($this->db);
2604  $this->lines[$i]->id = $obj->rowid; // for backward compatibility
2605  $this->lines[$i]->rowid = $obj->rowid;
2606  $this->lines[$i]->label = $obj->custom_label;
2607  $this->lines[$i]->description = $obj->description;
2608  $this->lines[$i]->fk_product = $obj->fk_product;
2609  $this->lines[$i]->ref = $obj->ref;
2610  $this->lines[$i]->product_label = $obj->product_label;
2611  $this->lines[$i]->product_desc = $obj->product_desc;
2612  $this->lines[$i]->fk_product_type = $obj->fk_product_type; // deprecated
2613  $this->lines[$i]->product_type = $obj->product_type;
2614  $this->lines[$i]->qty = $obj->qty;
2615  $this->lines[$i]->subprice = $obj->subprice;
2616  $this->lines[$i]->fk_remise_except = $obj->fk_remise_except;
2617  $this->lines[$i]->remise_percent = $obj->remise_percent;
2618  $this->lines[$i]->tva_tx = $obj->tva_tx;
2619  $this->lines[$i]->info_bits = $obj->info_bits;
2620  $this->lines[$i]->total_ht = $obj->total_ht;
2621  $this->lines[$i]->total_tva = $obj->total_tva;
2622  $this->lines[$i]->total_ttc = $obj->total_ttc;
2623  $this->lines[$i]->fk_fournprice = $obj->fk_fournprice;
2624  $marginInfos = getMarginInfos($obj->subprice, $obj->remise_percent, $obj->tva_tx, $obj->localtax1_tx, $obj->localtax2_tx, $this->lines[$i]->fk_fournprice, $obj->pa_ht);
2625  $this->lines[$i]->pa_ht = $marginInfos[0];
2626  $this->lines[$i]->marge_tx = $marginInfos[1];
2627  $this->lines[$i]->marque_tx = $marginInfos[2];
2628  $this->lines[$i]->fk_parent_line = $obj->fk_parent_line;
2629  $this->lines[$i]->special_code = $obj->special_code;
2630  $this->lines[$i]->rang = $obj->rang;
2631 
2632  $this->lines[$i]->ref_fourn = $obj->ref_supplier; // deprecated
2633  $this->lines[$i]->ref_supplier = $obj->ref_supplier;
2634 
2635  // Multicurrency
2636  $this->lines[$i]->fk_multicurrency = $obj->fk_multicurrency;
2637  $this->lines[$i]->multicurrency_code = $obj->multicurrency_code;
2638  $this->lines[$i]->multicurrency_subprice = $obj->multicurrency_subprice;
2639  $this->lines[$i]->multicurrency_total_ht = $obj->multicurrency_total_ht;
2640  $this->lines[$i]->multicurrency_total_tva = $obj->multicurrency_total_tva;
2641  $this->lines[$i]->multicurrency_total_ttc = $obj->multicurrency_total_ttc;
2642  $this->lines[$i]->fk_unit = $obj->fk_unit;
2643 
2644  $i++;
2645  }
2646  $this->db->free($resql);
2647 
2648  return 1;
2649  } else {
2650  $this->error = $this->db->error();
2651  return -1;
2652  }
2653  }
2654 
2666  public function generateDocument($modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0, $moreparams = null)
2667  {
2668  global $conf, $langs;
2669 
2670  $langs->load("supplier_proposal");
2671  $outputlangs->load("products");
2672 
2673  if (!dol_strlen($modele)) {
2674  $modele = 'aurore';
2675 
2676  if ($this->model_pdf) {
2677  $modele = $this->model_pdf;
2678  } elseif (!empty($conf->global->SUPPLIER_PROPOSAL_ADDON_PDF)) {
2679  $modele = $conf->global->SUPPLIER_PROPOSAL_ADDON_PDF;
2680  }
2681  }
2682 
2683  $modelpath = "core/modules/supplier_proposal/doc/";
2684 
2685  return $this->commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams);
2686  }
2687 
2688 
2697  public static function replaceThirdparty(DoliDB $db, $origin_id, $dest_id)
2698  {
2699  $tables = array(
2700  'supplier_proposal'
2701  );
2702 
2703  return CommonObject::commonReplaceThirdparty($db, $origin_id, $dest_id, $tables);
2704  }
2705 
2714  public static function replaceProduct(DoliDB $db, $origin_id, $dest_id)
2715  {
2716  $tables = array(
2717  'supplier_proposaldet'
2718  );
2719 
2720  return CommonObject::commonReplaceProduct($db, $origin_id, $dest_id, $tables);
2721  }
2722 }
2723 
2724 
2729 {
2733  public $db;
2734 
2738  public $error = '';
2739 
2743  public $element = 'supplier_proposaldet';
2744 
2748  public $table_element = 'supplier_proposaldet';
2749 
2750  public $oldline;
2751 
2755  public $id;
2756 
2760  public $fk_supplier_proposal;
2761 
2765  public $fk_parent_line;
2766 
2767  public $desc; // Description ligne
2768 
2772  public $fk_product; // Id produit predefini
2773 
2784  public $product_type = Product::TYPE_PRODUCT;
2785 
2786  public $qty;
2787  public $tva_tx;
2788  public $vat_src_code;
2789 
2790  public $subprice;
2791  public $remise_percent;
2792 
2796  public $fk_remise_except;
2797 
2798  public $rang = 0;
2799 
2803  public $fk_fournprice;
2804 
2805  public $pa_ht;
2806  public $marge_tx;
2807  public $marque_tx;
2808 
2809  public $special_code; // Tag for special lines (exlusive tags)
2810  // 1: frais de port
2811  // 2: ecotaxe
2812  // 3: option line (when qty = 0)
2813 
2814  public $info_bits = 0; // Liste d'options cumulables:
2815  // Bit 0: 0 si TVA normal - 1 si TVA NPR
2816  // Bit 1: 0 ligne normale - 1 si ligne de remise fixe
2817 
2818  public $total_ht; // Total HT de la ligne toute quantite et incluant la remise ligne
2819  public $total_tva; // Total TVA de la ligne toute quantite et incluant la remise ligne
2820  public $total_ttc; // Total TTC de la ligne toute quantite et incluant la remise ligne
2821 
2822  public $date_start;
2823  public $date_end;
2824 
2825  // From llx_product
2830  public $ref;
2831 
2836  public $product_ref;
2837 
2842  public $libelle;
2843 
2848  public $product_label;
2849 
2854  public $product_desc;
2855 
2856  public $localtax1_tx; // Local tax 1
2857  public $localtax2_tx; // Local tax 2
2858  public $localtax1_type; // Local tax 1 type
2859  public $localtax2_type; // Local tax 2 type
2860  public $total_localtax1; // Line total local tax 1
2861  public $total_localtax2; // Line total local tax 2
2862 
2863  public $skip_update_total; // Skip update price total for special lines
2864 
2865  public $ref_fourn;
2866  public $ref_supplier;
2867 
2868  // Multicurrency
2872  public $fk_multicurrency;
2873 
2874  public $multicurrency_code;
2875  public $multicurrency_subprice;
2876  public $multicurrency_total_ht;
2877  public $multicurrency_total_tva;
2878  public $multicurrency_total_ttc;
2879 
2885  public function __construct($db)
2886  {
2887  $this->db = $db;
2888  }
2889 
2896  public function fetch($rowid)
2897  {
2898  $sql = 'SELECT pd.rowid, pd.fk_supplier_proposal, pd.fk_parent_line, pd.fk_product, pd.label as custom_label, pd.description, pd.price, pd.qty, pd.tva_tx,';
2899  $sql .= ' pd.date_start, pd.date_end,';
2900  $sql .= ' pd.remise, pd.remise_percent, pd.fk_remise_except, pd.subprice,';
2901  $sql .= ' pd.info_bits, pd.total_ht, pd.total_tva, pd.total_ttc, pd.fk_product_fournisseur_price as fk_fournprice, pd.buy_price_ht as pa_ht, pd.special_code, pd.rang,';
2902  $sql .= ' pd.localtax1_tx, pd.localtax2_tx, pd.total_localtax1, pd.total_localtax2,';
2903  $sql .= ' p.ref as product_ref, p.label as product_label, p.description as product_desc,';
2904  $sql .= ' pd.product_type, pd.ref_fourn as ref_produit_fourn,';
2905  $sql .= ' pd.fk_multicurrency, pd.multicurrency_code, pd.multicurrency_subprice, pd.multicurrency_total_ht, pd.multicurrency_total_tva, pd.multicurrency_total_ttc, pd.fk_unit';
2906  $sql .= ' FROM '.MAIN_DB_PREFIX.'supplier_proposaldet as pd';
2907  $sql .= ' LEFT JOIN '.MAIN_DB_PREFIX.'product as p ON pd.fk_product = p.rowid';
2908  $sql .= ' WHERE pd.rowid = '.((int) $rowid);
2909 
2910  $result = $this->db->query($sql);
2911  if ($result) {
2912  $objp = $this->db->fetch_object($result);
2913 
2914  $this->id = $objp->rowid;
2915  $this->fk_supplier_proposal = $objp->fk_supplier_proposal;
2916  $this->fk_parent_line = $objp->fk_parent_line;
2917  $this->label = $objp->custom_label;
2918  $this->desc = $objp->description;
2919  $this->qty = $objp->qty;
2920  $this->subprice = $objp->subprice;
2921  $this->tva_tx = $objp->tva_tx;
2922  $this->remise_percent = $objp->remise_percent;
2923  $this->fk_remise_except = $objp->fk_remise_except;
2924  $this->fk_product = $objp->fk_product;
2925  $this->info_bits = $objp->info_bits;
2926  $this->date_start = $this->db->jdate($objp->date_start);
2927  $this->date_end = $this->db->jdate($objp->date_end);
2928 
2929  $this->total_ht = $objp->total_ht;
2930  $this->total_tva = $objp->total_tva;
2931  $this->total_ttc = $objp->total_ttc;
2932 
2933  $this->fk_fournprice = $objp->fk_fournprice;
2934 
2935  $marginInfos = getMarginInfos($objp->subprice, $objp->remise_percent, $objp->tva_tx, $objp->localtax1_tx, $objp->localtax2_tx, $this->fk_fournprice, $objp->pa_ht);
2936  $this->pa_ht = $marginInfos[0];
2937  $this->marge_tx = $marginInfos[1];
2938  $this->marque_tx = $marginInfos[2];
2939 
2940  $this->special_code = $objp->special_code;
2941  $this->product_type = $objp->product_type;
2942  $this->rang = $objp->rang;
2943 
2944  $this->ref = $objp->product_ref; // deprecated
2945  $this->product_ref = $objp->product_ref;
2946  $this->libelle = $objp->product_label; // deprecated
2947  $this->product_label = $objp->product_label;
2948  $this->product_desc = $objp->product_desc;
2949 
2950  $this->ref_fourn = $objp->ref_produit_fourn;
2951 
2952  // Multicurrency
2953  $this->fk_multicurrency = $objp->fk_multicurrency;
2954  $this->multicurrency_code = $objp->multicurrency_code;
2955  $this->multicurrency_subprice = $objp->multicurrency_subprice;
2956  $this->multicurrency_total_ht = $objp->multicurrency_total_ht;
2957  $this->multicurrency_total_tva = $objp->multicurrency_total_tva;
2958  $this->multicurrency_total_ttc = $objp->multicurrency_total_ttc;
2959  $this->fk_unit = $objp->fk_unit;
2960 
2961  $this->db->free($result);
2962  return 1;
2963  } else {
2964  dol_print_error($this->db);
2965  return -1;
2966  }
2967  }
2968 
2975  public function insert($notrigger = 0)
2976  {
2977  global $conf, $langs, $user;
2978 
2979  $error = 0;
2980 
2981  dol_syslog(get_class($this)."::insert rang=".$this->rang);
2982 
2983  // Clean parameters
2984  if (empty($this->tva_tx)) {
2985  $this->tva_tx = 0;
2986  }
2987  if (empty($this->localtax1_tx)) {
2988  $this->localtax1_tx = 0;
2989  }
2990  if (empty($this->localtax2_tx)) {
2991  $this->localtax2_tx = 0;
2992  }
2993  if (empty($this->localtax1_type)) {
2994  $this->localtax1_type = 0;
2995  }
2996  if (empty($this->localtax2_type)) {
2997  $this->localtax2_type = 0;
2998  }
2999  if (empty($this->total_localtax1)) {
3000  $this->total_localtax1 = 0;
3001  }
3002  if (empty($this->total_localtax2)) {
3003  $this->total_localtax2 = 0;
3004  }
3005  if (empty($this->rang)) {
3006  $this->rang = 0;
3007  }
3008  if (empty($this->remise_percent)) {
3009  $this->remise_percent = 0;
3010  }
3011  if (empty($this->info_bits)) {
3012  $this->info_bits = 0;
3013  }
3014  if (empty($this->special_code)) {
3015  $this->special_code = 0;
3016  }
3017  if (empty($this->fk_parent_line)) {
3018  $this->fk_parent_line = 0;
3019  }
3020  if (empty($this->fk_fournprice)) {
3021  $this->fk_fournprice = 0;
3022  }
3023  if (empty($this->fk_unit)) {
3024  $this->fk_unit = 0;
3025  }
3026  if (empty($this->subprice)) {
3027  $this->subprice = 0;
3028  }
3029 
3030  if (empty($this->pa_ht)) {
3031  $this->pa_ht = 0;
3032  }
3033 
3034  // if buy price not defined, define buyprice as configured in margin admin
3035  if ($this->pa_ht == 0) {
3036  $result = $this->defineBuyPrice($this->subprice, $this->remise_percent, $this->fk_product);
3037  if ($result < 0) {
3038  return $result;
3039  } else {
3040  $this->pa_ht = $result;
3041  }
3042  }
3043 
3044  // Check parameters
3045  if ($this->product_type < 0) {
3046  return -1;
3047  }
3048 
3049  $this->db->begin();
3050 
3051  // Insert line into database
3052  $sql = 'INSERT INTO '.MAIN_DB_PREFIX.'supplier_proposaldet';
3053  $sql .= ' (fk_supplier_proposal, fk_parent_line, label, description, fk_product, product_type,';
3054  $sql .= ' date_start, date_end,';
3055  $sql .= ' fk_remise_except, qty, tva_tx, localtax1_tx, localtax2_tx, localtax1_type, localtax2_type,';
3056  $sql .= ' subprice, remise_percent, ';
3057  $sql .= ' info_bits, ';
3058  $sql .= ' total_ht, total_tva, total_localtax1, total_localtax2, total_ttc, fk_product_fournisseur_price, buy_price_ht, special_code, rang,';
3059  $sql .= ' ref_fourn,';
3060  $sql .= ' fk_multicurrency, multicurrency_code, multicurrency_subprice, multicurrency_total_ht, multicurrency_total_tva, multicurrency_total_ttc, fk_unit)';
3061  $sql .= " VALUES (".$this->fk_supplier_proposal.",";
3062  $sql .= " ".($this->fk_parent_line > 0 ? ((int) $this->db->escape($this->fk_parent_line)) : "null").",";
3063  $sql .= " ".(!empty($this->label) ? "'".$this->db->escape($this->label)."'" : "null").",";
3064  $sql .= " '".$this->db->escape($this->desc)."',";
3065  $sql .= " ".($this->fk_product ? ((int) $this->fk_product) : "null").",";
3066  $sql .= " '".$this->db->escape($this->product_type)."',";
3067  $sql .= " ".($this->date_start ? "'".$this->db->idate($this->date_start)."'" : "null").",";
3068  $sql .= " ".($this->date_end ? "'".$this->db->idate($this->date_end)."'" : "null").",";
3069  $sql .= " ".($this->fk_remise_except ? ((int) $this->db->escape($this->fk_remise_except)) : "null").",";
3070  $sql .= " ".price2num($this->qty, 'MS').",";
3071  $sql .= " ".price2num($this->tva_tx).",";
3072  $sql .= " ".price2num($this->localtax1_tx).",";
3073  $sql .= " ".price2num($this->localtax2_tx).",";
3074  $sql .= " '".$this->db->escape($this->localtax1_type)."',";
3075  $sql .= " '".$this->db->escape($this->localtax2_type)."',";
3076  $sql .= " ".(!empty($this->subprice) ? price2num($this->subprice, 'MU') : "null").",";
3077  $sql .= " ".((float) $this->remise_percent).",";
3078  $sql .= " ".(isset($this->info_bits) ? ((int) $this->info_bits) : "null").",";
3079  $sql .= " ".price2num($this->total_ht, 'MT').",";
3080  $sql .= " ".price2num($this->total_tva, 'MT').",";
3081  $sql .= " ".price2num($this->total_localtax1, 'MT').",";
3082  $sql .= " ".price2num($this->total_localtax2, 'MT').",";
3083  $sql .= " ".price2num($this->total_ttc, 'MT').",";
3084  $sql .= " ".(!empty($this->fk_fournprice) ? ((int) $this->fk_fournprice) : "null").",";
3085  $sql .= " ".(isset($this->pa_ht) ? price2num($this->pa_ht, 'MU') : "null").",";
3086  $sql .= ' '.((int) $this->special_code).',';
3087  $sql .= ' '.((int) $this->rang).',';
3088  $sql .= " '".$this->db->escape($this->ref_fourn)."'";
3089  $sql .= ", ".($this->fk_multicurrency > 0 ? ((int) $this->fk_multicurrency) : 'null');
3090  $sql .= ", '".$this->db->escape($this->multicurrency_code)."'";
3091  $sql .= ", ".price2num($this->multicurrency_subprice, 'CU');
3092  $sql .= ", ".price2num($this->multicurrency_total_ht, 'CT');
3093  $sql .= ", ".price2num($this->multicurrency_total_tva, 'CT');
3094  $sql .= ", ".price2num($this->multicurrency_total_ttc, 'CT');
3095  $sql .= ", ".($this->fk_unit ? ((int) $this->fk_unit) : 'null');
3096  $sql .= ')';
3097 
3098  dol_syslog(get_class($this).'::insert', LOG_DEBUG);
3099  $resql = $this->db->query($sql);
3100  if ($resql) {
3101  $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX.'supplier_proposaldet');
3102 
3103  if (!$error) {
3104  $result = $this->insertExtraFields();
3105  if ($result < 0) {
3106  $error++;
3107  }
3108  }
3109 
3110  if (!$error && !$notrigger) {
3111  // Call trigger
3112  $result = $this->call_trigger('LINESUPPLIER_PROPOSAL_INSERT', $user);
3113  if ($result < 0) {
3114  $this->db->rollback();
3115  return -1;
3116  }
3117  // End call triggers
3118  }
3119 
3120  $this->db->commit();
3121  return 1;
3122  } else {
3123  $this->error = $this->db->error()." sql=".$sql;
3124  $this->db->rollback();
3125  return -1;
3126  }
3127  }
3128 
3134  public function delete()
3135  {
3136  global $conf, $langs, $user;
3137 
3138  $error = 0;
3139  $this->db->begin();
3140 
3141  $sql = "DELETE FROM ".MAIN_DB_PREFIX."supplier_proposaldet WHERE rowid = ".((int) $this->id);
3142  dol_syslog("SupplierProposalLine::delete", LOG_DEBUG);
3143  if ($this->db->query($sql)) {
3144  // Remove extrafields
3145  if (!$error) {
3146  $result = $this->deleteExtraFields();
3147  if ($result < 0) {
3148  $error++;
3149  dol_syslog(get_class($this)."::delete error -4 ".$this->error, LOG_ERR);
3150  }
3151  }
3152 
3153  // Call trigger
3154  $result = $this->call_trigger('LINESUPPLIER_PROPOSAL_DELETE', $user);
3155  if ($result < 0) {
3156  $this->db->rollback();
3157  return -1;
3158  }
3159  // End call triggers
3160 
3161  $this->db->commit();
3162 
3163  return 1;
3164  } else {
3165  $this->error = $this->db->error()." sql=".$sql;
3166  $this->db->rollback();
3167  return -1;
3168  }
3169  }
3170 
3177  public function update($notrigger = 0)
3178  {
3179  global $conf, $langs, $user;
3180 
3181  $error = 0;
3182 
3183  // Clean parameters
3184  if (empty($this->tva_tx)) {
3185  $this->tva_tx = 0;
3186  }
3187  if (empty($this->localtax1_tx)) {
3188  $this->localtax1_tx = 0;
3189  }
3190  if (empty($this->localtax2_tx)) {
3191  $this->localtax2_tx = 0;
3192  }
3193  if (empty($this->total_localtax1)) {
3194  $this->total_localtax1 = 0;
3195  }
3196  if (empty($this->total_localtax2)) {
3197  $this->total_localtax2 = 0;
3198  }
3199  if (empty($this->localtax1_type)) {
3200  $this->localtax1_type = 0;
3201  }
3202  if (empty($this->localtax2_type)) {
3203  $this->localtax2_type = 0;
3204  }
3205  if (empty($this->marque_tx)) {
3206  $this->marque_tx = 0;
3207  }
3208  if (empty($this->marge_tx)) {
3209  $this->marge_tx = 0;
3210  }
3211  if (empty($this->remise_percent)) {
3212  $this->remise_percent = 0;
3213  }
3214  if (empty($this->info_bits)) {
3215  $this->info_bits = 0;
3216  }
3217  if (empty($this->special_code)) {
3218  $this->special_code = 0;
3219  }
3220  if (empty($this->fk_parent_line)) {
3221  $this->fk_parent_line = 0;
3222  }
3223  if (empty($this->fk_fournprice)) {
3224  $this->fk_fournprice = 0;
3225  }
3226  if (empty($this->fk_unit)) {
3227  $this->fk_unit = 0;
3228  }
3229  if (empty($this->subprice)) {
3230  $this->subprice = 0;
3231  }
3232 
3233  if (empty($this->pa_ht)) {
3234  $this->pa_ht = 0;
3235  }
3236 
3237  // if buy price not defined, define buyprice as configured in margin admin
3238  if ($this->pa_ht == 0) {
3239  $result = $this->defineBuyPrice($this->subprice, $this->remise_percent, $this->fk_product);
3240  if ($result < 0) {
3241  return $result;
3242  } else {
3243  $this->pa_ht = $result;
3244  }
3245  }
3246 
3247  $this->db->begin();
3248 
3249  // Mise a jour ligne en base
3250  $sql = "UPDATE ".MAIN_DB_PREFIX."supplier_proposaldet SET";
3251  $sql .= " description='".$this->db->escape($this->desc)."'";
3252  $sql .= " , label=".(!empty($this->label) ? "'".$this->db->escape($this->label)."'" : "null");
3253  $sql .= " , product_type=".((int) $this->product_type);
3254  $sql .= " , date_start=".($this->date_start ? "'".$this->db->idate($this->date_start)."'" : "null");
3255  $sql .= " , date_end=".($this->date_end ? "'".$this->db->idate($this->date_end)."'" : "null");
3256  $sql .= " , tva_tx='".price2num($this->tva_tx)."'";
3257  $sql .= " , localtax1_tx=".price2num($this->localtax1_tx);
3258  $sql .= " , localtax2_tx=".price2num($this->localtax2_tx);
3259  $sql .= " , localtax1_type='".$this->db->escape($this->localtax1_type)."'";
3260  $sql .= " , localtax2_type='".$this->db->escape($this->localtax2_type)."'";
3261  $sql .= " , qty='".price2num($this->qty)."'";
3262  $sql .= " , subprice=".price2num($this->subprice)."";
3263  $sql .= " , remise_percent=".price2num($this->remise_percent)."";
3264  $sql .= " , info_bits='".$this->db->escape($this->info_bits)."'";
3265  if (empty($this->skip_update_total)) {
3266  $sql .= " , total_ht=".price2num($this->total_ht)."";
3267  $sql .= " , total_tva=".price2num($this->total_tva)."";
3268  $sql .= " , total_ttc=".price2num($this->total_ttc)."";
3269  $sql .= " , total_localtax1=".price2num($this->total_localtax1)."";
3270  $sql .= " , total_localtax2=".price2num($this->total_localtax2)."";
3271  }
3272  $sql .= " , fk_product_fournisseur_price=".(!empty($this->fk_fournprice) ? "'".$this->db->escape($this->fk_fournprice)."'" : "null");
3273  $sql .= " , buy_price_ht=".price2num($this->pa_ht);
3274  if (strlen($this->special_code)) {
3275  $sql .= " , special_code=".((int) $this->special_code);
3276  }
3277  $sql .= " , fk_parent_line=".($this->fk_parent_line > 0 ? $this->fk_parent_line : "null");
3278  if (!empty($this->rang)) {
3279  $sql .= ", rang=".((int) $this->rang);
3280  }
3281  $sql .= " , ref_fourn=".(!empty($this->ref_fourn) ? "'".$this->db->escape($this->ref_fourn)."'" : "null");
3282  $sql .= " , fk_unit=".($this->fk_unit ? $this->fk_unit : 'null');
3283 
3284  // Multicurrency
3285  $sql .= " , multicurrency_subprice=".price2num($this->multicurrency_subprice)."";
3286  $sql .= " , multicurrency_total_ht=".price2num($this->multicurrency_total_ht)."";
3287  $sql .= " , multicurrency_total_tva=".price2num($this->multicurrency_total_tva)."";
3288  $sql .= " , multicurrency_total_ttc=".price2num($this->multicurrency_total_ttc)."";
3289 
3290  $sql .= " WHERE rowid = ".((int) $this->id);
3291 
3292  dol_syslog(get_class($this)."::update", LOG_DEBUG);
3293  $resql = $this->db->query($sql);
3294  if ($resql) {
3295  if (!$error) {
3296  $result = $this->insertExtraFields();
3297  if ($result < 0) {
3298  $error++;
3299  }
3300  }
3301 
3302  if (!$error && !$notrigger) {
3303  // Call trigger
3304  $result = $this->call_trigger('LINESUPPLIER_PROPOSAL_MODIFY', $user);
3305  if ($result < 0) {
3306  $this->db->rollback();
3307  return -1;
3308  }
3309  // End call triggers
3310  }
3311 
3312  $this->db->commit();
3313  return 1;
3314  } else {
3315  $this->error = $this->db->error();
3316  $this->db->rollback();
3317  return -2;
3318  }
3319  }
3320 
3321  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
3328  public function update_total()
3329  {
3330  // phpcs:enable
3331  $this->db->begin();
3332 
3333  // Mise a jour ligne en base
3334  $sql = "UPDATE ".MAIN_DB_PREFIX."supplier_proposaldet SET";
3335  $sql .= " total_ht=".price2num($this->total_ht, 'MT');
3336  $sql .= ",total_tva=".price2num($this->total_tva, 'MT');
3337  $sql .= ",total_ttc=".price2num($this->total_ttc, 'MT');
3338  $sql .= " WHERE rowid = ".((int) $this->id);
3339 
3340  dol_syslog("SupplierProposalLine::update_total", LOG_DEBUG);
3341 
3342  $resql = $this->db->query($sql);
3343  if ($resql) {
3344  $this->db->commit();
3345  return 1;
3346  } else {
3347  $this->error = $this->db->error();
3348  $this->db->rollback();
3349  return -2;
3350  }
3351  }
3352 }
GETPOST($paramname, $check= 'alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
fetch($rowid)
Retrieve the propal line object.
dol_string_nohtmltag($stringtoclean, $removelinefeed=1, $pagecodeto= 'UTF-8', $strip_tags=0, $removedoublespaces=1)
Clean a string from all HTML tags and entities.
addline($desc, $pu_ht, $qty, $txtva, $txlocaltax1=0, $txlocaltax2=0, $fk_product=0, $remise_percent=0, $price_base_type= 'HT', $pu_ttc=0, $info_bits=0, $type=0, $rang=-1, $special_code=0, $fk_parent_line=0, $fk_fournprice=0, $pa_ht=0, $label= '', $array_options=0, $ref_supplier= '', $fk_unit= '', $origin= '', $origin_id=0, $pu_ht_devise=0, $date_start=0, $date_end=0)
Add a proposal line into database (linked to product/service or not) Les parametres sont deja cense e...
LibStatut($status, $mode=1)
Return label of a status (draft, validated, ...)
const STATUS_NOTSIGNED
Not signed quote, canceled.
getMarginInfos($pvht, $remise_percent, $tva_tx, $localtax1_tx, $localtax2_tx, $fk_pa, $paht)
Return an array with margins information of a line.
setDraft($user)
Set draft status.
generateDocument($modele, $outputlangs, $hidedetails=0, $hidedesc=0, $hideref=0, $moreparams=null)
Create a document onto disk according to template module.
$conf db
API class for accounts.
Definition: inc.php:41
updatePriceFournisseur($idProductFournPrice, $product, $user)
Upate ProductFournisseur.
updateRangOfLine($rowid, $rang)
Update position of line (rang)
liste_array($shortlist=0, $draft=0, $notcurrentuser=0, $socid=0, $limit=0, $offset=0, $sortfield= 'p.datec', $sortorder= 'DESC')
Return list of askprice (eventually filtered on user) into an array.
Class to manage products or services.
dol_now($mode= 'auto')
Return date for now.
line_order($renum=false, $rowidorder= 'ASC', $fk_parent_line=true)
Save a new position (field rang) for details lines.
deleteObjectLinked($sourceid=null, $sourcetype= '', $targetid=null, $targettype= '', $rowid= '', $f_user=null, $notrigger=0)
Delete all links between an object $this.
dol_delete_preview($object)
Delete all preview files linked to object instance.
Definition: files.lib.php:1434
static commonReplaceProduct(DoliDB $db, $origin_id, $dest_id, array $tables, $ignoreerrors=0)
Function used to replace a product id with another one.
calcul_price_total($qty, $pu, $remise_percent_ligne, $txtva, $uselocaltax1_rate, $uselocaltax2_rate, $remise_percent_global, $price_base_type, $info_bits, $type, $seller= '', $localtaxes_array= '', $progress=100, $multicurrency_tx=1, $pu_devise=0, $multicurrency_code= '')
Calculate totals (net, vat, ...) of a line.
Definition: price.lib.php:86
Class to manage Dolibarr users.
Definition: user.class.php:44
__construct($db)
Class line Contructor.
Class to manage Dolibarr database access.
commonGenerateDocument($modelspath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams=null)
Common function for all objects extending CommonObject for generating documents.
__construct($db, $socid="", $supplier_proposalid=0)
Constructor.
const STATUS_CLOSE
Billed or closed/processed quote.
info($id)
Object SupplierProposal Information.
const TYPE_PRODUCT
Regular product.
get_default_npr(Societe $thirdparty_seller, Societe $thirdparty_buyer, $idprod=0, $idprodfournprice=0)
Fonction qui renvoie si tva doit etre tva percue recuperable.
fetch_thirdparty($force_thirdparty_id=0)
Load the third party of object, from id $this-&gt;socid or $this-&gt;fk_soc, into this-&gt;thirdparty.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags= '', $escapeonlyhtmltags=0)
Returns text escaped for inclusion in HTML alt or title tags, or into values of HTML input fields...
update($notrigger=0)
Update propal line object into DB.
load_state_board()
Load indicator this-&gt;nb of global stats widget.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
get_localtax($vatrate, $local, $thirdparty_buyer="", $thirdparty_seller="", $vatnpr=0)
Return localtax rate for a particular vat, when selling a product with vat $vatrate, from a $thirdparty_buyer to a $thirdparty_seller Note: This function applies same rules than get_default_tva.
reopen($user, $statut, $note= '', $notrigger=0)
Reopen the commercial proposal.
create($user, $notrigger=0)
Create commercial proposal into database this-&gt;ref can be set or empty.
getNomUrl($withpicto=0, $option= '', $get_params= '', $notooltip=0, $save_lastsearch_value=-1, $addlinktonotes=0)
Return clicable link of object (with eventually picto)
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...
static replaceThirdparty(DoliDB $db, $origin_id, $dest_id)
Function used to replace a thirdparty id with another one.
Parent class for class inheritance lines of business objects This class is useless for the moment so ...
insertExtraFields($trigger= '', $userused=null)
Add/Update all extra fields values for the current object.
getLinesArray()
Retrieve an array of supplier proposal lines.
static getIdAndTxFromCode($dbs, $code, $date_document= '')
Get id and rate of currency from code.
const STATUS_SIGNED
Signed quote.
insert($notrigger=0)
Insert object line propal in database.
Class to manage third parties objects (customers, suppliers, prospects...)
getEntity($element, $shared=1, $currentobject=null)
Get list of entity id to use.
line_max($fk_parent_line=0)
Get max value used for position of line (rang)
dol_strlen($string, $stringencoding= 'UTF-8')
Make a strlen call.
createFromClone(User $user, $fromid=0)
Load an object from its id and create a new one in database.
update_total()
Update DB line fields total_xxx Used by migration.
price2num($amount, $rounding= '', $option=0)
Function that return a number with universal decimal format (decimal separator is &#39;...
createPriceFournisseur($product, $user)
Create ProductFournisseur.
add_product($idproduct, $qty, $remise_percent=0)
Add line into array -&gt;lines.
dol_delete_dir_recursive($dir, $count=0, $nophperrors=0, $onlysub=0, &$countdeleted=0, $indexdatabase=1, $nolog=0)
Remove a directory $dir and its subdirectories (or only files and subdirectories) ...
Definition: files.lib.php:1382
const STATUS_VALIDATED
Validated status.
deleteEcmFiles($mode=0)
Delete related files of object in database.
insert_discount($idremise)
Adding line of fixed discount in the proposal in DB.
static commonReplaceThirdparty(DoliDB $db, $origin_id, $dest_id, array $tables, $ignoreerrors=0)
Function used to replace a thirdparty id with another one.
img_picto($titlealt, $picto, $moreatt= '', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt= '', $morecss= '', $marginleftonlyshort=2)
Show picto whatever it&#39;s its name (generic function)
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename= '', $restricttologhandler= '', $logcontext=null)
Write log message into outputs.
load_board($user, $mode)
Load indicators for dashboard (this-&gt;nbtodo and this-&gt;nbtodolate)
valid($user, $notrigger=0)
Set status to validated.
img_object($titlealt, $picto, $moreatt= '', $pictoisfullpath=false, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
static replaceProduct(DoliDB $db, $origin_id, $dest_id)
Function used to replace a product id with another one.
deleteExtraFields()
Delete all extra fields values for the current object.
Class to manage translations.
dol_sanitizeFileName($str, $newstr= '_', $unaccent=1)
Clean a string to use it as a file name.
dol_dir_list($path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0)
Scan a directory and return a list of files/directories.
Definition: files.lib.php:60
set_remise_absolue($user, $remise)
Set an absolute overall discount on the proposal.
fetch_optionals($rowid=null, $optionsArray=null)
Function to get extra fields of an object into $this-&gt;array_options This method is in most cases call...
set_date_livraison($user, $delivery_date)
Set delivery date.
defineBuyPrice($unitPrice=0.0, $discountPercent=0.0, $fk_product=0)
Get buy price to use for margin calculation.
Class to manage supplier_proposal lines.
if(isModEnabled('facture')&&!empty($user->rights->facture->lire)) if((isModEnabled('fournisseur')&&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)&&$user->rights->fournisseur->facture->lire)||(isModEnabled('supplier_invoice')&&$user->rights->supplier_invoice->lire)) if(isModEnabled('don')&&!empty($user->rights->don->lire)) if(isModEnabled('tax')&&!empty($user->rights->tax->charges->lire)) if(isModEnabled('facture')&&isModEnabled('commande')&&$user->rights->commande->lire &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $resql
Social contributions to pay.
Definition: index.php:742
trait CommonIncoterm
Superclass for incoterm classes.
div float
Buy price without taxes.
Definition: style.css.php:809
setDeliveryDate($user, $delivery_date)
Set delivery date.
call_trigger($triggerName, $user)
Call trigger based on this instance.
add_object_linked($origin=null, $origin_id=null, $f_user=null, $notrigger=0)
Add objects linked in llx_element_element.
const STATUS_DRAFT
Draft status.
getLibStatut($mode=0)
Return label of status of proposal (draft, validated, ...)
Class to manage price ask supplier.
$object ref
Definition: info.php:77
dol_print_error($db= '', $error= '', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
get_default_tva(Societe $thirdparty_seller, Societe $thirdparty_buyer, $idprod=0, $idprodfournprice=0)
Function that return vat rate of a product line (according to seller, buyer and product vat rate) VAT...
Class to manage absolute discounts.
initAsSpecimen()
Initialise an instance with random values.
Class Currency.
dolGetStatus($statusLabel= '', $statusLabelShort= '', $html= '', $statusType= 'status0', $displayMode=0, $url= '', $params=array())
Output the badge of a status.
cloture($user, $status, $note)
Close the askprice.
updateOrCreatePriceFournisseur($user)
Add or update supplier price according to result of proposal.
getLocalTaxesFromRate($vatrate, $local, $buyer, $seller, $firstparamisid=0)
Get type and rate of localtaxes for a particular vat rate/country of a thirdparty.
getNextNumRef($soc)
Returns the reference to the following non used Proposal used depending on the active numbering modul...
deleteline($lineid)
Delete detail line.
update_price($exclspec=0, $roundingadjust= 'none', $nodatabaseupdate=0, $seller=null)
Update total_ht, total_ttc, total_vat, total_localtax1, total_localtax2 for an object (sum of lines)...
updateline($rowid, $pu, $qty, $remise_percent, $txtva, $txlocaltax1=0, $txlocaltax2=0, $desc= '', $price_base_type= 'HT', $info_bits=0, $special_code=0, $fk_parent_line=0, $skip_update_total=0, $fk_fournprice=0, $pa_ht=0, $label= '', $type=0, $array_options=0, $ref_supplier= '', $fk_unit= '', $pu_ht_devise=0)
Update a proposal line.
fetch($rowid, $ref= '')
Load a proposal from database and its ligne array.
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.
Definition: files.lib.php:1230
Parent class of all other business classes (invoices, contracts, proposals, orders, ...)
Class to manage predefined suppliers products.
set_remise_percent($user, $remise)
Set an overall discount on the proposal.
print *****$script_file(".$version.") pid c cd cd cd description as p label as s rowid