|
@@ -20,15 +20,46 @@ class Order extends Base
|
|
|
$page = isset($this->post['page'])&&$this->post['page']!="" ? intval($this->post['page']):1;
|
|
|
$size = isset($this->post['size'])&&$this->post['size']!="" ? intval($this->post['size']):10;
|
|
|
$status = isset($this->post['status'])&&$this->post['status']!="" ? intval($this->post['status']):0;
|
|
|
- $where=["is_del"=>0,"accountid"=>$this->userinfo['id']];
|
|
|
+ $where=["a.is_del"=>0,"a.accountid"=>$this->userinfo['id']];
|
|
|
if($status!=0 && in_array($status,[1,2])){
|
|
|
- $where['status']=$status;
|
|
|
+ $where['a.status']=$status;
|
|
|
}
|
|
|
- $count =Db::name("order_info")->where($where)->count();
|
|
|
+ $count =Db::name("order a")->where($where)->count();
|
|
|
$total = ceil($count/$size);
|
|
|
$page = $page>$total?$total:$page;
|
|
|
- $list = Db::name("order_info")->where($where)->page($page,$size)->field("id,order_sn,order_num,order_time,delivery_time,post_code,post_name,status,unit,unit_weight")
|
|
|
- ->select();
|
|
|
+ $list = Db::name("order a")->where($where)->page($page,$size)
|
|
|
+ ->join("fc_order_post b","a.`order_sn` = `b`.`order_sn`","left")
|
|
|
+ ->join("fc_addr c","`b`.`addrid` = `c`.`id`","left")
|
|
|
+ ->join("fc_account e","a.`accountid` = `e`.`id`","left")
|
|
|
+ ->join("fc_rela_account f","a.`accountid` = `f`.`accountid`","left")
|
|
|
+ ->join("fc_account_info g","`f`.`account_info` = `g`.`id`","left")
|
|
|
+ ->field("a.id AS id,
|
|
|
+ a.`order_sn` AS `order_sn`,
|
|
|
+ a.`accountid` AS `accountid`,
|
|
|
+ a.`order_num` AS `order_num`,
|
|
|
+ a.`status` AS `status`,
|
|
|
+ a.`is_del` AS `is_del`,
|
|
|
+ a.`delivery_time` AS `delivery_time`,
|
|
|
+ a.`order_time` AS `order_time`,
|
|
|
+ `b`.`addrid` AS `addrid`,
|
|
|
+ `b`.`order_num` AS `border_num`,
|
|
|
+ `b`.`post_code` AS `post_code`,
|
|
|
+ `b`.`post_name` AS `post_name`,
|
|
|
+ `b`.`status` AS `bstatus`,
|
|
|
+ `c`.`addr` AS `addr`,
|
|
|
+ `c`.`provice` AS `provice`,
|
|
|
+ `c`.`city` AS `city`,
|
|
|
+ `c`.`provice_name` AS `provice_name`,
|
|
|
+ `c`.`city_name` AS `city_name`,
|
|
|
+ `c`.`area` AS `area`,
|
|
|
+ `c`.`area_name` AS `area_name`,
|
|
|
+ `c`.`contector` AS `contector`,
|
|
|
+ `c`.`mobile` AS `contector_mobile`,
|
|
|
+ `e`.`username` AS `username`,
|
|
|
+ `g`.`nickname` AS `nickname`,
|
|
|
+ `g`.`mobile` AS `mobile`,
|
|
|
+ a.`unit_weight` AS `unit_weight`,
|
|
|
+ a.`unit` AS `unit`")->select();
|
|
|
return app_show(0,"获取成功",["list"=>$list,"count"=>$count]);
|
|
|
}
|
|
|
|