OrderService.php 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639
  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
  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 BusinessException("商品数量必须大于0");
  101. }
  102. // 检查商品是否存在
  103. if (!isset($goodsData[$goods_id])) {
  104. throw new ("商品已下架");
  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. $orderItem[] = $orderItemData;
  190. }
  191. // 按运费模板计算
  192. foreach ($shippingTemp as $key => $item) {
  193. $shippingfee = Freight::calculate($key, $areaId, $item['nums'], $item['weight'], $item['amount']);
  194. $orderInfo['express_fee'] = bcadd($orderInfo['express_fee'], $shippingfee, 2);
  195. }
  196. // 订单金额(商品价格+运费)
  197. $orderInfo['order_amount'] = bcadd($orderInfo['goods_price'], $orderInfo['express_fee'], 2);
  198. // 订单应付金额(暂时等于订单金额,后续会减去优惠)
  199. $orderInfo['amount'] = $orderInfo['order_amount'];
  200. // if (!empty($userCoupon)) {
  201. // // 校验优惠券
  202. // $goods_ids = array_column($orderItem, 'goods_id');
  203. // $category_ids = array_column($orderItem, 'category_id');
  204. // $brand_ids = array_column($orderItem, 'brand_id');
  205. // $couponModel = new Coupon();
  206. // $coupon = $couponModel->getCoupon($userCoupon['coupon_id'])
  207. // ->checkCoupon()
  208. // ->checkOpen()
  209. // ->checkUseTime($userCoupon['createtime'])
  210. // ->checkConditionGoods($goods_ids, $userId, $category_ids, $brand_ids);
  211. // // 计算折扣金额,判断是使用不含运费,还是含运费的金额
  212. // $amount = !isset($config['shippingfeecoupon']) || $config['shippingfeecoupon'] == 0 ? $orderInfo['goods_price'] : $orderInfo['order_amount'];
  213. // list($new_money, $coupon_money) = $coupon->doBuy($amount);
  214. // // 判断优惠金额是否超出总价,超出则直接设定优惠金额为总价
  215. // $orderInfo['coupon_discount_fee'] = $coupon_money > $amount ? $amount : $coupon_money;
  216. // $orderInfo['discount_fee'] = $orderInfo['coupon_discount_fee'];
  217. // }
  218. // 计算最终应付金额【订单金额减去折扣】
  219. $orderInfo['amount'] = max(0, bcsub($orderInfo['order_amount'], $orderInfo['discount_fee'], 2));
  220. $orderInfo['pay_amount'] = $orderInfo['amount']; // 实际付款金额等于应付金额
  221. $orderInfo['discount_fee'] = bcadd($orderInfo['discount_fee'], 0, 2);
  222. return [
  223. $orderItem,
  224. $processedGoodsList,
  225. $userCoupon
  226. ];
  227. }
  228. /**
  229. * 统一的创建订单方法
  230. * @param int $address_id 地址ID
  231. * @param int $user_id 用户ID
  232. * @param array $goods_list 标准化的商品列表
  233. * @param int $user_coupon_id 优惠券ID
  234. * @param string $memo 备注
  235. * @param array $cart_ids 购物车ID数组(如果是购物车模式需要清空)
  236. * @return Order
  237. * @throws BusinessException
  238. */
  239. public static function createOrder($addressId, $userId, $goodsList, $userCouponId = 0, $remark = '',$supplierId = 0)
  240. {
  241. $address = Address::get($addressId);
  242. if (!$address || $address['user_id'] != $userId) {
  243. throw new BusinessException("地址未找到");
  244. }
  245. if (empty($goodsList)) {
  246. throw new BusinessException("商品列表不能为空");
  247. }
  248. $config = get_addon_config('shop');
  249. $orderSn = date("Ymdhis") . sprintf("%08d", $userId) . mt_rand(1000, 9999);
  250. // 订单主表信息 (基于新表结构)
  251. $orderInfo = [
  252. 'type' => 1, // 1:普通订单
  253. 'order_sn' => $orderSn,
  254. 'user_id' => $userId,
  255. 'amount' => 0, // 订单应付金额
  256. 'goods_price' => 0, // 商品总费用
  257. 'goods_num' => 0, // 商品数量
  258. 'discount_fee' => 0, // 优惠金额
  259. 'coupon_discount_fee' => 0, // 优惠券金额
  260. 'promo_discount_fee' => 0, // 营销金额
  261. 'order_amount' => 0, // 订单金额 + 运费
  262. 'express_fee' => 0, // 配送费用
  263. 'expire_time' => time() + $config['order_timeout'], // 过期时间
  264. 'order_status' => OrderEnum::STATUS_CREATE, // 待付款
  265. 'invoice_status' => 0, // 发票开具状态
  266. 'remark' => $remark, // 用户备注
  267. 'user_coupon_id' => $userCouponId ?: null,
  268. 'ip' => request()->ip(), // IP地址
  269. 'status' => 'normal',
  270. ];
  271. $orderInfo['platform'] = request()->header('platform', 'H5');
  272. // 通过商品列表计算订单明细
  273. list($orderItem, $calculatedGoodsList, $userCoupon) = self::computeGoods($orderInfo, $goodsList, $userId, $address->area_id, $userCouponId);
  274. $orderInfo['pay_amount'] = bcsub($orderInfo['order_amount'], $orderInfo['discount_fee'], 2);
  275. $orderInfo['pay_original_amount'] = $orderInfo['pay_amount'];
  276. $orderInfo['pay_remain_amount'] = $orderInfo['pay_amount'];
  277. // 创建订单
  278. $order = self::createOrderWithTransaction($orderInfo, $orderItem, $calculatedGoodsList, $userCoupon, $address);
  279. return $order;
  280. }
  281. /**
  282. * 在事务中创建订单
  283. * @param array $orderInfo 订单信息
  284. * @param array $orderItem 订单商品列表
  285. * @param array $goodsList 商品列表
  286. * @param object $userCoupon 优惠券
  287. * @param object $address 地址信息
  288. * @return Order
  289. * @throws Exception
  290. */
  291. protected static function createOrderWithTransaction($orderInfo, $orderItem, $goodsList, $userCoupon, $address)
  292. {
  293. $order = null;
  294. Db::startTrans();
  295. try {
  296. // 创建订单
  297. $order = Order::create($orderInfo, true);
  298. // 为每个订单商品添加订单ID和订单号
  299. foreach ($orderItem as &$item) {
  300. $item['order_id'] = $order->id;
  301. $item['order_sn'] = $order->order_sn;
  302. // 移除临时字段
  303. unset($item['category_id'], $item['brand_id']);
  304. }
  305. unset($item);
  306. // 创建订单地址信息
  307. $orderAddressData = [
  308. 'order_id' => $order->id,
  309. 'user_id' => $orderInfo['user_id'],
  310. 'consignee' => $address->receiver,
  311. 'mobile' => $address->mobile,
  312. 'province_name' => $address->province->name ?? '',
  313. 'city_name' => $address->city->name ?? '',
  314. 'district_name' => $address->area->name ?? '',
  315. 'address' => $address->address,
  316. 'province_id' => $address->province_id,
  317. 'city_id' => $address->city_id,
  318. 'district_id' => $address->area_id,
  319. ];
  320. OrderAddress::create($orderAddressData);
  321. // 减库存
  322. foreach ($goodsList as $index => $item) {
  323. if ($item->sku) {
  324. $item->sku->setDec('stocks', $item->nums);
  325. }
  326. $item->goods->setDec("stocks", $item->nums);
  327. }
  328. // 计算单个商品折扣后的价格 (基于新字段名)
  329. $saleamount = bcsub($order['amount'], $order['express_fee'], 2);
  330. $saleratio = $order['goods_price'] > 0 ? bcdiv($saleamount, $order['goods_price'], 10) : 1;
  331. $saleremains = $saleamount;
  332. foreach ($orderItem as $index => &$item) {
  333. if (!isset($orderItem[$index + 1])) {
  334. $saleprice = $saleremains;
  335. } else {
  336. $saleprice = $order['discount_fee'] == 0 ? bcmul($item['goods_original_price'], $item['nums'], 2) : bcmul(bcmul($item['goods_original_price'], $item['nums'], 2), $saleratio, 2);
  337. }
  338. $saleremains = bcsub($saleremains, $saleprice, 2);
  339. $item['goods_price'] = $saleprice;
  340. }
  341. unset($item);
  342. // 批量创建订单商品数据
  343. if (!empty($orderItem)) {
  344. (new OrderGoods())->saveAll($orderItem);
  345. }
  346. // 修改地址使用次数
  347. if ($address) {
  348. $address->setInc('used_nums');
  349. }
  350. // 优惠券已使用
  351. if (!empty($userCoupon)) {
  352. $userCoupon->save(['is_used' => 2]);
  353. }
  354. // 提交事务
  355. Db::commit();
  356. } catch (Exception $e) {
  357. Db::rollback();
  358. throw new Exception($e->getMessage());
  359. }
  360. // 记录操作
  361. OrderActionService::recordUserAction(
  362. $orderInfo['order_sn'],
  363. OrderActionEnum::ACTION_CREATE,
  364. $orderInfo['user_id'],
  365. '创建订单',
  366. $orderInfo['user_id']
  367. );
  368. // 订单应付金额为0时直接结算
  369. if ($order['amount'] == 0) {
  370. // Order::settle($order->order_sn, 0);
  371. // $order = Order::get($order->id);
  372. return $order;
  373. }
  374. return $order;
  375. }
  376. /**
  377. * 验证商品规格参数
  378. * @param array $goods_list 商品列表
  379. * @throws Exception
  380. */
  381. public static function validateGoodsList($goods_list)
  382. {
  383. if (empty($goods_list) || !is_array($goods_list)) {
  384. throw new Exception("商品列表不能为空");
  385. }
  386. foreach ($goods_list as $item) {
  387. if (!isset($item['goods_id']) || !is_numeric($item['goods_id']) || $item['goods_id'] <= 0) {
  388. throw new Exception("商品ID无效");
  389. }
  390. if (!isset($item['nums']) || !is_numeric($item['nums']) || $item['nums'] <= 0) {
  391. throw new Exception("商品数量必须大于0");
  392. }
  393. if (isset($item['goods_sku_id']) && !is_numeric($item['goods_sku_id'])) {
  394. throw new Exception("商品规格ID无效");
  395. }
  396. }
  397. }
  398. /**
  399. * 统一的订单计算方法(用于预览订单)
  400. * @param array $goods_list 标准化的商品列表
  401. * @param int $user_id 用户ID
  402. * @param int $area_id 地区ID
  403. * @param int $user_coupon_id 优惠券ID
  404. * @return array
  405. * @throws Exception
  406. */
  407. public static function calculateOrder($goodsList, $userId, $areaId = 0, $userCouponId = 0)
  408. {
  409. if (empty($goodsList)) {
  410. throw new Exception("商品列表不能为空");
  411. }
  412. // 验证商品列表格式
  413. self::validateGoodsList($goodsList);
  414. // 订单基础信息(用于计算,不包含订单号)
  415. $orderInfo = [
  416. 'amount' => 0, // 应付金额
  417. 'goods_price' => 0, // 商品金额 (不含运费)
  418. 'goods_num' => 0, // 商品数量
  419. 'discount_fee' => 0, // 总优惠金额
  420. 'coupon_discount_fee' => 0, // 优惠券金额
  421. 'promo_discount_fee' => 0, // 营销金额
  422. 'order_amount' => 0, // 总金额 (含运费)
  423. 'express_fee' => 0, // 运费
  424. ];
  425. // 计算商品明细
  426. list($orderItem, $calculatedGoodsList, $userCoupon) = self::computeGoods($orderInfo, $goodsList, $userId, $areaId, $userCouponId);
  427. return [
  428. 'orderItem' => $orderItem,
  429. 'goodsList' => $calculatedGoodsList,
  430. 'orderInfo' => $orderInfo,
  431. 'userCoupon' => $userCoupon
  432. ];
  433. }
  434. /**
  435. * 订单列表
  436. *
  437. * @param $param
  438. * @return \think\Paginator
  439. */
  440. public static function getOrderList($userId = 0, $param =[],$status = [],$supplierId = 0)
  441. {
  442. $pageSize = 10;
  443. if (!empty($param['pageSize'])) {
  444. $pageSize = $param['pageSize'];
  445. }
  446. return Order::with(['orderGoods'])
  447. ->where(function ($query) use ($param,$userId,$status) {
  448. if (!empty($userId)) {
  449. $query->where('user_id', $userId);
  450. }
  451. if (!empty($status)) {
  452. $query->whereIn('order_status', $status );
  453. }
  454. if (isset($param['keywords']) && $param['keywords'] != '') {
  455. $query->where('order_sn', 'in', function ($query) use ($param) {
  456. return $query->name('shop_order_goods')->where('order_sn|goods_title', 'like', '%' . $param['q'] . '%')->field('order_sn');
  457. });
  458. }
  459. if (!empty($supplierId)) {
  460. $query->where('order_sn', 'in', function ($query) use ($supplierId) {
  461. return $query->name('shop_order_goods')->where('supplier_id', $supplierId)->field('order_sn');
  462. });
  463. }
  464. })
  465. ->order('createtime desc')
  466. ->paginate($pageSize, false, ['query' => request()->get()]);
  467. }
  468. /**
  469. *
  470. * @ 订单信息
  471. * @param $orderId
  472. * @param $userId
  473. * @return array|false|\PDOStatement|string|Model
  474. */
  475. public static function getDetail($orderId, $userId)
  476. {
  477. return Order::with(['orderGoods'])
  478. ->where('id', $orderId)
  479. ->where('user_id', $userId)
  480. ->find();
  481. }
  482. public static function getDetailByOrderSn($orderSn)
  483. {
  484. return Order::with(['orderGoods'])
  485. ->where('order_sn', $orderSn)
  486. ->find();
  487. }
  488. // 查询地址信息
  489. public static function getAddressInfo($orderId)
  490. {
  491. return OrderAddress::where('order_id', $orderId)->find();
  492. }
  493. /**
  494. * 判断订单是否失效
  495. * @param $order_sn
  496. * @return bool
  497. */
  498. public static function isExpired($orderSn)
  499. {
  500. $orderInfo = self::getByOrderSn($orderSn);
  501. //订单过期
  502. if (!$orderInfo['orderstate'] && !$orderInfo['paystate'] && time() > $orderInfo['expiretime']) {
  503. // 启动事务
  504. Db::startTrans();
  505. try {
  506. $orderInfo->save(['orderstate' => 2]);
  507. //库存恢复
  508. OrderGoods::setGoodsStocksInc($orderInfo->order_sn);
  509. //恢复优惠券
  510. UserCoupon::resetUserCoupon($orderInfo->user_coupon_id, $orderInfo->order_sn);
  511. // 提交事务
  512. Db::commit();
  513. } catch (\Exception $e) {
  514. // 回滚事务
  515. Db::rollback();
  516. }
  517. return true;
  518. }
  519. return false;
  520. }
  521. public static function getByOrderSn($orderSn)
  522. {
  523. return Order::where('order_sn', $orderSn)->find();
  524. }
  525. public static function getByOrderId($orderId)
  526. {
  527. return Order::where('id', $orderId)->find();
  528. }
  529. // 获取状态订单统计
  530. public static function getOrderStatusCount($userId = 0)
  531. {
  532. $info = [];
  533. $info['unpay'] = Order::where('user_id', $userId)->where('order_status',OrderEnum::STATUS_CREATE)->count();
  534. $info['unsend'] = Order::where('user_id', $userId)->where('order_status',OrderEnum::STATUS_PAY)->count();
  535. $info['unrec'] = Order::where('user_id', $userId)->where('order_status',OrderEnum::STATUS_SHIP)->count();
  536. $info['uneva'] = Order::where('user_id', $userId)->where('order_status',OrderEnum::STATUS_CONFIRM)->count();
  537. return $info;
  538. }
  539. // 更新订单状态
  540. public static function updateOrderStatus($orderId = 0, $userId = 0, $status = 0)
  541. {
  542. $order = self::getDetail($orderId, $userId);
  543. if (!$order) {
  544. throw new BusinessException('订单不存在!');
  545. }
  546. // 验证状态
  547. if (!OrderEnum::isValidOrderStatus($status)) {
  548. throw new BusinessException('状态不合法!');
  549. }
  550. // 要处理每个状态对应的时间字段在枚举类中
  551. $timeField = OrderEnum::STATUS_TIME_MAP[$status];
  552. $updateData = [
  553. 'order_status' => $status,
  554. $timeField => time()
  555. ];
  556. Order::where('id', $orderId)->update($updateData);
  557. return $order;
  558. }
  559. }