截流自动化的商城平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Order.php 7.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\shopapi\controller;
  20. use app\common\basics\ShopApi;
  21. use app\common\server\JsonServer;
  22. use app\shopapi\validate\VirtualDeliveryValidate;
  23. use app\shopapi\logic\OrderLogic;
  24. use app\shopapi\validate\OrderValidate;
  25. /**
  26. * 商家移动端订单管理控制器
  27. * Class Order
  28. * @package app\shopapi\controller
  29. */
  30. class Order extends ShopApi
  31. {
  32. /**
  33. * @notes 订单列表
  34. * @return \think\response\Json
  35. * @author ljj
  36. * @date 2021/11/10 3:14 下午
  37. */
  38. public function lists()
  39. {
  40. $get = $this->request->get();
  41. $result = OrderLogic::lists($get, $this->page_no, $this->page_size, $this->shop_id);
  42. return JsonServer::success('获取成功', $result);
  43. }
  44. /**
  45. * @notes 订单详情
  46. * @return \think\response\Json
  47. * @throws \think\db\exception\DataNotFoundException
  48. * @throws \think\db\exception\DbException
  49. * @throws \think\db\exception\ModelNotFoundException
  50. * @author ljj
  51. * @date 2021/11/10 4:16 下午
  52. */
  53. public function detail()
  54. {
  55. $get = $this->request->get();
  56. $get['shop_id'] = $this->shop_id;
  57. (new OrderValidate())->goCheck('detail', $get);
  58. $result = OrderLogic::detail($get['id']);
  59. return JsonServer::success('获取成功', $result);
  60. }
  61. /**
  62. * @notes 取消订单
  63. * @return \think\response\Json
  64. * @throws \think\db\exception\DataNotFoundException
  65. * @throws \think\db\exception\DbException
  66. * @throws \think\db\exception\ModelNotFoundException
  67. * @author ljj
  68. * @date 2021/11/10 5:06 下午
  69. */
  70. public function cancel()
  71. {
  72. $post = $this->request->post();
  73. $post['shop_id'] = $this->shop_id;
  74. (new OrderValidate())->goCheck('cancel', $post);
  75. $result = OrderLogic::cancel($post['id'],$this->admin_id);
  76. if (true !== $result) {
  77. return JsonServer::error($result);
  78. }
  79. return JsonServer::success('操作成功');
  80. }
  81. /**
  82. * @notes 删除订单
  83. * @return \think\response\Json
  84. * @author ljj
  85. * @date 2021/11/10 5:37 下午
  86. */
  87. public function del()
  88. {
  89. $post = $this->request->post();
  90. $post['shop_id'] = $this->shop_id;
  91. (new OrderValidate())->goCheck('del', $post);
  92. OrderLogic::del($post['id'],$this->admin_id);
  93. return JsonServer::success('操作成功');
  94. }
  95. /**
  96. * @notes 修改地址
  97. * @return \think\response\Json
  98. * @author ljj
  99. * @date 2021/11/10 6:36 下午
  100. */
  101. public function editAddress()
  102. {
  103. $post = $this->request->post();
  104. $post['shop_id'] = $this->shop_id;
  105. (new OrderValidate())->goCheck('editAddress', $post);
  106. OrderLogic::editAddress($post);
  107. return JsonServer::success('操作成功');
  108. }
  109. /**
  110. * @notes 获取地址详情
  111. * @return \think\response\Json
  112. * @throws \think\db\exception\DataNotFoundException
  113. * @throws \think\db\exception\DbException
  114. * @throws \think\db\exception\ModelNotFoundException
  115. * @author ljj
  116. * @date 2021/11/13 11:41 上午
  117. */
  118. public function getAddress()
  119. {
  120. $get = $this->request->get();
  121. $get['shop_id'] = $this->shop_id;
  122. (new OrderValidate())->goCheck('getAddress', $get);
  123. $result = OrderLogic::getAddress($get['id']);
  124. return JsonServer::success('获取成功', $result);
  125. }
  126. /**
  127. * @notes 发货
  128. * @return \think\response\Json
  129. * @author ljj
  130. * @date 2021/11/11 10:27 上午
  131. */
  132. public function delivery()
  133. {
  134. $post = $this->request->post();
  135. $post['shop_id'] = $this->shop_id;
  136. (new OrderValidate())->goCheck('delivery', $post);
  137. $result = OrderLogic::delivery($post,$this->admin_id);
  138. if (true !== $result) {
  139. return JsonServer::error($result);
  140. }
  141. return JsonServer::success('操作成功');
  142. }
  143. /**
  144. * @notes 获取物流公司列表
  145. * @return \think\response\Json
  146. * @throws \think\db\exception\DataNotFoundException
  147. * @throws \think\db\exception\DbException
  148. * @throws \think\db\exception\ModelNotFoundException
  149. * @author ljj
  150. * @date 2021/11/13 11:46 上午
  151. */
  152. public function getExpress()
  153. {
  154. return JsonServer::success('获取成功', OrderLogic::getExpress());
  155. }
  156. /**
  157. * @notes 确认收货
  158. * @return \think\response\Json
  159. * @author ljj
  160. * @date 2021/11/11 10:56 上午
  161. */
  162. public function confirm()
  163. {
  164. $post = $this->request->post();
  165. $post['shop_id'] = $this->shop_id;
  166. (new OrderValidate())->goCheck('confirm', $post);
  167. OrderLogic::confirm($post['id'],$this->admin_id);
  168. return JsonServer::success('操作成功');
  169. }
  170. /**
  171. * @notes 查看物流
  172. * @return \think\response\Json
  173. * @throws \think\db\exception\DataNotFoundException
  174. * @throws \think\db\exception\DbException
  175. * @throws \think\db\exception\ModelNotFoundException
  176. * @author ljj
  177. * @date 2021/11/11 11:35 上午
  178. */
  179. public function logistics()
  180. {
  181. $get = $this->request->get();
  182. $get['shop_id'] = $this->shop_id;
  183. (new OrderValidate())->goCheck('logistics', $get);
  184. $result = OrderLogic::logistics($get['id']);
  185. return JsonServer::success('获取成功', $result);
  186. }
  187. /**
  188. * @notes 虚拟发货
  189. * @return \think\response\Json|void
  190. * @author 段誉
  191. * @date 2022/4/20 17:53
  192. */
  193. public function virtualDelivery()
  194. {
  195. $post = $this->request->post();
  196. (new VirtualDeliveryValidate())->goCheck();
  197. $result = OrderLogic::virtualDelivery($post, $this->admin_id);
  198. if (false == $result) {
  199. return JsonServer::error(OrderLogic::getError() ?: '发货失败');
  200. }
  201. return JsonServer::success('发货成功');
  202. }
  203. /**
  204. * @notes 确认付款
  205. * @return \think\response\Json
  206. * @author ljj
  207. * @date 2024/7/19 下午6:33
  208. */
  209. public function confirmPay()
  210. {
  211. $post = $this->request->post();
  212. if (!isset($post['order_id']) || empty($post['order_id'])) {
  213. return JsonServer::error('参数缺失');
  214. }
  215. $result = OrderLogic::confirmPay($post['order_id'], $this->admin_id);
  216. if(true !== $result) {
  217. return JsonServer::error($result);
  218. }
  219. return JsonServer::success('确认成功');
  220. }
  221. }