40require_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.product.class.php';
41require_once DOL_DOCUMENT_ROOT.
'/core/class/commonobject.class.php';
42require_once DOL_DOCUMENT_ROOT.
'/product/class/product.class.php';
43require_once DOL_DOCUMENT_ROOT.
'/contact/class/contact.class.php';
44require_once DOL_DOCUMENT_ROOT.
'/margin/lib/margins.lib.php';
45require_once DOL_DOCUMENT_ROOT.
'/multicurrency/class/multicurrency.class.php';
46require_once DOL_DOCUMENT_ROOT.
'/core/class/commonincoterm.class.php';
58 public $element =
'supplier_proposal';
63 public $table_element =
'supplier_proposal';
68 public $table_element_line =
'supplier_proposaldet';
73 public $class_element_line =
'SupplierProposalLine';
77 public $fk_element =
'fk_supplier_proposal';
82 public $picto =
'supplier_proposal';
88 public $restrictiononfksoc = 1;
114 public $ref_supplier;
130 public $delivery_date;
149 public $user_author_id;
175 public $cond_reglement_code;
179 public $cond_reglement_doc;
184 public $mode_reglement_code;
189 public $mode_reglement;
196 public $deposit_percent;
202 public $extraparams = array();
207 public $lines = array();
214 public $labelStatus = array();
215 public $labelStatusShort = array();
230 public $fk_multicurrency;
235 public $multicurrency_code;
239 public $multicurrency_tx;
243 public $multicurrency_total_ht;
247 public $multicurrency_total_tva;
251 public $multicurrency_total_ttc;
253 public $fields = array(
254 'ref' => array(
'type' =>
'varchar(255)',
'label' =>
'Ref',
'enabled' => 1,
'visible' => 1,
'showoncombobox' => 1,
'position' => 25,
'searchall' => 1),
255 'note_public' => array(
'type' =>
'html',
'label' =>
'NotePublic',
'enabled' => 1,
'visible' => 0,
'position' => 750,
'searchall' => 1),
292 public function __construct($db, $socid = 0, $supplier_proposalid = 0)
296 $this->ismultientitymanaged = 1;
297 $this->socid = $socid;
298 $this->
id = $supplier_proposalid;
313 public function add_product($idproduct, $qty, $remise_percent = 0)
322 dol_syslog(get_class($this).
"::add_product $idproduct, $qty, $remise_percent");
323 if ($idproduct > 0) {
324 $prod =
new Product($this->db);
325 $prod->fetch($idproduct);
327 $productdesc = $prod->description;
331 if (empty($tva_tx)) {
339 $price = $prod->multiprices[$this->thirdparty->price_level];
341 $price = $prod->price;
346 $line->fk_product = $idproduct;
347 $line->desc = $productdesc;
349 $line->subprice = $price;
350 $line->remise_percent = $remise_percent;
351 $line->tva_tx = $tva_tx;
353 $this->lines[] = $line;
371 include_once DOL_DOCUMENT_ROOT.
'/core/lib/price.lib.php';
372 include_once DOL_DOCUMENT_ROOT.
'/core/class/discount.class.php';
377 $result = $remise->fetch($idremise);
380 if ($remise->fk_facture) {
381 $this->error = $langs->trans(
"ErrorDiscountAlreadyUsed");
382 $this->db->rollback();
387 $supplier_proposalligne->fk_supplier_proposal = $this->id;
388 $supplier_proposalligne->fk_remise_except = $remise->id;
389 $supplier_proposalligne->desc = $remise->description;
390 $supplier_proposalligne->tva_tx = $remise->tva_tx;
391 $supplier_proposalligne->subprice = -(float) $remise->amount_ht;
392 $supplier_proposalligne->fk_product = 0;
393 $supplier_proposalligne->qty = 1;
394 $supplier_proposalligne->remise_percent = 0;
395 $supplier_proposalligne->rang = -1;
396 $supplier_proposalligne->info_bits = 2;
398 $supplier_proposalligne->total_ht = -(float) $remise->amount_ht;
399 $supplier_proposalligne->total_tva = -(float) $remise->amount_tva;
400 $supplier_proposalligne->total_ttc = -(float) $remise->amount_ttc;
402 $result = $supplier_proposalligne->insert();
409 $this->db->rollback();
414 $this->db->rollback();
418 $this->db->rollback();
460 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 = [], $ref_supplier =
'', $fk_unit = 0, $origin =
'', $origin_id = 0, $pu_ht_devise = 0, $date_start = 0, $date_end = 0)
464 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");
465 include_once DOL_DOCUMENT_ROOT.
'/core/lib/price.lib.php';
468 if (empty($remise_percent)) {
474 if (empty($info_bits)) {
480 if (empty($fk_parent_line) || $fk_parent_line < 0) {
487 $remise_percent =
price2num($remise_percent);
491 if (!preg_match(
'/\((.*)\)/', (
string) $txtva)) {
497 if ($price_base_type ==
'HT') {
508 if ($this->
status == self::STATUS_DRAFT) {
511 if ($fk_product > 0) {
512 if (
getDolGlobalInt(
'SUPPLIER_PROPOSAL_WITH_PREDEFINED_PRICES_ONLY') == 1) {
514 dol_syslog(get_class($this).
"::addline we check supplier prices fk_product=".$fk_product.
" fk_fournprice=".$fk_fournprice.
" qty=".$qty.
" ref_supplier=".$ref_supplier);
516 if ($productsupplier->fetch($fk_product) > 0) {
517 $product_type = $productsupplier->type;
518 $label = $productsupplier->label;
519 $fk_prod_fourn_price = $fk_fournprice;
524 $result = $productsupplier->get_buyprice($fk_prod_fourn_price, $qty, $fk_product,
'none', $this->socid);
526 $pu = $productsupplier->fourn_pu;
527 $ref_supplier = $productsupplier->ref_supplier;
529 if ($remise_percent == 0 && $productsupplier->remise_percent != 0) {
530 $remise_percent = $productsupplier->remise_percent;
534 $langs->load(
"errors");
535 $this->error =
"Ref ".$productsupplier->ref.
" ".$langs->trans(
"ErrorQtyTooLowForThisSupplier");
536 $this->db->rollback();
537 dol_syslog(get_class($this).
"::addline we did not found supplier price, so we can't guess unit price");
543 $langs->load(
"errors");
544 $this->error =
"Ref ".$productsupplier->ref.
" ".$langs->trans(
"ErrorQtyTooLowForThisSupplier");
545 $this->db->rollback();
546 dol_syslog(get_class($this).
"::addline result=".$result.
" - ".$this->error, LOG_DEBUG);
551 $this->db->rollback();
552 dol_syslog(get_class($this).
"::addline result=".$result.
" - ".$this->error, LOG_ERR);
557 $this->db->rollback();
562 $product_type = $type;
575 if (preg_match(
'/\((.*)\)/', $txtva, $reg)) {
576 $vat_src_code = $reg[1];
577 $txtva = preg_replace(
'/\s*\(.*\)/',
'', $txtva);
580 if (
isModEnabled(
"multicurrency") && $pu_ht_devise > 0) {
587 (
float) $remise_percent,
589 (
float) $txlocaltax1,
590 (
float) $txlocaltax2,
598 (
float) $this->multicurrency_tx,
601 $total_ht = $tabprice[0];
602 $total_tva = $tabprice[1];
603 $total_ttc = $tabprice[2];
604 $total_localtax1 = $tabprice[9];
605 $total_localtax2 = $tabprice[10];
606 $pu = $pu_ht = $tabprice[3];
609 $multicurrency_total_ht = $tabprice[16];
610 $multicurrency_total_tva = $tabprice[17];
611 $multicurrency_total_ttc = $tabprice[18];
612 $pu_ht_devise = $tabprice[19];
616 if ($ranktouse == -1) {
617 $rangmax = $this->
line_max($fk_parent_line);
618 $ranktouse = $rangmax + 1;
624 $this->line->fk_supplier_proposal = $this->id;
625 $this->line->label = $label;
626 $this->line->desc = $desc;
627 $this->line->qty = $qty;
629 $this->line->vat_src_code = $vat_src_code;
630 $this->line->tva_tx = $txtva;
631 $this->line->localtax1_tx = ($total_localtax1 ? $localtaxes_type[1] : 0);
632 $this->line->localtax2_tx = ($total_localtax2 ? $localtaxes_type[3] : 0);
633 $this->line->localtax1_type = empty($localtaxes_type[0]) ?
'' : $localtaxes_type[0];
634 $this->line->localtax2_type = empty($localtaxes_type[2]) ?
'' : $localtaxes_type[2];
635 $this->line->fk_product = $fk_product;
636 $this->line->remise_percent = $remise_percent;
637 $this->line->subprice = (float) $pu_ht;
638 $this->line->rang = $ranktouse;
639 $this->line->info_bits = $info_bits;
640 $this->line->total_ht = (float) $total_ht;
641 $this->line->total_tva = (float) $total_tva;
642 $this->line->total_localtax1 = (float) $total_localtax1;
643 $this->line->total_localtax2 = (float) $total_localtax2;
644 $this->line->total_ttc = (float) $total_ttc;
645 $this->line->product_type = $type;
646 $this->line->special_code = $special_code;
647 $this->line->fk_parent_line = $fk_parent_line;
648 $this->line->fk_unit = $fk_unit;
649 $this->line->origin = $origin;
650 $this->line->origin_type = $origin;
651 $this->line->origin_id = $origin_id;
652 $this->line->ref_fourn = $this->db->escape($ref_supplier);
653 $this->line->date_start = $date_start;
654 $this->line->date_end = $date_end;
657 if (!empty($fk_product) && $fk_product > 0 && empty($fk_fournprice) && empty($pa_ht)) {
659 include_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.product.class.php';
661 $productFournisseur->find_min_price_product_fournisseur($fk_product);
662 $this->line->fk_fournprice = $productFournisseur->product_fourn_price_id;
664 $this->line->fk_fournprice = ($fk_fournprice > 0 ? $fk_fournprice : 0);
666 $this->line->pa_ht = $pa_ht;
670 $this->line->fk_multicurrency = $this->fk_multicurrency;
671 $this->line->multicurrency_code = $this->multicurrency_code;
672 $this->line->multicurrency_subprice = (float) $pu_ht_devise;
673 $this->line->multicurrency_total_ht = (float) $multicurrency_total_ht;
674 $this->line->multicurrency_total_tva = (float) $multicurrency_total_tva;
675 $this->line->multicurrency_total_ttc = (float) $multicurrency_total_ttc;
678 if (empty($qty) && empty($special_code)) {
679 $this->line->special_code = 3;
682 if (is_array($array_options) && count($array_options) > 0) {
683 $this->line->array_options = $array_options;
686 $result = $this->line->insert();
689 if (!empty($fk_parent_line)) {
691 } elseif ($ranktouse > 0 && $ranktouse <= count($this->lines)) {
692 $linecount = count($this->lines);
693 for ($ii = $ranktouse; $ii <= $linecount; $ii++) {
699 $result = $this->
update_price(1,
'auto', 0, $this->thirdparty);
702 return $this->line->id;
704 $this->db->rollback();
709 $this->db->rollback();
713 $this->error =
'BadStatusOfObjectToAddLine';
745 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 = [], $ref_supplier =
'', $fk_unit = 0, $pu_ht_devise = 0)
749 dol_syslog(get_class($this).
"::updateLine $rowid, $pu, $qty, $remise_percent, $txtva, $desc, $price_base_type, $info_bits");
750 include_once DOL_DOCUMENT_ROOT.
'/core/lib/price.lib.php';
753 $remise_percent =
price2num($remise_percent);
756 if (!preg_match(
'/\((.*)\)/', (
string) $txtva)) {
762 if (empty($qty) && empty($special_code)) {
765 if (!empty($qty) && $special_code == 3) {
782 if (preg_match(
'/\((.*)\)/', $txtva, $reg)) {
783 $vat_src_code = $reg[1];
784 $txtva = preg_replace(
'/\s*\(.*\)/',
'', $txtva);
787 if (
isModEnabled(
"multicurrency") && $pu_ht_devise > 0) {
794 (
float) $remise_percent,
796 (
float) $txlocaltax1,
797 (
float) $txlocaltax2,
805 (
float) $this->multicurrency_tx,
808 $total_ht = $tabprice[0];
809 $total_tva = $tabprice[1];
810 $total_ttc = $tabprice[2];
811 $total_localtax1 = $tabprice[9];
812 $total_localtax2 = $tabprice[10];
813 $pu_ht = $tabprice[3];
814 $pu_tva = $tabprice[4];
815 $pu_ttc = $tabprice[5];
818 $multicurrency_total_ht = $tabprice[16];
819 $multicurrency_total_tva = $tabprice[17];
820 $multicurrency_total_ttc = $tabprice[18];
821 $pu_ht_devise = $tabprice[19];
824 if ($price_base_type ==
'TTC') {
830 $line->fetch($rowid);
831 $line->fetch_optionals();
833 $fk_product = $line->fk_product;
836 $staticline = clone $line;
838 $line->oldline = $staticline;
840 $this->line->context = $this->context;
843 if (!empty($fk_parent_line) && !empty($staticline->fk_parent_line) && $fk_parent_line != $staticline->fk_parent_line) {
844 $rangmax = $this->
line_max($fk_parent_line);
845 $this->line->rang = $rangmax + 1;
848 $this->line->id = $rowid;
849 $this->line->label = $label;
850 $this->line->desc = $desc;
851 $this->line->qty = $qty;
852 $this->line->product_type = $type;
854 $this->line->vat_src_code = $vat_src_code;
855 $this->line->tva_tx = $txtva;
856 $this->line->localtax1_tx = $txlocaltax1;
857 $this->line->localtax2_tx = $txlocaltax2;
858 $this->line->localtax1_type = empty($localtaxes_type[0]) ?
'' : $localtaxes_type[0];
859 $this->line->localtax2_type = empty($localtaxes_type[2]) ?
'' : $localtaxes_type[2];
860 $this->line->remise_percent = $remise_percent;
861 $this->line->subprice = (float) $pu;
862 $this->line->info_bits = $info_bits;
863 $this->line->total_ht = (float) $total_ht;
864 $this->line->total_tva = (float) $total_tva;
865 $this->line->total_localtax1 = (float) $total_localtax1;
866 $this->line->total_localtax2 = (float) $total_localtax2;
867 $this->line->total_ttc = (float) $total_ttc;
868 $this->line->special_code = $special_code;
869 $this->line->fk_parent_line = $fk_parent_line;
870 $this->line->skip_update_total = $skip_update_total;
871 $this->line->ref_fourn = $ref_supplier;
872 $this->line->fk_unit = $fk_unit;
875 if (!empty($fk_product) && $fk_product > 0 && empty($fk_fournprice) && empty($pa_ht)) {
877 include_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.product.class.php';
879 $productFournisseur->find_min_price_product_fournisseur($fk_product);
880 $this->line->fk_fournprice = $productFournisseur->product_fourn_price_id;
882 $this->line->fk_fournprice = $fk_fournprice;
884 $this->line->pa_ht = $pa_ht;
886 if (is_array($array_options) && count($array_options) > 0) {
888 foreach ($array_options as $key => $value) {
889 $this->line->array_options[$key] = $array_options[$key];
894 $this->line->multicurrency_subprice = (float) $pu_ht_devise;
895 $this->line->multicurrency_total_ht = (float) $multicurrency_total_ht;
896 $this->line->multicurrency_total_tva = (float) $multicurrency_total_tva;
897 $this->line->multicurrency_total_ttc = (float) $multicurrency_total_ttc;
899 $result = $this->line->update();
902 if (!empty($fk_parent_line)) {
911 $this->error = $this->db->error();
912 $this->db->rollback();
916 dol_syslog(get_class($this).
"::updateline Erreur -2 SupplierProposal en mode incompatible pour cette action");
936 $line->fetch($lineid);
938 if ($line->delete($user) > 0) {
959 public function create($user, $notrigger = 0)
961 global $langs, $conf,
$mysoc, $hookmanager;
971 $this->error =
"Failed to fetch company";
972 dol_syslog(get_class($this).
"::create ".$this->error, LOG_ERR);
975 if (!empty($this->
ref)) {
978 $this->error =
'ErrorRefAlreadyExists';
979 dol_syslog(get_class($this).
"::create ".$this->error, LOG_WARNING);
980 $this->db->rollback();
986 $delivery_date = $this->delivery_date;
989 if (!empty($this->multicurrency_code)) {
992 if (empty($this->fk_multicurrency)) {
994 $this->fk_multicurrency = 0;
995 $this->multicurrency_tx = 1;
1001 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"supplier_proposal (";
1004 $sql .=
", total_tva";
1005 $sql .=
", total_ttc";
1008 $sql .=
", fk_user_author";
1009 $sql .=
", note_private";
1010 $sql .=
", note_public";
1011 $sql .=
", model_pdf";
1012 $sql .=
", fk_cond_reglement";
1013 $sql .=
", deposit_percent";
1014 $sql .=
", fk_mode_reglement";
1015 $sql .=
", fk_account";
1016 $sql .=
", date_livraison";
1017 $sql .=
", fk_shipping_method";
1018 $sql .=
", fk_projet";
1020 $sql .=
", fk_multicurrency";
1021 $sql .=
", multicurrency_code";
1022 $sql .=
", multicurrency_tx";
1024 $sql .=
" VALUES (";
1025 $sql .= ((int) $this->socid);
1029 $sql .=
", '".$this->db->idate($now).
"'";
1030 $sql .=
", '(PROV)'";
1031 $sql .=
", ".($user->id > 0 ? ((int) $user->id) :
"null");
1032 $sql .=
", '".$this->db->escape($this->note_private).
"'";
1033 $sql .=
", '".$this->db->escape($this->note_public).
"'";
1034 $sql .=
", '".$this->db->escape($this->model_pdf).
"'";
1035 $sql .=
", ".($this->cond_reglement_id > 0 ? ((int) $this->cond_reglement_id) :
'NULL');
1036 $sql .=
", ".(!empty($this->deposit_percent) ?
"'" . $this->db->escape($this->deposit_percent) .
"'" :
'NULL');
1037 $sql .=
", ".($this->mode_reglement_id > 0 ? ((int) $this->mode_reglement_id) :
'NULL');
1038 $sql .=
", ".($this->fk_account > 0 ? ((int) $this->fk_account) :
'NULL');
1039 $sql .=
", ".(isDolTms($delivery_date) ?
"'".$this->db->idate($delivery_date).
"'" :
"null");
1040 $sql .=
", ".($this->shipping_method_id > 0 ? ((int) $this->shipping_method_id) :
'NULL');
1041 $sql .=
", ".($this->fk_project > 0 ? ((int) $this->fk_project) :
"null");
1042 $sql .=
", ".((int) $conf->entity);
1043 $sql .=
", ".((int) $this->fk_multicurrency);
1044 $sql .=
", '".$this->db->escape($this->multicurrency_code).
"'";
1045 $sql .=
", ".((float) $this->multicurrency_tx);
1048 dol_syslog(get_class($this).
"::create", LOG_DEBUG);
1049 $resql = $this->db->query($sql);
1051 $this->
id = $this->db->last_insert_id(MAIN_DB_PREFIX.
"supplier_proposal");
1054 $this->
ref =
'(PROV'.$this->id.
')';
1055 $sql =
'UPDATE '.MAIN_DB_PREFIX.
"supplier_proposal SET ref='".$this->db->escape($this->
ref).
"' WHERE rowid=".((int) $this->
id);
1057 dol_syslog(get_class($this).
"::create", LOG_DEBUG);
1058 $resql = $this->db->query($sql);
1063 if (!empty($this->linkedObjectsIds) && empty($this->linked_objects)) {
1064 $this->linked_objects = $this->linkedObjectsIds;
1068 if (!$error && $this->
id && !empty($this->linked_objects) && is_array($this->linked_objects)) {
1069 foreach ($this->linked_objects as $origin => $tmp_origin_id) {
1070 if (is_array($tmp_origin_id)) {
1071 foreach ($tmp_origin_id as $origin_id) {
1086 $fk_parent_line = 0;
1087 $num = count($this->lines);
1089 for ($i = 0; $i < $num; $i++) {
1091 if (($this->lines[$i]->product_type != 9 && empty($this->lines[$i]->fk_parent_line)) || $this->lines[$i]->product_type == 9) {
1092 $fk_parent_line = 0;
1096 $this->lines[$i]->desc,
1097 $this->lines[$i]->subprice,
1098 $this->lines[$i]->qty,
1099 $this->lines[$i]->tva_tx,
1100 $this->lines[$i]->localtax1_tx,
1101 $this->lines[$i]->localtax2_tx,
1102 $this->lines[$i]->fk_product,
1103 $this->lines[$i]->remise_percent,
1107 $this->lines[$i]->product_type,
1108 $this->lines[$i]->rang,
1109 $this->lines[$i]->special_code,
1111 $this->lines[$i]->fk_fournprice,
1112 $this->lines[$i]->pa_ht,
1113 empty($this->lines[$i]->label) ?
'' : $this->lines[$i]->label,
1114 $this->lines[$i]->array_options,
1115 $this->lines[$i]->ref_fourn,
1116 $this->lines[$i]->fk_unit,
1117 'supplier_proposal',
1118 $this->lines[$i]->rowid
1123 $this->error = $this->db->error;
1128 if ($result > 0 && $this->lines[$i]->product_type == 9) {
1129 $fk_parent_line = $result;
1148 if (!$error && !$notrigger) {
1150 $result = $this->call_trigger(
'PROPOSAL_SUPPLIER_CREATE', $user);
1157 $this->error = $this->db->lasterror();
1162 $this->error = $this->db->lasterror();
1167 $this->db->commit();
1168 dol_syslog(get_class($this).
"::create done id=".$this->
id);
1171 $this->db->rollback();
1175 $this->error = $this->db->lasterror();
1176 $this->db->rollback();
1190 global $conf, $hookmanager;
1198 foreach ($this->lines as $line) {
1199 $line->fetch_optionals();
1203 $objFrom = clone $this;
1205 $objsoc =
new Societe($this->db);
1208 if (!empty($fromid) && $fromid != $this->socid) {
1209 if ($objsoc->fetch($fromid) > 0) {
1210 $this->socid = $objsoc->id;
1211 $this->cond_reglement_id = (!empty($objsoc->cond_reglement_id) ? $objsoc->cond_reglement_id : 0);
1212 $this->deposit_percent = (!empty($objsoc->deposit_percent) ? $objsoc->deposit_percent : 0);
1213 $this->mode_reglement_id = (!empty($objsoc->mode_reglement_id) ? $objsoc->mode_reglement_id : 0);
1214 unset($this->fk_project);
1219 $objsoc->fetch($this->socid);
1226 if (!
getDolGlobalString(
'SUPPLIER_PROPOSAL_ADDON') || !is_readable(DOL_DOCUMENT_ROOT.
"/core/modules/supplier_proposal/" .
getDolGlobalString(
'SUPPLIER_PROPOSAL_ADDON').
".php")) {
1227 $this->error =
'ErrorSetupNotComplete';
1232 $this->user_author_id = $user->id;
1233 $this->user_validation_id = 0;
1237 require_once DOL_DOCUMENT_ROOT.
"/core/modules/supplier_proposal/" .
getDolGlobalString(
'SUPPLIER_PROPOSAL_ADDON').
'.php';
1239 $modSupplierProposal =
new $obj();
1240 '@phan-var-force ModeleNumRefSupplierProposal $modSupplierProposal';
1241 $this->
ref = $modSupplierProposal->getNextValue($objsoc, $this);
1244 $this->context[
'createfromclone'] =
'createfromclone';
1245 $result = $this->
create($user);
1252 if (is_object($hookmanager)) {
1253 $parameters = array(
'objFrom' => $objFrom);
1255 $reshook = $hookmanager->executeHooks(
'createFrom', $parameters, $this, $action);
1263 unset($this->context[
'createfromclone']);
1267 $this->db->commit();
1270 $this->db->rollback();
1282 public function fetch($rowid, $ref =
'')
1284 $sql =
"SELECT p.rowid, p.entity, p.ref, p.fk_soc as socid";
1285 $sql .=
", p.total_ttc, p.total_tva, p.localtax1, p.localtax2, p.total_ht";
1286 $sql .=
", p.datec, GREATEST(p.tms, pef.tms) as date_modification";
1287 $sql .=
", p.date_valid as datev";
1288 $sql .=
", p.date_livraison as delivery_date";
1289 $sql .=
", p.model_pdf, p.extraparams";
1290 $sql .=
", p.note_private, p.note_public";
1291 $sql .=
", p.fk_projet as fk_project, p.fk_statut as status";
1292 $sql .=
", p.fk_user_author, p.fk_user_modif, p.fk_user_valid, p.fk_user_cloture";
1293 $sql .=
", p.fk_cond_reglement";
1294 $sql .=
", p.fk_mode_reglement";
1295 $sql .=
', p.fk_account';
1296 $sql .=
", p.fk_shipping_method";
1297 $sql .=
", p.last_main_doc";
1298 $sql .=
", p.fk_multicurrency, p.multicurrency_code, p.multicurrency_tx, p.multicurrency_total_ht, p.multicurrency_total_tva, p.multicurrency_total_ttc";
1299 $sql .=
", c.label as statut_label";
1300 $sql .=
", cr.code as cond_reglement_code, cr.libelle as cond_reglement, cr.libelle_facture as cond_reglement_libelle_doc, p.deposit_percent";
1301 $sql .=
", cp.code as mode_reglement_code, cp.libelle as mode_reglement";
1302 $sql .=
" FROM ".MAIN_DB_PREFIX.
"c_propalst as c, ".MAIN_DB_PREFIX.
"supplier_proposal as p";
1303 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"supplier_proposal_extrafields as pef ON pef.fk_object=p.rowid";
1304 $sql .=
' LEFT JOIN '.MAIN_DB_PREFIX.
'c_paiement as cp ON p.fk_mode_reglement = cp.id';
1305 $sql .=
' LEFT JOIN '.MAIN_DB_PREFIX.
'c_payment_term as cr ON p.fk_cond_reglement = cr.rowid';
1306 $sql .=
" WHERE p.fk_statut = c.id";
1307 $sql .=
" AND p.entity IN (".getEntity(
'supplier_proposal').
")";
1309 $sql .=
" AND p.ref = '".$this->db->escape($ref).
"'";
1311 $sql .=
" AND p.rowid = ".((int) $rowid);
1314 dol_syslog(get_class($this).
"::fetch", LOG_DEBUG);
1315 $resql = $this->db->query($sql);
1317 if ($this->db->num_rows($resql)) {
1318 $obj = $this->db->fetch_object($resql);
1320 $this->
id = $obj->rowid;
1321 $this->entity = $obj->entity;
1323 $this->
ref = $obj->ref;
1324 $this->total_ht = $obj->total_ht;
1325 $this->total_tva = $obj->total_tva;
1326 $this->total_localtax1 = $obj->localtax1;
1327 $this->total_localtax2 = $obj->localtax2;
1328 $this->total_ttc = $obj->total_ttc;
1329 $this->socid = $obj->socid;
1330 $this->fk_project = $obj->fk_project;
1331 $this->model_pdf = $obj->model_pdf;
1332 $this->note = $obj->note_private;
1333 $this->note_private = $obj->note_private;
1334 $this->note_public = $obj->note_public;
1335 $this->statut = (int) $obj->status;
1336 $this->
status = (int) $obj->status;
1337 $this->datec = $this->db->jdate($obj->datec);
1338 $this->datev = $this->db->jdate($obj->datev);
1339 $this->date_creation = $this->db->jdate($obj->datec);
1340 $this->date_modification = $this->db->jdate($obj->date_modification);
1341 $this->
date = $this->date_creation;
1342 $this->date_validation = $this->db->jdate($obj->datev);
1343 $this->delivery_date = $this->db->jdate($obj->delivery_date);
1344 $this->shipping_method_id = ($obj->fk_shipping_method > 0) ? $obj->fk_shipping_method :
null;
1346 $this->last_main_doc = $obj->last_main_doc;
1347 $this->mode_reglement_id = $obj->fk_mode_reglement;
1348 $this->mode_reglement_code = $obj->mode_reglement_code;
1349 $this->mode_reglement = $obj->mode_reglement;
1350 $this->deposit_percent = $obj->deposit_percent;
1351 $this->fk_account = ($obj->fk_account > 0) ? $obj->fk_account :
null;
1352 $this->cond_reglement_id = $obj->fk_cond_reglement;
1353 $this->cond_reglement_code = $obj->cond_reglement_code;
1354 $this->cond_reglement = $obj->cond_reglement;
1355 $this->cond_reglement_doc = $obj->cond_reglement_libelle_doc;
1357 $this->extraparams = (array) (!empty($obj->extraparams) ? json_decode($obj->extraparams,
true) : array());
1359 $this->user_author_id = $obj->fk_user_author;
1360 $this->user_modification_id = $obj->fk_user_modif;
1361 $this->user_validation_id = $obj->fk_user_valid;
1362 $this->user_closing_id = $obj->fk_user_cloture;
1365 $this->fk_multicurrency = $obj->fk_multicurrency;
1366 $this->multicurrency_code = $obj->multicurrency_code;
1367 $this->multicurrency_tx = $obj->multicurrency_tx;
1368 $this->multicurrency_total_ht = $obj->multicurrency_total_ht;
1369 $this->multicurrency_total_tva = $obj->multicurrency_total_tva;
1370 $this->multicurrency_total_ttc = $obj->multicurrency_total_ttc;
1376 $this->db->free($resql);
1378 $this->lines = array();
1381 $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,";
1382 $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,";
1383 $sql .=
' p.ref as product_ref, p.description as product_desc, p.fk_product_type, p.label as product_label,';
1384 $sql .=
' d.ref_fourn as ref_produit_fourn, d.extraparams,';
1385 $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';
1386 $sql .=
" FROM ".MAIN_DB_PREFIX.
"supplier_proposaldet as d";
1387 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"product as p ON d.fk_product = p.rowid";
1388 $sql .=
" WHERE d.fk_supplier_proposal = ".((int) $this->
id);
1389 $sql .=
" ORDER by d.rang";
1391 $result = $this->db->query($sql);
1393 $num = $this->db->num_rows($result);
1397 $objp = $this->db->fetch_object($result);
1401 $line->rowid = $objp->rowid;
1402 $line->id = $objp->rowid;
1403 $line->fk_supplier_proposal = $objp->fk_supplier_proposal;
1404 $line->fk_parent_line = $objp->fk_parent_line;
1405 $line->product_type = $objp->product_type;
1406 $line->label = $objp->custom_label;
1407 $line->desc = $objp->description;
1408 $line->qty = $objp->qty;
1409 $line->tva_tx = $objp->tva_tx;
1410 $line->localtax1_tx = $objp->localtax1_tx;
1411 $line->localtax2_tx = $objp->localtax2_tx;
1412 $line->subprice = $objp->subprice;
1413 $line->fk_remise_except = $objp->fk_remise_except;
1414 $line->remise_percent = $objp->remise_percent;
1416 $line->info_bits = $objp->info_bits;
1417 $line->total_ht = $objp->total_ht;
1418 $line->total_tva = $objp->total_tva;
1419 $line->total_localtax1 = $objp->total_localtax1;
1420 $line->total_localtax2 = $objp->total_localtax2;
1421 $line->total_ttc = $objp->total_ttc;
1422 $line->fk_fournprice = $objp->fk_fournprice;
1423 $marginInfos =
getMarginInfos($objp->subprice, $objp->remise_percent, $objp->tva_tx, $objp->localtax1_tx, $objp->localtax2_tx, $line->fk_fournprice, $objp->pa_ht);
1424 $line->pa_ht = $marginInfos[0];
1425 $line->marge_tx = $marginInfos[1];
1426 $line->marque_tx = $marginInfos[2];
1427 $line->special_code = $objp->special_code;
1428 $line->rang = $objp->rang;
1430 $line->fk_product = $objp->fk_product;
1432 $line->ref = $objp->product_ref;
1433 $line->product_ref = $objp->product_ref;
1434 $line->libelle = $objp->product_label;
1435 $line->product_label = $objp->product_label;
1436 $line->product_desc = $objp->product_desc;
1437 $line->fk_product_type = $objp->fk_product_type;
1439 $line->ref_fourn = $objp->ref_produit_fourn;
1441 $line->extraparams = !empty($objp->extraparams) ? (array) json_decode($objp->extraparams,
true) : array();
1444 $line->fk_multicurrency = $objp->fk_multicurrency;
1445 $line->multicurrency_code = $objp->multicurrency_code;
1446 $line->multicurrency_subprice = $objp->multicurrency_subprice;
1447 $line->multicurrency_total_ht = $objp->multicurrency_total_ht;
1448 $line->multicurrency_total_tva = $objp->multicurrency_total_tva;
1449 $line->multicurrency_total_ttc = $objp->multicurrency_total_ttc;
1450 $line->fk_unit = $objp->fk_unit;
1452 $line->fetch_optionals();
1454 $this->lines[$i] = $line;
1458 $this->db->free($result);
1460 $this->error = $this->db->error();
1471 $this->error =
"Record Not Found";
1474 $this->error = $this->db->error();
1486 public function valid($user, $notrigger = 0)
1488 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
1490 global $conf, $langs;
1495 if ((!
getDolGlobalString(
'MAIN_USE_ADVANCED_PERMS') && $user->hasRight(
'supplier_proposal',
'creer'))
1496 || (
getDolGlobalString(
'MAIN_USE_ADVANCED_PERMS') && $user->hasRight(
'supplier_proposal',
'validate_advance'))) {
1500 $soc =
new Societe($this->db);
1501 $result = $soc->fetch($this->socid);
1507 dol_syslog(get_class($this).
"::valid checkActiveProductInLines ".$this->error, LOG_INFO);
1511 if (preg_match(
'/^[\(]?PROV/i', $this->
ref) || empty($this->
ref)) {
1512 $num = $this->getNextNumRef($soc);
1514 $num = (string) $this->
ref;
1518 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"supplier_proposal";
1519 $sql .=
" SET ref = '".$this->db->escape($num).
"',";
1520 $sql .=
" fk_statut = 1, date_valid='".$this->db->idate($now).
"', fk_user_valid=".((int) $user->id);
1521 $sql .=
" WHERE rowid = ".((int) $this->
id).
" AND fk_statut = 0";
1523 dol_syslog(get_class($this).
"::valid", LOG_DEBUG);
1524 $resql = $this->db->query($sql);
1531 if (!$error && !$notrigger) {
1533 $result = $this->call_trigger(
'PROPOSAL_SUPPLIER_VALIDATE', $user);
1541 $this->oldref = $this->ref;
1544 if (preg_match(
'/^[\(]?PROV/i', $this->
ref)) {
1546 $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).
"'";
1547 $sql .=
" WHERE filename LIKE '".$this->db->escape($this->
ref).
"%' AND filepath = 'supplier_proposal/".$this->db->escape($this->
ref).
"' and entity = ".$conf->entity;
1548 $resql = $this->db->query($sql);
1551 $this->error = $this->db->lasterror();
1553 $sql =
'UPDATE '.MAIN_DB_PREFIX.
"ecm_files set filepath = 'supplier_proposal/".$this->db->escape($this->newref).
"'";
1554 $sql .=
" WHERE filepath = 'supplier_proposal/".$this->db->escape($this->
ref).
"' and entity = ".$conf->entity;
1555 $resql = $this->db->query($sql);
1558 $this->error = $this->db->lasterror();
1564 $dirsource = $conf->supplier_proposal->dir_output.
'/'.$oldref;
1565 $dirdest = $conf->supplier_proposal->dir_output.
'/'.$newref;
1566 if (!$error && file_exists($dirsource)) {
1567 dol_syslog(get_class($this).
"::valid rename dir ".$dirsource.
" into ".$dirdest);
1568 if (@rename($dirsource, $dirdest)) {
1571 $listoffiles =
dol_dir_list($conf->supplier_proposal->dir_output.
'/'.$newref,
'files', 1,
'^'.preg_quote($oldref,
'/'));
1572 foreach ($listoffiles as $fileentry) {
1573 $dirsource = $fileentry[
'name'];
1574 $dirdest = preg_replace(
'/^'.preg_quote($oldref,
'/').
'/', $newref, $dirsource);
1575 $dirsource = $fileentry[
'path'].
'/'.$dirsource;
1576 $dirdest = $fileentry[
'path'].
'/'.$dirdest;
1577 @rename($dirsource, $dirdest);
1586 $this->user_validation_id = $user->id;
1587 $this->datev = $now;
1588 $this->date_validation = $now;
1591 $result = $this->
add_contact($user->id,
'SALESREPFOLL',
'internal', 1);
1592 if ($result < 0 && $result != -2) {
1597 $this->db->commit();
1600 $this->db->rollback();
1604 dol_syslog(
"You don't have permission to validate supplier proposal", LOG_WARNING);
1633 if ($user->hasRight(
'supplier_proposal',
'creer')) {
1634 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"supplier_proposal ";
1635 $sql .=
" SET date_livraison = ".(isDolTms($delivery_date) ?
"'".$this->db->idate($delivery_date).
"'" :
'null');
1636 $sql .=
" WHERE rowid = ".((int) $this->
id);
1638 if ($this->db->query($sql)) {
1639 $this->delivery_date = $delivery_date;
1642 $this->error = $this->db->error();
1643 dol_syslog(get_class($this).
"::setDeliveryDate Erreur SQL");
1729 public function reopen($user, $status, $note =
'', $notrigger = 0)
1731 global $langs, $conf;
1735 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"supplier_proposal";
1736 $sql .=
" SET fk_statut = ".((int) $status).
",";
1737 if (!empty($note)) {
1738 $sql .=
" note_private = '".$this->db->escape($note).
"',";
1740 $sql .=
" date_cloture = NULL, fk_user_cloture = NULL";
1741 $sql .=
" WHERE rowid = ".((int) $this->
id);
1745 dol_syslog(get_class($this).
"::reopen", LOG_DEBUG);
1746 $resql = $this->db->query($sql);
1749 $this->errors[] =
"Error ".$this->db->lasterror();
1754 $result = $this->call_trigger(
'PROPOSAL_SUPPLIER_REOPEN', $user);
1764 if (!empty($this->errors)) {
1765 foreach ($this->errors as $errmsg) {
1766 dol_syslog(get_class($this).
"::update ".$errmsg, LOG_ERR);
1767 $this->error .= ($this->error ?
', '.$errmsg : $errmsg);
1770 $this->db->rollback();
1773 $this->statut = $status;
1776 $this->db->commit();
1792 global $langs, $conf;
1802 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"supplier_proposal";
1803 $sql .=
" SET fk_statut = ".((int) $status).
", note_private = '".$this->db->escape($note).
"', date_cloture='".$this->db->idate($now).
"', fk_user_cloture=".((int) $user->id);
1804 $sql .=
" WHERE rowid = ".((int) $this->
id);
1806 $resql = $this->db->query($sql);
1808 $this->statut = $status;
1811 $modelpdf =
getDolGlobalString(
'SUPPLIER_PROPOSAL_ADDON_PDF_ODT_CLOSED', (empty($this->model_pdf) ?
'' : $this->model_pdf));
1812 $triggerName =
'PROPOSAL_SUPPLIER_CLOSE_REFUSED';
1815 $triggerName =
'PROPOSAL_SUPPLIER_CLOSE_SIGNED';
1816 $modelpdf =
getDolGlobalString(
'SUPPLIER_PROPOSAL_ADDON_PDF_ODT_TOBILL', (empty($this->model_pdf) ?
'' : $this->model_pdf));
1823 $triggerName =
'PROPOSAL_SUPPLIER_CLASSIFY_BILLED';
1828 $outputlangs = $langs;
1830 $outputlangs =
new Translate(
"", $conf);
1831 $newlang = (
GETPOST(
'lang_id',
'aZ09') ?
GETPOST(
'lang_id',
'aZ09') : $this->thirdparty->default_lang);
1832 $outputlangs->setDefaultLang($newlang);
1835 $this->
generateDocument($modelpdf, $outputlangs, $hidedetails, $hidedesc, $hideref);
1839 $result = $this->call_trigger($triggerName, $user);
1846 $this->db->commit();
1849 $this->db->rollback();
1853 $this->error = $this->db->lasterror();
1854 $this->errors[] = $this->db->lasterror();
1855 $this->db->rollback();
1870 dol_syslog(get_class($this).
"::updateOrCreatePriceFournisseur", LOG_DEBUG);
1871 foreach ($this->lines as $product) {
1872 if ($product->subprice <= 0) {
1877 $multicurrency_tx = 1;
1878 $fk_multicurrency = 0;
1880 if (empty($this->thirdparty)) {
1884 $ref_fourn = $product->ref_fourn;
1885 if (empty($ref_fourn)) {
1886 $ref_fourn = $product->ref_supplier;
1888 if (
isModEnabled(
"multicurrency") && !empty($product->multicurrency_code)) {
1891 $productsupplier->id = $product->fk_product;
1893 $productsupplier->update_buyprice($product->qty, $product->total_ht, $user,
'HT', $this->thirdparty, 0, $ref_fourn, $product->tva_tx, 0, 0, 0, $product->info_bits, 0,
'', array(),
'', $product->multicurrency_total_ht,
'HT', $multicurrency_tx, $product->multicurrency_code,
'',
'', 0);
1909 $price =
price2num($product->subprice * $product->qty,
'MU');
1910 $unitPrice =
price2num($product->subprice,
'MU');
1912 $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);
1914 $resql = $this->db->query($sql);
1916 $this->error = $this->db->error();
1917 $this->db->rollback();
1934 $price =
price2num($product->subprice * $product->qty,
'MU');
1936 $unitPrice =
price2num($product->subprice,
'MU');
1941 "'".$this->db->idate($now).
"'",
1942 (
int) $product->fk_product,
1943 (
int) $this->thirdparty->id,
1944 "'".$this->db->escape($product->ref_fourn).
"'",
1948 (
float) $product->tva_tx,
1952 if (!empty($product->multicurrency_code)) {
1953 include_once DOL_DOCUMENT_ROOT.
'/multicurrency/class/multicurrency.class.php';
1955 $multicurrency->fetch(0, $product->multicurrency_code);
1956 if (!empty($multicurrency->id)) {
1957 $values[] = (int) $multicurrency->id;
1958 $values[] =
"'".$this->db->escape($product->multicurrency_code).
"'";
1959 $values[] = (float) $product->multicurrency_subprice;
1960 $values[] = (float) $product->multicurrency_total_ht;
1961 $values[] = (float) $multicurrency->rate->rate;
1963 for ($i = 0; $i < 5; $i++) {
1970 $sql =
'INSERT INTO '.MAIN_DB_PREFIX.
'product_fournisseur_price ';
1971 $sql .=
'(datec, fk_product, fk_soc, ref_fourn, price, quantity, unitprice, tva_tx, fk_user';
1972 if (
isModEnabled(
"multicurrency") && !empty($product->multicurrency_code)) {
1973 $sql .=
',fk_multicurrency, multicurrency_code, multicurrency_unitprice, multicurrency_price, multicurrency_tx';
1975 $sql .=
') VALUES ('.implode(
',', $values).
')';
1977 $resql = $this->db->query($sql);
1979 $this->error = $this->db->error();
1980 $this->db->rollback();
1996 global $conf, $langs;
2000 if ($this->
status == self::STATUS_DRAFT) {
2001 dol_syslog(get_class($this).
"::setDraft already draft status", LOG_WARNING);
2005 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"supplier_proposal";
2006 $sql .=
" SET fk_statut = ".self::STATUS_DRAFT;
2007 $sql .=
" WHERE rowid = ".((int) $this->
id);
2009 if ($this->db->query($sql)) {
2011 $this->oldcopy = clone $this;
2016 $result = $this->call_trigger(
'PROPOSAL_SUPPLIER_UNVALIDATE', $user);
2025 $this->db->commit();
2028 $this->db->rollback();
2051 public function liste_array($shortlist = 0, $draft = 0, $notcurrentuser = 0, $socid = 0, $limit = 0, $offset = 0, $sortfield =
'p.datec', $sortorder =
'DESC')
2059 if (empty($user->socid) && !$user->hasRight(
'societe',
'client',
'voir')) {
2060 $search_sale = $user->id;
2063 $sql =
"SELECT s.rowid, s.nom as name, s.client,";
2064 $sql .=
" p.rowid as supplier_proposalid, p.fk_statut, p.total_ht, p.ref, p.remise, ";
2065 $sql .=
" p.datep as dp, p.fin_validite as datelimite";
2066 $sql .=
" FROM ".MAIN_DB_PREFIX.
"societe as s, ".MAIN_DB_PREFIX.
"supplier_proposal as p, ".MAIN_DB_PREFIX.
"c_propalst as c";
2067 $sql .=
" WHERE p.entity IN (".getEntity(
'supplier_proposal').
")";
2068 $sql .=
" AND p.fk_soc = s.rowid";
2069 $sql .=
" AND p.fk_statut = c.id";
2071 $sql .=
" AND s.rowid = ".((int) $socid);
2074 $sql .=
" AND p.fk_statut = 0";
2076 if ($notcurrentuser > 0) {
2077 $sql .=
" AND p.fk_user_author <> ".((int) $user->id);
2080 if ($search_sale && $search_sale !=
'-1') {
2081 if ($search_sale == -2) {
2082 $sql .=
" AND NOT EXISTS (SELECT sc.fk_soc FROM ".MAIN_DB_PREFIX.
"societe_commerciaux as sc WHERE sc.fk_soc = p.fk_soc)";
2083 } elseif ($search_sale > 0) {
2084 $sql .=
" AND EXISTS (SELECT sc.fk_soc FROM ".MAIN_DB_PREFIX.
"societe_commerciaux as sc WHERE sc.fk_soc = p.fk_soc AND sc.fk_user = ".((int) $search_sale).
")";
2087 $sql .= $this->db->order($sortfield, $sortorder);
2088 $sql .= $this->db->plimit($limit, $offset);
2090 $result = $this->db->query($sql);
2092 $num = $this->db->num_rows($result);
2096 $obj = $this->db->fetch_object($result);
2098 if ($shortlist == 1) {
2099 $ga[$obj->supplier_proposalid] = $obj->ref;
2100 } elseif ($shortlist == 2) {
2101 $ga[$obj->supplier_proposalid] = $obj->ref.
' ('.$obj->name.
')';
2103 $ga[$i][
'id'] = $obj->supplier_proposalid;
2104 $ga[$i][
'ref'] = $obj->ref;
2105 $ga[$i][
'name'] = $obj->name;
2125 public function delete($user, $notrigger = 0)
2127 global $conf, $langs;
2128 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
2136 $result = $this->call_trigger(
'PROPOSAL_SUPPLIER_DELETE', $user);
2144 $main = MAIN_DB_PREFIX.
'supplier_proposaldet';
2145 $ef = $main.
"_extrafields";
2146 $sqlef =
"DELETE FROM $ef WHERE fk_object IN (SELECT rowid FROM $main WHERE fk_supplier_proposal = ".((int) $this->
id).
")";
2147 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"supplier_proposaldet WHERE fk_supplier_proposal = ".((int) $this->
id);
2148 if ($this->db->query($sql)) {
2149 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"supplier_proposal WHERE rowid = ".((int) $this->
id);
2150 if ($this->db->query($sqlef) && $this->db->query($sql)) {
2164 if ($conf->supplier_proposal->dir_output && !empty($this->
ref)) {
2165 $dir = $conf->supplier_proposal->dir_output.
"/".$ref;
2166 $file = $dir.
"/".$ref.
".pdf";
2167 if (file_exists($file)) {
2171 $this->error =
'ErrorFailToDeleteFile';
2172 $this->errors = array(
'ErrorFailToDeleteFile');
2173 $this->db->rollback();
2177 if (file_exists($dir)) {
2180 $this->error =
'ErrorFailToDeleteDir';
2181 $this->errors = array(
'ErrorFailToDeleteDir');
2182 $this->db->rollback();
2195 dol_syslog(get_class($this).
"::delete erreur ".$errorflag.
" ".$this->error, LOG_ERR);
2200 dol_syslog(get_class($this).
"::delete ".$this->
id.
" by ".$user->id, LOG_DEBUG);
2201 $this->db->commit();
2204 $this->error = $this->db->lasterror();
2205 $this->db->rollback();
2209 $this->error = $this->db->lasterror();
2210 $this->db->rollback();
2214 $this->error = $this->db->lasterror();
2215 $this->db->rollback();
2219 $this->db->rollback();
2232 $sql =
"SELECT c.rowid, GREATEST(c.tms, cef.tms) as date_modification,";
2233 $sql .=
" c.datec as date_creation, c.date_valid as date_validation, c.date_cloture as date_closure,";
2234 $sql .=
" c.fk_user_author, c.fk_user_modif, c.fk_user_valid, c.fk_user_cloture";
2235 $sql .=
" FROM ".MAIN_DB_PREFIX.
"supplier_proposal as c";
2236 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"supplier_proposal_extrafields as cef ON cef.fk_object=c.rowid";
2237 $sql .=
" WHERE c.rowid = ".((int) $id);
2239 $result = $this->db->query($sql);
2242 if ($this->db->num_rows($result)) {
2243 $obj = $this->db->fetch_object($result);
2245 $this->
id = $obj->rowid;
2247 $this->date_creation = $this->db->jdate($obj->date_creation);
2248 $this->date_modification = empty($obj->date_modification) ?
'' : $this->db->jdate($obj->date_modification);
2249 $this->date_validation = $this->db->jdate($obj->date_validation);
2250 $this->date_cloture = $this->db->jdate($obj->date_closure);
2252 $this->user_creation_id = $obj->fk_user_author;
2253 $this->user_modification_id = $obj->fk_user_modif;
2254 $this->user_validation_id = $obj->fk_user_valid;
2255 $this->user_closing_id = $obj->fk_user_cloture;
2257 $this->db->free($result);
2288 if (empty($this->labelStatus) || empty($this->labelStatusShort)) {
2290 $langs->load(
"supplier_proposal");
2291 $this->labelStatus[
self::STATUS_DRAFT] = $langs->transnoentitiesnoconv(
"SupplierProposalStatusDraft");
2292 $this->labelStatus[
self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv(
"SupplierProposalStatusValidated");
2293 $this->labelStatus[
self::STATUS_SIGNED] = $langs->transnoentitiesnoconv(
"SupplierProposalStatusSigned");
2294 $this->labelStatus[
self::STATUS_NOTSIGNED] = $langs->transnoentitiesnoconv(
"SupplierProposalStatusNotSigned");
2295 $this->labelStatus[
self::STATUS_CLOSE] = $langs->transnoentitiesnoconv(
"SupplierProposalStatusClosed");
2296 $this->labelStatusShort[
self::STATUS_DRAFT] = $langs->transnoentitiesnoconv(
"SupplierProposalStatusDraftShort");
2297 $this->labelStatusShort[
self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv(
"SupplierProposalStatusValidatedShort");
2298 $this->labelStatusShort[
self::STATUS_SIGNED] = $langs->transnoentitiesnoconv(
"SupplierProposalStatusSignedShort");
2299 $this->labelStatusShort[
self::STATUS_NOTSIGNED] = $langs->transnoentitiesnoconv(
"SupplierProposalStatusNotSignedShort");
2300 $this->labelStatusShort[
self::STATUS_CLOSE] = $langs->transnoentitiesnoconv(
"SupplierProposalStatusClosedShort");
2304 if ($status == self::STATUS_DRAFT) {
2305 $statusnew =
'status0';
2306 } elseif ($status == self::STATUS_VALIDATED) {
2307 $statusnew =
'status1';
2308 } elseif ($status == self::STATUS_SIGNED) {
2309 $statusnew =
'status4';
2310 } elseif ($status == self::STATUS_NOTSIGNED) {
2311 $statusnew =
'status9';
2312 } elseif ($status == self::STATUS_CLOSE) {
2313 $statusnew =
'status6';
2316 return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status],
'', $statusnew, $mode);
2331 global $conf, $langs;
2337 $sql =
"SELECT p.rowid, p.ref, p.datec as datec, p.date_cloture as datefin";
2338 $sql .=
" FROM ".MAIN_DB_PREFIX.
"supplier_proposal as p";
2339 if (empty($user->socid) && !$user->hasRight(
'societe',
'client',
'voir')) {
2340 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"societe_commerciaux as sc ON p.fk_soc = sc.fk_soc";
2341 $sql .=
" WHERE sc.fk_user = ".((int) $user->id);
2344 $sql .= $clause.
" p.entity IN (".
getEntity(
'supplier_proposal').
")";
2345 if ($mode ==
'opened') {
2346 $sql .=
" AND p.fk_statut = 1";
2348 if ($mode ==
'signed') {
2349 $sql .=
" AND p.fk_statut = 2";
2352 $sql .=
" AND p.fk_soc = ".((int) $user->socid);
2355 $resql = $this->db->query($sql);
2357 $label = $labelShort =
'';
2360 if ($mode ==
'opened') {
2361 $delay_warning = !empty($conf->supplier_proposal->cloture->warning_delay) ? $conf->supplier_proposal->cloture->warning_delay : 0;
2363 $label = $langs->trans(
"SupplierProposalsToClose");
2364 $labelShort = $langs->trans(
"ToAcceptRefuse");
2366 if ($mode ==
'signed') {
2367 $delay_warning = !empty($conf->supplier_proposal->facturation->warning_delay) ? $conf->supplier_proposal->facturation->warning_delay : 0;
2369 $label = $langs->trans(
"SupplierProposalsToProcess");
2370 $labelShort = $langs->trans(
"ToClose");
2374 $response->warning_delay = $delay_warning / 60 / 60 / 24;
2375 $response->label = $label;
2376 $response->labelShort = $labelShort;
2377 $response->url = DOL_URL_ROOT.
'/supplier_proposal/list.php?search_status='.$status;
2381 while ($obj = $this->db->fetch_object($resql)) {
2382 $response->nbtodo++;
2383 if ($mode ==
'opened') {
2384 $datelimit = $this->db->jdate($obj->datefin);
2385 if ($datelimit < ($now - $delay_warning)) {
2386 $response->nbtodolate++;
2394 $this->error = $this->db->lasterror();
2410 global $conf, $langs;
2415 $sql =
"SELECT rowid";
2416 $sql .=
" FROM ".MAIN_DB_PREFIX.
"product";
2417 $sql .=
" WHERE entity IN (".getEntity(
'product').
")";
2418 if (array_key_exists(
'tobuy', $param)) {
2419 $sql .=
" AND tobuy = ".((int) $param[
'tobuy']);
2421 $sql .= $this->db->plimit(100);
2423 $resql = $this->db->query($sql);
2425 $num_prods = $this->db->num_rows($resql);
2427 while ($i < $num_prods) {
2429 $row = $this->db->fetch_row($resql);
2430 $prodids[$i] = $row[0];
2436 $this->
ref =
'SPECIMEN';
2437 $this->ref_supplier =
'NEMICEPS';
2438 $this->specimen = 1;
2440 $this->
date = time();
2441 $this->cond_reglement_id = 1;
2442 $this->cond_reglement_code =
'RECEP';
2443 $this->mode_reglement_id = 7;
2444 $this->mode_reglement_code =
'CHQ';
2445 $this->note_public =
'This is a comment (public)';
2446 $this->note_private =
'This is a comment (private)';
2448 $this->multicurrency_tx = 1;
2454 while ($xnbp < $nbp) {
2456 $line->desc = $langs->trans(
"Description").
" ".$xnbp;
2458 $line->subprice = 100;
2459 $line->tva_tx = 19.6;
2460 $line->localtax1_tx = 0;
2461 $line->localtax2_tx = 0;
2463 $line->total_ht = 50;
2464 $line->total_ttc = 59.8;
2465 $line->total_tva = 9.8;
2466 $line->remise_percent = 50;
2468 $line->total_ht = 100;
2469 $line->total_ttc = 119.6;
2470 $line->total_tva = 19.6;
2471 $line->remise_percent = 00;
2474 if ($num_prods > 0) {
2475 $prodid = mt_rand(1, $num_prods);
2476 $line->fk_product = $prodids[$prodid];
2479 $this->lines[$xnbp] = $line;
2481 $this->total_ht += $line->total_ht;
2482 $this->total_tva += $line->total_tva;
2483 $this->total_ttc += $line->total_ttc;
2500 $this->nb = array();
2503 $sql =
"SELECT count(p.rowid) as nb";
2504 $sql .=
" FROM ".MAIN_DB_PREFIX.
"supplier_proposal as p";
2505 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"societe as s ON p.fk_soc = s.rowid";
2506 if (empty($user->socid) && !$user->hasRight(
'societe',
'client',
'voir')) {
2507 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"societe_commerciaux as sc ON s.rowid = sc.fk_soc";
2508 $sql .=
" WHERE sc.fk_user = ".((int) $user->id);
2511 $sql .=
" ".$clause.
" p.entity IN (".
getEntity(
'supplier_proposal').
")";
2513 $resql = $this->db->query($sql);
2516 while ($obj = $this->db->fetch_object($resql)) {
2517 $this->nb[
"supplier_proposals"] = $obj->nb;
2519 $this->db->free($resql);
2523 $this->error = $this->db->lasterror();
2536 public function getNextNumRef($soc)
2538 global $conf, $db, $langs;
2539 $langs->load(
"supplier_proposal");
2548 $dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
2549 foreach ($dirmodels as $reldir) {
2550 $dir =
dol_buildpath($reldir.
"core/modules/supplier_proposal/");
2553 $mybool = ((bool) @include_once $dir.$file) || $mybool;
2561 $obj =
new $classname();
2562 '@phan-var-force ModeleNumRefSupplierProposal $obj';
2565 $numref = $obj->getNextValue($soc, $this);
2567 if ($numref !=
"") {
2570 $this->error = $obj->error;
2574 $langs->load(
"errors");
2575 print $langs->trans(
"Error").
" ".$langs->trans(
"ErrorModuleSetupNotComplete", $langs->transnoentitiesnoconv(
"SupplierProposal"));
2588 global $conf, $langs;
2590 $langs->load(
'supplier_proposal');
2593 return [
'optimize' => $langs->trans(
"ShowSupplierProposal")];
2599 $datas[
'picto'] =
img_picto(
'', $this->picto).
' <u class="paddingrightonly">'.$langs->trans(
"SupplierProposal").
'</u>';
2600 if (isset($this->
status)) {
2601 $datas[
'picto'] .=
' '.$this->getLibStatut(5);
2603 if (!empty($this->
ref)) {
2604 $datas[
'ref'] =
'<br><b>'.$langs->trans(
'Ref').
':</b> '.$this->ref;
2606 if (!empty($this->ref_fourn)) {
2607 $datas[
'ref_supplier'] =
'<br><b>'.$langs->trans(
'RefSupplier').
':</b> '.$this->ref_fourn;
2609 if (!empty($this->total_ht)) {
2610 $datas[
'amount_ht'] =
'<br><b>'.$langs->trans(
'AmountHT').
':</b> '.
price($this->total_ht, 0, $langs, 0, -1, -1,
getDolCurrency());
2612 if (!empty($this->total_tva)) {
2613 $datas[
'amount_vat'] =
'<br><b>'.$langs->trans(
'VAT').
':</b> '.
price($this->total_tva, 0, $langs, 0, -1, -1,
getDolCurrency());
2615 if (!empty($this->total_ttc)) {
2616 $datas[
'amount_ttc'] =
'<br><b>'.$langs->trans(
'AmountTTC').
':</b> '.
price($this->total_ttc, 0, $langs, 0, -1, -1,
getDolCurrency());
2633 public function getNomUrl($withpicto = 0, $option =
'', $get_params =
'', $notooltip = 0, $save_lastsearch_value = -1, $addlinktonotes = 0)
2635 global $langs, $conf, $user, $hookmanager;
2637 if (!empty($conf->dol_no_mouse_hover)) {
2645 'objecttype' => $this->element,
2646 'option' => $option,
2648 $classfortooltip =
'classfortooltip';
2651 $classfortooltip =
'classforajaxtooltip';
2652 $dataparams =
' data-params="'.dol_escape_htmltag(json_encode($params)).
'"';
2658 if ($option ==
'') {
2659 $url = DOL_URL_ROOT.
'/supplier_proposal/card.php?id='.$this->
id.$get_params;
2661 if ($option ==
'document') {
2662 $url = DOL_URL_ROOT.
'/supplier_proposal/document.php?id='.$this->
id.$get_params;
2665 if ($option !==
'nolink') {
2667 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
2668 if ($save_lastsearch_value == -1 && isset($_SERVER[
"PHP_SELF"]) && preg_match(
'/list\.php/', $_SERVER[
"PHP_SELF"])) {
2669 $add_save_lastsearch_values = 1;
2671 if ($add_save_lastsearch_values) {
2672 $url .=
'&save_lastsearch_values=1';
2677 if (empty($notooltip) && $user->hasRight(
'propal',
'lire')) {
2679 $label = $langs->trans(
"ShowSupplierProposal");
2680 $linkclose .=
' alt="'.dolPrintHTMLForAttribute($label).
'"';
2682 $linkclose .= ($label ?
' title="'.dolPrintHTMLForAttribute($label).
'"' :
' title="tocomplete"');
2683 $linkclose .= $dataparams.
' class="'.$classfortooltip.
'"';
2686 $linkstart =
'<a href="'.$url.
'"';
2687 $linkstart .= $linkclose.
'>';
2690 $result .= $linkstart;
2692 $result .=
img_object(($notooltip ?
'' : $label), ($this->picto ? $this->picto :
'generic'), (($withpicto != 2) ?
'class="paddingright"' :
''), 0, 0, $notooltip ? 0 : 1);
2694 if ($withpicto != 2) {
2695 $result .= $this->ref;
2697 $result .= $linkend;
2699 if ($addlinktonotes) {
2700 $txttoshow = ($user->socid > 0 ? $this->note_public : $this->note_private);
2703 $result .=
' <span class="note inline-block">';
2704 $result .=
'<a href="'.DOL_URL_ROOT.
'/supplier_proposal/note.php?id='.$this->
id.
'" class="classfortooltip" title="'.
dol_escape_htmltag($notetoshow).
'">';
2709 $result .=
'</span>';
2713 $hookmanager->initHooks(array($this->element .
'dao'));
2714 $parameters = array(
'id' => $this->
id,
'getnomurl' => &$result);
2715 $reshook = $hookmanager->executeHooks(
'getNomUrl', $parameters, $this, $action);
2717 $result = $hookmanager->resPrint;
2719 $result .= $hookmanager->resPrint;
2733 $sql =
'SELECT pt.rowid, pt.label as custom_label, pt.description, pt.fk_product, pt.fk_remise_except,';
2734 $sql .=
' pt.qty, pt.tva_tx, pt.vat_src_code, pt.remise_percent, pt.subprice, pt.info_bits,';
2735 $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,';
2736 $sql .=
' pt.product_type, pt.rang, pt.fk_parent_line, pt.extraparams,';
2737 $sql .=
' p.label as product_label, p.ref, p.fk_product_type, p.rowid as prodid,';
2738 $sql .=
' p.description as product_desc, pt.ref_fourn as ref_supplier,';
2739 $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';
2740 $sql .=
' FROM '.MAIN_DB_PREFIX.
'supplier_proposaldet as pt';
2741 $sql .=
' LEFT JOIN '.MAIN_DB_PREFIX.
'product as p ON pt.fk_product=p.rowid';
2742 $sql .=
' WHERE pt.fk_supplier_proposal = '.((int) $this->
id);
2743 $sql .=
' ORDER BY pt.rang ASC, pt.rowid';
2745 dol_syslog(get_class($this).
'::getLinesArray', LOG_DEBUG);
2746 $resql = $this->db->query($sql);
2748 $num = $this->db->num_rows($resql);
2752 $obj = $this->db->fetch_object($resql);
2755 $this->lines[$i]->id = $obj->rowid;
2756 $this->lines[$i]->rowid = $obj->rowid;
2757 $this->lines[$i]->label = $obj->custom_label;
2758 $this->lines[$i]->description = $obj->description;
2759 $this->lines[$i]->desc = $obj->description;
2760 $this->lines[$i]->fk_product = $obj->fk_product;
2761 $this->lines[$i]->ref = $obj->ref;
2762 $this->lines[$i]->product_label = $obj->product_label;
2763 $this->lines[$i]->product_desc = $obj->product_desc;
2764 $this->lines[$i]->fk_product_type = $obj->fk_product_type;
2765 $this->lines[$i]->product_type = $obj->product_type;
2766 $this->lines[$i]->qty = $obj->qty;
2767 $this->lines[$i]->subprice = $obj->subprice;
2768 $this->lines[$i]->fk_remise_except = $obj->fk_remise_except;
2769 $this->lines[$i]->remise_percent = $obj->remise_percent;
2770 $this->lines[$i]->tva_tx = $obj->tva_tx;
2771 $this->lines[$i]->vat_src_code = $obj->vat_src_code;
2772 $this->lines[$i]->info_bits = $obj->info_bits;
2773 $this->lines[$i]->total_ht = $obj->total_ht;
2774 $this->lines[$i]->total_tva = $obj->total_tva;
2775 $this->lines[$i]->total_ttc = $obj->total_ttc;
2776 $this->lines[$i]->fk_fournprice = $obj->fk_fournprice;
2777 $marginInfos =
getMarginInfos($obj->subprice, $obj->remise_percent, $obj->tva_tx, $obj->localtax1_tx, $obj->localtax2_tx, $this->lines[$i]->fk_fournprice, $obj->pa_ht);
2778 $this->lines[$i]->pa_ht = $marginInfos[0];
2779 $this->lines[$i]->marge_tx = $marginInfos[1];
2780 $this->lines[$i]->marque_tx = $marginInfos[2];
2781 $this->lines[$i]->fk_parent_line = $obj->fk_parent_line;
2782 $this->lines[$i]->special_code = $obj->special_code;
2783 $this->lines[$i]->rang = $obj->rang;
2785 $this->lines[$i]->ref_fourn = $obj->ref_supplier;
2786 $this->lines[$i]->ref_supplier = $obj->ref_supplier;
2789 $this->lines[$i]->fk_multicurrency = $obj->fk_multicurrency;
2790 $this->lines[$i]->multicurrency_code = $obj->multicurrency_code;
2791 $this->lines[$i]->multicurrency_subprice = $obj->multicurrency_subprice;
2792 $this->lines[$i]->multicurrency_total_ht = $obj->multicurrency_total_ht;
2793 $this->lines[$i]->multicurrency_total_tva = $obj->multicurrency_total_tva;
2794 $this->lines[$i]->multicurrency_total_ttc = $obj->multicurrency_total_ttc;
2795 $this->lines[$i]->fk_unit = $obj->fk_unit;
2796 $this->lines[$i]->extraparams = !empty($obj->extraparams) ? (array) json_decode($obj->extraparams,
true) : array();
2798 $this->lines[$i]->fetch_optionals();
2802 $this->db->free($resql);
2806 $this->error = $this->db->error();
2822 public function generateDocument($modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0, $moreparams =
null)
2826 $langs->load(
"supplier_proposal");
2827 $outputlangs->load(
"products");
2832 if ($this->model_pdf) {
2833 $modele = $this->model_pdf;
2839 if (empty($modele)) {
2843 $modelpath =
"core/modules/supplier_proposal/doc/";
2845 return $this->
commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams);
2877 'supplier_proposaldet'
2895 $selected = (empty($arraydata[
'selected']) ? 0 : $arraydata[
'selected']);
2897 $return =
'<div class="box-flex-item box-flex-grow-zero">';
2898 $return .=
'<div class="info-box info-box-sm">';
2899 $return .=
'<span class="info-box-icon bg-infobox-action">';
2902 $return .=
'</span>';
2903 $return .=
'<div class="info-box-content">';
2904 $return .=
'<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">'.(method_exists($this,
'getNomUrl') ? $this->
getNomUrl() : $this->ref).
'</span>';
2905 if ($selected >= 0) {
2906 $return .=
'<input id="cb'.$this->id.
'" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="'.$this->
id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
2908 if (property_exists($this,
'socid')) {
2909 $return .=
'<span class="info-box-ref"> | '.$this->socid.
'</span>';
2911 if (property_exists($this,
'delivery_date')) {
2912 $return .=
'<br><span class="opacitymedium">'.$langs->trans(
"DateEnd").
'</span> : <span class="info-box-label">'.
dol_print_date($this->delivery_date).
'</span>';
2914 if (property_exists($this,
'total_ttc')) {
2915 $return .=
'<br><span class="opacitymedium" >'.$langs->trans(
"AmountHT").
' : </span><span class="info-box-label amount">'.
price($this->total_ttc).
'</span>';
2917 if (method_exists($this,
'getLibStatut')) {
2918 $return .=
'<br><div class="info-box-status">'.$this->getLibStatut(3).
'</div>';
2920 $return .=
'</div>';
2921 $return .=
'</div>';
2922 $return .=
'</div>';
2938 require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
2939 return parent::setCategoriesCommon($categories, Categorie::TYPE_SUPPLIER_PROPOSAL);
2962 public $element =
'supplier_proposaldet';
2967 public $table_element =
'supplier_proposaldet';
2992 public $fk_supplier_proposal;
2997 public $fk_parent_line;
3014 public $fk_product_type;
3033 public $vat_src_code;
3038 public $remise_percent;
3043 public $fk_remise_except;
3053 public $fk_fournprice;
3071 public $special_code;
3079 public $info_bits = 0;
3117 public $product_ref;
3130 public $product_label;
3142 public $product_desc;
3147 public $localtax1_tx;
3151 public $localtax2_tx;
3155 public $localtax1_type;
3159 public $localtax2_type;
3163 public $total_localtax1;
3167 public $total_localtax2;
3172 public $skip_update_total;
3181 public $ref_supplier;
3187 public $fk_multicurrency;
3192 public $multicurrency_code;
3196 public $multicurrency_subprice;
3200 public $multicurrency_total_ht;
3204 public $multicurrency_total_tva;
3208 public $multicurrency_total_ttc;
3228 $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,';
3229 $sql .=
' pd.date_start, pd.date_end,';
3230 $sql .=
' pd.remise, pd.remise_percent, pd.fk_remise_except, pd.subprice, pd.subprice_ttc,';
3231 $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,';
3232 $sql .=
' pd.localtax1_tx, pd.localtax2_tx, pd.total_localtax1, pd.total_localtax2,';
3233 $sql .=
' p.ref as product_ref, p.label as product_label, p.description as product_desc,';
3234 $sql .=
' pd.product_type, pd.ref_fourn as ref_produit_fourn, pd.extraparams,';
3235 $sql .=
' pd.fk_multicurrency, pd.multicurrency_code, pd.multicurrency_subprice, pd.multicurrency_subprice_ttc, pd.multicurrency_total_ht, pd.multicurrency_total_tva, pd.multicurrency_total_ttc, pd.fk_unit';
3236 $sql .=
' FROM '.MAIN_DB_PREFIX.
'supplier_proposaldet as pd';
3237 $sql .=
' LEFT JOIN '.MAIN_DB_PREFIX.
'product as p ON pd.fk_product = p.rowid';
3238 $sql .=
' WHERE pd.rowid = '.((int) $rowid);
3240 $result = $this->db->query($sql);
3242 if ($objp = $this->db->fetch_object($result)) {
3243 $this->
id = $objp->rowid;
3244 $this->fk_supplier_proposal = $objp->fk_supplier_proposal;
3245 $this->fk_parent_line = $objp->fk_parent_line;
3246 $this->label = $objp->custom_label;
3247 $this->desc = $objp->description;
3248 $this->qty = $objp->qty;
3250 $this->subprice = $objp->subprice;
3251 $this->subprice_ttc = $objp->subprice_ttc;
3253 $this->tva_tx = $objp->tva_tx;
3254 $this->remise_percent = $objp->remise_percent;
3255 $this->fk_remise_except = $objp->fk_remise_except;
3256 $this->fk_product = $objp->fk_product;
3257 $this->info_bits = $objp->info_bits;
3258 $this->date_start = $this->db->jdate($objp->date_start);
3259 $this->date_end = $this->db->jdate($objp->date_end);
3261 $this->total_ht = $objp->total_ht;
3262 $this->total_tva = $objp->total_tva;
3263 $this->total_ttc = $objp->total_ttc;
3265 $this->fk_fournprice = $objp->fk_fournprice;
3267 $marginInfos =
getMarginInfos($objp->subprice, $objp->remise_percent, $objp->tva_tx, $objp->localtax1_tx, $objp->localtax2_tx, $this->fk_fournprice, $objp->pa_ht);
3268 $this->pa_ht = $marginInfos[0];
3269 $this->marge_tx = $marginInfos[1];
3270 $this->marque_tx = $marginInfos[2];
3272 $this->special_code = $objp->special_code;
3273 $this->product_type = $objp->product_type;
3274 $this->rang = $objp->rang;
3276 $this->product_ref = $objp->product_ref;
3277 $this->product_label = $objp->product_label;
3278 $this->product_desc = $objp->product_desc;
3280 $this->ref_fourn = $objp->ref_produit_fourn;
3282 $this->extraparams = !empty($objp->extraparams) ? (array) json_decode($objp->extraparams,
true) : array();
3285 $this->fk_multicurrency = $objp->fk_multicurrency;
3286 $this->multicurrency_code = $objp->multicurrency_code;
3287 $this->multicurrency_subprice = $objp->multicurrency_subprice;
3288 $this->multicurrency_subprice_ttc = $objp->multicurrency_subprice_ttc;
3289 $this->multicurrency_total_ht = $objp->multicurrency_total_ht;
3290 $this->multicurrency_total_tva = $objp->multicurrency_total_tva;
3291 $this->multicurrency_total_ttc = $objp->multicurrency_total_ttc;
3292 $this->fk_unit = $objp->fk_unit;
3294 $this->db->free($result);
3316 dol_syslog(get_class($this).
"::insert rang=".$this->rang);
3319 if (empty($this->tva_tx)) {
3322 if (empty($this->vat_src_code)) {
3323 $this->vat_src_code =
'';
3325 if (empty($this->localtax1_tx)) {
3326 $this->localtax1_tx = 0;
3328 if (empty($this->localtax2_tx)) {
3329 $this->localtax2_tx = 0;
3331 if (empty($this->localtax1_type)) {
3332 $this->localtax1_type =
'';
3334 if (empty($this->localtax2_type)) {
3335 $this->localtax2_type =
'';
3337 if (empty($this->total_localtax1)) {
3338 $this->total_localtax1 = 0;
3340 if (empty($this->total_localtax2)) {
3341 $this->total_localtax2 = 0;
3343 if (empty($this->rang)) {
3346 if (empty($this->remise_percent)) {
3347 $this->remise_percent = 0;
3349 if (empty($this->info_bits)) {
3350 $this->info_bits = 0;
3352 if (empty($this->special_code)) {
3353 $this->special_code = 0;
3355 if (empty($this->fk_parent_line)) {
3356 $this->fk_parent_line = 0;
3358 if (empty($this->fk_fournprice)) {
3359 $this->fk_fournprice = 0;
3361 if (empty($this->fk_unit)) {
3364 if (empty($this->subprice)) {
3365 $this->subprice = 0;
3368 if (empty($this->pa_ht)) {
3373 if ($this->pa_ht == 0) {
3374 $result = $this->
defineBuyPrice($this->subprice, $this->remise_percent, $this->fk_product);
3378 $this->pa_ht = $result;
3383 if ($this->product_type < 0) {
3390 $sql =
'INSERT INTO '.MAIN_DB_PREFIX.
'supplier_proposaldet';
3391 $sql .=
' (fk_supplier_proposal, fk_parent_line, label, description, fk_product, product_type,';
3392 $sql .=
' date_start, date_end,';
3393 $sql .=
' fk_remise_except, qty, tva_tx, vat_src_code, localtax1_tx, localtax2_tx, localtax1_type, localtax2_type,';
3394 $sql .=
' subprice, subprice_ttc, remise_percent, ';
3395 $sql .=
' info_bits, ';
3396 $sql .=
' total_ht, total_tva, total_localtax1, total_localtax2, total_ttc, fk_product_fournisseur_price, buy_price_ht, special_code, rang,';
3397 $sql .=
' ref_fourn,';
3398 $sql .=
' fk_multicurrency, multicurrency_code, multicurrency_subprice, multicurrency_subprice_ttc, multicurrency_total_ht, multicurrency_total_tva, multicurrency_total_ttc, fk_unit)';
3399 $sql .=
" VALUES (".$this->fk_supplier_proposal.
",";
3400 $sql .=
" ".($this->fk_parent_line > 0 ? ((int) $this->fk_parent_line) :
"null").
",";
3401 $sql .=
" ".(!empty($this->label) ?
"'".$this->db->escape($this->label).
"'" :
"null").
",";
3402 $sql .=
" '".$this->db->escape($this->desc).
"',";
3403 $sql .=
" ".($this->fk_product ? ((int) $this->fk_product) :
"null").
",";
3404 $sql .=
" ".((int) $this->product_type).
",";
3405 $sql .=
" ".($this->date_start ?
"'".$this->db->idate($this->date_start).
"'" :
"null").
",";
3406 $sql .=
" ".($this->date_end ?
"'".$this->db->idate($this->date_end).
"'" :
"null").
",";
3407 $sql .=
" ".($this->fk_remise_except ? ((int) $this->fk_remise_except) :
"null").
",";
3408 $sql .=
" ".(float)
price2num($this->qty,
'MS').
",";
3409 $sql .=
" ".(float)
price2num($this->tva_tx).
",";
3410 $sql .=
" '".$this->db->escape($this->vat_src_code).
"',";
3411 $sql .=
" ".(float)
price2num($this->localtax1_tx).
",";
3412 $sql .=
" ".(float)
price2num($this->localtax2_tx).
",";
3413 $sql .=
" '".$this->db->escape($this->localtax1_type).
"',";
3414 $sql .=
" '".$this->db->escape($this->localtax2_type).
"',";
3415 $sql .=
" ".(float)
price2num($this->subprice,
'MU') .
",";
3416 $sql .=
" ".(float)
price2num($this->subprice_ttc,
'MU') .
",";
3417 $sql .=
" ".((float) $this->remise_percent).
",";
3418 $sql .=
" ".(isset($this->info_bits) ? ((int) $this->info_bits) :
"null").
",";
3419 $sql .=
" ".(float)
price2num($this->total_ht,
'MT').
",";
3420 $sql .=
" ".(float)
price2num($this->total_tva,
'MT').
",";
3421 $sql .=
" ".(float)
price2num($this->total_localtax1,
'MT').
",";
3422 $sql .=
" ".(float)
price2num($this->total_localtax2,
'MT').
",";
3423 $sql .=
" ".(float)
price2num($this->total_ttc,
'MT').
",";
3424 $sql .=
" ".(!empty($this->fk_fournprice) ? ((int) $this->fk_fournprice) :
"null").
",";
3425 $sql .=
" ".(isset($this->pa_ht) ? (float)
price2num($this->pa_ht,
'MU') :
"null").
",";
3426 $sql .=
' '.((int) $this->special_code).
',';
3427 $sql .=
' '.((int) $this->rang).
',';
3428 $sql .=
" '".$this->db->escape($this->ref_fourn).
"'";
3429 $sql .=
", ".($this->fk_multicurrency > 0 ? ((int) $this->fk_multicurrency) :
'null');
3430 $sql .=
", '".$this->db->escape($this->multicurrency_code).
"'";
3431 $sql .=
", ".(float)
price2num($this->multicurrency_subprice,
'CU');
3432 $sql .=
", ".(float)
price2num($this->multicurrency_subprice_ttc,
'CU');
3433 $sql .=
", ".(float)
price2num($this->multicurrency_total_ht,
'CT');
3434 $sql .=
", ".(float)
price2num($this->multicurrency_total_tva,
'CT');
3435 $sql .=
", ".(float)
price2num($this->multicurrency_total_ttc,
'CT');
3436 $sql .=
", ".($this->fk_unit ? ((int) $this->fk_unit) :
'null');
3439 dol_syslog(get_class($this).
'::insert', LOG_DEBUG);
3440 $resql = $this->db->query($sql);
3442 $this->
id = $this->db->last_insert_id(MAIN_DB_PREFIX.
'supplier_proposaldet');
3451 if (!$error && !$notrigger) {
3453 $result = $this->call_trigger(
'LINESUPPLIER_PROPOSAL_INSERT', $user);
3455 $this->db->rollback();
3461 $this->db->commit();
3464 $this->error = $this->db->error().
" sql=".$sql;
3465 $this->db->rollback();
3476 public function delete($user)
3482 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"supplier_proposaldet";
3483 $sql .=
" WHERE rowid = ".((int) $this->
id);
3485 if ($this->db->query($sql)) {
3491 dol_syslog(get_class($this).
"::delete error -4 ".$this->error, LOG_ERR);
3496 $result = $this->call_trigger(
'LINESUPPLIER_PROPOSAL_DELETE', $user);
3498 $this->db->rollback();
3503 $this->db->commit();
3507 $this->error = $this->db->error().
" sql=".$sql;
3508 $this->db->rollback();
3526 if (empty($this->tva_tx)) {
3529 if (empty($this->localtax1_tx)) {
3530 $this->localtax1_tx = 0;
3532 if (empty($this->localtax2_tx)) {
3533 $this->localtax2_tx = 0;
3535 if (empty($this->total_localtax1)) {
3536 $this->total_localtax1 = 0;
3538 if (empty($this->total_localtax2)) {
3539 $this->total_localtax2 = 0;
3541 if (empty($this->localtax1_type)) {
3542 $this->localtax1_type =
'';
3544 if (empty($this->localtax2_type)) {
3545 $this->localtax2_type =
'';
3547 if (empty($this->marque_tx)) {
3548 $this->marque_tx = 0;
3550 if (empty($this->marge_tx)) {
3551 $this->marge_tx = 0;
3553 if (empty($this->remise_percent)) {
3554 $this->remise_percent = 0;
3556 if (empty($this->info_bits)) {
3557 $this->info_bits = 0;
3559 if (empty($this->special_code)) {
3560 $this->special_code = 0;
3562 if (empty($this->fk_parent_line)) {
3563 $this->fk_parent_line = 0;
3565 if (empty($this->fk_fournprice)) {
3566 $this->fk_fournprice = 0;
3568 if (empty($this->fk_unit)) {
3571 if (empty($this->subprice)) {
3572 $this->subprice = 0;
3575 if (empty($this->pa_ht)) {
3580 if ($this->pa_ht == 0) {
3581 $result = $this->
defineBuyPrice($this->subprice, $this->remise_percent, $this->fk_product);
3585 $this->pa_ht = $result;
3592 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"supplier_proposaldet SET";
3593 $sql .=
" description = '".$this->db->escape($this->desc).
"'";
3594 $sql .=
" , label = ".(!empty($this->label) ?
"'".$this->db->escape($this->label).
"'" :
"null");
3595 $sql .=
" , product_type = ".((int) $this->product_type);
3596 $sql .=
" , date_start = ".($this->date_start ?
"'".$this->db->idate($this->date_start).
"'" :
"null");
3597 $sql .=
" , date_end = ".($this->date_end ?
"'".$this->db->idate($this->date_end).
"'" :
"null");
3598 $sql .=
" , tva_tx = '".price2num($this->tva_tx).
"'";
3599 $sql .=
" , localtax1_tx = ".(float)
price2num($this->localtax1_tx);
3600 $sql .=
" , localtax2_tx = ".(float)
price2num($this->localtax2_tx);
3601 $sql .=
" , localtax1_type = '".$this->db->escape($this->localtax1_type).
"'";
3602 $sql .=
" , localtax2_type = '".$this->db->escape($this->localtax2_type).
"'";
3603 $sql .=
" , qty = ".(float)
price2num($this->qty);
3604 $sql .=
" , subprice = ".(float)
price2num($this->subprice);
3605 $sql .=
" , subprice_ttc = ".(float)
price2num($this->subprice_ttc);
3606 $sql .=
" , remise_percent = ".(float)
price2num($this->remise_percent);
3607 $sql .=
" , info_bits = ".((int) $this->info_bits);
3608 if (empty($this->skip_update_total)) {
3609 $sql .=
" , total_ht = ".(float)
price2num($this->total_ht);
3610 $sql .=
" , total_tva = ".(float)
price2num($this->total_tva);
3611 $sql .=
" , total_ttc = ".(float)
price2num($this->total_ttc);
3612 $sql .=
" , total_localtax1 = ".(float)
price2num($this->total_localtax1);
3613 $sql .=
" , total_localtax2 = ".(float)
price2num($this->total_localtax2);
3615 $sql .=
" , fk_product_fournisseur_price = ".(!empty($this->fk_fournprice) ?
"'".$this->db->escape((
string) $this->fk_fournprice).
"'" :
"null");
3616 $sql .=
" , buy_price_ht = ".(float)
price2num($this->pa_ht);
3617 $sql .=
" , special_code = ".((int) $this->special_code);
3618 $sql .=
" , fk_parent_line = ".($this->fk_parent_line > 0 ? $this->fk_parent_line :
"null");
3619 if (!empty($this->rang)) {
3620 $sql .=
", rang = ".((int) $this->rang);
3622 $sql .=
" , ref_fourn = ".(!empty($this->ref_fourn) ?
"'".$this->db->escape($this->ref_fourn).
"'" :
"null");
3623 $sql .=
" , fk_unit = ".($this->fk_unit ? (int) $this->fk_unit :
'null');
3626 $sql .=
" , multicurrency_subprice = ".(float)
price2num($this->multicurrency_subprice);
3627 $sql .=
" , multicurrency_subprice_ttc = ".(float)
price2num($this->multicurrency_subprice_ttc);
3628 $sql .=
" , multicurrency_total_ht = ".(float)
price2num($this->multicurrency_total_ht);
3629 $sql .=
" , multicurrency_total_tva = ".(float)
price2num($this->multicurrency_total_tva);
3630 $sql .=
" , multicurrency_total_ttc = ".(float)
price2num($this->multicurrency_total_ttc);
3632 $sql .=
" WHERE rowid = ".((int) $this->
id);
3634 dol_syslog(get_class($this).
"::update", LOG_DEBUG);
3635 $resql = $this->db->query($sql);
3644 if (!$error && !$notrigger) {
3646 $result = $this->call_trigger(
'LINESUPPLIER_PROPOSAL_MODIFY', $user);
3648 $this->db->rollback();
3654 $this->db->commit();
3657 $this->error = $this->db->error();
3658 $this->db->rollback();
3676 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"supplier_proposaldet SET";
3677 $sql .=
" total_ht = ".(float)
price2num($this->total_ht,
'MT');
3678 $sql .=
",total_tva = ".(float)
price2num($this->total_tva,
'MT');
3679 $sql .=
",total_ttc = ".(float)
price2num($this->total_ttc,
'MT');
3680 $sql .=
" WHERE rowid = ".((int) $this->
id);
3682 dol_syslog(
"SupplierProposalLine::update_total", LOG_DEBUG);
3684 $resql = $this->db->query($sql);
3686 $this->db->commit();
3689 $this->error = $this->db->error();
3690 $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.
update_price($exclspec=0, $roundingadjust='auto', $nodatabaseupdate=0, $seller=null)
Update total_ht, total_ttc, total_vat, total_localtax1, total_localtax2 for an object (sum of lines).
add_object_linked($origin=null, $origin_id=null, $f_user=null, $notrigger=0)
Add an object link into llx_element_element.
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.
deleteObjectLinked($sourceid=null, $sourcetype='', $targetid=null, $targettype='', $rowid=0, $f_user=null, $notrigger=0)
Delete all links between an object $this.
setErrorsFromObject($object)
setErrorsFromObject
static isExistingObject($element, $id, $ref='', $ref_ext='')
Check if an object id or ref exists If you don't need or want to instantiate the object and just need...
updateRangOfLine($rowid, $rang)
Update position of line (rang)
checkActiveProductInLines($status='onsale')
Check if all products have the right status (on sale, on buy) called during validation of propal,...
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.
add_contact($fk_socpeople, $type_contact, $source='external', $notrigger=0)
Add a link between element $this->element and a contact.
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=0)
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)
Update ProductFournisseur.
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=[], $ref_supplier='', $fk_unit=0, $pu_ht_devise=0)
Update a proposal line.
cloture($user, $status, $note)
Close the askprice.
initAsSpecimen($param=array())
Initialise an instance with random values.
generateDocument($modele, $outputlangs, $hidedetails=0, $hidedesc=0, $hideref=0, $moreparams=null)
Create a document onto disk according to template module.
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=[], $ref_supplier='', $fk_unit=0, $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 parameters sont deja cense e...
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.
reopen($user, $status, $note='', $notrigger=0)
Set an overall discount on the proposal.
static replaceProduct(DoliDB $db, $origin_id, $dest_id)
Function used to replace a product id with another one.
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.
const STATUS_NOTSIGNED
Not signed quote, canceled.
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.
__construct($db, $socid=0, $supplier_proposalid=0)
Constructor.
LibStatut($status, $mode=1)
Return label of a status (draft, validated, ...)
setCategories($categories)
Sets object to supplied categories.
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.
loadStateBoard()
Load indicator this->nb of global stats widget.
deleteLine($lineid)
Delete detail line.
const STATUS_VALIDATED
Validated status.
createPriceFournisseur($product, $user)
Create Price Fournisseur.
getLibStatut($mode=0)
Return label of status of proposal (draft, validated, ...)
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 clickable link of object (with eventually picto)
getKanbanView($option='', $arraydata=null)
Return clickable 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 Constructor.
Class to manage translations.
Class to manage Dolibarr users.
print $langs trans("Ref").' m titre as m m statut as status
Or an array listing all the potential status of the object: array: int of the status => translated la...
dol_delete_file($file, $disableglob=0, $nophperrors=0, $nohook=0, $object=null, $allowdotdot=false, $indexdatabase=1, $nolog=0)
Remove a file or several files with a mask.
dol_delete_dir_recursive($dir, $count=0, $nophperrors=0, $onlysub=0, &$countdeleted=0, $indexdatabase=1, $nolog=0, $level=0)
Remove a directory $dir and its subdirectories (or only files and subdirectories)
dol_dir_list($utf8_path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
dol_delete_preview($object)
Delete all preview files linked to object instance.
dol_now($mode='gmt')
Return date for now.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
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 '.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $allowothertags=array())
Show a picto called object_picto (generic function)
dol_sanitizeFileName($str, $newstr='_', $unaccent=1, $includequotes=0, $allowdash=0)
Clean a string to use it as a file name.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
getLocalTaxesFromRate($vatrate, $local, $buyer, $seller, $firstparamisid=0)
Get type and rate of localtaxes for a particular vat rate/country of a thirdparty.
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)
getDolCurrency()
Return the main currency ('EUR', 'USD', ...)
dolGetStatus($statusLabel='', $statusLabelShort='', $html='', $statusType='status0', $displayMode=0, $url='', $params=array())
Output the badge of a status.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false, $decorate=0)
Output date in a string format according to outputlangs (or langs if not defined).
getDolGlobalBool($key, $default=false)
Return a Dolibarr global constant boolean value.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
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...
get_localtax($vatrate, $local, $thirdparty_buyer=null, $thirdparty_seller=null, $vatnpr=0)
Return localtax rate for a particular VAT rate, when selling a product with vat $vatrate,...
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($pv_ht, $remise_percent, $tva_tx, $localtax1_tx, $localtax2_tx, $fk_pa, $pa_ht)
Return an array with margins information of a line.
calcul_price_total($qty, $pu, $remise_percent_ligne, $txtva, $uselocaltax1_rate, $uselocaltax2_rate, $remise_percent_global, $price_base_type, $info_bits, $type, $seller=null, $localtaxes_array=[], $progress=100, $multicurrency_tx=1, $pu_devise=0, $multicurrency_code='')
Calculate totals (net, vat, ...) of a line.
if(getDolGlobalString( 'TAKEPOS_SHOW_CUSTOMER')) print $langs trans('Date')." left Label right Qty right Price right TotalHT right TotalTTC right right right right right right right right right centpercent right TotalHT right n right VAT right n right TotalVAT right n No sujeto a RE IRPF right TotalLT1 right n right TotalLT2 right n right TotalTTC right n takeposcustomercurrency takeposcustomercurrency takeposcustomercurrency takeposcustomercurrency right TotalTTC takeposcustomercurrency right takeposcustomercurrency n right PaymentTypeShortLIQ right SELECT p pos_change as p datep as date