This commit is contained in:
weiz 2024-06-06 16:06:50 +08:00
parent 92ce89e2f9
commit be95eedcb4

View File

@ -66,7 +66,6 @@
return MarketingContract::where($this->searchWhere)->where([
['review_status','=', 1],
['contract_type','=',0],
['business_nature','=',4]
])
->where('status', $status)
->limit($this->limitOffset, $this->limitLength)
@ -132,7 +131,6 @@
return MarketingContract::where($this->searchWhere)->where('status', $status)->where([
['review_status','=', 1],
['contract_type','=',0],
['business_nature','=',4]
])->count();
}