Order.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <?php
  2. namespace app\Admin\controller;
  3. use think\Db;
  4. class Order extends Base
  5. {
  6. public function __construct()
  7. {
  8. parent::__construct();
  9. }
  10. public function list(){
  11. $page = isset($this->post['page'])&&$this->post['page']!="" ? intval($this->post['page']) : 1;
  12. $size = isset($this->post['size'])&&$this->post['size']!="" ? intval($this->post['size']) :10;
  13. $status = isset($this->post['status'])&&$this->post['status']!=="" ? intval($this->post['status']) :"";
  14. $where=[];
  15. if($status!==""){
  16. $where['status'] = $status;
  17. }
  18. $username = isset($this->post['username'])&&$this->post['username']!=="" ? trim($this->post['username']) :"";
  19. if($username!=""){
  20. $where['username'] = ["like","%{$username}%"];
  21. }
  22. $nickname = isset($this->post['nickname'])&&$this->post['nickname']!=="" ? trim($this->post['nickname']) :"";
  23. if($nickname!=""){
  24. $where['nickname'] = ["like","%{$nickname}%"];
  25. }
  26. $mobile = isset($this->post['mobile'])&&$this->post['mobile']!=="" ? trim($this->post['mobile']) :"";
  27. if($mobile!=""){
  28. $where['mobile'] = ["like","%{$mobile}%"];
  29. }
  30. $order_low = isset($this->post['order_low'])&&$this->post['order_low']!=="" ? $this->post['order_low'] :"";
  31. if($order_low!="") {
  32. $order_low = date("Y-m-d H:i:s", strtotime($order_low . " 00:00:00"));
  33. }else{
  34. $order_low = "1970-01-01 00:00:00";
  35. }
  36. $order_up = isset($this->post['order_up'])&&$this->post['order_up']!=="" ? $this->post['order_up'] :"";
  37. if($order_up!=""){
  38. $order_up = date("Y-m-d H:i:s",strtotime($order_up." 23:59:59"));
  39. }else{
  40. $order_up = date("Y-m-d H:i:s");
  41. }
  42. $where['order_time'] = ["between",[$order_low,$order_up]];
  43. $count= Db::name("order")->where($where)->count();
  44. $total = ceil($count/$size);
  45. $page = $page>=$total? $total:$page;
  46. $list = Db::name("order a")->where($where)->page($page,$size)->join("fc_order_post b","a.order_sn=b.order_sn","left")
  47. ->join("fc_addr c","b.addrid = c.id","left")
  48. ->join("fc_account e","a.accountid = e.id","left")
  49. ->join("fc_rela_account f","a.accountid = f.accountid","left")
  50. ->join("fc_account_info g","f.account_info =g.id","left")
  51. ->field("`a`.`id` AS `id`,
  52. `a`.`order_sn` AS `order_sn`,
  53. `a`.`accountid` AS `accountid`,
  54. `a`.`order_num` AS `order_num`,
  55. `a`.`status` AS `status`,
  56. `a`.`is_del` AS `is_del`,
  57. `a`.`delivery_time` AS `delivery_time`,
  58. `a`.`order_time` AS `order_time`,
  59. `b`.`addrid` AS `addrid`,
  60. `b`.`order_num` AS `border_num`,
  61. `b`.`post_code` AS `post_code`,
  62. `b`.`post_name` AS `post_name`,
  63. `b`.`status` AS `bstatus`,
  64. `c`.`addr` AS `addr`,
  65. `c`.`provice` AS `provice`,
  66. `c`.`city` AS `city`,
  67. `c`.`provice_name` AS `provice_name`,
  68. `c`.`city_name` AS `city_name`,
  69. `c`.`area` AS `area`,
  70. `c`.`area_name` AS `area_name`,
  71. `c`.`contector` AS `contector`,
  72. `c`.`mobile` AS `contector_mobile`,
  73. `e`.`username` AS `username`,
  74. `g`.`nickname` AS `nickname`,
  75. `g`.`mobile` AS `mobile`,
  76. `a`.`unit_weight` AS `unit_weight`,
  77. `a`.`unit` AS `unit`
  78. ")
  79. ->order("order_time desc")
  80. ->select();
  81. return app_show(0,"获取成功",["list"=>$list,"count"=>$count]);
  82. }
  83. /**
  84. * @param ordersn
  85. * @param post_code
  86. * @param post_company
  87. */
  88. public function OrderDelivery(){
  89. $ordersn = isset($this->post['ordersn'])&&$this->post['ordersn']!="" ? trim($this->post['ordersn']):"";
  90. if($ordersn==""){
  91. return error_show(1004,"参数ordersn 不能为空");
  92. }
  93. $orderinfo = Db::name("order")->where(["order_sn"=>$ordersn])->find();
  94. if(empty($orderinfo)){
  95. return error_show(1005,"订单不存在");
  96. }
  97. if($orderinfo['is_del']==1){
  98. return error_show(1005,"订单已删除");
  99. }
  100. if($orderinfo['status']!=1){
  101. return error_show(1005,"订单状态有误");
  102. }
  103. $orderpost = Db::name("order_post")->where(["order_sn"=>$ordersn,"is_del"=>0])->find();
  104. if(empty($orderpost)){
  105. return error_show(1005,"订单地址信息不存在");
  106. }
  107. $post_code = isset($this->post['post_code'])&&$this->post['post_code']!="" ? trim($this->post['post_code']):"";
  108. if($post_code==""){
  109. return error_show(1004,"参数post_code 不能为空");
  110. }
  111. $post_company = isset($this->post['post_company'])&&$this->post['post_company']!="" ? trim($this->post['post_company']):"";
  112. if($post_company==""){
  113. return error_show(1004,"参数post_company 不能为空");
  114. }
  115. $orderpost['post_code']=$post_code;
  116. $orderpost['post_name']=$post_company;
  117. $orderpost['updatetime']=date("Y-m-d H:i:s");
  118. Db::startTrans();
  119. try {
  120. $psot=Db::name("order_post")->update($orderpost);
  121. if($psot){
  122. $orderinfo['status']=2;
  123. $orderinfo['delivery_time']=date("Y-m-d H:i:s");
  124. $order= Db::name("order")->update($orderinfo);
  125. if($order){
  126. write_log("订单{$ordersn}发货",$this->userinfo,"order","edit","0");
  127. Db::commit();
  128. return app_show(0,"订单物流信息新建成功");
  129. }
  130. }
  131. Db::rollback();
  132. return error_show(1004,"物流信息新建失败");
  133. }catch (\Exception $e){
  134. Db::rollback();
  135. return error_show(1004,$e->getMessage());
  136. }
  137. }
  138. }