123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382 |
- <?php
- namespace app\api\model;
- use app\api\model\User as UserModel;
- use app\api\model\Goods as GoodsModel;
- use app\api\model\Setting as SettingModel;
- use app\api\model\UserCoupon as UserCouponModel;
- use app\api\service\order\PaySuccess;
- use app\api\service\Payment as PaymentService;
- use app\api\service\order\source\Factory as OrderSourceFactory;
- use app\common\model\Order as OrderModel;
- use app\common\enum\OrderType as OrderTypeEnum;
- use app\common\enum\DeliveryType as DeliveryTypeEnum;
- use app\common\enum\order\Status as OrderStatusEnum;
- use app\common\enum\order\PayType as PayTypeEnum;
- use app\common\enum\order\PayStatus as PayStatusEnum;
- use app\common\service\goods\source\Factory as FactoryStock;
- use app\common\service\order\Complete as OrderCompleteService;
- use app\common\exception\BaseException;
- use app\common\library\helper;
- /**
- * 订单模型
- * Class Order
- * @package app\api\model
- */
- class Order extends OrderModel
- {
- /**
- * 隐藏字段
- * @var array
- */
- protected $hidden = [
- 'wxapp_id',
- 'update_time'
- ];
- /**
- * 待支付订单详情
- * @param $orderNo
- * @return null|static
- * @throws \think\exception\DbException
- */
- public static function getPayDetail($orderNo)
- {
- return self::get(['order_no' => $orderNo, 'pay_status' => 10, 'is_delete' => 0], ['goods', 'user']);
- }
- /**
- * 订单支付事件
- * @param int $payType
- * @return bool
- * @throws \think\exception\DbException
- */
- public function onPay($payType = PayTypeEnum::WECHAT)
- {
- // 判断订单状态
- $orderSource = OrderSourceFactory::getFactory($this['order_source']);
- if (!$orderSource->checkOrderStatusOnPay($this)) {
- $this->error = $orderSource->getError();
- return false;
- }
- // 余额支付
- if ($payType == PayTypeEnum::BALANCE) {
- return $this->onPaymentByBalance($this['order_no']);
- }
- return true;
- }
- /**
- * 构建支付请求的参数
- * @param $user
- * @param $order
- * @param $payType
- * @return array
- * @throws BaseException
- * @throws \think\exception\DbException
- */
- public function onOrderPayment($user, $order, $payType)
- {
- if ($payType == PayTypeEnum::WECHAT) {
- return $this->onPaymentByWechat($user, $order);
- }
- return [];
- }
- /**
- * 构建微信支付请求
- * @param $user
- * @param $order
- * @return array
- * @throws BaseException
- * @throws \think\exception\DbException
- */
- protected function onPaymentByWechat($user, $order)
- {
- return PaymentService::wechat(
- $user,
- $order['order_id'],
- $order['order_no'],
- $order['pay_price'],
- OrderTypeEnum::MASTER
- );
- }
- /**
- * 立即购买:获取订单商品列表
- * @param $goodsId
- * @param $goodsSkuId
- * @param $goodsNum
- * @return array
- */
- public function getOrderGoodsListByNow($goodsId, $goodsSkuId, $goodsNum)
- {
- // 商品详情
- /* @var GoodsModel $goods */
- $goods = GoodsModel::detail($goodsId);
- // 商品sku信息
- $goods['goods_sku'] = GoodsModel::getGoodsSku($goods, $goodsSkuId);
- // 商品列表
- $goodsList = [$goods->hidden(['category', 'content', 'image', 'sku'])];
- foreach ($goodsList as &$item) {
- // 商品单价
- $item['goods_price'] = $item['goods_sku']['goods_price'];
- // 商品购买数量
- $item['total_num'] = $goodsNum;
- $item['spec_sku_id'] = $item['goods_sku']['spec_sku_id'];
- // 商品购买总金额
- $item['total_price'] = helper::bcmul($item['goods_price'], $goodsNum);
- }
- return $goodsList;
- }
- /**
- * 余额支付标记订单已支付
- * @param $orderNo
- * @return bool
- * @throws \think\exception\DbException
- */
- public function onPaymentByBalance($orderNo)
- {
- // 获取订单详情
- $PaySuccess = new PaySuccess($orderNo);
- // 发起余额支付
- $status = $PaySuccess->onPaySuccess(PayTypeEnum::BALANCE);
- if (!$status) {
- $this->error = $PaySuccess->getError();
- }
- return $status;
- }
- /**
- * 用户中心订单列表
- * @param $user_id
- * @param string $type
- * @return \think\Paginator
- * @throws \think\exception\DbException
- */
- public function getList($user_id, $type = 'all')
- {
- // 筛选条件
- $filter = [];
- // 订单数据类型
- switch ($type) {
- case 'all':
- break;
- case 'payment';
- $filter['pay_status'] = PayStatusEnum::PENDING;
- $filter['order_status'] = 10;
- break;
- case 'delivery';
- $filter['pay_status'] = PayStatusEnum::SUCCESS;
- $filter['delivery_status'] = 10;
- $filter['order_status'] = 10;
- break;
- case 'received';
- $filter['pay_status'] = PayStatusEnum::SUCCESS;
- $filter['delivery_status'] = 20;
- $filter['receipt_status'] = 10;
- $filter['order_status'] = 10;
- break;
- case 'comment';
- $filter['is_comment'] = 0;
- $filter['order_status'] = 30;
- break;
- }
- return $this->with(['goods.image'])
- ->where('user_id', '=', $user_id)
- ->where($filter)
- ->where('is_delete', '=', 0)
- ->order(['create_time' => 'desc'])
- ->paginate(15, false, [
- 'query' => \request()->request()
- ]);
- }
- /**
- * 取消订单
- * @param UserModel $user
- * @return bool|mixed
- */
- public function cancel($user)
- {
- if ($this['delivery_status']['value'] == 20) {
- $this->error = '已发货订单不可取消';
- return false;
- }
- // 订单取消事件
- return $this->transaction(function () use ($user) {
- // 订单是否已支付
- $isPay = $this['pay_status']['value'] == PayStatusEnum::SUCCESS;
- // 未付款的订单
- if ($isPay == false) {
- // 回退商品库存
- FactoryStock::getFactory($this['order_source'])->backGoodsStock($this['goods'], $isPay);
- // 回退用户优惠券
- $this['coupon_id'] > 0 && UserCouponModel::setIsUse($this['coupon_id'], false);
- // 回退用户积分
- $describe = "订单取消:{$this['order_no']}";
- $this['points_num'] > 0 && $user->setIncPoints($this['points_num'], $describe);
- }
- // 更新订单状态
- return $this->save(['order_status' => $isPay ? OrderStatusEnum::APPLY_CANCEL : OrderStatusEnum::CANCELLED]);
- });
- }
- /**
- * 确认收货
- * @return bool|mixed
- */
- public function receipt()
- {
- // 验证订单是否合法
- // 条件1: 订单必须已发货
- // 条件2: 订单必须未收货
- if ($this['delivery_status']['value'] != 20 || $this['receipt_status']['value'] != 10) {
- $this->error = '该订单不合法';
- return false;
- }
- return $this->transaction(function () {
- // 更新订单状态
- $status = $this->save([
- 'receipt_status' => 20,
- 'receipt_time' => time(),
- 'order_status' => 30
- ]);
- // // 获取已完成的订单
- // $completed = self::detail($this['order_id'], [
- // 'user', 'address', 'goods', 'express', // 用于好物圈
- // ]);
- // 执行订单完成后的操作
- $OrderCompleteService = new OrderCompleteService(OrderTypeEnum::MASTER);
- $OrderCompleteService->complete([$this], static::$wxapp_id);
- return $status;
- });
- }
- /**
- * 获取订单总数
- * @param $user
- * @param string $type
- * @return int|string
- * @throws \think\Exception
- */
- public function getCount($user, $type = 'all')
- {
- if ($user === false) {
- return false;
- }
- // 筛选条件
- $filter = [];
- // 订单数据类型
- switch ($type) {
- case 'all':
- break;
- case 'payment';
- $filter['pay_status'] = PayStatusEnum::PENDING;
- break;
- case 'received';
- $filter['pay_status'] = PayStatusEnum::SUCCESS;
- $filter['delivery_status'] = 20;
- $filter['receipt_status'] = 10;
- break;
- case 'comment';
- $filter['order_status'] = 30;
- $filter['is_comment'] = 0;
- break;
- }
- return $this->where('user_id', '=', $user['user_id'])
- ->where('order_status', '<>', 20)
- ->where($filter)
- ->where('is_delete', '=', 0)
- ->count();
- }
- /**
- * 订单详情
- * @param $order_id
- * @param null $user_id
- * @return null|static
- * @throws BaseException
- * @throws \think\exception\DbException
- */
- public static function getUserOrderDetail($order_id, $user_id)
- {
- if (!$order = self::get([
- 'order_id' => $order_id,
- 'user_id' => $user_id,
- ], [
- 'goods' => ['image', 'goods', 'refund'],
- 'address', 'express', 'extract_shop'
- ])
- ) {
- throw new BaseException(['msg' => '订单不存在']);
- }
- return $order;
- }
- /**
- * 判断当前订单是否允许核销
- * @param static $order
- * @return bool
- */
- public function checkExtractOrder(&$order)
- {
- if (
- $order['pay_status']['value'] == PayStatusEnum::SUCCESS
- && $order['delivery_type']['value'] == DeliveryTypeEnum::EXTRACT
- && $order['delivery_status']['value'] == 10
- ) {
- return true;
- }
- $this->setError('该订单不能被核销');
- return false;
- }
- /**
- * 当前订单是否允许申请售后
- * @return bool
- */
- public function isAllowRefund()
- {
- // 必须是已发货的订单
- if ($this['delivery_status']['value'] != 20) {
- return false;
- }
- // 允许申请售后期限(天)
- $refundDays = SettingModel::getItem('trade')['order']['refund_days'];
- // 不允许售后
- if ($refundDays == 0) {
- return false;
- }
- // 当前时间超出允许申请售后期限
- if (
- $this['receipt_status'] == 20
- && time() > ($this['receipt_time'] + ((int)$refundDays * 86400))
- ) {
- return false;
- }
- return true;
- }
- /**
- * 设置错误信息
- * @param $error
- */
- protected function setError($error)
- {
- empty($this->error) && $this->error = $error;
- }
- /**
- * 是否存在错误
- * @return bool
- */
- public function hasError()
- {
- return !empty($this->error);
- }
- }
|