截流自动化的商城平台
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

Verification.php 2.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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\logic\VerificationLogic;
  23. use app\shopapi\validate\VerificationValidate;
  24. use app\shopapi\logic\OrderLogic;
  25. /**
  26. * 自提核销
  27. * Class Verification
  28. * @package app\shopapi\controller
  29. */
  30. class Verification extends ShopApi
  31. {
  32. /**
  33. * @notes 核销订单
  34. * @return \think\response\Json
  35. * @author 段誉
  36. * @date 2022/11/2 17:13
  37. */
  38. public function lists()
  39. {
  40. $params = $this->request->get();
  41. $result = VerificationLogic::lists($params, $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 段誉
  51. * @date 2022/11/2 18:08
  52. */
  53. public function detail()
  54. {
  55. $params = $this->request->get();
  56. (new VerificationValidate())->goCheck('detail', ['shop_id' => $this->shop_id]);
  57. $result = VerificationLogic::detail($params, $this->shop_id);
  58. return JsonServer::success('', $result);
  59. }
  60. /**
  61. * @notes 核销订单
  62. * @return \think\response\Json
  63. * @author 段誉
  64. * @date 2022/11/2 17:11
  65. */
  66. public function confirm()
  67. {
  68. $params = $this->request->post();
  69. (new VerificationValidate())->goCheck('confirm', ['shop_id' => $this->shop_id]);
  70. $result = VerificationLogic::verification($params, $this->shop);
  71. if(false === $result) {
  72. return JsonServer::error(OrderLogic::getError() ?: '操作失败');
  73. }
  74. return JsonServer::success('操作成功');
  75. }
  76. }