1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00

Added bonus cancellation when deleting an order

This commit is contained in:
Ivan Chaplygin 2024-06-27 12:34:39 +03:00
parent 9d681562e2
commit 0b5d0c99ba
2 changed files with 18 additions and 4 deletions

View file

@ -124,6 +124,7 @@ if (!class_exists('WC_Retailcrm_Base')) {
add_action('woocommerce_removed_coupon', [$this, 'remove_coupon'], 11, 1);
add_action('woocommerce_applied_coupon', [$this, 'apply_coupon'], 11, 1);
add_action('woocommerce_review_order_before_payment', [$this, 'reviewCreditBonus'], 11, 1);
add_action('wp_trash_post', [$this, 'trash_order_action'], 10, 1);
}
// Subscribed hooks
@ -584,6 +585,13 @@ if (!class_exists('WC_Retailcrm_Base')) {
}
}
public function trash_order_action($id)
{
if ('shop_order' == get_post_type($id)) {
$this->orders->updateOrder($id, true);
}
}
/**
* Init google analytics code
*/

View file

@ -309,7 +309,7 @@ if (!class_exists('WC_Retailcrm_Orders')) :
* @return WC_Order $order | null
* @throws \Exception
*/
public function updateOrder($orderId)
public function updateOrder($orderId, $statusTrash = false)
{
if (!$this->retailcrm instanceof WC_Retailcrm_Proxy) {
return null;
@ -319,7 +319,7 @@ if (!class_exists('WC_Retailcrm_Orders')) :
$wcOrder = wc_get_order($orderId);
$needRecalculate = false;
$this->processOrder($wcOrder, true);
$this->processOrder($wcOrder, true, $statusTrash);
if ($this->cancelLoyalty) {
$this->cancelLoyalty = false;
@ -422,7 +422,7 @@ if (!class_exists('WC_Retailcrm_Orders')) :
* @return void
* @throws \Exception
*/
protected function processOrder($order, $update = false)
protected function processOrder($order, $update = false, $statusTrash = false)
{
if (!$order instanceof WC_Order) {
return;
@ -496,7 +496,13 @@ if (!class_exists('WC_Retailcrm_Orders')) :
if ($result !== []) {
$crmItems = $result['items'];
if ($result['discountType'] !== null && in_array($order->get_status(), ['cancelled', 'refunded'])) {
if (
$statusTrash
|| (
$result['discountType'] !== null
&& in_array($order->get_status(), ['cancelled', 'refunded'])
)
) {
$this->cancelLoyalty = true;
$this->order_item->cancelLoyalty = true;
} else {