|
@@ -44,11 +44,42 @@ class Order extends Base
|
|
|
$order_up = date("Y-m-d H:i:s");
|
|
|
}
|
|
|
$where['order_time'] = ["between",[$order_low,$order_up]];
|
|
|
- $count= Db::name("order_info")->where($where)->count();
|
|
|
+ $count= Db::name("order")->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,username,nickname,order_num,
|
|
|
- post_code,post_name,status,contector,contector_mobile,provice_name,city_name,area_name,addr,delivery_time,order_time")
|
|
|
+ $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`
|
|
|
+ ")
|
|
|
->order("order_time desc")
|
|
|
->select();
|
|
|
return app_show(0,"获取成功",["list"=>$list,"count"=>$count]);
|