Browse Source

Merge branch 'sh' into dev

shish 2 weeks ago
parent
commit
072b5e007d
1 changed files with 4 additions and 0 deletions
  1. 4 0
      app-hd/controllers/GhsController.php

+ 4 - 0
app-hd/controllers/GhsController.php

@@ -273,6 +273,7 @@ class GhsController extends BaseController
         $ghsInfo['kiloFee'] = $ghsShop->kiloFee ?? 0;
         $ghsInfo['miniKilo'] = $ghsShop->miniKilo ?? 0;
 
+        //这个多处要补充的地方 add_pfLevel_many_place
         $ghsInfo['pfLevel'] = $ghsShop->pfLevel ?? 0;
         $ghsInfo['afterSale'] = $ghsShop->afterSale ?? 1;
         //联系电话
@@ -382,6 +383,9 @@ class GhsController extends BaseController
 
             $ghs['transCost'] = dict::getDict('transCost', null, null, $ghsShop->mainId);
 
+            //这个多处要补充的地方 add_pfLevel_many_place
+            $ghs['pfLevel'] = $ghsShop->pfLevel ?? 0;
+
             //是否使用新的配送方式,关键词 sh_method_area
             $newShMethod = dict::getNewMethodShop();
             $ghs['useNewShMethod'] = in_array($ghsShopId, $newShMethod) ? 1 : 0;