|
@@ -163,6 +163,12 @@ class ZopOrderService extends ZopBaseService
|
|
$amount = $order->amount ?? 0;
|
|
$amount = $order->amount ?? 0;
|
|
$orderTotalFee = bcmul($amount, 1000, 0);
|
|
$orderTotalFee = bcmul($amount, 1000, 0);
|
|
$pageUrl = $produce->link ?? '';
|
|
$pageUrl = $produce->link ?? '';
|
|
|
|
+ // 判断产品是否使用用户收货地址区号
|
|
|
|
+ $homeLocationType = $produce->home_location_type ?? 'address';
|
|
|
|
+ if ($homeLocationType == 'assign') {
|
|
|
|
+ $postProvinceCode = $produce->home_location_province ?? 0;
|
|
|
|
+ $postCityCode = $produce->home_location_city ?? 0;
|
|
|
|
+ }
|
|
|
|
|
|
$no = $order['no'];
|
|
$no = $order['no'];
|
|
if (empty($no)) {
|
|
if (empty($no)) {
|