截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IntegralOrder.php 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\logic\IntegralOrderLogic;
  4. use app\api\validate\IntegralOrderValidate;
  5. use app\api\validate\IntegralPlaceOrderValidate;
  6. use app\common\basics\Api;
  7. use app\common\server\JsonServer;
  8. /**
  9. * 积分商城订单
  10. * Class IntegralOrder
  11. * @package app\api\controller
  12. */
  13. class IntegralOrder extends Api
  14. {
  15. /**
  16. * @notes 结算订单
  17. * @return \think\response\Json
  18. * @throws \think\db\exception\DataNotFoundException
  19. * @throws \think\db\exception\ModelNotFoundException
  20. * @author 段誉
  21. * @date 2022/3/2 9:51
  22. */
  23. public function settlement()
  24. {
  25. $params = $this->request->get();
  26. $params['user_id'] = $this->user_id;
  27. (new IntegralPlaceOrderValidate())->goCheck('settlement', $params);
  28. $result = IntegralOrderLogic::settlement($params);
  29. return JsonServer::success('获取成功', $result);
  30. }
  31. /**
  32. * @notes 提交订单
  33. * @return \think\response\Json
  34. * @author 段誉
  35. * @date 2022/3/2 9:40
  36. */
  37. public function submitOrder()
  38. {
  39. $post = $this->request->post();
  40. $post['user_id'] = $this->user_id;
  41. $post['client'] = $this->client;
  42. (new IntegralPlaceOrderValidate())->goCheck('submit', $post);
  43. $result = IntegralOrderLogic::submitOrder($post);
  44. if(false === $result) {
  45. return JsonServer::error(IntegralOrderLogic::getError());
  46. }
  47. return JsonServer::success('提交成功', $result);
  48. }
  49. /**
  50. * @notes 订单列表
  51. * @return \think\response\Json
  52. * @throws \think\db\exception\DataNotFoundException
  53. * @throws \think\db\exception\DbException
  54. * @throws \think\db\exception\ModelNotFoundException
  55. * @author 段誉
  56. * @date 2022/3/2 9:39
  57. */
  58. public function lists()
  59. {
  60. $type = $this->request->get('type', '');
  61. $result = IntegralOrderLogic::lists($this->user_id, $type, $this->page_no, $this->page_size);
  62. return JsonServer::success('获取成功', $result);
  63. }
  64. /**
  65. * @notes 订单详情
  66. * @return \think\response\Json
  67. * @author 段誉
  68. * @date 2022/3/2 10:23
  69. */
  70. public function detail()
  71. {
  72. $id = $this->request->get('id/d');
  73. $data = ['id' => $id, 'user_id' => $this->user_id];
  74. (new IntegralOrderValidate())->goCheck('detail', $data);
  75. $result = IntegralOrderLogic::detail($id);
  76. return JsonServer::success('获取成功', $result);
  77. }
  78. /**
  79. * @notes 取消订单
  80. * @return \think\response\Json
  81. * @throws \think\db\exception\DataNotFoundException
  82. * @throws \think\db\exception\DbException
  83. * @throws \think\db\exception\ModelNotFoundException
  84. * @author 段誉
  85. * @date 2022/3/3 14:57
  86. */
  87. public function cancel()
  88. {
  89. $id = $this->request->post('id/d');
  90. $data = ['id' => $id, 'user_id' => $this->user_id];
  91. (new IntegralOrderValidate())->goCheck('cancel', $data);
  92. $result = IntegralOrderLogic::cancel($id);
  93. if (false === $result) {
  94. return JsonServer::error(IntegralOrderLogic::getError());
  95. }
  96. return JsonServer::success('取消成功');
  97. }
  98. /**
  99. * @notes 确认收货
  100. * @return \think\response\Json
  101. * @author 段誉
  102. * @date 2022/3/2 10:59
  103. */
  104. public function confirm()
  105. {
  106. $id = $this->request->post('id/d');
  107. $data = ['id' => $id, 'user_id' => $this->user_id];
  108. (new IntegralOrderValidate())->goCheck('confirm', $data);
  109. IntegralOrderLogic::confirm($id, $this->user_id);
  110. return JsonServer::success('确认成功');
  111. }
  112. /**
  113. * @notes 删除订单
  114. * @return \think\response\Json
  115. * @author 段誉
  116. * @date 2022/3/2 10:59
  117. */
  118. public function del()
  119. {
  120. $id = $this->request->post('id/d');
  121. $data = ['id' => $id, 'user_id' => $this->user_id];
  122. (new IntegralOrderValidate())->goCheck('del', $data);
  123. IntegralOrderLogic::del($id, $this->user_id);
  124. return JsonServer::success('删除成功');
  125. }
  126. /**
  127. * @notes 查看物流
  128. * @return \think\response\Json
  129. * @author 段誉
  130. * @date 2022/3/3 17:31
  131. */
  132. public function orderTraces()
  133. {
  134. $id = $this->request->get('id/d');
  135. $data = ['id' => $id, 'user_id' => $this->user_id];
  136. (new IntegralOrderValidate())->goCheck('traces', $data);
  137. $result = IntegralOrderLogic::orderTraces($id);
  138. return JsonServer::success('获取成功', $result);
  139. }
  140. }