OrderOper.php 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903
  1. <?php
  2. namespace addons\shopro\library\traits\model\order;
  3. use addons\shopro\exception\Exception;
  4. use addons\shopro\model\Coupons;
  5. use addons\shopro\model\User;
  6. use addons\shopro\model\GoodsComment;
  7. use addons\shopro\model\Order;
  8. use addons\shopro\model\OrderAction;
  9. use addons\shopro\model\OrderItem;
  10. use addons\shopro\model\Store;
  11. use addons\shopro\model\Verify;
  12. use app\admin\model\shopro\order\RefundLog;
  13. use think\Db;
  14. trait OrderOper
  15. {
  16. use OrderOperSendGet, OrderOperCreate;
  17. // 获取订单号
  18. public static function getSn($user_id)
  19. {
  20. $rand = $user_id < 9999 ? mt_rand(100000, 99999999) : mt_rand(100, 99999);
  21. $order_sn = date('Yhis') . $rand;
  22. $id = str_pad($user_id, (24 - strlen($order_sn)), '0', STR_PAD_BOTH);
  23. return $order_sn . $id;
  24. }
  25. // 计算订单
  26. public static function pre($params, $calc_type = 'pre')
  27. {
  28. self::$calc_type = $calc_type;
  29. $user = User::info();
  30. // 检测必要系统环境
  31. checkEnv(['bcmath', 'queue']);
  32. // 获取请求参数 "order_type", "groupon_id", "buy_type"
  33. extract(self::preParams($params));
  34. // 检测并重新组装要购买的商品列表
  35. list(
  36. $new_goods_list, // 组合好的新的商品列表
  37. $activity_type, // 订单参与的活动类型,后面还需计算一次
  38. $activity_discounts, // 订单可能参与的所有活动
  39. $need_address, // 是否需要收货地址
  40. $user_address // 用户收货地址
  41. ) = self::preCheck($params);
  42. // 计算订单商品价格,所需积分,运费
  43. list(
  44. $new_goods_list, // 新的商品列表
  45. $goods_original_amount, // 商品原始总价
  46. $goods_amount, // 商品现在总价
  47. $dispatch_amount, // 订单运费(所有商品种最高的,后面还需根据活动再次计算)
  48. $score_amount, // 订单所需支付积分
  49. ) = self::preCalcAmount($params, $new_goods_list, $user_address);
  50. // 记录原始运费
  51. $origin_dispatch_amount = $dispatch_amount;
  52. // 计算订单优惠折扣,优惠券,邮费
  53. list(
  54. $new_goods_list, // 重新赋值活动, 商品上增加了 activity_type
  55. $activity_discount_infos, // 每个活动包含的优惠信息
  56. $activity_discount_money, // 促销活动优惠总金额
  57. $dispatch_discount_money, // 邮费总优惠金额
  58. $free_shipping_goods_ids, // 包邮的商品的ids
  59. $activity_type, // 全部参与的活动类型
  60. $dispatch_amount, // 重新计算的运费
  61. $user_coupons, // 使用的优惠券信息
  62. $coupon_money // 优惠券优惠金额
  63. ) = self::preCalcDiscount(
  64. $params,
  65. $new_goods_list,
  66. $activity_discounts,
  67. $activity_type,
  68. $goods_amount,
  69. $dispatch_amount,
  70. $user_address
  71. );
  72. // 计算订单总金额,需支付金额
  73. list(
  74. $new_goods_list,
  75. $total_amount,
  76. $discount_fee,
  77. $total_fee,
  78. $coupon_fee,
  79. ) = self::preCalcOrder(
  80. $new_goods_list,
  81. $goods_amount,
  82. $origin_dispatch_amount,
  83. $dispatch_amount,
  84. $activity_discount_infos,
  85. $activity_discount_money,
  86. $dispatch_discount_money,
  87. $free_shipping_goods_ids,
  88. $coupon_money
  89. );
  90. // 获取发票金额
  91. $invoice_amount = self::preCalcInvoiceAmount($total_fee, $goods_amount);
  92. // 处理返回结果
  93. return self::preReturnParams(
  94. $goods_original_amount,
  95. $goods_amount,
  96. $origin_dispatch_amount,
  97. $dispatch_amount,
  98. $total_amount,
  99. $total_fee,
  100. $discount_fee,
  101. $coupon_fee,
  102. $activity_discount_money,
  103. $dispatch_discount_money,
  104. $activity_type,
  105. $score_amount,
  106. $new_goods_list,
  107. $need_address,
  108. $activity_discount_infos,
  109. $user_coupons,
  110. $user_address,
  111. $invoice_amount
  112. );
  113. }
  114. // 获取可用优惠券列表
  115. public static function coupons($params, $goods_amount = 0)
  116. {
  117. $user = User::info();
  118. extract($params);
  119. $order_type = $order_type ?? 'goods';
  120. $groupon_id = $groupon_id ?? 0; // 拼团的 团 id
  121. $buy_type = $buy_type ?? 'alone'; // 拼团的 购买方式: alone=单独购买,groupon=开团
  122. // 商品总金额
  123. if (!$goods_amount) {
  124. // 下单的时候把计算好的 goods_amount 传进来了,接口直接获取可用列表的时候,需要计算
  125. foreach ($goods_list as $k => $goods) {
  126. $goods_amount += ($goods['goods_price'] * $goods['goods_num']);
  127. }
  128. }
  129. $coupons = Coupons::getCouponsList(Coupons::COUPONS_CAN_USE);
  130. $new_coupons = [];
  131. // 过滤,如果有一个产品不适用,则优惠券不允许使用,不显示
  132. foreach ($coupons as $key => $coupon) {
  133. if ($coupon['goods_ids'] === '0') {
  134. // 所有商品可用
  135. $can_use = true;
  136. } else {
  137. $goods_ids = explode(',', $coupon['goods_ids']);
  138. $can_use = true;
  139. foreach ($goods_list as $k => $goods) {
  140. if (!in_array($goods['goods_id'], $goods_ids)) {
  141. $can_use = false;
  142. break;
  143. }
  144. }
  145. }
  146. // 商品可用 并且 商品金额满足
  147. if ($can_use && $coupon->enough <= $goods_amount) {
  148. $new_coupons[] = $coupon;
  149. }
  150. }
  151. $new_coupons = array_values($new_coupons);
  152. return $new_coupons;
  153. }
  154. public static function createOrder($params)
  155. {
  156. $user = User::info();
  157. // 入参
  158. extract($params);
  159. $remark = $remark ?? null;
  160. $order_type = $order_type ?? 'goods';
  161. $groupon_id = $groupon_id ?? 0; // 拼团的 团 id
  162. $buy_type = $buy_type ?? 'alone'; // 拼团的 购买方式: alone=单独购买,groupon=开团
  163. $invoice = $invoice ?? null; // 发票申请
  164. // 订单计算数据
  165. extract(self::pre($params, "create"));
  166. $order = Db::transaction(function () use (
  167. $user,
  168. $order_type,
  169. $groupon_id,
  170. $buy_type,
  171. $goods_original_amount,
  172. $goods_amount,
  173. $dispatch_amount,
  174. $total_amount,
  175. $score_amount,
  176. $total_fee,
  177. $discount_fee,
  178. $coupon_fee,
  179. $activity_discount_money,
  180. $dispatch_discount_money,
  181. $activity_discount_infos,
  182. $new_goods_list,
  183. $activity_type,
  184. $user_coupons,
  185. $user_address,
  186. $remark,
  187. $from,
  188. $invoice,
  189. $invoice_amount
  190. ) {
  191. // 订单创建前
  192. $data = [
  193. 'user' => $user,
  194. 'order_type' => $order_type,
  195. 'groupon_id' => $groupon_id,
  196. 'buy_type' => $buy_type,
  197. 'goods_original_amount' => $goods_original_amount,
  198. 'goods_amount' => $goods_amount,
  199. 'dispatch_amount' => $dispatch_amount,
  200. 'total_amount' => $total_amount,
  201. 'score_amount' => $score_amount,
  202. 'total_fee' => $total_fee,
  203. 'discount_fee' => $discount_fee,
  204. 'coupon_fee' => $coupon_fee,
  205. 'activity_discount_money' => $activity_discount_money,
  206. 'dispatch_discount_money' => $dispatch_discount_money,
  207. 'activity_discount_infos' => $activity_discount_infos,
  208. 'new_goods_list' => $new_goods_list,
  209. 'activity_type' => $activity_type,
  210. 'user_coupons' => $user_coupons,
  211. 'user_address' => $user_address,
  212. 'remark' => $remark,
  213. 'from' => $from
  214. ];
  215. // 如果是活动,这里面减掉 redis 库存
  216. \think\Hook::listen('order_create_before', $data);
  217. // 团信息, 如果是参与旧团拼团才会不为 null,(开新团放到支付成功)
  218. $groupon = cache('grouponinfo-' . $user->id);
  219. $groupon = $groupon ? json_decode($groupon, true) : null;
  220. // 立即清除缓存
  221. cache('grouponinfo-' . $user->id, NULL);
  222. $orderData = [];
  223. $orderData['order_sn'] = self::getSn($user->id);
  224. $orderData['user_id'] = $user->id;
  225. $orderData['type'] = $order_type;
  226. $orderData['activity_type'] = $activity_type;
  227. $orderData['goods_amount'] = $goods_amount;
  228. $orderData['dispatch_amount'] = $dispatch_amount;
  229. $orderData['total_amount'] = $total_amount;
  230. $orderData['score_amount'] = $score_amount;
  231. $orderData['total_fee'] = $total_fee;
  232. $orderData['discount_fee'] = $discount_fee;
  233. $orderData['score_fee'] = $score_amount; // 记录score 支付数
  234. $orderData['coupon_fee'] = $coupon_fee;
  235. $orderData['activity_discount_money'] = $activity_discount_money;
  236. $orderData['dispatch_discount_money'] = $dispatch_discount_money;
  237. $orderData['goods_original_amount'] = $goods_original_amount;
  238. if ($user_address) {
  239. $orderData['phone'] = $user_address->phone;
  240. $orderData['consignee'] = $user_address->consignee;
  241. $orderData['province_name'] = $user_address->province_name;
  242. $orderData['city_name'] = $user_address->city_name;
  243. $orderData['area_name'] = $user_address->area_name;
  244. $orderData['address'] = $user_address->address;
  245. $orderData['province_id'] = $user_address->province_id;
  246. $orderData['city_id'] = $user_address->city_id;
  247. $orderData['area_id'] = $user_address->area_id;
  248. }
  249. // 处理发票申请
  250. if($invoice_amount > 0) {
  251. if(!empty($invoice) && $invoice['amount'] == $invoice_amount) {
  252. $orderData['invoice_status'] = 1; // 已申请
  253. }else {
  254. $orderData['invoice_status'] = 0; // 未申请
  255. }
  256. }else {
  257. $orderData['invoice_status'] = -1; // 不可开具发票
  258. }
  259. $orderData['status'] = 0;
  260. $orderData['remark'] = $remark;
  261. $orderData['coupons_id'] = $user_coupons ? $user_coupons->id : 0;
  262. $orderData['platform'] = request()->header('platform');
  263. $ext = $activity_discount_infos ? ['activity_discount_infos' => $activity_discount_infos] : []; // 促销活动信息
  264. $orderData['ext'] = json_encode($ext);
  265. $order = new Order();
  266. $order->allowField(true)->save($orderData);
  267. // 将优惠券使用掉
  268. if ($user_coupons) {
  269. $user_coupons->use_order_id = $order->id;
  270. $user_coupons->usetime = time();
  271. $user_coupons->save();
  272. }
  273. // 如果需要支付积分,扣除积分
  274. if ($score_amount) {
  275. // $user 为 Common\Auth 对象
  276. User::score(-$score_amount, $user->id, 'score_pay', $order->id, '', [
  277. 'order_id' => $order->id,
  278. 'order_sn' => $order->order_sn,
  279. ]);
  280. }
  281. // 添加发票数据
  282. if($order->invoice_status == 1) {
  283. \addons\shopro\model\OrderInvoice::create([
  284. 'order_id' => $order->id,
  285. 'user_id' => $order->user_id,
  286. 'amount' => $invoice['amount'],
  287. 'type' => $invoice['type'],
  288. 'header_name' => $invoice['header_name'],
  289. 'tax_no' => $invoice['tax_no'],
  290. 'mobile' => $invoice['mobile'],
  291. ]);
  292. }
  293. // 添加 订单 item
  294. foreach ($new_goods_list as $key => $buyinfo) {
  295. $detail = $buyinfo['detail'];
  296. $current_sku_price = $detail['current_sku_price'];
  297. $orderItem = new OrderItem();
  298. $orderItem->user_id = $user->id;
  299. $orderItem->order_id = $order->id;
  300. $orderItem->goods_id = $buyinfo['goods_id'];
  301. $orderItem->goods_type = $detail['type'];
  302. $orderItem->goods_sku_price_id = $buyinfo['sku_price_id'];
  303. $item_activity_type = (isset($current_sku_price['activity_type']) && $current_sku_price['activity_type']) ? $current_sku_price['activity_type'] : '';
  304. $item_activity_type .= $buyinfo['activity_type'] ? ',' . $buyinfo['activity_type'] : '';
  305. $item_activity_type = trim($item_activity_type, ',');
  306. $orderItem->activity_id = $current_sku_price['activity_id'] ?? 0; // 商品当前的活动类型
  307. $orderItem->activity_type = $item_activity_type ?: null; // 商品当前的活动类型
  308. // 当前商品规格对应的 活动下对应商品规格的 id
  309. $orderItem->item_goods_sku_price_id = isset($current_sku_price['item_goods_sku_price']) ?
  310. $current_sku_price['item_goods_sku_price']['id'] : 0;
  311. $orderItem->goods_sku_text = $current_sku_price['goods_sku_text'];
  312. $orderItem->goods_title = $detail->title;
  313. $orderItem->goods_image = empty($current_sku_price['image']) ? $detail->image : $current_sku_price['image'];
  314. $orderItem->goods_original_price = $detail->original_price;
  315. $orderItem->discount_fee = $buyinfo['discount_fee']; // 平均计算单件商品所享受的折扣
  316. $orderItem->pay_price = $buyinfo['pay_price']; // 平均计算单件商品不算运费,算折扣时候的金额
  317. $orderItem->goods_price = $detail->current_sku_price->price;
  318. $orderItem->goods_num = $buyinfo['goods_num'] ?? 1;
  319. $orderItem->goods_weight = $detail->current_sku_price->weight;
  320. $orderItem->dispatch_status = 0;
  321. $orderItem->dispatch_fee = $buyinfo['dispatch_amount'];
  322. $orderItem->dispatch_type = $buyinfo['dispatch_type'];
  323. $orderItem->dispatch_id = $buyinfo['dispatch_id'] ? $buyinfo['dispatch_id'] : 0;
  324. $orderItem->store_id = $buyinfo['store_id'] ? $buyinfo['store_id'] : 0;
  325. $orderItem->aftersale_status = 0;
  326. $orderItem->comment_status = 0;
  327. $orderItem->refund_status = 0;
  328. $ext = [];
  329. if (isset($buyinfo['dispatch_date'])) {
  330. $ext['dispatch_date'] = $buyinfo['dispatch_date'];
  331. }
  332. if (isset($buyinfo['dispatch_phone'])) {
  333. $ext['dispatch_phone'] = $buyinfo['dispatch_phone'];
  334. }
  335. $orderItem->ext = json_encode($ext);
  336. $orderItem->save();
  337. }
  338. // 订单创建后
  339. $data = [
  340. 'user' => $user,
  341. 'order' => $order,
  342. 'from' => $from,
  343. 'groupon' => $groupon,
  344. 'buy_type' => $buy_type,
  345. 'activity_type' => $activity_type,
  346. 'new_goods_list' => $new_goods_list
  347. ];
  348. \think\Hook::listen('order_create_after', $data);
  349. // 重新获取订单
  350. $order = self::where('id', $order['id'])->find();
  351. return $order;
  352. });
  353. return $order;
  354. }
  355. // 订单列表
  356. public static function getList($params)
  357. {
  358. $user = User::info();
  359. extract($params);
  360. $order = (new self())->where('user_id', $user->id)->with('item');
  361. switch ($type) {
  362. case 'all':
  363. $order = $order;
  364. break;
  365. case 'nopay':
  366. $order = $order->nopay();
  367. break;
  368. case 'nosend':
  369. $order = $order->payed()->nosend();
  370. break;
  371. case 'noget':
  372. $order = $order->payed()->noget();
  373. break;
  374. case 'nocomment':
  375. $order = $order->payed()->nocomment();
  376. break;
  377. case 'aftersale':
  378. $order = $order->payed()->aftersale(); // 个人中心售后单不在走这里,而是直接走的售后单列表
  379. break;
  380. }
  381. $orders = $order->order('id', 'desc')->paginate(10);
  382. // 处理未支付订单 item status_code
  383. $orders = $orders->toArray();
  384. if ($orders['data']) {
  385. $data = $orders['data'];
  386. foreach ($data as $key => $od) {
  387. $data[$key] = self::setOrderItemStatusByOrder($od);
  388. }
  389. $orders['data'] = $data;
  390. }
  391. return $orders;
  392. }
  393. // 订单详情
  394. public static function detail($params)
  395. {
  396. $user = User::info();
  397. extract($params);
  398. $order = (new self())->with('item')->where('user_id', $user->id);
  399. if (isset($order_sn)) {
  400. $order = $order->where('order_sn', $order_sn);
  401. }
  402. if (isset($id)) {
  403. $order = $order->where('id', $id);
  404. }
  405. $order = $order->find();
  406. if (!$order) {
  407. new Exception('订单不存在');
  408. }
  409. // 处理未支付订单 item status_code
  410. $order = self::setOrderItemStatusByOrder($order);
  411. return $order;
  412. }
  413. // 订单商品详情
  414. public static function itemDetail($params)
  415. {
  416. $user = User::info();
  417. extract($params);
  418. $type = $type ?? 'default';
  419. $order = (new self())->with(['item' => function ($query) use ($order_item_id) {
  420. $query->where('id', $order_item_id);
  421. }])->where('user_id', $user->id);
  422. if (isset($order_sn)) {
  423. $order = $order->where('order_sn', $order_sn);
  424. }
  425. if (isset($id)) {
  426. $order = $order->where('id', $id);
  427. }
  428. $order = $order->find();
  429. if (!$order || !$order->item) {
  430. new Exception('订单不存在');
  431. }
  432. // 处理未支付订单 item status_code
  433. $order = self::setOrderItemStatusByOrder($order);
  434. $item = $order['item'][0];
  435. unset($order['item']); // 移除订单表中的 item
  436. $item['order'] = $order; // 订单信息
  437. if ($type == 'dispatch') {
  438. $store = null;
  439. $verifies = [];
  440. if (in_array($item['dispatch_type'], ['selfetch', 'store']) && $item['store_id']) {
  441. // 自提,商家配送
  442. if (
  443. $item['dispatch_type'] == 'selfetch'
  444. && $item['dispatch_status'] == OrderItem::DISPATCH_STATUS_SENDED
  445. && $item['refund_status'] <= 0
  446. ) {
  447. // 关联核销码
  448. $verifies = Verify::where('order_id', $item['order_id'])
  449. ->where('order_item_id', $item['id'])->select();
  450. }
  451. $store = Store::where('id', $item['store_id'])->find();
  452. }
  453. $item['store'] = $store; // 门店信息
  454. $item['verify'] = $verifies; // 核销券列表
  455. // $item['autosend']
  456. // 订单详情,自动发货内容 待补充
  457. }
  458. return $item;
  459. }
  460. // 取消订单
  461. public static function operCancel($params)
  462. {
  463. $user = User::info();
  464. extract($params);
  465. $order = self::with('item')->where('user_id', $user->id)->where('id', $id)->nopay()->find();
  466. if (!$order) {
  467. new Exception('订单不存在或已取消');
  468. }
  469. // 订单取消
  470. $order = (new self)->doCancel($order, $user);
  471. return $order;
  472. }
  473. public function doCancel($order, $user, $type = 'user')
  474. {
  475. $order = Db::transaction(function () use ($order, $user, $type) {
  476. $data = ['order' => $order];
  477. \think\Hook::listen('order_cancel_before', $data);
  478. $order->status = Order::STATUS_CANCEL; // 取消订单
  479. $order->ext = json_encode($order->setExt($order, ['cancel_time' => time()])); // 取消时间
  480. $order->save();
  481. OrderAction::operAdd($order, null, $user, $type, ($type == 'user' ? '用户' : '管理员') . '取消订单');
  482. // 订单取消,退回库存,退回优惠券积分,等
  483. $data = ['order' => $order];
  484. \think\Hook::listen('order_cancel_after', $data);
  485. return $order;
  486. });
  487. return $order;
  488. }
  489. private static function getItem($order, $order_item_id)
  490. {
  491. if (!$order) {
  492. new Exception('当前订单不存在');
  493. }
  494. $order_item = null;
  495. foreach ($order->item as $item) {
  496. if ($item->id == $order_item_id) {
  497. $order_item = $item;
  498. break;
  499. }
  500. }
  501. if (!$order_item) {
  502. new Exception('订单商品不需要操作');
  503. }
  504. return $order_item;
  505. }
  506. // 确认收货订单
  507. public static function operConfirm($params)
  508. {
  509. $user = User::info();
  510. extract($params);
  511. $order = Db::transaction(function () use ($id, $order_item_id, $user) {
  512. // 加锁查询订单,exist 里面的子查询不会加锁,但是该语句需要等待锁释放才能正常查询,所以下面的获取 item 已经是更改过状态之后的了
  513. $order = self::noget()->where('user_id', $user->id)->where('id', $id)->lock(true)->find();
  514. // 获取要操作的 订单 item
  515. $item = self::getItem($order, $order_item_id);
  516. if ($item->dispatch_status == OrderItem::DISPATCH_STATUS_NOSEND) {
  517. new Exception('当前订单未发货');
  518. }
  519. if ($item->dispatch_status == OrderItem::DISPATCH_STATUS_GETED) {
  520. new Exception('当前订单已收货');
  521. }
  522. (new self())->getedItem($order, $item, ['oper_type' => 'user']);
  523. });
  524. return $order;
  525. }
  526. // 删除订单
  527. public static function operDelete($params)
  528. {
  529. $user = User::info();
  530. extract($params);
  531. $order = self::canDelete()->where('user_id', $user->id)->where('id', $id)->find();
  532. if (!$order) {
  533. new Exception('订单不存在或不可删除');
  534. }
  535. $order = Db::transaction(function () use ($order, $user) {
  536. $order->delete(); // 删除订单
  537. OrderAction::operAdd($order, null, $user, 'user', '用户删除订单');
  538. return $order;
  539. });
  540. return $order;
  541. }
  542. // 评价
  543. public static function operComment($params)
  544. {
  545. $user = User::info();
  546. $order = Db::transaction(function () use ($user, $params) {
  547. extract($params);
  548. // 加锁读取订单,直到订单评价状态改变
  549. $order = self::with('item')->payed()->where('user_id', $user->id)->where('id', $id)->lock(true)->find();
  550. // 获取要操作的 订单 item
  551. $item = self::getItem($order, $order_item_id);
  552. if ($item->comment_status == 1) {
  553. new Exception('当前商品已评价');
  554. }
  555. // 订单评价前
  556. $data = ['order' => $order, 'item' => $item];
  557. \think\Hook::listen('order_comment_before', $data); // 重新拿到更新过的订单
  558. $images = (isset($images) && $images) ? $images : null;
  559. // 获取用户评论配置
  560. $config = \addons\shopro\model\Config::where('name', 'order')->value('value');
  561. $config = json_decode($config, true);
  562. GoodsComment::create([
  563. 'goods_id' => $item->goods_id,
  564. 'order_id' => $order->id,
  565. 'order_item_id' => $item->id,
  566. 'user_id' => $user->id,
  567. 'level' => $level,
  568. 'content' => $content,
  569. 'images' => $images ? implode(',', $images) : $images,
  570. 'status' => !empty($config['user_reply']) ? 'show' : 'hidden'
  571. ]);
  572. $item->comment_status = OrderItem::COMMENT_STATUS_OK; // 评价成功
  573. $item->save();
  574. OrderAction::operAdd($order, $item, $user, 'user', '用户评价成功');
  575. // 订单评价后
  576. $data = ['order' => $order, 'item' => $item];
  577. \think\Hook::listen('order_comment_after', $data);
  578. return $order;
  579. });
  580. return $order;
  581. }
  582. // 个人中心订单数量
  583. public static function statusNum()
  584. {
  585. $user = User::info();
  586. $status_num['nopay'] = self::where('user_id', $user->id)->nopay()->count();
  587. $status_num['nosend'] = self::where('user_id', $user->id)->payed()->nosend()->count();
  588. $status_num['noget'] = self::where('user_id', $user->id)->payed()->noget()->count();
  589. $status_num['nocomment'] = self::where('user_id', $user->id)->payed()->nocomment()->count();
  590. // $status_num['aftersale'] = self::where('user_id', $user->id)->payed()->aftersale()->count();
  591. $status_num['aftersale'] = \addons\shopro\model\OrderAftersale::where('user_id', $user->id)->count();
  592. return $status_num;
  593. }
  594. public function paymentProcess($order, $notify)
  595. {
  596. $order->status = Order::STATUS_PAYED;
  597. $order->paytime = time();
  598. $order->transaction_id = $notify['transaction_id'];
  599. $order->payment_json = $notify['payment_json'];
  600. $order->pay_type = $notify['pay_type'];
  601. $order->pay_fee = $notify['pay_fee'];
  602. $order->save();
  603. $user = User::where('id', $order->user_id)->find();
  604. OrderAction::operAdd($order, null, $user, 'user', '用户支付成功');
  605. // 支付成功后续使用异步队列处理
  606. \think\Queue::push('\addons\shopro\job\OrderPayed@payed', ['order' => $order, 'user' => $user], 'shopro-high');
  607. return $order;
  608. }
  609. // 开始退款
  610. public static function startRefund($order, $item, $refund_money, $user = null, $remark = '')
  611. {
  612. // 订单退款前
  613. $data = ['order' => $order, 'item' => $item];
  614. \think\Hook::listen('order_refund_before', $data);
  615. $item->refund_status = \app\admin\model\shopro\order\OrderItem::REFUND_STATUS_OK; // 同意退款
  616. $item->refund_fee = $refund_money;
  617. $item->save();
  618. \addons\shopro\model\OrderAction::operAdd($order, $item, $user, ($user ? 'admin' : 'system'), $remark . ',退款金额:' . $refund_money);
  619. \app\admin\model\shopro\order\Order::refund($order, $item, $refund_money, $remark);
  620. // 订单退款后
  621. $data = ['order' => $order, 'item' => $item];
  622. \think\Hook::listen('order_refund_after', $data);
  623. }
  624. // 退款
  625. public static function refund($order, $item, $refund_money, $remark = '')
  626. {
  627. // 生成退款单
  628. $refundLog = new RefundLog();
  629. $refundLog->order_sn = $order->order_sn;
  630. $refundLog->refund_sn = RefundLog::getSn($order->user_id);
  631. $refundLog->order_item_id = $item->id;
  632. $refundLog->pay_fee = $order->pay_fee;
  633. $refundLog->refund_fee = $refund_money;
  634. $refundLog->pay_type = $order->pay_type;
  635. $refundLog->save();
  636. if ($order->pay_type == 'wechat' || $order->pay_type == 'alipay') {
  637. // 微信|支付宝退款
  638. // 退款数据
  639. $order_data = [
  640. 'out_trade_no' => $order->order_sn
  641. ];
  642. if ($order->pay_type == 'wechat') {
  643. $total_fee = $order->pay_fee * 100;
  644. $refund_fee = $refund_money * 100;
  645. $order_data = array_merge($order_data, [
  646. 'out_refund_no' => $refundLog->refund_sn,
  647. 'total_fee' => $total_fee,
  648. 'refund_fee' => $refund_fee,
  649. 'refund_desc' => $remark,
  650. ]);
  651. } else {
  652. $order_data = array_merge($order_data, [
  653. 'out_request_no' => $refundLog->refund_sn,
  654. 'refund_amount' => $refund_money,
  655. ]);
  656. }
  657. $notify_url = request()->domain() . '/addons/shopro/pay/notifyr/payment/' . $order->pay_type . '/platform/' . $order->platform;
  658. $pay = new \addons\shopro\library\PayService($order->pay_type, $order->platform, $notify_url);
  659. $result = $pay->refund($order_data);
  660. \think\Log::write('refund-result' . json_encode($result));
  661. if ($order->pay_type == 'wechat') {
  662. // 微信通知回调 pay->notifyr
  663. if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
  664. return true;
  665. } else {
  666. throw new \Exception($result['return_msg']);
  667. }
  668. } else {
  669. // 支付宝通知回调 pay->notifyx
  670. if ($result['code'] == "10000") {
  671. return true;
  672. } else {
  673. throw new \Exception($result['msg']);
  674. }
  675. }
  676. // { // 微信返回结果
  677. // "return_code":"SUCCESS",
  678. // "return_msg":"OK",
  679. // "appid":"wx39cd0799d4567dd0",
  680. // "mch_id":"1481069012",
  681. // "nonce_str":"huW9eIAb5BDPn0Ma",
  682. // "sign":"250316740B263FE53F5DFF50AF5A8FA1",
  683. // "result_code":"SUCCESS",
  684. // "transaction_id":"4200000497202004072822298902",
  685. // "out_trade_no":"202010300857029180027000",
  686. // "out_refund_no":"1586241595",
  687. // "refund_id":"50300603862020040700031444448",
  688. // "refund_channel":[],
  689. // "refund_fee":"1",
  690. // "coupon_refund_fee":"0",
  691. // "total_fee":"1",
  692. // "cash_fee":"1",
  693. // "coupon_refund_count":"0",
  694. // "cash_refund_fee":"1
  695. // }
  696. // { // 支付宝返回结果
  697. // "code": "10000",
  698. // "msg": "Success",
  699. // "buyer_logon_id": "157***@163.com",
  700. // "buyer_user_id": "2088902485164146",
  701. // "fund_change": "Y",
  702. // "gmt_refund_pay": "2020-08-15 16:11:45",
  703. // "out_trade_no": "202002460317545607015300",
  704. // "refund_fee": "0.01",
  705. // "send_back_fee": "0.00",
  706. // "trade_no": "2020081522001464141438570535"
  707. // }
  708. } else if ($order->pay_type == 'wallet') {
  709. // 余额退款
  710. if ($refund_money != 0) {
  711. \addons\shopro\model\User::money($refund_money, $order->user_id, 'wallet_refund', $order->id, '', [
  712. 'order_id' => $order->id,
  713. 'order_sn' => $order->order_sn,
  714. 'item_id' => $item->id,
  715. ]);
  716. }
  717. self::refundFinish($order, $item, $refundLog);
  718. return true;
  719. } else if ($order->pay_type == 'score') {
  720. // 积分退款,暂不支持积分退款
  721. }
  722. }
  723. public static function refundFinish($order, $item, $refundLog)
  724. {
  725. // 退款完成
  726. $refundLog->status = 1;
  727. $refundLog->save();
  728. // 退款完成
  729. $item->refund_status = \app\admin\model\shopro\order\OrderItem::REFUND_STATUS_FINISH; // 退款完成
  730. $item->save();
  731. \addons\shopro\model\OrderAction::operAdd($order, $item, null, 'admin', '退款成功');
  732. }
  733. public function setExt($order, $field, $origin = [])
  734. {
  735. $newExt = array_merge($origin, $field);
  736. $orderExt = $order['ext_arr'];
  737. return array_merge($orderExt, $newExt);
  738. }
  739. }