AppOrder.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?php
  2. namespace app\order\controller;
  3. use library\Controller;
  4. use think\Db;
  5. /**
  6. * 会员预约管理
  7. * Class AppOrder
  8. * @package app\order\controller
  9. */
  10. class AppOrder extends Controller
  11. {
  12. protected $table = 'AppOrder';
  13. /**
  14. * 预约列表
  15. * @auth true
  16. * @menu true
  17. * @throws \think\Exception
  18. * @throws \think\db\exception\DataNotFoundException
  19. * @throws \think\db\exception\ModelNotFoundException
  20. * @throws \think\exception\DbException
  21. */
  22. public function index()
  23. {
  24. $this->title = '预约管理';
  25. $query = $this->_query($this->table);
  26. $this->order_status = [0=>'预约中',1=>'已完成',9=>'已取消'];
  27. $where = [];
  28. $where[] = ['o.is_deleted','=',0];
  29. if($this->request->request('phone'))$where[]= ['u.phone','like','%'.$this->request->request('phone').'%'];
  30. if($this->request->request('user_name'))$where[]= ['u.name','like','%'.$this->request->request('user_name').'%'];
  31. if($this->request->request('order_no')) $where[]= ['o.order_no','like','%'.$this->request->request('order_no').'%'];
  32. if($this->request->request('code')) $where[]= ['o.code','like','%'.$this->request->request('code').'%'];
  33. if($this->request->request('order_status',-1) >= 0) $where[]= ['o.status','=',$this->request->request('order_status')];
  34. $query->alias('o')
  35. ->field('o.* , u.name u_name ,u.phone u_phone,u.headimg,g.name goods_name,g.cover goods_cover,m.goods_spec')
  36. ->join('store_member u',' o.user_id = u.id ','LEFT')
  37. ->join('store_goods g',' o.goods_id = g.id ','LEFT')
  38. ->join('store_goods_item m','o.spec_id = m.id ','LEFT');
  39. if(!empty($where)) $query->where($where);
  40. $query ->order('o.id desc')->page();
  41. }
  42. /**
  43. * 订单完成
  44. * @auth true
  45. * @menu true
  46. * @throws \think\Exception
  47. * @throws \think\db\exception\DataNotFoundException
  48. * @throws \think\db\exception\ModelNotFoundException
  49. * @throws \think\exception\DbException
  50. * @throws \think\exception\PDOException
  51. */
  52. public function complete()
  53. {
  54. if($this->request->isPost())
  55. {
  56. $check_status = \app\common\model\WashOrder::where('id',input('post.id'))->value('status');
  57. if($check_status != 0) $this->error('订单状态有误');
  58. }
  59. $this->_save($this->table, ['status' => 1]);
  60. }
  61. /**
  62. * 订单详情
  63. * @auth true
  64. * @menu true
  65. * @throws \think\Exception
  66. * @throws \think\db\exception\DataNotFoundException
  67. * @throws \think\db\exception\ModelNotFoundException
  68. * @throws \think\exception\DbException
  69. * @throws \think\exception\PDOException
  70. */
  71. public function detail()
  72. {
  73. $this->title = '订单详情';
  74. $this->_form($this->table);
  75. }
  76. /**
  77. * 删除
  78. * @auth true
  79. * @menu true
  80. * @param array $data
  81. * @throws \think\db\exception\DataNotFoundException
  82. * @throws \think\db\exception\ModelNotFoundException
  83. * @throws \think\exception\DbException
  84. */
  85. public function remove()
  86. {
  87. $this->_save($this->table, ['is_deleted' => '1']);
  88. }
  89. /**
  90. * 表单数据处理
  91. * @auth true
  92. * @menu true
  93. * @param array $data
  94. */
  95. protected function _form_filter(&$data)
  96. {
  97. }
  98. }