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

fix for country in order

This commit is contained in:
Pavel 2020-06-16 15:39:45 +03:00
parent 678c2d0820
commit 68929a7352

View file

@ -64,6 +64,11 @@ class WC_Retailcrm_Order extends WC_Retailcrm_Abstracts_Data
'countryIso' => $order->get_shipping_country()
);
if ($data['countryIso'] == '--') {
$countries = new WC_Countries();
$data['countryIso'] = $countries->get_base_country();
}
$this->set_data_fields($data);
$this->set_number($order);