179 if (!empty($this->combination_price_levels) && $useCache) {
180 if ((!empty($fk_price_level) && isset($this->combination_price_levels[$fk_price_level])) || empty($fk_price_level)) {
185 if (!is_array($this->combination_price_levels)
186 || empty($fk_price_level)
188 $this->combination_price_levels = array();
192 $combination_price_levels = $staticProductCombinationLevel->fetchAll($this->
id, $fk_price_level);
194 if (!is_array($combination_price_levels)) {
198 if (empty($combination_price_levels)) {
202 if ($fk_price_level > 0) {
205 for ($i = 1; $i <= $conf->global->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();
522 $child =
new Product($this->db);
523 $child->fetch($this->fk_product_child);
525 $child->price_autogen = $parent->price_autogen;
526 $child->weight = $parent->weight;
528 if (is_object($parent->oldcopy) && !$parent->oldcopy->isEmpty() && ($parent->status != $parent->oldcopy->status)) {
529 $child->status = $parent->status;
531 if (is_object($parent->oldcopy) && !$parent->oldcopy->isEmpty() && ($parent->status_buy != $parent->oldcopy->status_buy)) {
532 $child->status_buy = $parent->status_buy;
535 if ($this->variation_weight) {
536 $child->weight = ($child->weight ? $child->weight : 0) + $this->variation_weight;
538 $child->weight_units = $parent->weight_units;
541 if ($child->label == $parent->label) {
544 $child->label = $parent->label.$varlabel;
548 if ($child->update($child->id, $user) > 0) {
549 $new_vat = $parent->tva_tx;
550 $new_npr = $parent->tva_npr;
555 for ($i = 1; $i <= $maxi; $i++) {
556 if ($parent->multiprices[$i] !=
'' || isset($this->combination_price_levels[$i]->variation_price)) {
557 $new_type = empty($parent->multiprices_base_type[$i]) ?
'HT' : $parent->multiprices_base_type[$i];
558 $new_min_price = $parent->multiprices_min[$i];
559 $variation_price = (float) (!isset($this->combination_price_levels[$i]->variation_price) ? $this->variation_price : $this->combination_price_levels[$i]->variation_price);
560 $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);
562 if ($parent->prices_by_qty_list[$i]) {
568 if ($new_type ==
'TTC') {
569 $new_price = $parent->multiprices_ttc[$i];
571 $new_price = $parent->multiprices[$i];
574 if ($variation_price_percentage) {
575 if ($new_price != 0) {
576 $new_price *= 1 + ($variation_price / 100);
579 $new_price += $variation_price;
582 $ret = $child->updatePrice($new_price, $new_type, $user, $new_vat, $new_min_price, $i, $new_npr, $new_psq, 0, array(), $parent->default_vat_code);
585 $this->db->rollback();
586 $this->error = $child->error;
587 $this->errors = $child->errors;
593 $new_type = $parent->price_base_type;
594 $new_min_price = $parent->price_min;
595 $new_psq = $parent->price_by_qty;
597 if ($new_type ==
'TTC') {
598 $new_price = $parent->price_ttc;
600 $new_price = $parent->price;
603 if ($this->variation_price_percentage) {
604 if ($new_price != 0) {
605 $new_price *= 1 + ($this->variation_price / 100);
608 $new_price += $this->variation_price;
611 $ret = $child->updatePrice($new_price, $new_type, $user, $new_vat, $new_min_price, 1, $new_npr, $new_psq);
614 $this->db->rollback();
615 $this->error = $child->error;
616 $this->errors = $child->errors;
626 $this->db->rollback();
627 $this->error = $child->error;
628 $this->errors = $child->errors;
757 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 =
'')
761 require_once DOL_DOCUMENT_ROOT.
'/variants/class/ProductAttribute.class.php';
762 require_once DOL_DOCUMENT_ROOT.
'/variants/class/ProductAttributeValue.class.php';
766 $price_impact = array(1 => 0);
768 $forced_refvar = trim((
string) $forced_refvar);
770 if (!empty($forced_refvar) && $forced_refvar != $product->ref) {
771 $existingProduct =
new Product($this->db);
772 $result = $existingProduct->fetch(0, $forced_refvar);
774 $newproduct = $existingProduct;
776 $existingProduct =
false;
777 $newproduct = clone $product;
778 $newproduct->ref = $forced_refvar;
781 $forced_refvar =
false;
782 $existingProduct =
false;
783 $newproduct = clone $product;
787 $weight_impact = (float) $forced_weightvar;
790 if (!is_array($forced_pricevar)) {
791 $price_impact[1] = (float) $forced_pricevar;
793 $price_impact = $forced_pricevar;
796 if (!array($price_var_percent)) {
797 $price_var_percent[1] = (float) $price_var_percent;
801 $existingCombination = $newcomb->fetchByProductCombination2ValuePairs($product->id, $combinations);
803 if ($existingCombination) {
804 $newcomb = $existingCombination;
806 $newcomb->fk_product_parent = $product->id;
809 $result = $newcomb->create($user);
811 $this->error = $newcomb->error;
812 $this->errors = $newcomb->errors;
813 $this->db->rollback();
822 foreach ($combinations as $currcombattr => $currcombval) {
824 $prodattr->fetch($currcombattr);
825 $prodattrval->fetch($currcombval);
828 if (!$existingCombination) {
830 $tmp->fk_prod_attr = $currcombattr;
831 $tmp->fk_prod_attr_val = $currcombval;
832 $tmp->fk_prod_combination = $newcomb->id;
834 if ($tmp->create($user) < 0) {
835 $this->error = $tmp->error;
836 $this->errors = $tmp->errors;
837 $this->db->rollback();
841 if ($forced_weightvar ===
false) {
842 $weight_impact += (float)
price2num($variations[$currcombattr][$currcombval][
'weight']);
844 if ($forced_pricevar ===
false) {
845 $price_impact[1] += (float)
price2num($variations[$currcombattr][$currcombval][
'price']);
848 if ($conf->global->PRODUIT_MULTIPRICES) {
849 for ($i = 2; $i <= $conf->global->PRODUIT_MULTIPRICES_LIMIT; $i++) {
850 $price_impact[$i] += (float)
price2num($variations[$currcombattr][$currcombval][
'price']);
855 if ($forced_refvar ===
false) {
856 if (isset($conf->global->PRODUIT_ATTRIBUTES_SEPARATOR)) {
857 $newproduct->ref .=
getDolGlobalString(
'PRODUIT_ATTRIBUTES_SEPARATOR') . $prodattrval->ref;
859 $newproduct->ref .=
'_'.$prodattrval->ref;
864 if ($newproduct->description) {
865 $newproduct->description .=
'<br>';
867 $newproduct->description .=
'<strong>'.$prodattr->label.
':</strong> '.$prodattrval->value;
870 $newcomb->variation_price_percentage = (bool) $price_var_percent[1];
871 $newcomb->variation_price = $price_impact[1];
872 $newcomb->variation_weight = $weight_impact;
873 $newcomb->variation_ref_ext = $this->db->escape($ref_ext);
878 for ($i = 1; $i <= $maxi; $i++) {
880 $productCombinationLevel->fk_product_attribute_combination = $newcomb->id;
881 $productCombinationLevel->fk_price_level = $i;
882 $productCombinationLevel->variation_price = $price_impact[$i];
884 if (is_array($price_var_percent)) {
885 $productCombinationLevel->variation_price_percentage = (bool) $price_var_percent[$i] ;
887 $productCombinationLevel->variation_price_percentage = $price_var_percent;
890 $newcomb->combination_price_levels[$i] = $productCombinationLevel;
895 $newproduct->weight += $weight_impact;
899 if ($existingProduct ===
false) {
901 $newproduct->price = 0;
902 $newproduct->price_ttc = 0;
903 $newproduct->price_min = 0;
904 $newproduct->price_min_ttc = 0;
907 $newproduct->barcode = -1;
908 $result = $newproduct->create($user);
912 if ($newproduct->error !=
'ErrorProductAlreadyExists') {
913 $this->error = $newproduct->error;
914 $this->errors = $newproduct->errors;
915 $this->db->rollback();
924 if ($newcomb->fk_product_child) {
925 $res = $newproduct->fetch($existingCombination->fk_product_child);
927 $orig_prod_ref = $newproduct->ref;
931 $newproduct->ref = $orig_prod_ref.$i;
932 $res = $newproduct->create($user);
934 if ($newproduct->error !=
'ErrorProductAlreadyExists') {
935 $this->errors[] = $newproduct->error;
944 $this->db->rollback();
949 $result = $newproduct->update($newproduct->id, $user);
951 $this->db->rollback();
956 $newcomb->fk_product_child = $newproduct->id;
958 if ($newcomb->update($user) < 0) {
959 $this->error = $newcomb->error;
960 $this->errors = $newcomb->errors;
961 $this->db->rollback();
966 return $newproduct->id;