Disabling the price unloading task when a module is deleted
Adding a call to the price unloading script
This commit is contained in:
parent
c2f0023cd8
commit
9f86ace5ba
2 changed files with 16 additions and 0 deletions
|
@ -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
|
||||
*
|
||||
|
|
|
@ -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');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue