178 if (!empty($this->combination_price_levels) && $useCache) {
179 if ((!empty($fk_price_level) && isset($this->combination_price_levels[$fk_price_level])) || empty($fk_price_level)) {
184 if (!is_array($this->combination_price_levels)
185 || empty($fk_price_level)
187 $this->combination_price_levels = array();
191 $combination_price_levels = $staticProductCombinationLevel->fetchAll($this->
id, $fk_price_level);
193 if (!is_array($combination_price_levels)) {
197 if (empty($combination_price_levels)) {
201 if ($fk_price_level > 0) {
205 for ($i = 1; $i <= $produit_multiprices_limit; $i++) {
211 $this->combination_price_levels = $combination_price_levels;
312 $sql =
"SELECT pac.rowid, pac.fk_product_parent, pac.fk_product_child, pac.variation_price, pac.variation_price_percentage, pac.variation_ref_ext, pac.variation_weight";
313 $sql .=
" FROM ".MAIN_DB_PREFIX.
"product_attribute_combination AS pac";
315 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"product AS p ON p.rowid = pac.fk_product_child";
317 $sql .=
" WHERE pac.fk_product_parent = ".((int) $fk_product_parent).
" AND pac.entity IN (".
getEntity(
'product').
")";
319 $sql .= $this->db->order(
'p.ref',
'ASC');
322 $query = $this->db->query($sql);
330 while ($result = $this->db->fetch_object($query)) {
332 $tmp->id = $result->rowid;
333 $tmp->fk_product_parent = $result->fk_product_parent;
334 $tmp->fk_product_child = $result->fk_product_child;
335 $tmp->variation_price = $result->variation_price;
336 $tmp->variation_price_percentage = $result->variation_price_percentage;
337 $tmp->variation_weight = $result->variation_weight;
338 $tmp->variation_ref_ext = $result->variation_ref_ext;
341 $tmp->fetchCombinationPriceLevels();
528 $child =
new Product($this->db);
529 $child->fetch($this->fk_product_child);
531 $child->price_autogen = $parent->price_autogen;
532 $child->weight = $parent->weight;
534 if (is_object($parent->oldcopy) && !$parent->oldcopy->isEmpty() && ($parent->status != $parent->oldcopy->status)) {
535 $child->status = $parent->status;
537 if (is_object($parent->oldcopy) && !$parent->oldcopy->isEmpty() && ($parent->status_buy != $parent->oldcopy->status_buy)) {
538 $child->status_buy = $parent->status_buy;
541 if ($this->variation_weight) {
542 $child->weight = ($child->weight ? $child->weight : 0) + $this->variation_weight;
544 $child->weight_units = $parent->weight_units;
547 if ($child->label == $parent->label) {
550 $child->label = $parent->label.$varlabel;
554 if ($child->update($child->id, $user) > 0) {
555 $new_vat = $parent->tva_tx;
556 $new_npr = $parent->tva_npr;
560 $produit_multiprices_limit =
getDolGlobalInt(
'PRODUIT_MULTIPRICES_LIMIT');
561 for ($i = 1; $i <= $produit_multiprices_limit; $i++) {
562 if ($parent->multiprices[$i] !=
'' || isset($this->combination_price_levels[$i]->variation_price)) {
563 $new_type = empty($parent->multiprices_base_type[$i]) ?
'HT' : $parent->multiprices_base_type[$i];
564 $new_min_price = $parent->multiprices_min[$i];
565 $variation_price = (float) (!isset($this->combination_price_levels[$i]->variation_price) ? $this->variation_price : $this->combination_price_levels[$i]->variation_price);
566 $variation_price_percentage = (bool) (!isset($this->combination_price_levels[$i]->variation_price_percentage) ? $this->variation_price_percentage : $this->combination_price_levels[$i]->variation_price_percentage);
568 if ($parent->prices_by_qty_list[$i]) {
574 if ($new_type ==
'TTC') {
575 $new_price = $parent->multiprices_ttc[$i];
577 $new_price = $parent->multiprices[$i];
580 if ($variation_price_percentage) {
581 if ($new_price != 0) {
582 $new_price *= 1 + ($variation_price / 100);
585 $new_price += $variation_price;
588 $ret = $child->updatePrice($new_price, $new_type, $user, $new_vat, $new_min_price, $i, $new_npr, $new_psq, 0, array(), $parent->default_vat_code);
591 $this->db->rollback();
592 $this->error = $child->error;
593 $this->errors = $child->errors;
599 $new_type = $parent->price_base_type;
600 $new_min_price = $parent->price_min;
601 $new_psq = $parent->price_by_qty;
603 if ($new_type ==
'TTC') {
604 $new_price = $parent->price_ttc;
606 $new_price = $parent->price;
609 if ($this->variation_price_percentage) {
610 if ($new_price != 0) {
611 $new_price *= 1 + ($this->variation_price / 100);
614 $new_price += $this->variation_price;
617 $ret = $child->updatePrice($new_price, $new_type, $user, $new_vat, $new_min_price, 1, $new_npr, $new_psq);
620 $this->db->rollback();
621 $this->error = $child->error;
622 $this->errors = $child->errors;
632 $this->db->rollback();
633 $this->error = $child->error;
634 $this->errors = $child->errors;
763 public function createProductCombination(
User $user,
Product $product, array $combinations, array $variations, $price_var_percent =
false, $forced_pricevar =
false, $forced_weightvar =
false, $forced_refvar =
false, $ref_ext =
'')
767 require_once DOL_DOCUMENT_ROOT.
'/variants/class/ProductAttribute.class.php';
768 require_once DOL_DOCUMENT_ROOT.
'/variants/class/ProductAttributeValue.class.php';
772 $price_impact = array(1 => 0);
774 $forced_refvar = trim((
string) $forced_refvar);
776 if (!empty($forced_refvar) && $forced_refvar != $product->ref) {
777 $existingProduct =
new Product($this->db);
778 $result = $existingProduct->fetch(0, $forced_refvar);
780 $newproduct = $existingProduct;
782 $existingProduct =
false;
783 $newproduct = clone $product;
784 $newproduct->ref = $forced_refvar;
787 $forced_refvar =
false;
788 $existingProduct =
false;
789 $newproduct = clone $product;
793 $newproduct->context[
'createproductcombination'] =
'createproductcombination';
796 $weight_impact = (float) $forced_weightvar;
799 if (!is_array($forced_pricevar)) {
800 $price_impact[1] = (float) $forced_pricevar;
802 $price_impact = $forced_pricevar;
805 if (!is_array($price_var_percent)) {
806 $price_var_percent = array(1 => (
bool) $price_var_percent);
810 $existingCombination = $newcomb->fetchByProductCombination2ValuePairs($product->id, $combinations);
812 if ($existingCombination) {
813 $newcomb = $existingCombination;
815 $newcomb->fk_product_parent = $product->id;
818 $result = $newcomb->create($user);
820 $this->error = $newcomb->error;
821 $this->errors = $newcomb->errors;
822 $this->db->rollback();
831 foreach ($combinations as $currcombattr => $currcombval) {
833 $prodattr->fetch($currcombattr);
834 $prodattrval->fetch($currcombval);
837 if (!$existingCombination) {
839 $tmp->fk_prod_attr = $currcombattr;
840 $tmp->fk_prod_attr_val = $currcombval;
841 $tmp->fk_prod_combination = $newcomb->id;
843 if ($tmp->create($user) < 0) {
844 $this->error = $tmp->error;
845 $this->errors = $tmp->errors;
846 $this->db->rollback();
850 if ($forced_weightvar ===
false) {
851 $weight_impact += (float)
price2num($variations[$currcombattr][$currcombval][
'weight']);
853 if ($forced_pricevar ===
false) {
854 $price_impact[1] += (float)
price2num($variations[$currcombattr][$currcombval][
'price']);
859 for ($i = 2; $i <= $produit_multiprices_limit; $i++) {
860 $price_impact[$i] += (float)
price2num($variations[$currcombattr][$currcombval][
'price']);
865 if ($forced_refvar ===
false) {
866 if (isset(
$conf->global->PRODUIT_ATTRIBUTES_SEPARATOR)) {
867 $newproduct->ref .=
getDolGlobalString(
'PRODUIT_ATTRIBUTES_SEPARATOR') . $prodattrval->ref;
869 $newproduct->ref .=
'_'.$prodattrval->ref;
874 if ($newproduct->description) {
875 $newproduct->description .=
'<br>';
877 $newproduct->description .=
'<strong>'.$prodattr->label.
':</strong> '.$prodattrval->value;
880 $newcomb->variation_price_percentage = (bool) $price_var_percent[1];
881 $newcomb->variation_price = $price_impact[1];
882 $newcomb->variation_weight = $weight_impact;
883 $newcomb->variation_ref_ext = $this->db->escape($ref_ext);
887 $produit_multiprices_limit =
getDolGlobalInt(
'PRODUIT_MULTIPRICES_LIMIT');
888 for ($i = 1; $i <= $produit_multiprices_limit; $i++) {
890 $productCombinationLevel->fk_product_attribute_combination = $newcomb->id;
891 $productCombinationLevel->fk_price_level = $i;
892 $productCombinationLevel->variation_price = $price_impact[$i];
894 if (is_array($price_var_percent)) {
895 $productCombinationLevel->variation_price_percentage = (bool) $price_var_percent[$i] ;
897 $productCombinationLevel->variation_price_percentage = $price_var_percent;
900 $newcomb->combination_price_levels[$i] = $productCombinationLevel;
905 $newproduct->weight += $weight_impact;
909 if ($existingProduct ===
false) {
911 $newproduct->price = 0;
912 $newproduct->price_ttc = 0;
913 $newproduct->price_min = 0;
914 $newproduct->price_min_ttc = 0;
917 $newproduct->barcode = -1;
918 $result = $newproduct->create($user);
922 if ($newproduct->error !=
'ErrorProductAlreadyExists') {
923 $this->error = $newproduct->error;
924 $this->errors = $newproduct->errors;
925 $this->db->rollback();
934 if ($newcomb->fk_product_child) {
935 $res = $newproduct->fetch($existingCombination->fk_product_child);
937 $orig_prod_ref = $newproduct->ref;
941 $newproduct->ref = $orig_prod_ref.$i;
942 $res = $newproduct->create($user);
944 if ($newproduct->error !=
'ErrorProductAlreadyExists') {
945 $this->errors[] = $newproduct->error;
954 $this->db->rollback();
959 $result = $newproduct->update($newproduct->id, $user);
961 $this->db->rollback();
966 $newcomb->fk_product_child = $newproduct->id;
968 if ($newcomb->update($user) < 0) {
969 $this->error = $newcomb->error;
970 $this->errors = $newcomb->errors;
971 $this->db->rollback();
976 return $newproduct->id;
989 require_once DOL_DOCUMENT_ROOT.
'/variants/class/ProductCombination2ValuePair.class.php';
992 if ($origProductId == $destProduct->id) {
1001 foreach ($combinations as $combination) {
1002 $variations = array();
1004 foreach ($prodcomb2val->fetchByFkCombination($combination->id) as $tmp_pc2v) {
1005 $variations[$tmp_pc2v->fk_prod_attr] = $tmp_pc2v->fk_prod_attr_val;
1008 $variation_price_percentage = $combination->variation_price_percentage;
1009 $variation_price = $combination->variation_price;
1012 $variation_price_percentage = [ ];
1013 $variation_price = [ ];
1015 foreach ($combination->combination_price_levels as $productCombinationLevel) {
1016 $variation_price_percentage[$productCombinationLevel->fk_price_level] = $productCombinationLevel->variation_price_percentage;
1017 $variation_price[$productCombinationLevel->fk_price_level] = $productCombinationLevel->variation_price;
1026 $variation_price_percentage,
1028 $combination->variation_weight