wugg 1 year ago
parent
commit
7510300313
1 changed files with 3 additions and 2 deletions
  1. 3 2
      app/command/Report.php

+ 3 - 2
app/command/Report.php

@@ -931,7 +931,8 @@ class Report extends Command
 
 	//产品部门销售业绩
 	private function Q($param=[]){
-		$where = [["is_del","=",0],["status","in",[0,1,2]]];
+
+		$where = [["is_del","=",0],["status","in",[0,1,2]],["apply_id","in",array_merge(getUidByDepartId(52),getUidByDepartId(53))]];
 		if (($param['start'] != '') && ($param['end'] != '')) $where[] = ['addtime', 'between', [date("Y-m-d 00:00:00",strtotime($param['start'])),date("Y-m-d 23:59:59",
 		strtotime($param['end']))]];
 		$Db= Db::connect("mysql_wsm");
@@ -1231,7 +1232,7 @@ class Report extends Command
 
 	//退货明细
 	private function V($param=[]){
-		$where = [["is_del","=",0]];
+		$where = [["a.is_del","=",0],["a.apply_id","in",array_merge(getUidByDepartId(52),getUidByDepartId(53))]];
 		if (($param['start'] != '') && ($param['end'] != '')) $where[] = ['a.addtime', 'between', [date("Y-m-d 00:00:00",strtotime($param['start'])),date("Y-m-d 23:59:59",
 		strtotime($param['end']))]];
 		$Db= Db::connect("mysql_wsm");