fix for country in order
This commit is contained in:
parent
678c2d0820
commit
68929a7352
1 changed files with 5 additions and 0 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue