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

Get full delivery info on order create

This commit is contained in:
Max Baranikov 2021-11-18 11:45:17 +03:00
parent 6d95580155
commit 3e7227f600

View file

@ -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;