截流自动化的商城平台
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.

Order.php 7.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\logic\OrderInvoiceLogic;
  4. use app\api\logic\OrderLogic;
  5. use app\api\validate\OrderValidate;
  6. use app\common\basics\Api;
  7. use app\common\server\JsonServer;
  8. use app\common\server\WechatMiniExpressSendSyncServer;
  9. class Order extends Api
  10. {
  11. /**
  12. * @notes 下单
  13. * @return \think\response\Json
  14. * @throws \think\Exception
  15. * @author suny
  16. * @date 2021/7/13 6:11 下午
  17. */
  18. public function submitOrder()
  19. {
  20. $post = $this->request->post();
  21. $post['user_id'] = $this->user_id;
  22. $post['client'] = $this->client;
  23. (new OrderValidate())->goCheck('add', $post);
  24. $order = OrderLogic::add($post);
  25. if (false === $order) {
  26. return JsonServer::error(OrderLogic::getError());
  27. }
  28. return JsonServer::success('下单成功!', $order);
  29. }
  30. /**
  31. * @notes 结算页数据
  32. * @return \think\response\Json
  33. * @author suny
  34. * @date 2021/7/13 6:11 下午
  35. */
  36. public function settlement()
  37. {
  38. $post = $this->request->post();
  39. $post['user_id'] = $this->user_id;
  40. $post['client'] = $this->client;
  41. $result = OrderLogic::settlement($post);
  42. if($result === false) {
  43. return JsonServer::error(OrderLogic::getError(), [], 301);
  44. }
  45. return JsonServer::success('获取成功', $result);
  46. }
  47. /**
  48. * @notes 订单列表
  49. * @return \think\response\Json
  50. * @author suny
  51. * @date 2021/7/13 6:11 下午
  52. */
  53. public function lists()
  54. {
  55. $type = $this->request->get('type', 'all');
  56. $order_list = OrderLogic::getOrderList($this->user_id, $type, $this->page_no, $this->page_size);
  57. return JsonServer::success('获取成功', $order_list);
  58. }
  59. /**
  60. * @notes 获取订单详情
  61. * @return \think\response\Json
  62. * @author suny
  63. * @date 2021/7/13 6:11 下午
  64. */
  65. public function getOrderDetail()
  66. {
  67. $get = $this->request->get();
  68. (new OrderValidate())->goCheck('detail', $get);
  69. $detail = OrderLogic::getOrderDetail($get['id']);
  70. return JsonServer::success('获取成功', $detail);
  71. }
  72. /**
  73. * @notes 微信确认收货 获取详情
  74. * @return \think\response\Json
  75. * @author lbzy
  76. * @datetime 2023-09-05 09:51:41
  77. */
  78. function wxReceiveDetail()
  79. {
  80. return JsonServer::success('获取成功', OrderLogic::wxReceiveDetail(input('order_id/d'), $this->user_id));
  81. }
  82. /**
  83. * @notes 取消订单
  84. * @return array|\think\response\Json
  85. * @throws \think\db\exception\DataNotFoundException
  86. * @throws \think\db\exception\ModelNotFoundException
  87. * @throws \think\exception\DbException
  88. * @author suny
  89. * @date 2021/7/13 6:11 下午
  90. */
  91. public function cancel()
  92. {
  93. $order_id = $this->request->post('id');
  94. if (empty($order_id)) {
  95. return JsonServer::error('参数错误');
  96. }
  97. return OrderLogic::cancel($order_id, $this->user_id);
  98. }
  99. /**
  100. * @notes 确认收货
  101. * @return array|\think\response\Json
  102. * @author suny
  103. * @date 2021/7/13 6:11 下午
  104. */
  105. public function confirm()
  106. {
  107. $order_id = $this->request->post('id');
  108. if (empty($order_id)) {
  109. return JsonServer::error('参数错误');
  110. }
  111. return OrderLogic::confirm($order_id, $this->user_id);
  112. }
  113. /**
  114. * @notes 删除订单
  115. * @return array|\think\response\Json
  116. * @author suny
  117. * @date 2021/7/13 6:12 下午
  118. */
  119. public function del()
  120. {
  121. $order_id = $this->request->post('id');
  122. if (empty($order_id)) {
  123. return JsonServer::error('参数错误');
  124. }
  125. return OrderLogic::del($order_id, $this->user_id);
  126. }
  127. /**
  128. * @notes 订单支付结果页面数据
  129. * @return \think\response\Json
  130. * @author suny
  131. * @date 2021/7/13 6:12 下午
  132. */
  133. public function pay_result()
  134. {
  135. $id = $this->request->get('id');
  136. $from = $this->request->get('from');//标识:trade:父订单,order:子订单
  137. $result = OrderLogic::pay_result($id,$from);
  138. if ($result !== false) {
  139. return JsonServer::success('', $result);
  140. } else {
  141. return JsonServer::error('参数错误');
  142. }
  143. }
  144. /**
  145. * @notes 获取支付方式
  146. * @return \think\response\Json
  147. * @author suny
  148. * @date 2021/7/13 6:12 下午
  149. */
  150. public function getPayWay()
  151. {
  152. $params = $this->request->get();
  153. if(!isset($params['from']) || !isset($params['order_id'])) {
  154. return JsonServer::error('参数缺失');
  155. }
  156. $pay_way = OrderLogic::getPayWay($this->user_id, $this->client, $params);
  157. return JsonServer::success('', $pay_way);
  158. }
  159. /**
  160. * @notes 物流查询
  161. * @return \think\response\Json
  162. * @throws \think\db\exception\DataNotFoundException
  163. * @throws \think\db\exception\DbException
  164. * @throws \think\db\exception\ModelNotFoundException
  165. * @throws \think\exception\DbException
  166. * @author suny
  167. * @date 2021/7/13 6:12 下午
  168. */
  169. public function orderTraces()
  170. {
  171. $order_id = $this->request->get('id');
  172. $tips = '参数错误';
  173. if ($order_id) {
  174. $traces = OrderLogic::orderTraces($order_id, $this->user_id);
  175. if ($traces) {
  176. return JsonServer::success('获取成功', $traces);
  177. }
  178. $tips = '暂无物流信息';
  179. }
  180. return JsonServer::error($tips);
  181. }
  182. /**
  183. * @notes PC获取支付状态
  184. * @return \think\response\Json
  185. * @author suny
  186. * @date 2021/10/29 3:52 下午
  187. */
  188. public function getPayStatus()
  189. {
  190. $id = $this->request->get('id');
  191. $from = $this->request->get('from');//标识:trade:父订单,order:子订单
  192. $result = OrderLogic::getPayStatus($id,$from);
  193. if ($result !== false) {
  194. return JsonServer::success('', $result);
  195. } else {
  196. return JsonServer::error('参数错误');
  197. }
  198. }
  199. /**
  200. * @notes 发票详情
  201. * @return \think\response\Json
  202. * @author 段誉
  203. * @date 2022/4/12 9:25
  204. */
  205. public function invoice()
  206. {
  207. $id = $this->request->get('id');
  208. $result = OrderInvoiceLogic::getInvoiceDetailByOrderId($id);
  209. return JsonServer::success('获取成功', $result);
  210. }
  211. /**
  212. * @notes 微信同步发货 查询
  213. * @return \think\response\Json
  214. * @author lbzy
  215. * @datetime 2023-09-07 15:27:17
  216. */
  217. function wechatSyncCheck()
  218. {
  219. $id = $this->request->get('id');
  220. $order = \app\common\model\order\Order::where('id', $id)->where('user_id', $this->user_id)->findOrEmpty();
  221. $result = WechatMiniExpressSendSyncServer::wechatSyncCheck($order);
  222. if (! $result) {
  223. return JsonServer::error('获取失败');
  224. }
  225. return JsonServer::success('成功', $result);
  226. }
  227. }