добавлена обработка пустого адреса
This commit is contained in:
parent
027e3571a5
commit
b6828440f7
2 changed files with 7 additions and 2 deletions
|
@ -462,6 +462,9 @@
|
|||
"text": {
|
||||
"type": "string"
|
||||
},
|
||||
"address": {
|
||||
"type": "string"
|
||||
},
|
||||
"shipmentStore": {
|
||||
"type": "string"
|
||||
},
|
||||
|
@ -505,4 +508,4 @@
|
|||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -119,7 +119,9 @@ class RetailCrmOrder
|
|||
$prop['VALUE'][0] = $location['NAME'];
|
||||
}
|
||||
|
||||
$order['delivery']['address'][$search] = $prop['VALUE'][0];
|
||||
if (!empty($prop['VALUE'][0])) {
|
||||
$order['delivery']['address'][$search] = $prop['VALUE'][0];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue