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

Disabling the price unloading task when a module is deleted

Adding a call to the price unloading script
This commit is contained in:
Ivan Chaplygin 2024-09-09 11:51:42 +03:00
parent c2f0023cd8
commit 9f86ace5ba
2 changed files with 16 additions and 0 deletions

View file

@ -380,6 +380,18 @@ if (!class_exists('WC_Retailcrm_Base')) {
}
}
public function upload_loyalty_price()
{
if (!$this->apiClient instanceof WC_Retailcrm_Proxy) {
return null;
}
$infoApiKey = $this->apiClient->credentials();
$discountPriceUpload = new WC_Retailcrm_Upload_Discount_Price($this->apiClient);
$discountPriceUpload->upload();
}
/**
* Get history
*

View file

@ -120,6 +120,10 @@ class WC_Retailcrm_Plugin
if (wp_next_scheduled('retailcrm_inventories')) {
wp_clear_scheduled_hook('retailcrm_inventories');
}
if (wp_next_scheduled('retailcrm_loyalty_upload_price')) {
wp_clear_scheduled_hook('retailcrm_loyalty_upload_price');
}
}
/**