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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410
  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\shop\controller\order;
  20. use app\common\basics\ShopBase;
  21. use app\common\model\order\OrderLog;
  22. use app\common\model\order\Order as OrderModel;
  23. use app\common\server\JsonServer;
  24. use app\shop\logic\order\OrderLogic;
  25. use app\common\model\Client_;
  26. use app\common\enum\PayEnum;
  27. use app\shop\validate\order\OrderPrintValidate;
  28. use app\shop\validate\order\VerificationValidate;
  29. use app\shop\validate\order\VirtualDeliveryValidate;
  30. use think\response\Json;
  31. /**
  32. * 订单管理
  33. * Class Goods
  34. */
  35. class Order extends ShopBase
  36. {
  37. /**
  38. * @notes 订单列表
  39. * @return Json|\think\response\View
  40. * @author suny
  41. * @date 2021/7/14 10:15 上午
  42. */
  43. public function lists()
  44. {
  45. $data = OrderLogic::statistics(input(), $this->shop_id);
  46. // 订单状态
  47. $order_status = OrderModel::getOrderStatus();
  48. // 拼装数量统计
  49. $order_status = OrderLogic::getStat($order_status, $this->shop_id);
  50. $all = OrderLogic::getAll($this->shop_id);
  51. if ($this->request->isAjax()) {
  52. $data['statistics'] = [
  53. 'all' => $all,
  54. 'order_status' => $order_status,
  55. ];
  56. return JsonServer::success('', $data);
  57. }
  58. return view('', [
  59. 'all' => $all,
  60. 'statistics' => $data,
  61. 'order_status' => $order_status,
  62. 'order_type' => OrderModel::getOrderType(true),
  63. 'order_source' => Client_::getClient(),
  64. 'pay_way' => PayEnum::getPayWay(),
  65. 'delivery_type' => OrderModel::getDeliveryType(true),
  66. ]);
  67. }
  68. public function totalCount()
  69. {
  70. if ($this->request->isAjax()) {
  71. return JsonServer::success('获取成功', OrderLogic::totalCount($this->shop_id));
  72. }
  73. }
  74. /**
  75. * @notes 订单详情
  76. * @return \think\response\View
  77. * @author suny
  78. * @date 2021/7/14 10:15 上午
  79. * @throws \think\db\exception\ModelNotFoundException
  80. * @throws \think\exception\DbException
  81. * @throws \think\db\exception\DataNotFoundException
  82. */
  83. public function detail()
  84. {
  85. $id = $this->request->get('id');
  86. $detail = OrderLogic::getDetail($id);
  87. $order_log = OrderLog::getOrderLog($id);
  88. return view('', [
  89. 'detail' => $detail,
  90. 'logs' => $order_log
  91. ]);
  92. }
  93. /**
  94. * @notes 物流信息
  95. * @return \think\response\View
  96. * @author suny
  97. * @date 2021/7/14 10:15 上午
  98. */
  99. public function express()
  100. {
  101. $id = $this->request->get('id');
  102. $detail = OrderLogic::getDetail($id);
  103. $detail['shipping'] = OrderLogic::shippingInfo($detail['id']);
  104. return view('', [
  105. 'detail' => $detail
  106. ]);
  107. }
  108. /**
  109. * @notes 修改物流单号
  110. * @return Json|\think\response\View
  111. * @author lbzy
  112. * @datetime 2024-04-03 11:02:33
  113. */
  114. function delivery_change()
  115. {
  116. if ($this->request->isAjax()) {
  117. $result = OrderLogic::change_invoice_no(input());
  118. if ($result !== true) {
  119. return JsonServer::error((string) $result);
  120. }
  121. return JsonServer::success('修改成功');
  122. }
  123. $id = $this->request->get('id');
  124. $detail = OrderLogic::getDetail($id);
  125. $express = OrderLogic::express();
  126. $detail['shipping'] = OrderLogic::shippingInfo($detail['id']);
  127. return view('', [
  128. 'detail' => $detail,
  129. 'express' => $express
  130. ]);
  131. }
  132. /**
  133. * @notes 发货
  134. * @return \think\response\View
  135. * @author suny
  136. * @date 2021/7/14 10:15 上午
  137. */
  138. public function delivery()
  139. {
  140. $id = $this->request->get('id');
  141. $detail = OrderLogic::getDetail($id);
  142. $express = OrderLogic::express();
  143. return view('', [
  144. 'detail' => $detail,
  145. 'express' => $express
  146. ]);
  147. }
  148. /**
  149. * @notes 发货操作
  150. * @return Json
  151. * @author suny
  152. * @date 2021/7/14 10:15 上午
  153. * @throws \think\exception\DbException
  154. */
  155. public function deliveryHandle()
  156. {
  157. if ($this->request->isAjax()) {
  158. $post = $this->request->post();
  159. $check = (OrderLogic::checkDelivery($post));
  160. if (true !== $check) {
  161. return JsonServer::error((string) $check);
  162. }
  163. OrderLogic::deliveryHandle($post, $this->admin_id);
  164. return JsonServer::success('发货成功');
  165. }
  166. }
  167. /**
  168. * @notes 确认收货
  169. * @return Json
  170. * @author suny
  171. * @date 2021/7/14 10:16 上午
  172. */
  173. public function confirm()
  174. {
  175. if ($this->request->isAjax()) {
  176. $post = $this->request->post('');
  177. OrderLogic::confirm($post['order_id'], $this->admin_id);
  178. return JsonServer::success('确认成功');
  179. }
  180. }
  181. /**
  182. * @notes 取消订单
  183. * @return Json
  184. * @author suny
  185. * @date 2021/7/14 10:16 上午
  186. */
  187. public function cancel()
  188. {
  189. if ($this->request->isAjax()) {
  190. $post = $this->request->post('');
  191. $result = (OrderLogic::checkCancel($post));
  192. if($result !== true){
  193. return JsonServer::error($result,[],0,0);
  194. }
  195. $result = OrderLogic::cancel($post['order_id'], $this->admin_id);
  196. if($result !== true){
  197. return JsonServer::error($result,[],0,0);
  198. }
  199. return JsonServer::success('取消成功');
  200. }
  201. }
  202. /**
  203. * @notes 删除订单
  204. * @return Json
  205. * @author suny
  206. * @date 2021/7/14 10:16 上午
  207. */
  208. public function del()
  209. {
  210. if ($this->request->isAjax()) {
  211. $post = $this->request->post('');
  212. (OrderLogic::checkDel($post));
  213. OrderLogic::del($post['order_id'], $this->admin_id);
  214. return JsonServer::success('删除成功');
  215. }
  216. }
  217. /**
  218. * @notes 商家备注
  219. * @return Json
  220. * @throws \think\Exception
  221. * @author suny
  222. * @date 2021/7/14 10:16 上午
  223. */
  224. public function remarks()
  225. {
  226. // 获取的
  227. if ($this->request->isAjax() && $this->request->isGet()) {
  228. $get = $this->request->get();
  229. $detail = OrderLogic::remarks($get, 'get');
  230. return JsonServer::success('获取成功', [$detail]);
  231. }
  232. // 提交的
  233. if ($this->request->isAjax() && $this->request->isPost()) {
  234. $post = $this->request->post();
  235. $result = OrderLogic::remarks($post, 'post');
  236. return json(['code' => 1, 'show' => 0, 'msg' => '修改成功', 'data' => $result]);
  237. }
  238. }
  239. /**
  240. * @notes 小票打印
  241. * @return Json
  242. * @author 段誉
  243. * @date 2022/1/20 11:15
  244. */
  245. public function orderPrint()
  246. {
  247. $post = $this->request->post();
  248. $post['shop_id'] = $this->shop_id;
  249. (new OrderPrintValidate())->goCheck('', $post);
  250. $result = OrderLogic::orderPrint($post['id'], $this->shop_id);
  251. if (true === $result) {
  252. return JsonServer::success('打印成功,如未出小票,请检查打印机是否在线');
  253. }
  254. return JsonServer::error($result);
  255. }
  256. /**
  257. * @notes 修改地址
  258. * @return \think\response\View
  259. * @author suny
  260. * @date 2021/7/14 10:16 上午
  261. */
  262. public function change_address()
  263. {
  264. // 获取的
  265. $get = $this->request->get();
  266. $data = OrderLogic::change_address($get);
  267. $id = json_decode($data['info'], true)['id'];
  268. return view('', [
  269. 'id' => $id,
  270. 'info' => $data['info'],
  271. 'address_tree' => $data['address_tree']
  272. ]);
  273. }
  274. /**
  275. * @notes 修改地址提交
  276. * @return Json
  277. * @author suny
  278. * @date 2021/7/14 10:16 上午
  279. */
  280. public function change_address_post()
  281. {
  282. // 提交的
  283. if ($this->request->isAjax()) {
  284. $post = $this->request->post();
  285. OrderLogic::change_address_post($post);
  286. return JsonServer::success('修改地址成功');
  287. }
  288. }
  289. /**
  290. * @notes 虚拟发货
  291. * @return Json|void
  292. * @throws \think\db\exception\DataNotFoundException
  293. * @throws \think\db\exception\DbException
  294. * @throws \think\db\exception\ModelNotFoundException
  295. * @author 段誉
  296. * @date 2022/4/7 17:47
  297. */
  298. public function virtualDelivery()
  299. {
  300. if ($this->request->isAjax()) {
  301. $post = $this->request->post();
  302. (new VirtualDeliveryValidate())->goCheck();
  303. $result = OrderLogic::virtualDelivery($post, $this->admin_id);
  304. if (false == $result) {
  305. return JsonServer::error(OrderLogic::getError() ?: '发货失败');
  306. }
  307. return JsonServer::success('发货成功');
  308. }
  309. }
  310. /**
  311. * @notes 导出Excel
  312. * @return Json
  313. * @throws \think\db\exception\DataNotFoundException
  314. * @throws \think\db\exception\DbException
  315. * @throws \think\db\exception\ModelNotFoundException
  316. * @author 段誉
  317. * @date 2022/4/24 10:20
  318. */
  319. public function export()
  320. {
  321. $params = $this->request->get();
  322. $result = OrderLogic::statistics($params, $this->shop_id, true);
  323. if(false === $result) {
  324. return JsonServer::error(OrderLogic::getError() ?: '导出失败');
  325. }
  326. return JsonServer::success('', $result);
  327. }
  328. /**
  329. * @notes 提货核销
  330. * @return Json|void
  331. * @author 段誉
  332. * @date 2022/11/2 15:52
  333. */
  334. public function verification()
  335. {
  336. if ($this->request->isAjax()) {
  337. $params = $this->request->post();
  338. (new VerificationValidate())->goCheck();
  339. $result = OrderLogic::verification($params, $this->shop);
  340. if(false === $result) {
  341. return JsonServer::error(OrderLogic::getError() ?: '操作失败');
  342. }
  343. return JsonServer::success('操作成功');
  344. }
  345. }
  346. /**
  347. * @notes 确认付款
  348. * @return Json|void
  349. * @author ljj
  350. * @date 2024/7/19 下午6:33
  351. */
  352. public function confirmPay()
  353. {
  354. if ($this->request->isAjax()) {
  355. $post = $this->request->post('');
  356. $result = OrderLogic::confirmPay($post['order_id'], $this->admin_id);
  357. if(true !== $result) {
  358. return JsonServer::error($result);
  359. }
  360. return JsonServer::success('确认成功');
  361. }
  362. }
  363. }