StoreOrder.php 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. <?php
  2. namespace app\order\controller;
  3. use app\common\model\GoodsOrder;
  4. use app\common\model\OrderLogisticsUrge;
  5. use app\common\model\StoreOrderRefund;
  6. use app\common\model\UserMessage;
  7. use library\Controller;
  8. use library\tools\Data;
  9. use think\Db;
  10. use app\common\model\GoodsOrderItem;
  11. /**
  12. * 商品订单
  13. * Class StoreOrder
  14. * @package app\order\controller
  15. */
  16. class StoreOrder extends Controller
  17. {
  18. protected $table = 'StoreOrder';
  19. /**
  20. * 订单列表
  21. * @auth true
  22. * @menu true
  23. * @throws \think\Exception
  24. * @throws \think\db\exception\DataNotFoundException
  25. * @throws \think\db\exception\ModelNotFoundException
  26. * @throws \think\exception\DbException
  27. * @throws \think\exception\PDOException
  28. */
  29. public function index()
  30. {
  31. $this->title = '订单管理';
  32. $this->order_status = [0=>'待支付',1=>'已支付[待发货]',2=>'已发货[待收货]',3=>'已收货[待评论]',4=>'已完成',9=>'已取消'];
  33. $this->pay_state = ['待支付','已支付'];
  34. $this->all_pay_type = all_pay_type();
  35. $query = $this->_query($this->table);
  36. $where = [];
  37. $where[] = ['o.is_deleted','=',0];
  38. if($this->request->request('tel'))$where[]= ['u.phone','like','%'.$this->request->request('tel').'%'];
  39. if($this->request->request('user_name'))$where[]= ['u.name','like','%'.$this->request->request('user_name').'%'];
  40. if($this->request->request('order_no')) $where[]= ['o.order_no','like','%'.$this->request->request('order_no').'%'];
  41. if($this->request->request('pay_state') > -1) $where[]= ['o.pay_state','=',$this->request->request('pay_state')];
  42. if($this->request->request('order_status') > -1) $where[]= ['o.status','=',$this->request->request('order_status')];
  43. //->join('order_logistics_urge g',' o.id = g.order_id ','RIGHT')
  44. $query->alias('o')
  45. ->field('o.* , u.name ,u.phone as user_phone,u.headimg')
  46. ->join('store_member u',' o.user_id = u.id ','LEFT');
  47. $arr = ['is_new' => 0];
  48. \app\common\model\GoodsOrder::alias('f')->where('is_new',1)->update($arr);
  49. if(!empty($where)) $query->where($where);
  50. $query ->order('o.id desc')->page();
  51. }
  52. /**
  53. * 订单列表处理
  54. * @param array $data
  55. * @throws \think\db\exception\DataNotFoundException
  56. * @throws \think\db\exception\ModelNotFoundException
  57. * @throws \think\exception\DbException
  58. */
  59. protected function _index_page_filter(array &$data)
  60. {
  61. foreach ($data as &$vo) {
  62. $vo['item_list'] = GoodsOrderItem::field('i.num,i.sell_price,g.name,i.goods_spec')
  63. ->alias('i')
  64. ->where(['i.order_id'=>$vo['id']])
  65. ->leftJoin('StoreGoods g','g.id = i.goods_id')
  66. ->select();
  67. $vo['refund_info'] = StoreOrderRefund::where('order_id',$vo['id'])->where('order_type',2)->where('status','in','0,1,2,3,4')->find();
  68. $vo['logistics_urge'] = OrderLogisticsUrge::where('order_id',$vo['id'])->find();
  69. }
  70. }
  71. /**
  72. * 修改快递
  73. * @auth true
  74. * @throws \think\Exception
  75. * @throws \think\db\exception\DataNotFoundException
  76. * @throws \think\db\exception\ModelNotFoundException
  77. * @throws \think\exception\DbException
  78. * @throws \think\exception\PDOException
  79. */
  80. public function express()
  81. {
  82. if ($this->request->isGet()) {
  83. $where = ['is_deleted' => '0', 'status' => '1'];
  84. $this->expressList = Db::name('express_company')->where($where)->order('sort desc,id desc')->select();
  85. }
  86. $this->_form($this->table);
  87. }
  88. /**
  89. * 快递表单处理
  90. * @param array $vo
  91. * @throws \think\db\exception\DataNotFoundException
  92. * @throws \think\db\exception\ModelNotFoundException
  93. * @throws \think\exception\DbException
  94. */
  95. protected function _express_form_filter(&$vo)
  96. {
  97. if ($this->request->isPost()) {
  98. $order = Db::name($this->table)->where(['id' => $vo['id']])->find();
  99. if (empty($order)) $this->error('订单查询异常,请稍候再试!');
  100. $express = Db::name('express_company')->where(['express_code' => $vo['express_company_code']])->find();
  101. if (empty($express)) $this->error('发货快递公司异常,请重新选择快递公司!');
  102. $vo['express_company_title'] = $express['express_title'];
  103. $vo['express_send_at'] = empty($order['express_send_at']) ? date('Y-m-d H:i:s') : $order['express_send_at'];
  104. $vo['express_state'] = '1';
  105. $vo['status'] = '2';
  106. UserMessage::sendUserMessage($order['user_id'],'mall',2,0,0,$order['id'],'您的订单已发货',$order['id']);
  107. }
  108. }
  109. /**
  110. * 订单详情
  111. * @auth true
  112. * @menu true
  113. * @throws \think\Exception
  114. * @throws \think\db\exception\DataNotFoundException
  115. * @throws \think\db\exception\ModelNotFoundException
  116. * @throws \think\exception\DbException
  117. * @throws \think\exception\PDOException
  118. */
  119. public function detail()
  120. {
  121. $this->title = '订单详情';
  122. $this->_form($this->table);
  123. }
  124. /**
  125. * 订单发货
  126. * @auth true
  127. * @menu true
  128. * @throws \think\Exception
  129. * @throws \think\db\exception\DataNotFoundException
  130. * @throws \think\db\exception\ModelNotFoundException
  131. * @throws \think\exception\DbException
  132. * @throws \think\exception\PDOException
  133. */
  134. public function deliver()
  135. {
  136. $this->title = '发货';
  137. $this->express_company = Db::name('express_company')->field('id,express_title')->select();
  138. $this->_form($this->table,'deliver');
  139. }
  140. /**
  141. * 表单数据处理
  142. * @auth true
  143. * @menu true
  144. * @param array $data
  145. */
  146. protected function _form_filter(&$data)
  147. {
  148. if ($this->request->isGet() && $this->request->action() == 'detail'){
  149. $this->order_item = GoodsOrderItem::where(['o.order_id'=>$data['id']])
  150. ->alias('o')
  151. ->field('o.*,g.name,g.cover')
  152. ->leftJoin('StoreGoods g','g.id=o.goods_id')
  153. ->select()->toArray();
  154. $this->data = $data;
  155. }
  156. if ($this->request->isPost() && $this->request->action() == 'deliver') {
  157. $express_company = Db::name('express_company')->field('id,express_title')->find($data['express_company_id']);
  158. $data['express_company_title'] = $express_company['express_title'] ? $express_company['express_title'] : '';
  159. $data['express_send_at'] = date("Y-m-d H:i:s");
  160. $data['express_state'] = 1;
  161. $order_info= GoodsOrder::field('id,user_id')->where('id',$data['id'])->find()->toArray();
  162. //UserMessage::sendUserMessage($order_info['user_id'],'feedback',2,0,0,$data['id'],'订单已发货');
  163. UserMessage::create(['user_id'=>$order_info['user_id'],'type_id'=>2,'relation_id'=>$order_info['id'],'content'=>'订单已发货']);
  164. }
  165. }
  166. /**
  167. * 删除
  168. * @auth true
  169. * @menu true
  170. * @throws \think\Exception
  171. * @throws \think\db\exception\DataNotFoundException
  172. * @throws \think\db\exception\ModelNotFoundException
  173. * @throws \think\exception\DbException
  174. * @throws \think\exception\PDOException
  175. */
  176. public function remove()
  177. {
  178. $this->_save($this->table, ['is_deleted' =>1]);
  179. }
  180. }