добавлена обработка пустого адреса
This commit is contained in:
parent
027e3571a5
commit
b6828440f7
@ -462,6 +462,9 @@
|
|||||||
"text": {
|
"text": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"address": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"shipmentStore": {
|
"shipmentStore": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
@ -505,4 +508,4 @@
|
|||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -119,7 +119,9 @@ class RetailCrmOrder
|
|||||||
$prop['VALUE'][0] = $location['NAME'];
|
$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…
x
Reference in New Issue
Block a user