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

Fixed output of trade positions in the admin area

This commit is contained in:
Ivan Chaplygin 2024-06-27 17:04:39 +03:00
parent 0b5d0c99ba
commit b635350606

View file

@ -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)) {