39require_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.product.class.php';
40require_once DOL_DOCUMENT_ROOT.
'/core/class/commonobject.class.php';
41require_once DOL_DOCUMENT_ROOT.
'/product/class/product.class.php';
42require_once DOL_DOCUMENT_ROOT.
'/contact/class/contact.class.php';
43require_once DOL_DOCUMENT_ROOT.
'/margin/lib/margins.lib.php';
44require_once DOL_DOCUMENT_ROOT.
'/multicurrency/class/multicurrency.class.php';
45require_once DOL_DOCUMENT_ROOT.
'/core/class/commonincoterm.class.php';
57 public $element =
'supplier_proposal';
62 public $table_element =
'supplier_proposal';
67 public $table_element_line =
'supplier_proposaldet';
72 public $fk_element =
'fk_supplier_proposal';
77 public $picto =
'supplier_proposal';
83 public $ismultientitymanaged = 1;
89 public $restrictiononfksoc = 1;
105 public $ref_supplier;
117 public $date_livraison;
122 public $delivery_date;
133 public $date_creation;
144 public $date_validation;
147 public $user_author_id;
148 public $user_valid_id;
149 public $user_close_id;
169 public $cond_reglement_code;
170 public $mode_reglement_code;
172 public $remise_percent = 0;
173 public $remise_absolue = 0;
175 public $extraparams = array();
176 public $lines = array();
179 public $labelStatus = array();
180 public $labelStatusShort = array();
189 public $fk_multicurrency;
191 public $multicurrency_code;
192 public $multicurrency_tx;
193 public $multicurrency_total_ht;
194 public $multicurrency_total_tva;
195 public $multicurrency_total_ttc;
231 public function __construct($db, $socid =
"", $supplier_proposalid = 0)
233 global $conf, $langs;
237 $this->socid = $socid;
238 $this->
id = $supplier_proposalid;
253 public function add_product($idproduct, $qty, $remise_percent = 0)
256 global $conf, $mysoc;
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);
267 $productdesc = $prod->description;
271 if (empty($tva_tx)) {
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);
278 if ($conf->global->PRODUIT_MULTIPRICES && $this->thirdparty->price_level) {
279 $price = $prod->multiprices[$this->thirdparty->price_level];
286 $line->fk_product = $idproduct;
287 $line->desc = $productdesc;
290 $line->remise_percent = $remise_percent;
291 $line->tva_tx = $tva_tx;
293 $this->lines[] = $line;
311 include_once DOL_DOCUMENT_ROOT.
'/core/lib/price.lib.php';
312 include_once DOL_DOCUMENT_ROOT.
'/core/class/discount.class.php';
317 $result = $remise->fetch($idremise);
320 if ($remise->fk_facture) {
321 $this->error = $langs->trans(
"ErrorDiscountAlreadyUsed");
322 $this->db->rollback();
327 $supplier_proposalligne->fk_supplier_proposal = $this->id;
328 $supplier_proposalligne->fk_remise_except = $remise->id;
329 $supplier_proposalligne->desc = $remise->description;
330 $supplier_proposalligne->tva_tx = $remise->tva_tx;
331 $supplier_proposalligne->subprice = -$remise->amount_ht;
332 $supplier_proposalligne->fk_product = 0;
333 $supplier_proposalligne->qty = 1;
334 $supplier_proposalligne->remise_percent = 0;
335 $supplier_proposalligne->rang = -1;
336 $supplier_proposalligne->info_bits = 2;
338 $supplier_proposalligne->total_ht = -$remise->amount_ht;
339 $supplier_proposalligne->total_tva = -$remise->amount_tva;
340 $supplier_proposalligne->total_ttc = -$remise->amount_ttc;
342 $result = $supplier_proposalligne->insert();
349 $this->db->rollback();
353 $this->error = $supplier_proposalligne->error;
354 $this->db->rollback();
358 $this->db->rollback();
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)
402 global $mysoc, $conf, $langs;
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';
408 if (empty($remise_percent)) {
414 if (empty($info_bits)) {
420 if (empty($fk_parent_line) || $fk_parent_line < 0) {
427 $remise_percent =
price2num($remise_percent);
431 if (!preg_match(
'/\((.*)\)/', $txtva)) {
437 if ($price_base_type ==
'HT') {
448 if ($this->
statut == self::STATUS_DRAFT) {
451 if ($fk_product > 0) {
452 if (!empty($conf->global->SUPPLIER_PROPOSAL_WITH_PREDEFINED_PRICES_ONLY)) {
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);
456 if ($productsupplier->fetch($fk_product) > 0) {
457 $product_type = $productsupplier->type;
458 $label = $productsupplier->label;
459 $fk_prod_fourn_price = $fk_fournprice;
463 $result = $productsupplier->get_buyprice($fk_prod_fourn_price, $qty, $fk_product,
'none', ($this->fk_soc ? $this->fk_soc : $this->socid));
465 $pu = $productsupplier->fourn_pu;
466 $ref_supplier = $productsupplier->ref_supplier;
468 if ($remise_percent == 0 && $productsupplier->remise_percent != 0) {
469 $remise_percent = $productsupplier->remise_percent;
473 $langs->load(
"errors");
474 $this->error =
"Ref ".$productsupplier->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");
482 $langs->load(
"errors");
483 $this->error =
"Ref ".$productsupplier->ref.
" ".$langs->trans(
"ErrorQtyTooLowForThisSupplier");
484 $this->db->rollback();
485 dol_syslog(get_class($this).
"::addline result=".$result.
" - ".$this->error, LOG_DEBUG);
489 $this->error = $productsupplier->error;
490 $this->errors = $productsupplier->errors;
491 $this->db->rollback();
492 dol_syslog(get_class($this).
"::addline result=".$result.
" - ".$this->error, LOG_ERR);
496 $this->error = $productsupplier->error;
497 $this->errors = $productsupplier->errors;
498 $this->db->rollback();
503 $product_type = $type;
516 if (preg_match(
'/\((.*)\)/', $txtva, $reg)) {
517 $vat_src_code = $reg[1];
518 $txtva = preg_replace(
'/\s*\(.*\)/',
'', $txtva);
521 if (isModEnabled(
"multicurrency") && $pu_ht_devise > 0) {
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];
534 $multicurrency_total_ht = $tabprice[16];
535 $multicurrency_total_tva = $tabprice[17];
536 $multicurrency_total_ttc = $tabprice[18];
537 $pu_ht_devise = $tabprice[19];
541 if ($ranktouse == -1) {
542 $rangmax = $this->
line_max($fk_parent_line);
543 $ranktouse = $rangmax + 1;
550 if ($remise_percent > 0) {
551 $remise = round(($pu * $remise_percent / 100), 2);
558 $this->line->fk_supplier_proposal = $this->id;
559 $this->line->label = $label;
560 $this->line->desc = $desc;
561 $this->line->qty = $qty;
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;
590 if (!empty($fk_product) && $fk_product > 0 && empty($fk_fournprice) && empty($pa_ht)) {
592 include_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.product.class.php';
594 $productFournisseur->find_min_price_product_fournisseur($fk_product);
595 $this->line->fk_fournprice = $productFournisseur->product_fourn_price_id;
597 $this->line->fk_fournprice = ($fk_fournprice > 0 ? $fk_fournprice : 0);
599 $this->line->pa_ht = $pa_ht;
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;
611 if (empty($qty) && empty($special_code)) {
612 $this->line->special_code = 3;
615 if (is_array($array_options) && count($array_options) > 0) {
616 $this->line->array_options = $array_options;
619 $result = $this->line->insert();
622 if (!empty($fk_parent_line)) {
624 } elseif ($ranktouse > 0 && $ranktouse <= count($this->lines)) {
625 $linecount = count($this->lines);
626 for ($ii = $ranktouse; $ii <= $linecount; $ii++) {
632 $result = $this->
update_price(1,
'auto', 0, $this->thirdparty);
635 return $this->line->id;
637 $this->error = $this->error();
638 $this->errors = $this->errors();
639 $this->db->rollback();
643 $this->error = $this->line->error;
644 $this->errors = $this->line->errors;
645 $this->db->rollback();
649 $this->error =
'BadStatusOfObjectToAddLine';
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)
683 global $conf, $user, $langs, $mysoc;
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';
689 $remise_percent =
price2num($remise_percent);
692 if (!preg_match(
'/\((.*)\)/', $txtva)) {
698 if (empty($qty) && empty($special_code)) {
701 if (!empty($qty) && $special_code == 3) {
718 if (preg_match(
'/\((.*)\)/', $txtva, $reg)) {
719 $vat_src_code = $reg[1];
720 $txtva = preg_replace(
'/\s*\(.*\)/',
'', $txtva);
723 if (isModEnabled(
"multicurrency") && $pu_ht_devise > 0) {
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];
738 $multicurrency_total_ht = $tabprice[16];
739 $multicurrency_total_tva = $tabprice[17];
740 $multicurrency_total_ttc = $tabprice[18];
741 $pu_ht_devise = $tabprice[19];
744 if ($price_base_type ==
'TTC') {
750 $line->fetch($rowid);
751 $line->fetch_optionals();
754 $staticline = clone $line;
756 $line->oldline = $staticline;
758 $this->line->context = $this->context;
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;
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;
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;
793 if (!empty($fk_product) && $fk_product > 0 && empty($fk_fournprice) && empty($pa_ht)) {
795 include_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.product.class.php';
797 $productFournisseur->find_min_price_product_fournisseur($fk_product);
798 $this->line->fk_fournprice = $productFournisseur->product_fourn_price_id;
800 $this->line->fk_fournprice = $fk_fournprice;
802 $this->line->pa_ht = $pa_ht;
804 if (is_array($array_options) && count($array_options) > 0) {
806 foreach ($array_options as $key => $value) {
807 $this->line->array_options[$key] = $array_options[$key];
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;
817 $result = $this->line->update();
820 if (!empty($fk_parent_line)) {
826 $this->fk_supplier_proposal = $this->id;
831 $this->error = $this->db->error();
832 $this->db->rollback();
836 dol_syslog(get_class($this).
"::updateline Erreur -2 SupplierProposal en mode incompatible pour cette action");
854 $line->fetch($lineid);
856 if ($line->delete() > 0) {
877 public function create($user, $notrigger = 0)
879 global $langs, $conf, $mysoc, $hookmanager;
889 $this->error =
"Failed to fetch company";
890 dol_syslog(get_class($this).
"::create ".$this->error, LOG_ERR);
893 if (!empty($this->
ref)) {
896 $this->error =
'ErrorRefAlreadyExists';
897 dol_syslog(get_class($this).
"::create ".$this->error, LOG_WARNING);
898 $this->db->rollback();
904 $delivery_date = empty($this->delivery_date) ? $this->date_livraison : $this->delivery_date;
907 if (!empty($this->multicurrency_code)) {
910 if (empty($this->fk_multicurrency)) {
911 $this->multicurrency_code = $conf->currency;
912 $this->fk_multicurrency = 0;
913 $this->multicurrency_tx = 1;
919 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"supplier_proposal (";
923 $sql .=
", remise_percent";
924 $sql .=
", remise_absolue";
925 $sql .=
", total_tva";
926 $sql .=
", total_ttc";
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";
940 $sql .=
", fk_multicurrency";
941 $sql .=
", multicurrency_code";
942 $sql .=
", multicurrency_tx";
945 $sql .= ((int) $this->socid);
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');
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);
970 dol_syslog(get_class($this).
"::create", LOG_DEBUG);
971 $resql = $this->db->query($sql);
973 $this->
id = $this->db->last_insert_id(MAIN_DB_PREFIX.
"supplier_proposal");
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);
979 dol_syslog(get_class($this).
"::create", LOG_DEBUG);
980 $resql = $this->db->query($sql);
985 if (!empty($this->linkedObjectsIds) && empty($this->linked_objects)) {
986 $this->linked_objects = $this->linkedObjectsIds;
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)) {
993 foreach ($tmp_origin_id as $origin_id) {
1008 $fk_parent_line = 0;
1009 $num = count($this->lines);
1011 for ($i = 0; $i < $num; $i++) {
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;
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,
1029 $this->lines[$i]->product_type,
1030 $this->lines[$i]->rang,
1031 $this->lines[$i]->special_code,
1033 $this->lines[$i]->fk_fournprice,
1034 $this->lines[$i]->pa_ht,
1035 empty($this->lines[$i]->label) ?
'' : $this->lines[$i]->label,
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
1045 $this->error = $this->db->error;
1050 if ($result > 0 && $this->lines[$i]->product_type == 9) {
1051 $fk_parent_line = $result;
1070 if (!$error && !$notrigger) {
1072 $result = $this->
call_trigger(
'PROPOSAL_SUPPLIER_CREATE', $user);
1079 $this->error = $this->db->lasterror();
1084 $this->error = $this->db->lasterror();
1089 $this->db->commit();
1090 dol_syslog(get_class($this).
"::create done id=".$this->
id);
1093 $this->db->rollback();
1097 $this->error = $this->db->lasterror();
1098 $this->db->rollback();
1112 global $conf, $hookmanager;
1120 foreach ($this->lines as $line) {
1121 $line->fetch_optionals();
1125 $objFrom = clone $this;
1127 $objsoc =
new Societe($this->db);
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 =
'';
1140 $objsoc->fetch($this->socid);
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';
1152 $this->user_author = $user->id;
1153 $this->user_author_id = $user->id;
1154 $this->user_valid = 0;
1155 $this->user_valid_id = 0;
1159 require_once DOL_DOCUMENT_ROOT.
"/core/modules/supplier_proposal/".$conf->global->SUPPLIER_PROPOSAL_ADDON.
'.php';
1160 $obj = $conf->global->SUPPLIER_PROPOSAL_ADDON;
1161 $modSupplierProposal =
new $obj;
1162 $this->
ref = $modSupplierProposal->getNextValue($objsoc, $this);
1165 $this->context[
'createfromclone'] =
'createfromclone';
1166 $result = $this->
create($user);
1173 if (is_object($hookmanager)) {
1174 $parameters = array(
'objFrom'=>$objFrom);
1176 $reshook = $hookmanager->executeHooks(
'createFrom', $parameters, $this, $action);
1184 unset($this->context[
'createfromclone']);
1188 $this->db->commit();
1191 $this->db->rollback();
1203 public function fetch($rowid, $ref =
'')
1207 $sql =
"SELECT p.rowid, p.entity, p.ref, p.remise, p.remise_percent, p.remise_absolue, p.fk_soc";
1208 $sql .=
", p.total_ttc, p.total_tva, p.localtax1, p.localtax2, p.total_ht";
1209 $sql .=
", p.datec";
1210 $sql .=
", p.date_valid as datev";
1211 $sql .=
", p.date_livraison as delivery_date";
1212 $sql .=
", p.model_pdf, p.extraparams";
1213 $sql .=
", p.note_private, p.note_public";
1214 $sql .=
", p.fk_projet as fk_project, p.fk_statut";
1215 $sql .=
", p.fk_user_author, p.fk_user_valid, p.fk_user_cloture";
1216 $sql .=
", p.fk_cond_reglement";
1217 $sql .=
", p.fk_mode_reglement";
1218 $sql .=
', p.fk_account';
1219 $sql .=
", p.fk_shipping_method";
1220 $sql .=
", p.fk_multicurrency, p.multicurrency_code, p.multicurrency_tx, p.multicurrency_total_ht, p.multicurrency_total_tva, p.multicurrency_total_ttc";
1221 $sql .=
", c.label as statut_label";
1222 $sql .=
", cr.code as cond_reglement_code, cr.libelle as cond_reglement, cr.libelle_facture as cond_reglement_libelle_doc";
1223 $sql .=
", cp.code as mode_reglement_code, cp.libelle as mode_reglement";
1224 $sql .=
" FROM ".MAIN_DB_PREFIX.
"c_propalst as c, ".MAIN_DB_PREFIX.
"supplier_proposal as p";
1225 $sql .=
' LEFT JOIN '.MAIN_DB_PREFIX.
'c_paiement as cp ON p.fk_mode_reglement = cp.id';
1226 $sql .=
' LEFT JOIN '.MAIN_DB_PREFIX.
'c_payment_term as cr ON p.fk_cond_reglement = cr.rowid';
1227 $sql .=
" WHERE p.fk_statut = c.id";
1228 $sql .=
" AND p.entity IN (".getEntity(
'supplier_proposal').
")";
1230 $sql .=
" AND p.ref = '".$this->db->escape($ref).
"'";
1232 $sql .=
" AND p.rowid = ".((int) $rowid);
1235 dol_syslog(get_class($this).
"::fetch", LOG_DEBUG);
1236 $resql = $this->db->query($sql);
1238 if ($this->db->num_rows($resql)) {
1239 $obj = $this->db->fetch_object($resql);
1241 $this->
id = $obj->rowid;
1242 $this->entity = $obj->entity;
1244 $this->
ref = $obj->ref;
1245 $this->remise = $obj->remise;
1246 $this->remise_percent = $obj->remise_percent;
1247 $this->remise_absolue = $obj->remise_absolue;
1248 $this->total_ht = $obj->total_ht;
1249 $this->total_tva = $obj->total_tva;
1250 $this->total_localtax1 = $obj->localtax1;
1251 $this->total_localtax2 = $obj->localtax2;
1252 $this->total_ttc = $obj->total_ttc;
1253 $this->socid = $obj->fk_soc;
1254 $this->fk_project = $obj->fk_project;
1255 $this->model_pdf = $obj->model_pdf;
1256 $this->modelpdf = $obj->model_pdf;
1257 $this->note = $obj->note_private;
1258 $this->note_private = $obj->note_private;
1259 $this->note_public = $obj->note_public;
1260 $this->
statut = (int) $obj->fk_statut;
1261 $this->status = (int) $obj->fk_statut;
1262 $this->datec = $this->db->jdate($obj->datec);
1263 $this->datev = $this->db->jdate($obj->datev);
1264 $this->date_creation = $this->db->jdate($obj->datec);
1265 $this->date = $this->date_creation;
1266 $this->date_validation = $this->db->jdate($obj->datev);
1267 $this->date_livraison = $this->db->jdate($obj->delivery_date);
1268 $this->delivery_date = $this->db->jdate($obj->delivery_date);
1269 $this->shipping_method_id = ($obj->fk_shipping_method > 0) ? $obj->fk_shipping_method :
null;
1271 $this->mode_reglement_id = $obj->fk_mode_reglement;
1272 $this->mode_reglement_code = $obj->mode_reglement_code;
1273 $this->mode_reglement = $obj->mode_reglement;
1274 $this->fk_account = ($obj->fk_account > 0) ? $obj->fk_account :
null;
1275 $this->cond_reglement_id = $obj->fk_cond_reglement;
1276 $this->cond_reglement_code = $obj->cond_reglement_code;
1277 $this->cond_reglement = $obj->cond_reglement;
1278 $this->cond_reglement_doc = $obj->cond_reglement_libelle_doc;
1280 $this->extraparams = (array) json_decode($obj->extraparams,
true);
1282 $this->user_author_id = $obj->fk_user_author;
1283 $this->user_valid_id = $obj->fk_user_valid;
1284 $this->user_close_id = $obj->fk_user_cloture;
1287 $this->fk_multicurrency = $obj->fk_multicurrency;
1288 $this->multicurrency_code = $obj->multicurrency_code;
1289 $this->multicurrency_tx = $obj->multicurrency_tx;
1290 $this->multicurrency_total_ht = $obj->multicurrency_total_ht;
1291 $this->multicurrency_total_tva = $obj->multicurrency_total_tva;
1292 $this->multicurrency_total_ttc = $obj->multicurrency_total_ttc;
1294 if ($obj->fk_statut == 0) {
1295 $this->brouillon = 1;
1302 $this->db->free($resql);
1304 $this->lines = array();
1307 $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,";
1308 $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,";
1309 $sql .=
' p.ref as product_ref, p.description as product_desc, p.fk_product_type, p.label as product_label,';
1310 $sql .=
' d.ref_fourn as ref_produit_fourn,';
1311 $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';
1312 $sql .=
" FROM ".MAIN_DB_PREFIX.
"supplier_proposaldet as d";
1313 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"product as p ON d.fk_product = p.rowid";
1314 $sql .=
" WHERE d.fk_supplier_proposal = ".((int) $this->
id);
1315 $sql .=
" ORDER by d.rang";
1317 $result = $this->db->query($sql);
1319 $num = $this->db->num_rows($result);
1323 $objp = $this->db->fetch_object($result);
1327 $line->rowid = $objp->rowid;
1328 $line->id = $objp->rowid;
1329 $line->fk_supplier_proposal = $objp->fk_supplier_proposal;
1330 $line->fk_parent_line = $objp->fk_parent_line;
1331 $line->product_type = $objp->product_type;
1332 $line->label = $objp->custom_label;
1333 $line->desc = $objp->description;
1334 $line->qty = $objp->qty;
1335 $line->tva_tx = $objp->tva_tx;
1336 $line->localtax1_tx = $objp->localtax1_tx;
1337 $line->localtax2_tx = $objp->localtax2_tx;
1338 $line->subprice = $objp->subprice;
1339 $line->fk_remise_except = $objp->fk_remise_except;
1340 $line->remise_percent = $objp->remise_percent;
1342 $line->info_bits = $objp->info_bits;
1343 $line->total_ht = $objp->total_ht;
1344 $line->total_tva = $objp->total_tva;
1345 $line->total_localtax1 = $objp->total_localtax1;
1346 $line->total_localtax2 = $objp->total_localtax2;
1347 $line->total_ttc = $objp->total_ttc;
1348 $line->fk_fournprice = $objp->fk_fournprice;
1349 $marginInfos =
getMarginInfos($objp->subprice, $objp->remise_percent, $objp->tva_tx, $objp->localtax1_tx, $objp->localtax2_tx, $line->fk_fournprice, $objp->pa_ht);
1350 $line->pa_ht = $marginInfos[0];
1351 $line->marge_tx = $marginInfos[1];
1352 $line->marque_tx = $marginInfos[2];
1353 $line->special_code = $objp->special_code;
1354 $line->rang = $objp->rang;
1356 $line->fk_product = $objp->fk_product;
1358 $line->ref = $objp->product_ref;
1359 $line->product_ref = $objp->product_ref;
1360 $line->libelle = $objp->product_label;
1361 $line->product_label = $objp->product_label;
1362 $line->product_desc = $objp->product_desc;
1363 $line->fk_product_type = $objp->fk_product_type;
1365 $line->ref_fourn = $objp->ref_produit_fourn;
1368 $line->fk_multicurrency = $objp->fk_multicurrency;
1369 $line->multicurrency_code = $objp->multicurrency_code;
1370 $line->multicurrency_subprice = $objp->multicurrency_subprice;
1371 $line->multicurrency_total_ht = $objp->multicurrency_total_ht;
1372 $line->multicurrency_total_tva = $objp->multicurrency_total_tva;
1373 $line->multicurrency_total_ttc = $objp->multicurrency_total_ttc;
1374 $line->fk_unit = $objp->fk_unit;
1376 $this->lines[$i] = $line;
1380 $this->db->free($result);
1382 $this->error = $this->db->error();
1393 $this->error =
"Record Not Found";
1396 $this->error = $this->db->error();
1408 public function valid($user, $notrigger = 0)
1410 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
1412 global $conf, $langs;
1417 if ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->supplier_proposal->creer))
1418 || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->supplier_proposal->validate_advance))) {
1422 $soc =
new Societe($this->db);
1423 $result = $soc->fetch($this->socid);
1430 if (preg_match(
'/^[\(]?PROV/i', $this->
ref) || empty($this->
ref)) {
1437 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"supplier_proposal";
1438 $sql .=
" SET ref = '".$this->db->escape($num).
"',";
1439 $sql .=
" fk_statut = 1, date_valid='".$this->db->idate($now).
"', fk_user_valid=".((int) $user->id);
1440 $sql .=
" WHERE rowid = ".((int) $this->
id).
" AND fk_statut = 0";
1442 dol_syslog(get_class($this).
"::valid", LOG_DEBUG);
1443 $resql = $this->db->query($sql);
1450 if (!$error && !$notrigger) {
1452 $result = $this->
call_trigger(
'PROPOSAL_SUPPLIER_VALIDATE', $user);
1460 $this->oldref = $this->ref;
1463 if (preg_match(
'/^[\(]?PROV/i', $this->
ref)) {
1465 $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).
"'";
1466 $sql .=
" WHERE filename LIKE '".$this->db->escape($this->
ref).
"%' AND filepath = 'supplier_proposal/".$this->db->escape($this->
ref).
"' and entity = ".$conf->entity;
1467 $resql = $this->db->query($sql);
1469 $error++; $this->error = $this->db->lasterror();
1471 $sql =
'UPDATE '.MAIN_DB_PREFIX.
"ecm_files set filepath = 'supplier_proposal/".$this->db->escape($this->newref).
"'";
1472 $sql .=
" WHERE filepath = 'supplier_proposal/".$this->db->escape($this->
ref).
"' and entity = ".$conf->entity;
1473 $resql = $this->db->query($sql);
1475 $error++; $this->error = $this->db->lasterror();
1481 $dirsource = $conf->supplier_proposal->dir_output.
'/'.$oldref;
1482 $dirdest = $conf->supplier_proposal->dir_output.
'/'.$newref;
1483 if (!$error && file_exists($dirsource)) {
1484 dol_syslog(get_class($this).
"::valid rename dir ".$dirsource.
" into ".$dirdest);
1485 if (@rename($dirsource, $dirdest)) {
1488 $listoffiles =
dol_dir_list($conf->supplier_proposal->dir_output.
'/'.$newref,
'files', 1,
'^'.preg_quote($oldref,
'/'));
1489 foreach ($listoffiles as $fileentry) {
1490 $dirsource = $fileentry[
'name'];
1491 $dirdest = preg_replace(
'/^'.preg_quote($oldref,
'/').
'/', $newref, $dirsource);
1492 $dirsource = $fileentry[
'path'].
'/'.$dirsource;
1493 $dirdest = $fileentry[
'path'].
'/'.$dirdest;
1494 @rename($dirsource, $dirdest);
1501 $this->brouillon = 0;
1503 $this->user_valid_id = $user->id;
1504 $this->datev = $now;
1506 $this->db->commit();
1509 $this->db->rollback();
1513 dol_syslog(
"You don't have permission to validate supplier proposal", LOG_WARNING);
1542 if (!empty($user->rights->supplier_proposal->creer)) {
1543 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"supplier_proposal ";
1544 $sql .=
" SET date_livraison = ".($delivery_date !=
'' ?
"'".$this->db->idate($delivery_date).
"'" :
'null');
1545 $sql .=
" WHERE rowid = ".((int) $this->
id);
1547 if ($this->db->query($sql)) {
1548 $this->date_livraison = $delivery_date;
1549 $this->delivery_date = $delivery_date;
1552 $this->error = $this->db->error();
1553 dol_syslog(get_class($this).
"::setDeliveryDate Erreur SQL");
1571 $remise = trim($remise) ?trim($remise) : 0;
1573 if (!empty($user->rights->supplier_proposal->creer)) {
1576 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"supplier_proposal SET remise_percent = ".((float) $remise);
1577 $sql .=
" WHERE rowid = ".((int) $this->
id).
" AND fk_statut = 0";
1579 if ($this->db->query($sql)) {
1580 $this->remise_percent = ((float) $remise);
1584 $this->error = $this->db->error();
1603 if (empty($remise)) {
1609 if (!empty($user->rights->supplier_proposal->creer)) {
1610 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"supplier_proposal ";
1611 $sql .=
" SET remise_absolue = ".((float) $remise);
1612 $sql .=
" WHERE rowid = ".((int) $this->
id).
" AND fk_statut = 0";
1614 if ($this->db->query($sql)) {
1615 $this->remise_absolue = $remise;
1619 $this->error = $this->db->error();
1639 global $langs, $conf;
1644 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"supplier_proposal";
1645 $sql .=
" SET fk_statut = ".((int) $this->
statut).
",";
1646 if (!empty(
$note)) {
1647 $sql .=
" note_private = '".$this->db->escape(
$note).
"',";
1649 $sql .=
" date_cloture=NULL, fk_user_cloture=NULL";
1650 $sql .=
" WHERE rowid = ".((int) $this->
id);
1654 dol_syslog(get_class($this).
"::reopen", LOG_DEBUG);
1655 $resql = $this->db->query($sql);
1657 $error++; $this->errors[] =
"Error ".$this->db->lasterror();
1662 $result = $this->
call_trigger(
'PROPOSAL_SUPPLIER_REOPEN', $user);
1672 if (!empty($this->errors)) {
1673 foreach ($this->errors as $errmsg) {
1674 dol_syslog(get_class($this).
"::update ".$errmsg, LOG_ERR);
1675 $this->error .= ($this->error ?
', '.$errmsg : $errmsg);
1678 $this->db->rollback();
1681 $this->db->commit();
1697 global $langs, $conf;
1707 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"supplier_proposal";
1708 $sql .=
" SET fk_statut = ".((int) $status).
", note_private = '".$this->db->escape(
$note).
"', date_cloture='".$this->db->idate($now).
"', fk_user_cloture=".$user->id;
1709 $sql .=
" WHERE rowid = ".((int) $this->
id);
1711 $resql = $this->db->query($sql);
1713 $modelpdf = $conf->global->SUPPLIER_PROPOSAL_ADDON_PDF_ODT_CLOSED ? $conf->global->SUPPLIER_PROPOSAL_ADDON_PDF_ODT_CLOSED : (empty($this->model_pdf) ?
'' : $this->model_pdf);
1714 $triggerName =
'PROPOSAL_SUPPLIER_CLOSE_REFUSED';
1717 $triggerName =
'PROPOSAL_SUPPLIER_CLOSE_SIGNED';
1718 $modelpdf = $conf->global->SUPPLIER_PROPOSAL_ADDON_PDF_ODT_TOBILL ? $conf->global->SUPPLIER_PROPOSAL_ADDON_PDF_ODT_TOBILL : (empty($this->model_pdf) ?
'' : $this->model_pdf);
1720 if (!empty($conf->global->SUPPLIER_PROPOSAL_UPDATE_PRICE_ON_SUPPlIER_PROPOSAL)) {
1725 $triggerName =
'PROPOSAL_SUPPLIER_CLASSIFY_BILLED';
1728 if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE)) {
1730 $outputlangs = $langs;
1732 $outputlangs =
new Translate(
"", $conf);
1733 $newlang = (
GETPOST(
'lang_id',
'aZ09') ?
GETPOST(
'lang_id',
'aZ09') : $this->thirdparty->default_lang);
1734 $outputlangs->setDefaultLang($newlang);
1737 $this->
generateDocument($modelpdf, $outputlangs, $hidedetails, $hidedesc, $hideref);
1748 $this->db->commit();
1751 $this->db->rollback();
1755 $this->error = $this->db->lasterror();
1756 $this->errors[] = $this->db->lasterror();
1757 $this->db->rollback();
1772 dol_syslog(get_class($this).
"::updateOrCreatePriceFournisseur", LOG_DEBUG);
1773 foreach ($this->lines as $product) {
1774 if ($product->subprice <= 0) {
1779 $multicurrency_tx = 1;
1780 $fk_multicurrency = 0;
1782 if (empty($this->thirdparty)) {
1786 $ref_fourn = $product->ref_fourn;
1787 if (empty($ref_fourn)) {
1788 $ref_fourn = $product->ref_supplier;
1790 if (isModEnabled(
"multicurrency") && !empty($product->multicurrency_code)) {
1793 $productsupplier->id = $product->fk_product;
1795 $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,
'',
'',
'');
1812 $unitPrice =
price2num($product->subprice,
'MU');
1814 $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);
1816 $resql = $this->db->query($sql);
1818 $this->error = $this->db->error();
1819 $this->db->rollback();
1838 $unitPrice =
price2num($product->subprice,
'MU');
1843 "'".$this->db->idate($now).
"'",
1844 $product->fk_product,
1845 $this->thirdparty->id,
1846 "'".$product->ref_fourn.
"'",
1853 if (isModEnabled(
"multicurrency")) {
1854 if (!empty($product->multicurrency_code)) {
1855 include_once DOL_DOCUMENT_ROOT.
'/multicurrency/class/multicurrency.class.php';
1857 $multicurrency->fetch(0, $product->multicurrency_code);
1858 if (!empty($multicurrency->id)) {
1859 $values[] = $multicurrency->id;
1860 $values[] =
"'".$product->multicurrency_code.
"'";
1861 $values[] = $product->multicurrency_subprice;
1862 $values[] = $product->multicurrency_total_ht;
1863 $values[] = $multicurrency->rate->rate;
1865 for ($i = 0; $i < 5; $i++) {
1872 $sql =
'INSERT INTO '.MAIN_DB_PREFIX.
'product_fournisseur_price ';
1873 $sql .=
'(datec, fk_product, fk_soc, ref_fourn, price, quantity, unitprice, tva_tx, fk_user';
1874 if (isModEnabled(
"multicurrency") && !empty($product->multicurrency_code)) {
1875 $sql .=
',fk_multicurrency, multicurrency_code, multicurrency_unitprice, multicurrency_price, multicurrency_tx';
1877 $sql .=
') VALUES ('.implode(
',', $values).
')';
1879 $resql = $this->db->query($sql);
1881 $this->error = $this->db->error();
1882 $this->db->rollback();
1898 global $conf, $langs;
1902 if ($this->
statut == self::STATUS_DRAFT) {
1903 dol_syslog(get_class($this).
"::setDraft already draft status", LOG_WARNING);
1907 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"supplier_proposal";
1908 $sql .=
" SET fk_statut = ".self::STATUS_DRAFT;
1909 $sql .=
" WHERE rowid = ".((int) $this->
id);
1911 if ($this->db->query($sql)) {
1913 $this->oldcopy = clone $this;
1918 $result = $this->
call_trigger(
'PROPOSAL_SUPPLIER_UNVALIDATE', $user);
1926 $this->brouillon = 1;
1927 $this->db->commit();
1930 $this->db->rollback();
1953 public function liste_array($shortlist = 0, $draft = 0, $notcurrentuser = 0, $socid = 0, $limit = 0, $offset = 0, $sortfield =
'p.datec', $sortorder =
'DESC')
1956 global $conf, $user;
1960 $sql =
"SELECT s.rowid, s.nom as name, s.client,";
1961 $sql .=
" p.rowid as supplier_proposalid, p.fk_statut, p.total_ht, p.ref, p.remise, ";
1962 $sql .=
" p.datep as dp, p.fin_validite as datelimite";
1963 if (empty($user->rights->societe->client->voir) && !$socid) {
1964 $sql .=
", sc.fk_soc, sc.fk_user";
1966 $sql .=
" FROM ".MAIN_DB_PREFIX.
"societe as s, ".MAIN_DB_PREFIX.
"supplier_proposal as p, ".MAIN_DB_PREFIX.
"c_propalst as c";
1967 if (empty($user->rights->societe->client->voir) && !$socid) {
1968 $sql .=
", ".MAIN_DB_PREFIX.
"societe_commerciaux as sc";
1970 $sql .=
" WHERE p.entity IN (".getEntity(
'supplier_proposal').
")";
1971 $sql .=
" AND p.fk_soc = s.rowid";
1972 $sql .=
" AND p.fk_statut = c.id";
1973 if (empty($user->rights->societe->client->voir) && !$socid) {
1974 $sql .=
" AND s.rowid = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
1977 $sql .=
" AND s.rowid = ".((int) $socid);
1980 $sql .=
" AND p.fk_statut = 0";
1982 if ($notcurrentuser > 0) {
1983 $sql .=
" AND p.fk_user_author <> ".$user->id;
1985 $sql .= $this->db->order($sortfield, $sortorder);
1986 $sql .= $this->db->plimit($limit, $offset);
1988 $result = $this->db->query($sql);
1990 $num = $this->db->num_rows($result);
1994 $obj = $this->db->fetch_object($result);
1996 if ($shortlist == 1) {
1997 $ga[$obj->supplier_proposalid] = $obj->ref;
1998 } elseif ($shortlist == 2) {
1999 $ga[$obj->supplier_proposalid] = $obj->ref.
' ('.$obj->name.
')';
2001 $ga[$i][
'id'] = $obj->supplier_proposalid;
2002 $ga[$i][
'ref'] = $obj->ref;
2003 $ga[$i][
'name'] = $obj->name;
2023 public function delete($user, $notrigger = 0)
2025 global $conf, $langs;
2026 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
2034 $result = $this->
call_trigger(
'PROPOSAL_SUPPLIER_DELETE', $user);
2042 $main = MAIN_DB_PREFIX.
'supplier_proposaldet';
2043 $ef = $main.
"_extrafields";
2044 $sqlef =
"DELETE FROM $ef WHERE fk_object IN (SELECT rowid FROM $main WHERE fk_supplier_proposal = ".((int) $this->
id).
")";
2045 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"supplier_proposaldet WHERE fk_supplier_proposal = ".((int) $this->
id);
2046 if ($this->db->query($sql)) {
2047 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"supplier_proposal WHERE rowid = ".((int) $this->
id);
2048 if ($this->db->query($sqlef) && $this->db->query($sql)) {
2061 if ($conf->supplier_proposal->dir_output && !empty($this->
ref)) {
2062 $dir = $conf->supplier_proposal->dir_output.
"/".$ref;
2063 $file = $dir.
"/".$ref.
".pdf";
2064 if (file_exists($file)) {
2068 $this->error =
'ErrorFailToDeleteFile';
2069 $this->errors = array(
'ErrorFailToDeleteFile');
2070 $this->db->rollback();
2074 if (file_exists($dir)) {
2077 $this->error =
'ErrorFailToDeleteDir';
2078 $this->errors = array(
'ErrorFailToDeleteDir');
2079 $this->db->rollback();
2092 dol_syslog(get_class($this).
"::delete erreur ".$errorflag.
" ".$this->error, LOG_ERR);
2097 dol_syslog(get_class($this).
"::delete ".$this->
id.
" by ".$user->id, LOG_DEBUG);
2098 $this->db->commit();
2101 $this->error = $this->db->lasterror();
2102 $this->db->rollback();
2106 $this->error = $this->db->lasterror();
2107 $this->db->rollback();
2111 $this->error = $this->db->lasterror();
2112 $this->db->rollback();
2116 $this->db->rollback();
2129 $sql =
"SELECT c.rowid, ";
2130 $sql .=
" c.datec, c.date_valid as datev, c.date_cloture as dateo,";
2131 $sql .=
" c.fk_user_author, c.fk_user_valid, c.fk_user_cloture";
2132 $sql .=
" FROM ".MAIN_DB_PREFIX.
"supplier_proposal as c";
2133 $sql .=
" WHERE c.rowid = ".((int) $id);
2135 $result = $this->db->query($sql);
2138 if ($this->db->num_rows($result)) {
2139 $obj = $this->db->fetch_object($result);
2141 $this->
id = $obj->rowid;
2143 $this->date_creation = $this->db->jdate($obj->datec);
2144 $this->date_validation = $this->db->jdate($obj->datev);
2145 $this->date_cloture = $this->db->jdate($obj->dateo);
2147 $cuser =
new User($this->db);
2148 $cuser->fetch($obj->fk_user_author);
2149 $this->user_creation = $cuser;
2151 if ($obj->fk_user_valid) {
2152 $vuser =
new User($this->db);
2153 $vuser->fetch($obj->fk_user_valid);
2154 $this->user_validation = $vuser;
2157 if ($obj->fk_user_cloture) {
2158 $cluser =
new User($this->db);
2159 $cluser->fetch($obj->fk_user_cloture);
2160 $this->user_cloture = $cluser;
2163 $this->db->free($result);
2194 if (empty($this->labelStatus) || empty($this->labelStatusShort)) {
2196 $langs->load(
"supplier_proposal");
2197 $this->labelStatus[
self::STATUS_DRAFT] = $langs->transnoentitiesnoconv(
"SupplierProposalStatusDraft");
2198 $this->labelStatus[
self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv(
"SupplierProposalStatusValidated");
2199 $this->labelStatus[
self::STATUS_SIGNED] = $langs->transnoentitiesnoconv(
"SupplierProposalStatusSigned");
2200 $this->labelStatus[
self::STATUS_NOTSIGNED] = $langs->transnoentitiesnoconv(
"SupplierProposalStatusNotSigned");
2201 $this->labelStatus[
self::STATUS_CLOSE] = $langs->transnoentitiesnoconv(
"SupplierProposalStatusClosed");
2202 $this->labelStatusShort[
self::STATUS_DRAFT] = $langs->transnoentitiesnoconv(
"SupplierProposalStatusDraftShort");
2203 $this->labelStatusShort[
self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv(
"SupplierProposalStatusValidatedShort");
2204 $this->labelStatusShort[
self::STATUS_SIGNED] = $langs->transnoentitiesnoconv(
"SupplierProposalStatusSignedShort");
2205 $this->labelStatusShort[
self::STATUS_NOTSIGNED] = $langs->transnoentitiesnoconv(
"SupplierProposalStatusNotSignedShort");
2206 $this->labelStatusShort[
self::STATUS_CLOSE] = $langs->transnoentitiesnoconv(
"SupplierProposalStatusClosedShort");
2210 if ($status == self::STATUS_DRAFT) {
2211 $statusnew =
'status0';
2212 } elseif ($status == self::STATUS_VALIDATED) {
2213 $statusnew =
'status1';
2214 } elseif ($status == self::STATUS_SIGNED) {
2215 $statusnew =
'status4';
2216 } elseif ($status == self::STATUS_NOTSIGNED) {
2217 $statusnew =
'status9';
2218 } elseif ($status == self::STATUS_CLOSE) {
2219 $statusnew =
'status6';
2222 return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status],
'', $statusnew, $mode);
2237 global $conf, $user, $langs;
2241 $this->nbtodo = $this->nbtodolate = 0;
2244 $sql =
"SELECT p.rowid, p.ref, p.datec as datec, p.date_cloture as datefin";
2245 $sql .=
" FROM ".MAIN_DB_PREFIX.
"supplier_proposal as p";
2246 if (empty($user->rights->societe->client->voir) && !$user->socid) {
2247 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"societe_commerciaux as sc ON p.fk_soc = sc.fk_soc";
2248 $sql .=
" WHERE sc.fk_user = ".((int) $user->id);
2251 $sql .= $clause.
" p.entity IN (".
getEntity(
'supplier_proposal').
")";
2252 if ($mode ==
'opened') {
2253 $sql .=
" AND p.fk_statut = 1";
2255 if ($mode ==
'signed') {
2256 $sql .=
" AND p.fk_statut = 2";
2259 $sql .=
" AND p.fk_soc = ".((int) $user->socid);
2262 $resql = $this->db->query($sql);
2264 $label = $labelShort =
'';
2266 if ($mode ==
'opened') {
2267 $delay_warning = !empty($conf->supplier_proposal->cloture->warning_delay) ? $conf->supplier_proposal->cloture->warning_delay : 0;
2269 $label = $langs->trans(
"SupplierProposalsToClose");
2270 $labelShort = $langs->trans(
"ToAcceptRefuse");
2272 if ($mode ==
'signed') {
2273 $delay_warning = !empty($conf->supplier_proposal->facturation->warning_delay) ? $conf->supplier_proposal->facturation->warning_delay : 0;
2275 $label = $langs->trans(
"SupplierProposalsToProcess");
2276 $labelShort = $langs->trans(
"ToClose");
2280 $response->warning_delay = $delay_warning / 60 / 60 / 24;
2281 $response->label = $label;
2282 $response->labelShort = $labelShort;
2283 $response->url = DOL_URL_ROOT.
'/supplier_proposal/list.php?search_status='.$status;
2287 while ($obj = $this->db->fetch_object($resql)) {
2288 $response->nbtodo++;
2289 if ($mode ==
'opened') {
2290 $datelimit = $this->db->jdate($obj->datefin);
2291 if ($datelimit < ($now - $delay_warning)) {
2292 $response->nbtodolate++;
2300 $this->error = $this->db->lasterror();
2315 global $user, $langs, $conf;
2320 $sql =
"SELECT rowid";
2321 $sql .=
" FROM ".MAIN_DB_PREFIX.
"product";
2322 $sql .=
" WHERE entity IN (".getEntity(
'product').
")";
2323 $sql .= $this->db->plimit(100);
2325 $resql = $this->db->query($sql);
2327 $num_prods = $this->db->num_rows($resql);
2329 while ($i < $num_prods) {
2331 $row = $this->db->fetch_row($resql);
2332 $prodids[$i] = $row[0];
2338 $this->
ref =
'SPECIMEN';
2339 $this->specimen = 1;
2341 $this->date = time();
2342 $this->cond_reglement_id = 1;
2343 $this->cond_reglement_code =
'RECEP';
2344 $this->mode_reglement_id = 7;
2345 $this->mode_reglement_code =
'CHQ';
2346 $this->note_public =
'This is a comment (public)';
2347 $this->note_private =
'This is a comment (private)';
2351 while ($xnbp < $nbp) {
2353 $line->desc = $langs->trans(
"Description").
" ".$xnbp;
2355 $line->subprice = 100;
2356 $line->tva_tx = 19.6;
2357 $line->localtax1_tx = 0;
2358 $line->localtax2_tx = 0;
2360 $line->total_ht = 50;
2361 $line->total_ttc = 59.8;
2362 $line->total_tva = 9.8;
2363 $line->remise_percent = 50;
2365 $line->total_ht = 100;
2366 $line->total_ttc = 119.6;
2367 $line->total_tva = 19.6;
2368 $line->remise_percent = 00;
2371 if ($num_prods > 0) {
2372 $prodid = mt_rand(1, $num_prods);
2373 $line->fk_product = $prodids[$prodid];
2376 $this->lines[$xnbp] = $line;
2378 $this->total_ht += $line->total_ht;
2379 $this->total_tva += $line->total_tva;
2380 $this->total_ttc += $line->total_ttc;
2395 global $conf, $user;
2397 $this->nb = array();
2400 $sql =
"SELECT count(p.rowid) as nb";
2401 $sql .=
" FROM ".MAIN_DB_PREFIX.
"supplier_proposal as p";
2402 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"societe as s ON p.fk_soc = s.rowid";
2403 if (empty($user->rights->societe->client->voir) && !$user->socid) {
2404 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"societe_commerciaux as sc ON s.rowid = sc.fk_soc";
2405 $sql .=
" WHERE sc.fk_user = ".((int) $user->id);
2408 $sql .=
" ".$clause.
" p.entity IN (".
getEntity(
'supplier_proposal').
")";
2410 $resql = $this->db->query($sql);
2413 while ($obj = $this->db->fetch_object($resql)) {
2414 $this->nb[
"supplier_proposals"] = $obj->nb;
2416 $this->db->free($resql);
2420 $this->error = $this->db->lasterror();
2435 global $conf, $db, $langs;
2436 $langs->load(
"supplier_proposal");
2438 if (!empty($conf->global->SUPPLIER_PROPOSAL_ADDON)) {
2441 $file = $conf->global->SUPPLIER_PROPOSAL_ADDON.
".php";
2442 $classname = $conf->global->SUPPLIER_PROPOSAL_ADDON;
2445 $dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
2446 foreach ($dirmodels as $reldir) {
2447 $dir =
dol_buildpath($reldir.
"core/modules/supplier_proposal/");
2450 $mybool |= @include_once $dir.$file;
2458 $obj =
new $classname();
2460 $numref = $obj->getNextValue($soc, $this);
2462 if ($numref !=
"") {
2465 $this->error = $obj->error;
2469 $langs->load(
"errors");
2470 print $langs->trans(
"Error").
" ".$langs->trans(
"ErrorModuleSetupNotComplete", $langs->transnoentitiesnoconv(
"SupplierProposal"));
2484 global $conf, $langs, $menumanager;
2486 $langs->load(
'supplier_proposal');
2488 if (!empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER)) {
2489 return [
'optimize' => $langs->trans(
"ShowSupplierProposal")];
2492 $option = $params[
'option'] ??
'';
2495 $datas[
'picto'] =
img_picto(
'', $this->picto).
' <u class="paddingrightonly">'.$langs->trans(
"SupplierProposal").
'</u>';
2496 if (isset($this->status)) {
2497 $datas[
'picto'] .=
' '.$this->getLibStatut(5);
2499 if (!empty($this->
ref)) {
2500 $datas[
'ref'] =
'<br><b>'.$langs->trans(
'Ref').
':</b> '.$this->ref;
2502 if (!empty($this->ref_fourn)) {
2503 $datas[
'ref_supplier'] =
'<br><b>'.$langs->trans(
'RefSupplier').
':</b> '.$this->ref_fourn;
2505 if (!empty($this->total_ht)) {
2506 $datas[
'amount_ht'] =
'<br><b>'.$langs->trans(
'AmountHT').
':</b> '.
price($this->total_ht, 0, $langs, 0, -1, -1, $conf->currency);
2508 if (!empty($this->total_tva)) {
2509 $datas[
'amount_vat'] =
'<br><b>'.$langs->trans(
'VAT').
':</b> '.
price($this->total_tva, 0, $langs, 0, -1, -1, $conf->currency);
2511 if (!empty($this->total_ttc)) {
2512 $datas[
'amount_ttc'] =
'<br><b>'.$langs->trans(
'AmountTTC').
':</b> '.
price($this->total_ttc, 0, $langs, 0, -1, -1, $conf->currency);
2529 public function getNomUrl($withpicto = 0, $option =
'', $get_params =
'', $notooltip = 0, $save_lastsearch_value = -1, $addlinktonotes = 0)
2531 global $langs, $conf, $user, $hookmanager;
2533 if (!empty($conf->dol_no_mouse_hover)) {
2541 'objecttype' => $this->element,
2542 'option' => $option,
2544 $classfortooltip =
'classfortooltip';
2547 $classfortooltip =
'classforajaxtooltip';
2548 $dataparams =
' data-params="'.dol_escape_htmltag(json_encode($params)).
'"';
2554 if ($option ==
'') {
2555 $url = DOL_URL_ROOT.
'/supplier_proposal/card.php?id='.$this->
id.$get_params;
2557 if ($option ==
'document') {
2558 $url = DOL_URL_ROOT.
'/supplier_proposal/document.php?id='.$this->
id.$get_params;
2561 if ($option !==
'nolink') {
2563 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
2564 if ($save_lastsearch_value == -1 && preg_match(
'/list\.php/', $_SERVER[
"PHP_SELF"])) {
2565 $add_save_lastsearch_values = 1;
2567 if ($add_save_lastsearch_values) {
2568 $url .=
'&save_lastsearch_values=1';
2573 if (empty($notooltip) && $user->hasRight(
'propal',
'lire')) {
2574 if (!empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER)) {
2575 $label = $langs->trans(
"ShowSupplierProposal");
2576 $linkclose .=
' alt="'.dol_escape_htmltag($label, 1).
'"';
2578 $linkclose .= ($label ?
' title="'.dol_escape_htmltag($label, 1).
'"' :
' title="tocomplete"');
2579 $linkclose .= $dataparams.
' class="'.$classfortooltip.
'"';
2582 $linkstart =
'<a href="'.$url.
'"';
2583 $linkstart .= $linkclose.
'>';
2586 $result .= $linkstart;
2588 $result .=
img_object(($notooltip ?
'' : $label), ($this->picto ? $this->picto :
'generic'), (($withpicto != 2) ?
'class="paddingright"' :
''), 0, 0, $notooltip ? 0 : 1);
2590 if ($withpicto != 2) {
2591 $result .= $this->ref;
2593 $result .= $linkend;
2595 if ($addlinktonotes) {
2596 $txttoshow = ($user->socid > 0 ? $this->note_public : $this->note_private);
2599 $result .=
' <span class="note inline-block">';
2600 $result .=
'<a href="'.DOL_URL_ROOT.
'/supplier_proposal/note.php?id='.$this->
id.
'" class="classfortooltip" title="'.
dol_escape_htmltag($notetoshow).
'">';
2605 $result .=
'</span>';
2609 $hookmanager->initHooks(array($this->element .
'dao'));
2610 $parameters = array(
'id'=>$this->
id,
'getnomurl' => &$result);
2611 $reshook = $hookmanager->executeHooks(
'getNomUrl', $parameters, $this, $action);
2613 $result = $hookmanager->resPrint;
2615 $result .= $hookmanager->resPrint;
2629 $sql =
'SELECT pt.rowid, pt.label as custom_label, pt.description, pt.fk_product, pt.fk_remise_except,';
2630 $sql .=
' pt.qty, pt.tva_tx, pt.vat_src_code, pt.remise_percent, pt.subprice, pt.info_bits,';
2631 $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,';
2632 $sql .=
' pt.product_type, pt.rang, pt.fk_parent_line,';
2633 $sql .=
' p.label as product_label, p.ref, p.fk_product_type, p.rowid as prodid,';
2634 $sql .=
' p.description as product_desc, pt.ref_fourn as ref_supplier,';
2635 $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';
2636 $sql .=
' FROM '.MAIN_DB_PREFIX.
'supplier_proposaldet as pt';
2637 $sql .=
' LEFT JOIN '.MAIN_DB_PREFIX.
'product as p ON pt.fk_product=p.rowid';
2638 $sql .=
' WHERE pt.fk_supplier_proposal = '.((int) $this->
id);
2639 $sql .=
' ORDER BY pt.rang ASC, pt.rowid';
2641 dol_syslog(get_class($this).
'::getLinesArray', LOG_DEBUG);
2642 $resql = $this->db->query($sql);
2644 $num = $this->db->num_rows($resql);
2648 $obj = $this->db->fetch_object($resql);
2651 $this->lines[$i]->id = $obj->rowid;
2652 $this->lines[$i]->rowid = $obj->rowid;
2653 $this->lines[$i]->label = $obj->custom_label;
2654 $this->lines[$i]->description = $obj->description;
2655 $this->lines[$i]->fk_product = $obj->fk_product;
2656 $this->lines[$i]->ref = $obj->ref;
2657 $this->lines[$i]->product_label = $obj->product_label;
2658 $this->lines[$i]->product_desc = $obj->product_desc;
2659 $this->lines[$i]->fk_product_type = $obj->fk_product_type;
2660 $this->lines[$i]->product_type = $obj->product_type;
2661 $this->lines[$i]->qty = $obj->qty;
2662 $this->lines[$i]->subprice = $obj->subprice;
2663 $this->lines[$i]->fk_remise_except = $obj->fk_remise_except;
2664 $this->lines[$i]->remise_percent = $obj->remise_percent;
2665 $this->lines[$i]->tva_tx = $obj->tva_tx;
2666 $this->lines[$i]->vat_src_code = $obj->vat_src_code;
2667 $this->lines[$i]->info_bits = $obj->info_bits;
2668 $this->lines[$i]->total_ht = $obj->total_ht;
2669 $this->lines[$i]->total_tva = $obj->total_tva;
2670 $this->lines[$i]->total_ttc = $obj->total_ttc;
2671 $this->lines[$i]->fk_fournprice = $obj->fk_fournprice;
2672 $marginInfos =
getMarginInfos($obj->subprice, $obj->remise_percent, $obj->tva_tx, $obj->localtax1_tx, $obj->localtax2_tx, $this->lines[$i]->fk_fournprice, $obj->pa_ht);
2673 $this->lines[$i]->pa_ht = $marginInfos[0];
2674 $this->lines[$i]->marge_tx = $marginInfos[1];
2675 $this->lines[$i]->marque_tx = $marginInfos[2];
2676 $this->lines[$i]->fk_parent_line = $obj->fk_parent_line;
2677 $this->lines[$i]->special_code = $obj->special_code;
2678 $this->lines[$i]->rang = $obj->rang;
2680 $this->lines[$i]->ref_fourn = $obj->ref_supplier;
2681 $this->lines[$i]->ref_supplier = $obj->ref_supplier;
2684 $this->lines[$i]->fk_multicurrency = $obj->fk_multicurrency;
2685 $this->lines[$i]->multicurrency_code = $obj->multicurrency_code;
2686 $this->lines[$i]->multicurrency_subprice = $obj->multicurrency_subprice;
2687 $this->lines[$i]->multicurrency_total_ht = $obj->multicurrency_total_ht;
2688 $this->lines[$i]->multicurrency_total_tva = $obj->multicurrency_total_tva;
2689 $this->lines[$i]->multicurrency_total_ttc = $obj->multicurrency_total_ttc;
2690 $this->lines[$i]->fk_unit = $obj->fk_unit;
2694 $this->db->free($resql);
2698 $this->error = $this->db->error();
2714 public function generateDocument($modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0, $moreparams =
null)
2716 global $conf, $langs;
2718 $langs->load(
"supplier_proposal");
2719 $outputlangs->load(
"products");
2724 if ($this->model_pdf) {
2725 $modele = $this->model_pdf;
2726 } elseif (!empty($conf->global->SUPPLIER_PROPOSAL_ADDON_PDF)) {
2727 $modele = $conf->global->SUPPLIER_PROPOSAL_ADDON_PDF;
2731 $modelpath =
"core/modules/supplier_proposal/doc/";
2733 return $this->
commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams);
2765 'supplier_proposaldet'
2783 $selected = (empty($arraydata[
'selected']) ? 0 : $arraydata[
'selected']);
2785 $return =
'<div class="box-flex-item box-flex-grow-zero">';
2786 $return .=
'<div class="info-box info-box-sm">';
2787 $return .=
'<span class="info-box-icon bg-infobox-action">';
2790 $return .=
'</span>';
2791 $return .=
'<div class="info-box-content">';
2792 $return .=
'<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">'.(method_exists($this,
'getNomUrl') ? $this->
getNomUrl() : $this->ref).
'</span>';
2793 $return .=
'<input id="cb'.$this->id.
'" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="'.$this->
id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
2794 if (property_exists($this,
'socid')) {
2795 $return .=
'<span class="info-box-ref"> | '.$this->socid.
'</span>';
2797 if (property_exists($this,
'delivery_date')) {
2798 $return .=
'<br><span class="opacitymedium">'.$langs->trans(
"DateEnd").
'</span> : <span class="info-box-label">'.
dol_print_date($this->delivery_date).
'</span>';
2800 if (property_exists($this,
'total_ttc')) {
2801 $return .=
'<br><span class="opacitymedium" >'.$langs->trans(
"AmountHT").
' : </span><span class="info-box-label amount">'.
price($this->total_ttc).
'</span>';
2803 if (method_exists($this,
'getLibStatut')) {
2804 $return .=
'<br><div class="info-box-status margintoponly">'.$this->getLibStatut(3).
'</div>';
2806 $return .=
'</div>';
2807 $return .=
'</div>';
2808 $return .=
'</div>';
2832 public $element =
'supplier_proposaldet';
2837 public $table_element =
'supplier_proposaldet';
2849 public $fk_supplier_proposal;
2854 public $fk_parent_line;
2877 public $vat_src_code;
2880 public $remise_percent;
2885 public $fk_remise_except;
2892 public $fk_fournprice;
2898 public $special_code;
2903 public $info_bits = 0;
2925 public $product_ref;
2937 public $product_label;
2943 public $product_desc;
2945 public $localtax1_tx;
2946 public $localtax2_tx;
2947 public $localtax1_type;
2948 public $localtax2_type;
2949 public $total_localtax1;
2950 public $total_localtax2;
2952 public $skip_update_total;
2955 public $ref_supplier;
2961 public $fk_multicurrency;
2963 public $multicurrency_code;
2964 public $multicurrency_subprice;
2965 public $multicurrency_total_ht;
2966 public $multicurrency_total_tva;
2967 public $multicurrency_total_ttc;
2987 $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,';
2988 $sql .=
' pd.date_start, pd.date_end,';
2989 $sql .=
' pd.remise, pd.remise_percent, pd.fk_remise_except, pd.subprice,';
2990 $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,';
2991 $sql .=
' pd.localtax1_tx, pd.localtax2_tx, pd.total_localtax1, pd.total_localtax2,';
2992 $sql .=
' p.ref as product_ref, p.label as product_label, p.description as product_desc,';
2993 $sql .=
' pd.product_type, pd.ref_fourn as ref_produit_fourn,';
2994 $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';
2995 $sql .=
' FROM '.MAIN_DB_PREFIX.
'supplier_proposaldet as pd';
2996 $sql .=
' LEFT JOIN '.MAIN_DB_PREFIX.
'product as p ON pd.fk_product = p.rowid';
2997 $sql .=
' WHERE pd.rowid = '.((int) $rowid);
2999 $result = $this->db->query($sql);
3001 $objp = $this->db->fetch_object($result);
3003 $this->
id = $objp->rowid;
3004 $this->fk_supplier_proposal = $objp->fk_supplier_proposal;
3005 $this->fk_parent_line = $objp->fk_parent_line;
3006 $this->label = $objp->custom_label;
3007 $this->desc = $objp->description;
3008 $this->qty = $objp->qty;
3009 $this->subprice = $objp->subprice;
3010 $this->tva_tx = $objp->tva_tx;
3011 $this->remise_percent = $objp->remise_percent;
3012 $this->fk_remise_except = $objp->fk_remise_except;
3013 $this->fk_product = $objp->fk_product;
3014 $this->info_bits = $objp->info_bits;
3015 $this->date_start = $this->db->jdate($objp->date_start);
3016 $this->date_end = $this->db->jdate($objp->date_end);
3018 $this->total_ht = $objp->total_ht;
3019 $this->total_tva = $objp->total_tva;
3020 $this->total_ttc = $objp->total_ttc;
3022 $this->fk_fournprice = $objp->fk_fournprice;
3024 $marginInfos =
getMarginInfos($objp->subprice, $objp->remise_percent, $objp->tva_tx, $objp->localtax1_tx, $objp->localtax2_tx, $this->fk_fournprice, $objp->pa_ht);
3025 $this->pa_ht = $marginInfos[0];
3026 $this->marge_tx = $marginInfos[1];
3027 $this->marque_tx = $marginInfos[2];
3029 $this->special_code = $objp->special_code;
3030 $this->product_type = $objp->product_type;
3031 $this->rang = $objp->rang;
3033 $this->
ref = $objp->product_ref;
3034 $this->product_ref = $objp->product_ref;
3035 $this->libelle = $objp->product_label;
3036 $this->product_label = $objp->product_label;
3037 $this->product_desc = $objp->product_desc;
3039 $this->ref_fourn = $objp->ref_produit_fourn;
3042 $this->fk_multicurrency = $objp->fk_multicurrency;
3043 $this->multicurrency_code = $objp->multicurrency_code;
3044 $this->multicurrency_subprice = $objp->multicurrency_subprice;
3045 $this->multicurrency_total_ht = $objp->multicurrency_total_ht;
3046 $this->multicurrency_total_tva = $objp->multicurrency_total_tva;
3047 $this->multicurrency_total_ttc = $objp->multicurrency_total_ttc;
3048 $this->fk_unit = $objp->fk_unit;
3050 $this->db->free($result);
3066 global $conf, $langs, $user;
3070 dol_syslog(get_class($this).
"::insert rang=".$this->rang);
3073 if (empty($this->tva_tx)) {
3076 if (empty($this->vat_src_code)) {
3077 $this->vat_src_code =
'';
3079 if (empty($this->localtax1_tx)) {
3080 $this->localtax1_tx = 0;
3082 if (empty($this->localtax2_tx)) {
3083 $this->localtax2_tx = 0;
3085 if (empty($this->localtax1_type)) {
3086 $this->localtax1_type = 0;
3088 if (empty($this->localtax2_type)) {
3089 $this->localtax2_type = 0;
3091 if (empty($this->total_localtax1)) {
3092 $this->total_localtax1 = 0;
3094 if (empty($this->total_localtax2)) {
3095 $this->total_localtax2 = 0;
3097 if (empty($this->rang)) {
3100 if (empty($this->remise_percent)) {
3101 $this->remise_percent = 0;
3103 if (empty($this->info_bits)) {
3104 $this->info_bits = 0;
3106 if (empty($this->special_code)) {
3107 $this->special_code = 0;
3109 if (empty($this->fk_parent_line)) {
3110 $this->fk_parent_line = 0;
3112 if (empty($this->fk_fournprice)) {
3113 $this->fk_fournprice = 0;
3115 if (empty($this->fk_unit)) {
3118 if (empty($this->subprice)) {
3119 $this->subprice = 0;
3122 if (empty($this->pa_ht)) {
3127 if ($this->pa_ht == 0) {
3128 $result = $this->
defineBuyPrice($this->subprice, $this->remise_percent, $this->fk_product);
3132 $this->pa_ht = $result;
3137 if ($this->product_type < 0) {
3144 $sql =
'INSERT INTO '.MAIN_DB_PREFIX.
'supplier_proposaldet';
3145 $sql .=
' (fk_supplier_proposal, fk_parent_line, label, description, fk_product, product_type,';
3146 $sql .=
' date_start, date_end,';
3147 $sql .=
' fk_remise_except, qty, tva_tx, vat_src_code, localtax1_tx, localtax2_tx, localtax1_type, localtax2_type,';
3148 $sql .=
' subprice, remise_percent, ';
3149 $sql .=
' info_bits, ';
3150 $sql .=
' total_ht, total_tva, total_localtax1, total_localtax2, total_ttc, fk_product_fournisseur_price, buy_price_ht, special_code, rang,';
3151 $sql .=
' ref_fourn,';
3152 $sql .=
' fk_multicurrency, multicurrency_code, multicurrency_subprice, multicurrency_total_ht, multicurrency_total_tva, multicurrency_total_ttc, fk_unit)';
3153 $sql .=
" VALUES (".$this->fk_supplier_proposal.
",";
3154 $sql .=
" ".($this->fk_parent_line > 0 ? ((int) $this->fk_parent_line) :
"null").
",";
3155 $sql .=
" ".(!empty($this->label) ?
"'".$this->db->escape($this->label).
"'" :
"null").
",";
3156 $sql .=
" '".$this->db->escape($this->desc).
"',";
3157 $sql .=
" ".($this->fk_product ? ((int) $this->fk_product) :
"null").
",";
3158 $sql .=
" '".$this->db->escape($this->product_type).
"',";
3159 $sql .=
" ".($this->date_start ?
"'".$this->db->idate($this->date_start).
"'" :
"null").
",";
3160 $sql .=
" ".($this->date_end ?
"'".$this->db->idate($this->date_end).
"'" :
"null").
",";
3161 $sql .=
" ".($this->fk_remise_except ? ((int) $this->fk_remise_except) :
"null").
",";
3162 $sql .=
" ".price2num($this->qty,
'MS').
",";
3163 $sql .=
" ".price2num($this->tva_tx).
",";
3164 $sql .=
" '".$this->db->escape($this->vat_src_code).
"',";
3165 $sql .=
" ".price2num($this->localtax1_tx).
",";
3166 $sql .=
" ".price2num($this->localtax2_tx).
",";
3167 $sql .=
" '".$this->db->escape($this->localtax1_type).
"',";
3168 $sql .=
" '".$this->db->escape($this->localtax2_type).
"',";
3169 $sql .=
" ".price2num($this->subprice,
'MU') .
",";
3170 $sql .=
" ".((float) $this->remise_percent).
",";
3171 $sql .=
" ".(isset($this->info_bits) ? ((int) $this->info_bits) :
"null").
",";
3172 $sql .=
" ".price2num($this->total_ht,
'MT').
",";
3173 $sql .=
" ".price2num($this->total_tva,
'MT').
",";
3174 $sql .=
" ".price2num($this->total_localtax1,
'MT').
",";
3175 $sql .=
" ".price2num($this->total_localtax2,
'MT').
",";
3176 $sql .=
" ".price2num($this->total_ttc,
'MT').
",";
3177 $sql .=
" ".(!empty($this->fk_fournprice) ? ((int) $this->fk_fournprice) :
"null").
",";
3178 $sql .=
" ".(isset($this->pa_ht) ?
price2num($this->pa_ht,
'MU') :
"null").
",";
3179 $sql .=
' '.((int) $this->special_code).
',';
3180 $sql .=
' '.((int) $this->rang).
',';
3181 $sql .=
" '".$this->db->escape($this->ref_fourn).
"'";
3182 $sql .=
", ".($this->fk_multicurrency > 0 ? ((int) $this->fk_multicurrency) :
'null');
3183 $sql .=
", '".$this->db->escape($this->multicurrency_code).
"'";
3184 $sql .=
", ".price2num($this->multicurrency_subprice,
'CU');
3185 $sql .=
", ".price2num($this->multicurrency_total_ht,
'CT');
3186 $sql .=
", ".price2num($this->multicurrency_total_tva,
'CT');
3187 $sql .=
", ".price2num($this->multicurrency_total_ttc,
'CT');
3188 $sql .=
", ".($this->fk_unit ? ((int) $this->fk_unit) :
'null');
3191 dol_syslog(get_class($this).
'::insert', LOG_DEBUG);
3192 $resql = $this->db->query($sql);
3194 $this->
id = $this->db->last_insert_id(MAIN_DB_PREFIX.
'supplier_proposaldet');
3203 if (!$error && !$notrigger) {
3205 $result = $this->
call_trigger(
'LINESUPPLIER_PROPOSAL_INSERT', $user);
3207 $this->db->rollback();
3213 $this->db->commit();
3216 $this->error = $this->db->error().
" sql=".$sql;
3217 $this->db->rollback();
3227 public function delete()
3229 global $conf, $langs, $user;
3234 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"supplier_proposaldet WHERE rowid = ".((int) $this->
id);
3235 dol_syslog(
"SupplierProposalLine::delete", LOG_DEBUG);
3236 if ($this->db->query($sql)) {
3242 dol_syslog(get_class($this).
"::delete error -4 ".$this->error, LOG_ERR);
3247 $result = $this->
call_trigger(
'LINESUPPLIER_PROPOSAL_DELETE', $user);
3249 $this->db->rollback();
3254 $this->db->commit();
3258 $this->error = $this->db->error().
" sql=".$sql;
3259 $this->db->rollback();
3272 global $conf, $langs, $user;
3277 if (empty($this->tva_tx)) {
3280 if (empty($this->localtax1_tx)) {
3281 $this->localtax1_tx = 0;
3283 if (empty($this->localtax2_tx)) {
3284 $this->localtax2_tx = 0;
3286 if (empty($this->total_localtax1)) {
3287 $this->total_localtax1 = 0;
3289 if (empty($this->total_localtax2)) {
3290 $this->total_localtax2 = 0;
3292 if (empty($this->localtax1_type)) {
3293 $this->localtax1_type = 0;
3295 if (empty($this->localtax2_type)) {
3296 $this->localtax2_type = 0;
3298 if (empty($this->marque_tx)) {
3299 $this->marque_tx = 0;
3301 if (empty($this->marge_tx)) {
3302 $this->marge_tx = 0;
3304 if (empty($this->remise_percent)) {
3305 $this->remise_percent = 0;
3307 if (empty($this->info_bits)) {
3308 $this->info_bits = 0;
3310 if (empty($this->special_code)) {
3311 $this->special_code = 0;
3313 if (empty($this->fk_parent_line)) {
3314 $this->fk_parent_line = 0;
3316 if (empty($this->fk_fournprice)) {
3317 $this->fk_fournprice = 0;
3319 if (empty($this->fk_unit)) {
3322 if (empty($this->subprice)) {
3323 $this->subprice = 0;
3326 if (empty($this->pa_ht)) {
3331 if ($this->pa_ht == 0) {
3332 $result = $this->
defineBuyPrice($this->subprice, $this->remise_percent, $this->fk_product);
3336 $this->pa_ht = $result;
3343 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"supplier_proposaldet SET";
3344 $sql .=
" description='".$this->db->escape($this->desc).
"'";
3345 $sql .=
" , label=".(!empty($this->label) ?
"'".$this->db->escape($this->label).
"'" :
"null");
3346 $sql .=
" , product_type=".((int) $this->product_type);
3347 $sql .=
" , date_start=".($this->date_start ?
"'".$this->db->idate($this->date_start).
"'" :
"null");
3348 $sql .=
" , date_end=".($this->date_end ?
"'".$this->db->idate($this->date_end).
"'" :
"null");
3349 $sql .=
" , tva_tx='".price2num($this->tva_tx).
"'";
3350 $sql .=
" , localtax1_tx=".price2num($this->localtax1_tx);
3351 $sql .=
" , localtax2_tx=".price2num($this->localtax2_tx);
3352 $sql .=
" , localtax1_type='".$this->db->escape($this->localtax1_type).
"'";
3353 $sql .=
" , localtax2_type='".$this->db->escape($this->localtax2_type).
"'";
3354 $sql .=
" , qty='".price2num($this->qty).
"'";
3355 $sql .=
" , subprice=".price2num($this->subprice);
3356 $sql .=
" , remise_percent=".price2num($this->remise_percent);
3357 $sql .=
" , info_bits='".$this->db->escape($this->info_bits).
"'";
3358 if (empty($this->skip_update_total)) {
3359 $sql .=
" , total_ht=".price2num($this->total_ht);
3360 $sql .=
" , total_tva=".price2num($this->total_tva);
3361 $sql .=
" , total_ttc=".price2num($this->total_ttc);
3362 $sql .=
" , total_localtax1=".price2num($this->total_localtax1);
3363 $sql .=
" , total_localtax2=".price2num($this->total_localtax2);
3365 $sql .=
" , fk_product_fournisseur_price=".(!empty($this->fk_fournprice) ?
"'".$this->db->escape($this->fk_fournprice).
"'" :
"null");
3366 $sql .=
" , buy_price_ht=".price2num($this->pa_ht);
3367 if (strlen($this->special_code)) {
3368 $sql .=
" , special_code=".((int) $this->special_code);
3370 $sql .=
" , fk_parent_line=".($this->fk_parent_line > 0 ? $this->fk_parent_line :
"null");
3371 if (!empty($this->rang)) {
3372 $sql .=
", rang=".((int) $this->rang);
3374 $sql .=
" , ref_fourn=".(!empty($this->ref_fourn) ?
"'".$this->db->escape($this->ref_fourn).
"'" :
"null");
3375 $sql .=
" , fk_unit=".($this->fk_unit ? $this->fk_unit :
'null');
3378 $sql .=
" , multicurrency_subprice=".price2num($this->multicurrency_subprice);
3379 $sql .=
" , multicurrency_total_ht=".price2num($this->multicurrency_total_ht);
3380 $sql .=
" , multicurrency_total_tva=".price2num($this->multicurrency_total_tva);
3381 $sql .=
" , multicurrency_total_ttc=".price2num($this->multicurrency_total_ttc);
3383 $sql .=
" WHERE rowid = ".((int) $this->
id);
3385 dol_syslog(get_class($this).
"::update", LOG_DEBUG);
3386 $resql = $this->db->query($sql);
3395 if (!$error && !$notrigger) {
3397 $result = $this->
call_trigger(
'LINESUPPLIER_PROPOSAL_MODIFY', $user);
3399 $this->db->rollback();
3405 $this->db->commit();
3408 $this->error = $this->db->error();
3409 $this->db->rollback();
3427 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"supplier_proposaldet SET";
3428 $sql .=
" total_ht=".price2num($this->total_ht,
'MT');
3429 $sql .=
",total_tva=".price2num($this->total_tva,
'MT');
3430 $sql .=
",total_ttc=".price2num($this->total_ttc,
'MT');
3431 $sql .=
" WHERE rowid = ".((int) $this->
id);
3433 dol_syslog(
"SupplierProposalLine::update_total", LOG_DEBUG);
3435 $resql = $this->db->query($sql);
3437 $this->db->commit();
3440 $this->error = $this->db->error();
3441 $this->db->rollback();
Parent class of all other business classes (invoices, contracts, proposals, orders,...
fetch_optionals($rowid=null, $optionsArray=null)
Function to get extra fields of an object into $this->array_options This method is in most cases call...
line_order($renum=false, $rowidorder='ASC', $fk_parent_line=true)
Save a new position (field rang) for details lines.
deleteEcmFiles($mode=0)
Delete related files of object in database.
add_object_linked($origin=null, $origin_id=null, $f_user=null, $notrigger=0)
Add an object link into llx_element_element.
defineBuyPrice($unitPrice=0.0, $discountPercent=0.0, $fk_product=0)
Get buy price to use for margin calculation.
commonGenerateDocument($modelspath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams=null)
Common function for all objects extending CommonObject for generating documents.
fetch_thirdparty($force_thirdparty_id=0)
Load the third party of object, from id $this->socid or $this->fk_soc, into this->thirdparty.
setErrorsFromObject($object)
setErrorsFromObject
static isExistingObject($element, $id, $ref='', $ref_ext='')
Check an object id/ref exists If you don't need/want to instantiate object and just need to know if o...
updateRangOfLine($rowid, $rang)
Update position of line (rang)
deleteObjectLinked($sourceid=null, $sourcetype='', $targetid=null, $targettype='', $rowid='', $f_user=null, $notrigger=0)
Delete all links between an object $this.
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).
deleteExtraFields()
Delete all extra fields values for the current object.
static commonReplaceThirdparty(DoliDB $dbs, $origin_id, $dest_id, array $tables, $ignoreerrors=0)
Function used to replace a thirdparty id with another one.
static commonReplaceProduct(DoliDB $dbs, $origin_id, $dest_id, array $tables, $ignoreerrors=0)
Function used to replace a product id with another one.
line_max($fk_parent_line=0)
Get max value used for position of line (rang)
insertExtraFields($trigger='', $userused=null)
Add/Update all extra fields values for the current object.
call_trigger($triggerName, $user)
Call trigger based on this instance.
Parent class for class inheritance lines of business objects This class is useless for the moment so ...
Class to manage absolute discounts.
Class to manage Dolibarr database access.
static getIdAndTxFromCode($dbs, $code, $date_document='')
Get id and rate of currency from code.
Class to manage predefined suppliers products.
Class to manage products or services.
const TYPE_PRODUCT
Regular product.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage price ask supplier.
updatePriceFournisseur($idProductFournPrice, $product, $user)
Upate ProductFournisseur.
cloture($user, $status, $note)
Close the askprice.
set_remise_percent($user, $remise)
Set an overall discount on the proposal.
generateDocument($modele, $outputlangs, $hidedetails=0, $hidedesc=0, $hideref=0, $moreparams=null)
Create a document onto disk according to template module.
deleteline($lineid)
Delete detail line.
info($id)
Object SupplierProposal Information.
create($user, $notrigger=0)
Create commercial proposal into database this->ref can be set or empty.
insert_discount($idremise)
Adding line of fixed discount in the proposal in DB.
static replaceProduct(DoliDB $db, $origin_id, $dest_id)
Function used to replace a product id with another one.
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.
getNextNumRef($soc)
Returns the reference to the following non used Proposal used depending on the active numbering modul...
fetch($rowid, $ref='')
Load a proposal from database and its ligne array.
load_board($user, $mode)
Load indicators for dashboard (this->nbtodo and this->nbtodolate)
createFromClone(User $user, $fromid=0)
Load an object from its id and create a new one in database.
initAsSpecimen()
Initialise an instance with random values.
const STATUS_NOTSIGNED
Not signed quote, canceled.
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...
const STATUS_DRAFT
Draft status.
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.
setDeliveryDate($user, $delivery_date)
Set delivery date.
LibStatut($status, $mode=1)
Return label of a status (draft, validated, ...)
__construct($db, $socid="", $supplier_proposalid=0)
Constructor.
static replaceThirdparty(DoliDB $dbs, $origin_id, $dest_id)
Function used to replace a thirdparty id with another one.
updateOrCreatePriceFournisseur($user)
Add or update supplier price according to result of proposal.
load_state_board()
Load indicator this->nb of global stats widget.
reopen($user, $statut, $note='', $notrigger=0)
Reopen the commercial proposal.
const STATUS_VALIDATED
Validated status.
createPriceFournisseur($product, $user)
Create ProductFournisseur.
getLibStatut($mode=0)
Return label of status of proposal (draft, validated, ...)
set_remise_absolue($user, $remise)
Set an absolute overall discount on the proposal.
add_product($idproduct, $qty, $remise_percent=0)
Add line into array ->lines.
set_date_livraison($user, $delivery_date)
Set delivery date.
const STATUS_SIGNED
Signed quote.
getNomUrl($withpicto=0, $option='', $get_params='', $notooltip=0, $save_lastsearch_value=-1, $addlinktonotes=0)
Return clicable link of object (with eventually picto)
getKanbanView($option='', $arraydata=null)
Return clicable link of object (with eventually picto)
getTooltipContentArray($params)
getTooltipContentArray
valid($user, $notrigger=0)
Set status to validated.
const STATUS_CLOSE
Billed or closed/processed quote.
getLinesArray()
Retrieve an array of supplier proposal lines.
setDraft($user)
Set draft status.
Class to manage supplier_proposal lines.
fetch($rowid)
Retrieve the propal line object.
insert($notrigger=0)
Insert object line propal in database.
update_total()
Update DB line fields total_xxx Used by migration.
update($notrigger=0)
Update propal line object into DB.
__construct($db)
Class line Contructor.
Class to manage translations.
Class to manage Dolibarr users.
print $langs trans("Ref").' m m m statut
trait CommonIncoterm
Superclass for incoterm classes.
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)
dol_delete_file($file, $disableglob=0, $nophperrors=0, $nohook=0, $object=null, $allowdotdot=false, $indexdatabase=1, $nolog=0)
Remove a file or several files with a mask.
dol_dir_list($path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
dol_delete_preview($object)
Delete all preview files linked to object instance.
dol_string_nohtmltag($stringtoclean, $removelinefeed=1, $pagecodeto='UTF-8', $strip_tags=0, $removedoublespaces=1)
Clean a string from all HTML tags and entities.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return dolibarr global constant int value.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
getLocalTaxesFromRate($vatrate, $local, $buyer, $seller, $firstparamisid=0)
Get type and rate of localtaxes for a particular vat rate/country of a thirdparty.
get_default_npr(Societe $thirdparty_seller, Societe $thirdparty_buyer, $idprod=0, $idprodfournprice=0)
Function that returns whether VAT must be recoverable collected VAT (e.g.: VAT NPR in France)
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
get_localtax($vatrate, $local, $thirdparty_buyer="", $thirdparty_seller="", $vatnpr=0)
Return localtax rate for a particular vat, when selling a product with vat $vatrate,...
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
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...
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
getEntity($element, $shared=1, $currentobject=null)
Get list of entity id to use.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
getMarginInfos($pvht, $remise_percent, $tva_tx, $localtax1_tx, $localtax2_tx, $fk_pa, $paht)
Return an array with margins information of a line.
calcul_price_total($qty, $pu, $remise_percent_ligne, $txtva, $uselocaltax1_rate, $uselocaltax2_rate, $remise_percent_global, $price_base_type, $info_bits, $type, $seller='', $localtaxes_array='', $progress=100, $multicurrency_tx=1, $pu_devise=0, $multicurrency_code='')
Calculate totals (net, vat, ...) of a line.