Fixed output of trade positions in the admin area
This commit is contained in:
parent
0b5d0c99ba
commit
b635350606
1 changed files with 6 additions and 0 deletions
|
@ -145,6 +145,7 @@ if (!class_exists('WC_Retailcrm_Base')) {
|
|||
) {
|
||||
add_action('woocommerce_update_order', [$this, 'take_update_order'], 11, 1);
|
||||
add_action('shutdown', [$this, 'update_order'], -1);
|
||||
add_action('woocommerce_saved_order_items', [$this, 'update_order_items'], 10, 1);
|
||||
}
|
||||
|
||||
if ($this->get_option('abandoned_carts_enabled') === static::YES) {
|
||||
|
@ -585,6 +586,11 @@ if (!class_exists('WC_Retailcrm_Base')) {
|
|||
}
|
||||
}
|
||||
|
||||
public function update_order_items($orderId)
|
||||
{
|
||||
$this->orders->updateOrder($orderId);
|
||||
}
|
||||
|
||||
public function trash_order_action($id)
|
||||
{
|
||||
if ('shop_order' == get_post_type($id)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue