1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00

Add transfer of the client's comment to the WC order

This commit is contained in:
dima-uryvskiy 2021-08-24 18:03:07 +03:00
parent 22eaceb6f5
commit bca55d8a64

View file

@ -343,14 +343,14 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
$wcOrder->update_status($options[$order['status']]);
}
if (isset($order['customerComment'])) {
$wcOrder->set_customer_note($order['customerComment']);
}
if (isset($order['managerComment']) && !empty($order['managerComment'])) {
$wcOrder->add_order_note($order['managerComment'], 0, false);
}
if (isset($order['customerComment']) && !empty($order['customerComment'])) {
$wcOrder->set_customer_note($order['customerComment']);
}
if (isset($order['firstName'])) {
$wcOrder->set_shipping_first_name($order['firstName']);
}
@ -663,6 +663,10 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
$wcOrder->add_order_note($order['managerComment'], 0, false);
}
if (isset($order['customerComment']) && !empty($order['customerComment'])) {
$wcOrder->set_customer_note($order['customerComment']);
}
// TODO Check if that works; also don't forget to set this company field while creating order from CMS!
if ($this->retailcrm->getCorporateEnabled()
&& self::isOrderCorporate($order)