1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00
Corrects processing of discounts
This commit is contained in:
Ivan Chaplygin 2024-05-22 18:00:16 +03:00
parent 80f266dcd0
commit be47710291
2 changed files with 2 additions and 2 deletions

View file

@ -465,7 +465,7 @@ if (!class_exists('WC_Retailcrm_Orders')) :
if ($crmOrder) {
foreach ($crmOrder['items'] as $item) {
$externalId = $item['externalids'][0]['value'];
$externalId = $item['externalIds'][0]['value'];
$externalId = preg_replace('/^\d+\_/m', '', $externalId);
$crmItems[$externalId] = $item;

View file

@ -125,7 +125,7 @@ class WC_Retailcrm_Order_Item extends WC_Retailcrm_Abstracts_Data
if ($crmItem) {
$loyaltyDiscount = 0;
foreach ($item['discounts'] as $discount) {
foreach ($crmItem['discounts'] as $discount) {
if (in_array($discount['type'], ['bonus_charge', 'loyalty_level'])) {
$loyaltyDiscount += $discount['amount'];
break;