1
0
Fork 0
mirror of synced 2025-04-03 22:03:34 +03:00

Correction of price upload

Automatic activation of price type
This commit is contained in:
Ivan Chaplygin 2024-09-10 15:33:18 +03:00
parent a082e4307a
commit a26d3c5756

View file

@ -109,8 +109,10 @@ if (!class_exists('WC_Retailcrm_Upload_Discount_Price')):
'externalId' => $product->get_id(),
'site' => $this->site,
'prices' => [
'code' => self::DISCOUNT_TYPE_PRICE,
'price' => wc_get_price_including_tax($product)
[
'code' => self::DISCOUNT_TYPE_PRICE,
'price' => wc_get_price_including_tax($product)
]
]
];
}
@ -195,6 +197,14 @@ if (!class_exists('WC_Retailcrm_Upload_Discount_Price')):
if (!$response instanceof WC_Retailcrm_Response || !$response['success']) {
return 'Error creating price type';
}
} elseif ($discountPriceType['active'] === false) {
$discountPriceType['active'] = true;
$response = $this->apiClient->editPriceType($discountPriceType);
if (!$response instanceof WC_Retailcrm_Response || !$response['success']) {
return 'Error activate price type';
}
}
return '';