feat: 增加根据条件筛选订单功能
This commit is contained in:
parent
a573f817f5
commit
3745015592
@ -49,18 +49,38 @@ class StoreOrderCartInfoGroupLists extends BaseAdminDataLists implements ListsSe
|
|||||||
*/
|
*/
|
||||||
public function lists(): array
|
public function lists(): array
|
||||||
{
|
{
|
||||||
$order_arr=StoreOrder::whereDay('create_time')->where(['paid'=>1,'refund_status'=>0])->column('id');
|
if($this->request->get('start_time')){
|
||||||
|
$arr[]=['paid','=',1];
|
||||||
|
$arr[]=['refund_status','=',0];
|
||||||
|
if($this->request->get('store_id')){
|
||||||
|
$this->searchWhere[]=['store_id','=',$this->request->get('store_id')];
|
||||||
|
}
|
||||||
|
$order_arr=StoreOrder::where($this->searchWhere)->where($arr)->column('id');
|
||||||
|
}elseif($this->request->get('store_id')){
|
||||||
|
$arr[]=['paid','=',1];
|
||||||
|
$arr[]=['refund_status','=',0];
|
||||||
|
$this->searchWhere[]=['store_id','=',$this->request->get('store_id')];
|
||||||
|
$order_arr=StoreOrder::where($this->searchWhere)->where($arr)->column('id');
|
||||||
|
}else{
|
||||||
|
$order_arr=StoreOrder::whereDay('create_time')->where(['paid'=>1,'refund_status'=>0])->column('id');
|
||||||
|
}
|
||||||
if(!$order_arr){
|
if(!$order_arr){
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
$this->order_arr=$order_arr;
|
$this->order_arr=$order_arr;
|
||||||
$this->searchWhere[]=['oid','in',$order_arr];
|
$this->searchWhere[]=['oid','in',$order_arr];
|
||||||
if($this->request->get('is_all')){
|
if($this->request->get('is_all')){
|
||||||
return StoreOrderCartInfo::where($this->searchWhere)
|
$query= StoreOrderCartInfo::where($this->searchWhere);
|
||||||
->field('store_id,product_id,price,total_price,cart_num')
|
if($this->request->get('store_id')){
|
||||||
->order('store_id desc')
|
$query->field('store_id,product_id,price,SUM(total_price) as total_price,SUM(cart_num) as cart_num')->group('product_id');
|
||||||
|
}else{
|
||||||
|
$query->field('store_id,product_id,price,total_price,cart_num');
|
||||||
|
}
|
||||||
|
|
||||||
|
return $query->order('store_id desc')
|
||||||
->limit($this->limitOffset, $this->limitLength)
|
->limit($this->limitOffset, $this->limitLength)
|
||||||
->select()->each(function ($item) {
|
->select()
|
||||||
|
->each(function ($item) {
|
||||||
$find=StoreProduct::where('id',$item['product_id'])->field('image,unit,cate_id,store_name,store_info')->find();
|
$find=StoreProduct::where('id',$item['product_id'])->field('image,unit,cate_id,store_name,store_info')->find();
|
||||||
$item['system_store']=SystemStore::where('id',$item['store_id'])->value('name');
|
$item['system_store']=SystemStore::where('id',$item['store_id'])->value('name');
|
||||||
if($find){
|
if($find){
|
||||||
|
Loading…
x
Reference in New Issue
Block a user