zealerChina 1 year ago
parent
commit
e0063b351f
1 changed files with 6 additions and 0 deletions
  1. 6 0
      application/common/service/ZopOrderService.php

+ 6 - 0
application/common/service/ZopOrderService.php

@@ -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)) {