瀏覽代碼

流量卡管理修改时发货模板

Cherry 2 年之前
父節點
當前提交
50a1de6b49
共有 1 個文件被更改,包括 6 次插入4 次删除
  1. 6 4
      application/admin/controller/MobileFlow.php

+ 6 - 4
application/admin/controller/MobileFlow.php

@@ -254,10 +254,12 @@ class MobileFlow extends Backend
             }
 
             $proxy_id = $this->auth->id;
-            if($this->super){
-                $proxy_id = 0;
-            }
-            $templates = MobileFlowAreaTemplate::where('status', 0)->where('proxy_id', $proxy_id)->order('create_time asc')->select();
+
+            $templates = MobileFlowAreaTemplate::where('status', 0)->where(function ($query) use($proxy_id){
+                if(!$this->super){
+                    return $query->where('proxy_id', $proxy_id);
+                }
+            })->order('create_time asc')->select();
 
             $this->assign('templates', $templates);
             $this->assign('row',$mobile);