1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00
Deleting comments.
Code editing
This commit is contained in:
Ivan Chaplygin 2024-05-29 15:22:19 +03:00
parent d2ab6013df
commit 0a128f6d6c
2 changed files with 4 additions and 15 deletions

View file

@ -563,20 +563,7 @@ if (!class_exists('WC_Retailcrm_Base')) {
return;
}
/* as_schedule_single_action(
time() + 2, // when to run? 5 seconds later
'action_update_order', // the hook name
array( $order_id ), // arguments to pass to the hook and the function
'updateOrder', // group name, could be any string
true // should be unique? yes
);*/
$this->orders->updateOrder($order_id);
/*if (!wp_next_scheduled('action_update_order', [$order_id])) {
wp_schedule_single_event( time() + 2, 'action_update_order', [$order_id] );
}*/
//$this->orders->updateOrder($order_id);
}
/**

View file

@ -317,10 +317,12 @@ if (!class_exists('WC_Retailcrm_Orders')) :
$this->order_item->cancelLoyalty = false;
$needRecalculate = true;
if ($this->loyaltyDiscountType === 'loyalty_level') {
$this->order['privilegeType'] = 'none';
}
if ($this->loyaltyDiscountType === 'bonus_charge') {
$this->retailcrm->cancelBonusOrder(['externalId' => $this->order['externalId']]);
} else {
$this->order['privilegeType'] = 'none';
}
}