1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00
Added check of cancel and refund statuses
This commit is contained in:
Ivan Chaplygin 2024-06-06 15:44:21 +03:00
parent c0e805d514
commit 758ff80248

View file

@ -496,7 +496,13 @@ if (!class_exists('WC_Retailcrm_Orders')) :
if ($result !== []) {
$crmItems = $result['items'];
$this->cancelLoyalty = $this->order_item->isCancelLoyalty($wcItems, $crmItems);
if ($result['discountType'] !== null && in_array($order->get_status(), ['cancelled', 'refunded'])) {
$this->cancelLoyalty = true;
$this->order_item->cancelLoyalty = true;
} else {
$this->cancelLoyalty = $this->order_item->isCancelLoyalty($wcItems, $crmItems);
}
$this->loyaltyDiscountType = $result['discountType'];
}
}