From 07735ed6d95151e10f16cfe3e1f1d1fff8490788 Mon Sep 17 00:00:00 2001 From: max-baranikov Date: Thu, 2 Dec 2021 18:58:48 +0300 Subject: [PATCH] Get full delivery info on order create --- src/include/class-wc-retailcrm-history.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/include/class-wc-retailcrm-history.php b/src/include/class-wc-retailcrm-history.php index 3f48bec..72ee2e6 100644 --- a/src/include/class-wc-retailcrm-history.php +++ b/src/include/class-wc-retailcrm-history.php @@ -604,6 +604,10 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) : if (isset($crmOrder['company'])) { $order['company'] = $crmOrder['company']; } + + if (isset($crmOrder['delivery'])) { + $order['delivery'] = $crmOrder['delivery']; + } } $customerId = isset($order['customer']['externalId']) ? $order['customer']['externalId'] : null;