OrderService.php 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644
  1. <?php
  2. namespace app\common\Service;
  3. use app\common\Enum\GoodsEnum;
  4. use app\common\model\Order;
  5. use app\common\model\OrderGoods;
  6. use app\common\model\OrderAction;
  7. use app\common\model\Address;
  8. use app\common\model\UserCoupon;
  9. use app\common\model\Goods;
  10. use app\common\model\Sku;
  11. use app\common\model\Freight;
  12. use app\common\model\Coupon;
  13. use app\common\model\Carts;
  14. use think\Db;
  15. use think\Exception;
  16. use app\common\model\OrderAddress;
  17. use app\common\Enum\OrderEnum;
  18. use app\common\exception\BusinessException;
  19. use app\common\Service\Order\OrderActionService;
  20. use app\common\Enum\OrderActionEnum;
  21. /**
  22. * 订单服务类
  23. * 封装订单创建相关逻辑
  24. */
  25. class OrderService
  26. {
  27. /**
  28. * 根据商品列表计算订单明细
  29. * @param array $orderInfo 订单基础信息
  30. * @param array $goods_list 商品列表
  31. * @param int $user_id 用户ID
  32. * @param int $area_id 地区ID
  33. * @param int $user_coupon_id 优惠券ID
  34. * @return array
  35. * @throws Exception
  36. */
  37. protected static function computeGoods(&$orderInfo, $goodsList, $userId, $areaId, $userCouponId = 0)
  38. {
  39. $config = get_addon_config('shop');
  40. $orderInfo['amount'] = 0;
  41. $orderInfo['goods_price'] = 0;
  42. $orderInfo['goods_num'] = 0;
  43. $orderInfo['express_fee'] = 0;
  44. $orderInfo['discount_fee'] = 0;
  45. $orderInfo['coupon_discount_fee'] = 0;
  46. $orderInfo['order_amount'] = 0;
  47. $orderItem = [];
  48. $shippingTemp = [];
  49. $userCoupon = null;
  50. $processedGoodsList = []; // 处理后的商品列表,避免与参数$goodsList冲突
  51. // 校验优惠券
  52. if ($userCouponId) {
  53. $userCouponModel = new UserCoupon();
  54. $userCoupon = $userCouponModel->checkUserOrUse($userCouponId, $userId);
  55. $orderInfo['user_coupon_id'] = $userCouponId;
  56. }
  57. // 提取所有商品ID和SKU ID,进行批量查询
  58. $goodsIds = array_column($goodsList, 'goods_id');
  59. $skuIds = [];
  60. foreach ($goodsList as $index => $item) {
  61. if (isset($item['goods_sku_id']) && $item['goods_sku_id'] > 0) {
  62. $skuIds[] = $item['goods_sku_id'];
  63. }
  64. }
  65. // 批量查询商品信息
  66. $goodsData = [];
  67. if (!empty($goodsIds)) {
  68. $goodsCollection = Goods::with(['brand'])
  69. ->where('id', 'in', $goodsIds)
  70. ->where('status', GoodsEnum::STATUS_ON_SALE)
  71. ->select();
  72. foreach ($goodsCollection as $goods) {
  73. $goodsData[$goods->id] = $goods;
  74. }
  75. }
  76. // 批量查询SKU信息
  77. $skuData = [];
  78. $multiSpecSkuIds = []; // 用于存储多规格商品的SKU ID
  79. if (!empty($skuIds)) {
  80. $skuCollection = Sku::where('id', 'in', $skuIds)->select();
  81. foreach ($skuCollection as $sku) {
  82. $skuData[$sku->id] = $sku;
  83. // 过滤出有规格值的SKU ID(spec_value_ids不为空)
  84. if (!empty($sku->spec_value_ids)) {
  85. $multiSpecSkuIds[] = $sku->id;
  86. }
  87. }
  88. }
  89. // 批量查询规格属性字符串(只查询多规格商品的SKU)
  90. $skuAttrData = [];
  91. if (!empty($multiSpecSkuIds)) {
  92. $skuAttrData = \app\common\Service\SkuSpec::getSkuAttrs($multiSpecSkuIds);
  93. }
  94. // 验证并构建商品数据
  95. foreach ($goodsList as $item) {
  96. $goods_id = $item['goods_id'];
  97. $goods_sku_id = $item['goods_sku_id']; // 现在所有商品都应该有SKU ID
  98. $nums = $item['nums'];
  99. if ($nums <= 0) {
  100. throw new Exception("商品数量必须大于0");
  101. }
  102. // 检查商品是否存在
  103. if (!isset($goodsData[$goods_id])) {
  104. throw new Exception("商品已下架");
  105. }
  106. $goods = $goodsData[$goods_id];
  107. // 所有商品都必须有SKU(包括单规格商品的默认SKU)
  108. if (empty($skuData) || !isset($skuData[$goods_sku_id])) {
  109. throw new Exception("商品规格不存在");
  110. }
  111. $sku = $skuData[$goods_sku_id];
  112. // 验证SKU是否属于该商品
  113. if ($sku->goods_id != $goods_id) {
  114. throw new Exception("商品规格不匹配");
  115. }
  116. // 获取规格属性字符串(单规格商品的sku_attr为空)
  117. $sku_attr = $skuAttrData[$goods_sku_id] ?? '';
  118. // 构建商品对象,模拟购物车数据结构
  119. $goodsItem = (object)[
  120. 'goods_id' => $goods_id,
  121. 'goods_sku_id' => $goods_sku_id,
  122. 'nums' => $nums,
  123. 'goods' => $goods,
  124. 'sku' => $sku,
  125. 'sku_attr' => $sku_attr
  126. ];
  127. $processedGoodsList[] = $goodsItem;
  128. }
  129. // 计算商品价格和运费(统一使用SKU进行计算)
  130. foreach ($processedGoodsList as $item) {
  131. $goodsItemData = [];
  132. if (empty($item->goods) || empty($item->sku)) {
  133. throw new Exception("商品已下架");
  134. }
  135. // 库存验证(统一使用SKU库存)
  136. if ($item->sku->stocks < $item->nums) {
  137. throw new Exception("商品库存不足,请重新修改数量");
  138. }
  139. // 统一使用SKU数据进行计算
  140. $goodsItemData['image'] = !empty($item->sku->image) ? $item->sku->image : $item->goods->image;
  141. $goodsItemData['price'] = $item->sku->price;
  142. // $goodsItemData['lineation_price'] = $item->sku->lineation_price;
  143. $goodsItemData['sku_sn'] = $item->sku->sku_sn;
  144. $amount = bcmul($item->sku->price, $item->nums, 2);
  145. $goodsItemData['amount'] = $amount;
  146. // 订单应付金额
  147. $orderInfo['amount'] = bcadd($orderInfo['amount'], $amount, 2);
  148. // 商品总价
  149. $orderInfo['goods_price'] = bcadd($orderInfo['goods_price'], $amount, 2);
  150. // 商品数量累计
  151. $orderInfo['goods_num'] += $item->nums;
  152. $freight_id = $item->goods->express_template_id;
  153. // 计算邮费【合并运费模板】
  154. if (!isset($shippingTemp[$freight_id])) {
  155. $shippingTemp[$freight_id] = [
  156. 'nums' => $item->nums,
  157. 'weight' => $item->sku->weight,
  158. 'amount' => $amount
  159. ];
  160. } else {
  161. $shippingTemp[$freight_id] = [
  162. 'nums' => bcadd($shippingTemp[$freight_id]['nums'], $item->nums, 2),
  163. 'weight' => bcadd($shippingTemp[$freight_id]['weight'], $item->sku->weight, 2),
  164. 'amount' => bcadd($shippingTemp[$freight_id]['amount'], $amount, 2)
  165. ];
  166. }
  167. // 创建订单商品数据 (基于正确的表结构)
  168. $orderItemData = [
  169. 'user_id' => $userId,
  170. 'order_sn' => '', // 将在订单创建后补充
  171. 'goods_sn' => $item->goods->goods_sn ?: '', // 商品货号
  172. 'sku_sn' => $item->sku->sku_sn ?: '', // SKU编号
  173. 'goods_type' => $item->goods->type ?: 0, // 商品类型
  174. 'goods_id' => $item->goods->id,
  175. 'goods_sku_attr' => $item->sku->sku_attr,
  176. 'goods_spec_value_ids' => $item->sku->spec_value_ids,
  177. 'goods_sku_id' => $item->sku->id,
  178. 'goods_title' => $item->goods->title,
  179. 'goods_market_price' => $item->sku->market_price ?: 0, // 市场价
  180. 'goods_original_price' => $item->sku->price, // 商城售价
  181. 'goods_price' => $amount, // 实付金额
  182. 'goods_image' => $goodsItemData['image'],
  183. 'goods_weight' => $item->sku->weight ?: 0,
  184. 'nums' => $item->nums,
  185. 'sale_status' => 0, // 销售状态:0=待申请
  186. 'comment_status' => 0, // 评论状态:0=未评论
  187. 'status' => 1, // 状态
  188. // 添加分类和品牌信息用于优惠券计算 (临时字段,不会保存到数据库)
  189. // 'category_id' => $item->goods->category_ids,
  190. 'brand_id' => $item->goods->brand_id,
  191. 'supplier_id' => $item->goods->supplier_id,
  192. ];
  193. $orderItem[] = $orderItemData;
  194. }
  195. // 按运费模板计算
  196. foreach ($shippingTemp as $key => $item) {
  197. $shippingfee = Freight::calculate($key, $areaId, $item['nums'], $item['weight'], $item['amount']);
  198. $orderInfo['express_fee'] = bcadd($orderInfo['express_fee'], $shippingfee, 2);
  199. }
  200. // 订单金额(商品价格+运费)
  201. $orderInfo['order_amount'] = bcadd($orderInfo['goods_price'], $orderInfo['express_fee'], 2);
  202. // 订单应付金额(暂时等于订单金额,后续会减去优惠)
  203. $orderInfo['amount'] = $orderInfo['order_amount'];
  204. // if (!empty($userCoupon)) {
  205. // // 校验优惠券
  206. // $goods_ids = array_column($orderItem, 'goods_id');
  207. // $category_ids = array_column($orderItem, 'category_id');
  208. // $brand_ids = array_column($orderItem, 'brand_id');
  209. // $couponModel = new Coupon();
  210. // $coupon = $couponModel->getCoupon($userCoupon['coupon_id'])
  211. // ->checkCoupon()
  212. // ->checkOpen()
  213. // ->checkUseTime($userCoupon['createtime'])
  214. // ->checkConditionGoods($goods_ids, $userId, $category_ids, $brand_ids);
  215. // // 计算折扣金额,判断是使用不含运费,还是含运费的金额
  216. // $amount = !isset($config['shippingfeecoupon']) || $config['shippingfeecoupon'] == 0 ? $orderInfo['goods_price'] : $orderInfo['order_amount'];
  217. // list($new_money, $coupon_money) = $coupon->doBuy($amount);
  218. // // 判断优惠金额是否超出总价,超出则直接设定优惠金额为总价
  219. // $orderInfo['coupon_discount_fee'] = $coupon_money > $amount ? $amount : $coupon_money;
  220. // $orderInfo['discount_fee'] = $orderInfo['coupon_discount_fee'];
  221. // }
  222. // 计算最终应付金额【订单金额减去折扣】
  223. $orderInfo['amount'] = max(0, bcsub($orderInfo['order_amount'], $orderInfo['discount_fee'], 2));
  224. $orderInfo['pay_amount'] = $orderInfo['amount']; // 实际付款金额等于应付金额
  225. $orderInfo['discount_fee'] = bcadd($orderInfo['discount_fee'], 0, 2);
  226. return [
  227. $orderItem,
  228. $processedGoodsList,
  229. $userCoupon
  230. ];
  231. }
  232. /**
  233. * 统一的创建订单方法
  234. * @param int $address_id 地址ID
  235. * @param int $user_id 用户ID
  236. * @param array $goods_list 标准化的商品列表
  237. * @param int $user_coupon_id 优惠券ID
  238. * @param string $memo 备注
  239. * @param array $cart_ids 购物车ID数组(如果是购物车模式需要清空)
  240. * @return Order
  241. * @throws Exception
  242. */
  243. public static function createOrder($addressId, $userId, $goodsList, $userCouponId = 0, $remark = '')
  244. {
  245. $address = Address::get($addressId);
  246. if (!$address || $address['user_id'] != $userId) {
  247. throw new Exception("地址未找到");
  248. }
  249. if (empty($goodsList)) {
  250. throw new Exception("商品列表不能为空");
  251. }
  252. $config = get_addon_config('shop');
  253. $orderSn = date("Ymdhis") . sprintf("%08d", $userId) . mt_rand(1000, 9999);
  254. // 订单主表信息 (基于新表结构)
  255. $orderInfo = [
  256. 'type' => 1, // 1:普通订单
  257. 'source' => 'H5', // 订单来源 (暂定H5,可根据实际情况调整)
  258. 'order_sn' => $orderSn,
  259. 'user_id' => $userId,
  260. 'amount' => 0, // 订单应付金额
  261. 'goods_price' => 0, // 商品总费用
  262. 'goods_num' => 0, // 商品数量
  263. 'discount_fee' => 0, // 优惠金额
  264. 'coupon_discount_fee' => 0, // 优惠券金额
  265. 'promo_discount_fee' => 0, // 营销金额
  266. 'order_amount' => 0, // 订单金额 + 运费
  267. 'express_fee' => 0, // 配送费用
  268. 'expire_time' => time() + $config['order_timeout'], // 过期时间
  269. 'order_status' => OrderEnum::STATUS_CREATE, // 待付款
  270. 'invoice_status' => 0, // 发票开具状态
  271. 'remark' => $remark, // 用户备注
  272. 'user_coupon_id' => $userCouponId ?: null,
  273. 'ip' => request()->ip(), // IP地址
  274. 'status' => 'normal'
  275. ];
  276. $orderInfo['platform'] = request()->header('platform', 'H5');
  277. // 通过商品列表计算订单明细
  278. list($orderItem, $calculatedGoodsList, $userCoupon) = self::computeGoods($orderInfo, $goodsList, $userId, $address->area_id, $userCouponId);
  279. $orderInfo['pay_amount'] = bcsub($orderInfo['order_amount'], $orderInfo['discount_fee'], 2);
  280. $orderInfo['pay_original_amount'] = $orderInfo['pay_amount'];
  281. $orderInfo['pay_remain_amount'] = $orderInfo['pay_amount'];
  282. // 创建订单
  283. $order = self::createOrderWithTransaction($orderInfo, $orderItem, $calculatedGoodsList, $userCoupon, $address);
  284. return $order;
  285. }
  286. /**
  287. * 在事务中创建订单
  288. * @param array $orderInfo 订单信息
  289. * @param array $orderItem 订单商品列表
  290. * @param array $goodsList 商品列表
  291. * @param object $userCoupon 优惠券
  292. * @param object $address 地址信息
  293. * @return Order
  294. * @throws Exception
  295. */
  296. protected static function createOrderWithTransaction($orderInfo, $orderItem, $goodsList, $userCoupon, $address)
  297. {
  298. $order = null;
  299. Db::startTrans();
  300. try {
  301. // 创建订单
  302. $order = Order::create($orderInfo, true);
  303. // 为每个订单商品添加订单ID和订单号
  304. foreach ($orderItem as &$item) {
  305. $item['order_id'] = $order->id;
  306. $item['order_sn'] = $order->order_sn;
  307. // 移除临时字段
  308. unset($item['category_id'], $item['brand_id']);
  309. }
  310. unset($item);
  311. // 创建订单地址信息
  312. $orderAddressData = [
  313. 'order_id' => $order->id,
  314. 'user_id' => $orderInfo['user_id'],
  315. 'consignee' => $address->receiver,
  316. 'mobile' => $address->mobile,
  317. 'province_name' => $address->province->name ?? '',
  318. 'city_name' => $address->city->name ?? '',
  319. 'district_name' => $address->area->name ?? '',
  320. 'address' => $address->address,
  321. 'province_id' => $address->province_id,
  322. 'city_id' => $address->city_id,
  323. 'district_id' => $address->area_id,
  324. ];
  325. OrderAddress::create($orderAddressData);
  326. // 减库存
  327. foreach ($goodsList as $index => $item) {
  328. if ($item->sku) {
  329. $item->sku->setDec('stocks', $item->nums);
  330. }
  331. $item->goods->setDec("stocks", $item->nums);
  332. }
  333. // 计算单个商品折扣后的价格 (基于新字段名)
  334. $saleamount = bcsub($order['amount'], $order['express_fee'], 2);
  335. $saleratio = $order['goods_price'] > 0 ? bcdiv($saleamount, $order['goods_price'], 10) : 1;
  336. $saleremains = $saleamount;
  337. foreach ($orderItem as $index => &$item) {
  338. if (!isset($orderItem[$index + 1])) {
  339. $saleprice = $saleremains;
  340. } else {
  341. $saleprice = $order['discount_fee'] == 0 ? bcmul($item['goods_original_price'], $item['nums'], 2) : bcmul(bcmul($item['goods_original_price'], $item['nums'], 2), $saleratio, 2);
  342. }
  343. $saleremains = bcsub($saleremains, $saleprice, 2);
  344. $item['goods_price'] = $saleprice;
  345. }
  346. unset($item);
  347. // 批量创建订单商品数据
  348. if (!empty($orderItem)) {
  349. (new OrderGoods())->saveAll($orderItem);
  350. }
  351. // 修改地址使用次数
  352. if ($address) {
  353. $address->setInc('used_nums');
  354. }
  355. // 优惠券已使用
  356. if (!empty($userCoupon)) {
  357. $userCoupon->save(['is_used' => 2]);
  358. }
  359. // 提交事务
  360. Db::commit();
  361. } catch (Exception $e) {
  362. Db::rollback();
  363. throw new Exception($e->getMessage());
  364. }
  365. // 记录操作
  366. OrderActionService::recordUserAction(
  367. $orderInfo['order_sn'],
  368. OrderActionEnum::ACTION_CREATE,
  369. $orderInfo['user_id'],
  370. '创建订单',
  371. $orderInfo['user_id']
  372. );
  373. // 订单应付金额为0时直接结算
  374. if ($order['amount'] == 0) {
  375. // Order::settle($order->order_sn, 0);
  376. // $order = Order::get($order->id);
  377. return $order;
  378. }
  379. return $order;
  380. }
  381. /**
  382. * 验证商品规格参数
  383. * @param array $goods_list 商品列表
  384. * @throws Exception
  385. */
  386. public static function validateGoodsList($goods_list)
  387. {
  388. if (empty($goods_list) || !is_array($goods_list)) {
  389. throw new Exception("商品列表不能为空");
  390. }
  391. foreach ($goods_list as $item) {
  392. if (!isset($item['goods_id']) || !is_numeric($item['goods_id']) || $item['goods_id'] <= 0) {
  393. throw new Exception("商品ID无效");
  394. }
  395. if (!isset($item['nums']) || !is_numeric($item['nums']) || $item['nums'] <= 0) {
  396. throw new Exception("商品数量必须大于0");
  397. }
  398. if (isset($item['goods_sku_id']) && !is_numeric($item['goods_sku_id'])) {
  399. throw new Exception("商品规格ID无效");
  400. }
  401. }
  402. }
  403. /**
  404. * 统一的订单计算方法(用于预览订单)
  405. * @param array $goods_list 标准化的商品列表
  406. * @param int $user_id 用户ID
  407. * @param int $area_id 地区ID
  408. * @param int $user_coupon_id 优惠券ID
  409. * @return array
  410. * @throws Exception
  411. */
  412. public static function calculateOrder($goodsList, $userId, $areaId = 0, $userCouponId = 0)
  413. {
  414. if (empty($goodsList)) {
  415. throw new Exception("商品列表不能为空");
  416. }
  417. // 验证商品列表格式
  418. self::validateGoodsList($goodsList);
  419. // 订单基础信息(用于计算,不包含订单号)
  420. $orderInfo = [
  421. 'amount' => 0, // 应付金额
  422. 'goods_price' => 0, // 商品金额 (不含运费)
  423. 'goods_num' => 0, // 商品数量
  424. 'discount_fee' => 0, // 总优惠金额
  425. 'coupon_discount_fee' => 0, // 优惠券金额
  426. 'promo_discount_fee' => 0, // 营销金额
  427. 'order_amount' => 0, // 总金额 (含运费)
  428. 'express_fee' => 0, // 运费
  429. ];
  430. // 计算商品明细
  431. list($orderItem, $calculatedGoodsList, $userCoupon) = self::computeGoods($orderInfo, $goodsList, $userId, $areaId, $userCouponId);
  432. return [
  433. 'orderItem' => $orderItem,
  434. 'goodsList' => $calculatedGoodsList,
  435. 'orderInfo' => $orderInfo,
  436. 'userCoupon' => $userCoupon
  437. ];
  438. }
  439. /**
  440. * 订单列表
  441. *
  442. * @param $param
  443. * @return \think\Paginator
  444. */
  445. public static function getOrderList($userId = 0, $param =[],$status = [],$supplierId = 0)
  446. {
  447. $pageSize = 10;
  448. if (!empty($param['pageSize'])) {
  449. $pageSize = $param['pageSize'];
  450. }
  451. return Order::with(['orderGoods'])
  452. ->where(function ($query) use ($param,$userId,$status) {
  453. if (!empty($userId)) {
  454. $query->where('user_id', $userId);
  455. }
  456. if (!empty($status)) {
  457. $query->whereIn('order_status', $status );
  458. }
  459. if (isset($param['keywords']) && $param['keywords'] != '') {
  460. $query->where('order_sn', 'in', function ($query) use ($param) {
  461. return $query->name('shop_order_goods')->where('order_sn|goods_title', 'like', '%' . $param['q'] . '%')->field('order_sn');
  462. });
  463. }
  464. if (!empty($supplierId)) {
  465. $query->where('order_sn', 'in', function ($query) use ($supplierId) {
  466. return $query->name('shop_order_goods')->where('supplier_id', $supplierId)->field('order_sn');
  467. });
  468. }
  469. })
  470. ->order('createtime desc')
  471. ->paginate($pageSize, false, ['query' => request()->get()]);
  472. }
  473. /**
  474. *
  475. * @ 订单信息
  476. * @param $orderId
  477. * @param $userId
  478. * @return array|false|\PDOStatement|string|Model
  479. */
  480. public static function getDetail($orderId, $userId)
  481. {
  482. return Order::with(['orderGoods'])
  483. ->where('id', $orderId)
  484. ->where('user_id', $userId)
  485. ->find();
  486. }
  487. public static function getDetailByOrderSn($orderSn)
  488. {
  489. return Order::with(['orderGoods'])
  490. ->where('order_sn', $orderSn)
  491. ->find();
  492. }
  493. // 查询地址信息
  494. public static function getAddressInfo($orderId)
  495. {
  496. return OrderAddress::where('order_id', $orderId)->find();
  497. }
  498. /**
  499. * 判断订单是否失效
  500. * @param $order_sn
  501. * @return bool
  502. */
  503. public static function isExpired($orderSn)
  504. {
  505. $orderInfo = self::getByOrderSn($orderSn);
  506. //订单过期
  507. if (!$orderInfo['orderstate'] && !$orderInfo['paystate'] && time() > $orderInfo['expiretime']) {
  508. // 启动事务
  509. Db::startTrans();
  510. try {
  511. $orderInfo->save(['orderstate' => 2]);
  512. //库存恢复
  513. OrderGoods::setGoodsStocksInc($orderInfo->order_sn);
  514. //恢复优惠券
  515. UserCoupon::resetUserCoupon($orderInfo->user_coupon_id, $orderInfo->order_sn);
  516. // 提交事务
  517. Db::commit();
  518. } catch (\Exception $e) {
  519. // 回滚事务
  520. Db::rollback();
  521. }
  522. return true;
  523. }
  524. return false;
  525. }
  526. public static function getByOrderSn($orderSn)
  527. {
  528. return Order::where('order_sn', $orderSn)->find();
  529. }
  530. public static function getByOrderId($orderId)
  531. {
  532. return Order::where('id', $orderId)->find();
  533. }
  534. // 获取状态订单统计
  535. public static function getOrderStatusCount($userId = 0)
  536. {
  537. $info = [];
  538. $info['unpay'] = Order::where('user_id', $userId)->where('order_status',OrderEnum::STATUS_CREATE)->count();
  539. $info['unsend'] = Order::where('user_id', $userId)->where('order_status',OrderEnum::STATUS_PAY)->count();
  540. $info['unrec'] = Order::where('user_id', $userId)->where('order_status',OrderEnum::STATUS_SHIP)->count();
  541. $info['uneva'] = Order::where('user_id', $userId)->where('order_status',OrderEnum::STATUS_CONFIRM)->count();
  542. return $info;
  543. }
  544. // 更新订单状态
  545. public static function updateOrderStatus($orderId = 0, $userId = 0, $status = 0)
  546. {
  547. $order = self::getDetail($orderId, $userId);
  548. if (!$order) {
  549. throw new BusinessException('订单不存在!');
  550. }
  551. // 验证状态
  552. if (!OrderEnum::isValidOrderStatus($status)) {
  553. throw new BusinessException('状态不合法!');
  554. }
  555. // 要处理每个状态对应的时间字段在枚举类中
  556. $timeField = OrderEnum::STATUS_TIME_MAP[$status];
  557. $updateData = [
  558. 'order_status' => $status,
  559. $timeField => time()
  560. ];
  561. Order::where('id', $orderId)->update($updateData);
  562. return $order;
  563. }
  564. }