截流自动化的商城平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

VerificationLogic.php 5.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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\logic;
  20. use app\common\basics\Logic;
  21. use app\common\enum\OrderEnum;
  22. use app\common\enum\OrderLogEnum;
  23. use app\common\enum\PayEnum;
  24. use app\common\enum\VerificationEnum;
  25. use app\common\logic\OrderLogLogic;
  26. use app\common\model\order\Order;
  27. use app\common\model\order\Verification;
  28. use think\facade\Db;
  29. /**
  30. * 自提核销逻辑
  31. * Class VerificationLogic
  32. * @package app\shopapi\logic
  33. */
  34. class VerificationLogic extends Logic
  35. {
  36. /**
  37. * @notes 核销订单列表
  38. * @param $params
  39. * @return array
  40. * @throws \think\db\exception\DataNotFoundException
  41. * @throws \think\db\exception\DbException
  42. * @throws \think\db\exception\ModelNotFoundException
  43. * @author 段誉
  44. * @date 2022/11/2 17:40
  45. */
  46. public static function lists($params, $pageNo, $pageSize, $shopId)
  47. {
  48. $where[] = ['delivery_type', '=', OrderEnum::DELIVERY_TYPE_SELF];
  49. $where[] = ['pay_status', '=', PayEnum::ISPAID];
  50. $where[] = ['shop_id', '=', $shopId];
  51. $verificationStatus = 0;
  52. if (isset($params['status'])) {
  53. $verificationStatus = $params['status'];
  54. }
  55. $where[] = ['verification_status', '=', $verificationStatus];
  56. $lists = Order::field('id,address,verification_status,consignee,verification_status')
  57. ->with(['order_goods' => function ($query) {
  58. $query->field('order_id,image,goods_name,goods_num,spec_value');
  59. }])
  60. ->where($where)
  61. ->append(['verification_status_text'])
  62. ->order(['id' => 'desc'])
  63. ->select()
  64. ->toArray();
  65. $count = Order::where($where)->count();
  66. return [
  67. 'list' => $lists,
  68. 'page' => $pageNo,
  69. 'size' => $pageSize,
  70. 'count' => $count,
  71. 'more' => is_more($count, $pageNo, $pageSize)
  72. ];
  73. }
  74. /**
  75. * @notes 订单详情
  76. * @param $params
  77. * @param $shopId
  78. * @return array
  79. * @throws \think\db\exception\DataNotFoundException
  80. * @throws \think\db\exception\DbException
  81. * @throws \think\db\exception\ModelNotFoundException
  82. * @author 段誉
  83. * @date 2022/11/2 18:08
  84. */
  85. public static function detail($params, $shopId)
  86. {
  87. $detail = Order::where('pickup_code',$params['pickup_code'])
  88. ->where('shop_id', $shopId)
  89. ->with([
  90. 'user',
  91. 'order_goods' => function ($query) {
  92. $query->field('order_id,image,goods_name,goods_num,spec_value');
  93. }
  94. ])
  95. ->append(['verification_status_text'])
  96. ->field('id,address,verification_status,consignee,verification_status,consignee,mobile')
  97. ->find()
  98. ->toArray();
  99. $detail['show_verification_nickname'] = $detail['consignee'] ? : ($detail['user']['nickname'] ?? '');
  100. $detail['show_verification_mobile'] = $detail['mobile'] ? : ($detail['user']['mobile'] ?? '');
  101. if ($detail['show_verification_mobile']) {
  102. $detail['show_verification_mobile'] = substr_replace($detail['show_verification_mobile'], '****', 3, 4);
  103. }
  104. return $detail;
  105. }
  106. /**
  107. * @notes 核销订单
  108. * @param $params
  109. * @param $adminInfo
  110. * @return bool
  111. * @author 段誉
  112. * @date 2022/11/2 17:11
  113. */
  114. public static function verification($params, $adminInfo)
  115. {
  116. Db::startTrans();
  117. try {
  118. $order = Order::find($params['id']);
  119. //添加核销记录
  120. Verification::create([
  121. 'order_id' => $order['id'],
  122. 'shop_id' => $order['shop_id'],
  123. 'handle_id' => $adminInfo['id'],
  124. 'verification_scene' => VerificationEnum::TYPE_SHOP,
  125. 'snapshot' => json_encode([
  126. 'sn' => $adminInfo['account'],
  127. 'name' => $adminInfo['name']
  128. ]),
  129. ]);
  130. //更新订单状态
  131. $order->order_status = OrderEnum::ORDER_STATUS_COMPLETE;
  132. $order->verification_status = OrderEnum::WRITTEN_OFF;
  133. $order->confirm_take_time = time();
  134. $order->save();
  135. //订单日志
  136. OrderLogLogic::record(
  137. OrderLogEnum::TYPE_SHOP,
  138. OrderLogEnum::SHOP_VERIFICATION,
  139. $order['id'],
  140. $adminInfo['id'],
  141. OrderLogEnum::SHOP_VERIFICATION
  142. );
  143. Db::commit();
  144. return true;
  145. } catch (\Exception $e) {
  146. Db::rollback();
  147. self::$error = $e->getMessage();
  148. return false;
  149. }
  150. }
  151. }