chuweiqiang 11 months ago
parent
commit
433eeb577c
2 changed files with 4 additions and 7 deletions
  1. 1 4
      .idea/workspace.xml
  2. 3 3
      application/api/controller/Supplier.php

+ 1 - 4
.idea/workspace.xml

@@ -4,9 +4,6 @@
     <list default="true" id="1a36929e-c054-4875-a943-593a74e55fa4" name="Default Changelist" comment="">
       <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/application/api/controller/Supplier.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/api/controller/Supplier.php" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/runtime/cache/4c/d9aaff68a897261d9d4e25ac10435f.php" beforeDir="false" afterPath="$PROJECT_DIR$/runtime/cache/4c/d9aaff68a897261d9d4e25ac10435f.php" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/runtime/log/single.log" beforeDir="false" afterPath="$PROJECT_DIR$/runtime/log/single.log" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/runtime/log/single_sql.log" beforeDir="false" afterPath="$PROJECT_DIR$/runtime/log/single_sql.log" afterDir="false" />
     </list>
     <option name="SHOW_DIALOG" value="false" />
     <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -597,7 +594,7 @@
       <workItem from="1713400278236" duration="25153000" />
       <workItem from="1713486783613" duration="18361000" />
       <workItem from="1713916802858" duration="19129000" />
-      <workItem from="1714004926744" duration="12756000" />
+      <workItem from="1714004926744" duration="13105000" />
     </task>
     <servers />
   </component>

+ 3 - 3
application/api/controller/Supplier.php

@@ -965,7 +965,7 @@ class Supplier extends Base
             $v['transmit_num'] = numTransform($v['transmit_num']);
             $v['comment_num'] = SupplierComment::getCommentNum($v['goods_id']);
             $v['is_praise'] = PlatformLike::checkTags($this->user_id,$v['goods_id'],7);
-            $v['is_normal'] = CheckPower::checkModulesPower($v['goods_id'],0,$this->request->controller());
+            $v['is_normal'] = CheckPower::checkModulesPower($v['goods_id'],0,'supplier_goods');
             $v['switch_open'] = PlatformSwitch::checkSwitch($this->user_id,$v['goods_id'],11);
             $v['collect_num'] = UserCollect::getCollectNum(9,$v['goods_id']);
             $v['praise_num'] = PlatformLike::getPraiseNum($v['goods_id'],7);
@@ -1085,7 +1085,7 @@ class Supplier extends Base
         array_walk($list,function (&$v){
             $v['read_num'] = numTransform($v['read_num']);
             $v['cover_arr'] = $v['cover']? explode('|',trim($v['cover'],'|')):null;
-            $v['is_normal'] = CheckPower::checkModulesPower($v['goods_id'],0,$this->request->controller());
+            $v['is_normal'] = CheckPower::checkModulesPower($v['goods_id'],0,'supplier_goods');
         });
         $total_num =  PlatformLike::where($sel_where)->alias('p')
             ->leftJoin('SupplierGoods g', 'g.id = p.like_id')
@@ -1139,7 +1139,7 @@ class Supplier extends Base
             $v['self_name'] = $this->user_info['name'];
             $v['read_num'] = numTransform($v['read_num']);
             $v['cover_arr'] = $v['cover']? explode('|',trim($v['cover'],'|')):null;
-            $v['is_normal'] = CheckPower::checkModulesPower($v['goods_id'],0,$this->request->controller());
+            $v['is_normal'] = CheckPower::checkModulesPower($v['goods_id'],0,'supplier_goods');
         });
         $total_num = PlatformLike::where($sel_where) ->alias('p')->leftJoin('SupplierComment c', 'c.id = p.like_id')
             ->leftJoin('SupplierGoods g', 'g.id = c.goods_id')