123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360 |
- <?php
- namespace app\common\model;
- use think\Hook;
- use app\common\model\store\shop\Order as ShopOrder;
- use app\common\service\Order as OrderService;
- use app\common\service\order\Complete as OrderCompleteService;
- use app\common\enum\OrderType as OrderTypeEnum;
- use app\common\enum\DeliveryType as DeliveryTypeEnum;
- use app\common\enum\order\PayType as PayTypeEnum;
- use app\common\enum\order\PayStatus as PayStatusEnum;
- use app\common\library\helper;
- /**
- * 订单模型
- * Class Order
- * @package app\common\model
- */
- class Order extends BaseModel
- {
- protected $name = 'order';
- protected $alias = 'order';
- /**
- * 追加字段
- * @var array
- */
- protected $append = [
- 'state_text', // 售后单状态文字描述
- ];
- /**
- * 订单模型初始化
- */
- public static function init()
- {
- parent::init();
- // 监听订单处理事件
- $static = new static;
- Hook::listen('order', $static);
- }
- /**
- * 订单商品列表
- * @return \think\model\relation\HasMany
- */
- public function goods()
- {
- $module = self::getCalledModule() ?: 'common';
- return $this->hasMany("app\\{$module}\\model\\OrderGoods");
- }
- /**
- * 关联订单收货地址表
- * @return \think\model\relation\HasOne
- */
- public function address()
- {
- $module = self::getCalledModule() ?: 'common';
- return $this->hasOne("app\\{$module}\\model\\OrderAddress");
- }
- /**
- * 关联订单收货地址表
- * @return \think\model\relation\HasOne
- */
- public function extract()
- {
- $module = self::getCalledModule() ?: 'common';
- return $this->hasOne("app\\{$module}\\model\\OrderExtract");
- }
- /**
- * 关联自提门店表
- * @return \think\model\relation\BelongsTo
- */
- public function extractShop()
- {
- $module = self::getCalledModule() ?: 'common';
- return $this->belongsTo("app\\{$module}\\model\\store\\Shop", 'extract_shop_id');
- }
- /**
- * 关联门店店员表
- * @return \think\model\relation\BelongsTo
- */
- public function extractClerk()
- {
- $module = self::getCalledModule() ?: 'common';
- return $this->belongsTo("app\\{$module}\\model\\store\\shop\\Clerk", 'extract_clerk_id');
- }
- /**
- * 关联用户表
- * @return \think\model\relation\BelongsTo
- */
- public function user()
- {
- $module = self::getCalledModule() ?: 'common';
- return $this->belongsTo("app\\{$module}\\model\\User");
- }
- /**
- * 关联物流公司表
- * @return \think\model\relation\BelongsTo
- */
- public function express()
- {
- $module = self::getCalledModule() ?: 'common';
- return $this->belongsTo("app\\{$module}\\model\\Express");
- }
- /**
- * 订单状态文字描述
- * @param $value
- * @param $data
- * @return string
- */
- public function getStateTextAttr($value, $data)
- {
- // 订单状态
- if (in_array($data['order_status'], [20, 30])) {
- $orderStatus = [20 => '已取消', 30 => '已完成'];
- return $orderStatus[$data['order_status']];
- }
- // 付款状态
- if ($data['pay_status'] == 10) {
- return '待付款';
- }
- // 订单类型:单独购买
- if ($data['delivery_status'] == 10) {
- return '已付款,待发货';
- }
- if ($data['receipt_status'] == 10) {
- return '已发货,待收货';
- }
- return $value;
- }
- /**
- * 获取器:订单金额(含优惠折扣)
- * @param $value
- * @param $data
- * @return string
- */
- public function getOrderPriceAttr($value, $data)
- {
- // 兼容旧数据:订单金额
- if ($value == 0) {
- return helper::bcadd(helper::bcsub($data['total_price'], $data['coupon_money']), $data['update_price']);
- }
- return $value;
- }
- /**
- * 改价金额(差价)
- * @param $value
- * @return array
- */
- public function getUpdatePriceAttr($value)
- {
- return [
- 'symbol' => $value < 0 ? '-' : '+',
- 'value' => sprintf('%.2f', abs($value))
- ];
- }
- /**
- * 付款状态
- * @param $value
- * @return array
- */
- public function getPayTypeAttr($value)
- {
- return ['text' => PayTypeEnum::data()[$value]['name'], 'value' => $value];
- }
- /**
- * 付款状态
- * @param $value
- * @return array
- */
- public function getPayStatusAttr($value)
- {
- return ['text' => PayStatusEnum::data()[$value]['name'], 'value' => $value];
- }
- /**
- * 发货状态
- * @param $value
- * @return array
- */
- public function getDeliveryStatusAttr($value)
- {
- $status = [10 => '待发货', 20 => '已发货'];
- return ['text' => $status[$value], 'value' => $value];
- }
- /**
- * 收货状态
- * @param $value
- * @return array
- */
- public function getReceiptStatusAttr($value)
- {
- $status = [10 => '待收货', 20 => '已收货'];
- return ['text' => $status[$value], 'value' => $value];
- }
- /**
- * 收货状态
- * @param $value
- * @return array
- */
- public function getOrderStatusAttr($value)
- {
- $status = [10 => '进行中', 20 => '已取消', 21 => '待取消', 30 => '已完成'];
- return ['text' => $status[$value], 'value' => $value];
- }
- /**
- * 配送方式
- * @param $value
- * @return array
- */
- public function getDeliveryTypeAttr($value)
- {
- return ['text' => DeliveryTypeEnum::data()[$value]['name'], 'value' => $value];
- }
- /**
- * 生成订单号
- * @return string
- */
- public function orderNo()
- {
- return OrderService::createOrderNo();
- }
- /**
- * 订单详情
- * @param array|int $where
- * @param array $with
- * @return null|static
- * @throws \think\exception\DbException
- */
- public static function detail($where, $with = [
- 'user',
- 'address',
- 'goods' => ['image'],
- 'extract',
- 'express',
- 'extract_shop.logo',
- 'extract_clerk'
- ])
- {
- is_array($where) ? $filter = $where : $filter['order_id'] = (int)$where;
- return self::get($filter, $with);
- }
- /**
- * 批量获取订单列表
- * @param $orderIds
- * @param array $with 关联查询
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function getListByIds($orderIds, $with = [])
- {
- $data = $this->getListByInArray('order_id', $orderIds, $with);
- return helper::arrayColumn2Key($data, 'order_id');
- }
- /**
- * 批量获取订单列表
- * @param string $field
- * @param array $data
- * @param array $with
- * @return false|\PDOStatement|string|\think\Collection
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- private function getListByInArray($field, $data, $with = [])
- {
- return $this->with($with)
- ->where($field, 'in', $data)
- ->where('is_delete', '=', 0)
- ->select();
- }
- /**
- * 根据订单号批量查询
- * @param $orderNos
- * @param array $with
- * @return false|\PDOStatement|string|\think\Collection
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function getListByOrderNos($orderNos, $with = [])
- {
- return $this->getListByInArray('order_no', $orderNos, $with);
- }
- /**
- * 批量更新订单
- * @param $orderIds
- * @param $data
- * @return false|int
- */
- public function onBatchUpdate($orderIds, $data)
- {
- return $this->isUpdate(true)->save($data, ['order_id' => ['in', $orderIds]]);
- }
- /**
- * 确认核销(自提订单)
- * @param int $extractClerkId 核销员id
- * @return bool|false|int
- */
- public function verificationOrder($extractClerkId)
- {
- if (
- $this['pay_status']['value'] != 20
- || $this['delivery_type']['value'] != DeliveryTypeEnum::EXTRACT
- || $this['delivery_status']['value'] == 20
- || in_array($this['order_status']['value'], [20, 21])
- ) {
- $this->error = '该订单不满足核销条件';
- return false;
- }
- return $this->transaction(function () use ($extractClerkId) {
- // 更新订单状态:已发货、已收货
- $status = $this->save([
- 'extract_clerk_id' => $extractClerkId, // 核销员
- 'delivery_status' => 20,
- 'delivery_time' => time(),
- 'receipt_status' => 20,
- 'receipt_time' => time(),
- 'order_status' => 30
- ]);
- // 新增订单核销记录
- ShopOrder::add(
- $this['order_id'],
- $this['extract_shop_id'],
- $this['extract_clerk_id'],
- OrderTypeEnum::MASTER
- );
- // 执行订单完成后的操作
- $OrderCompleteService = new OrderCompleteService(OrderTypeEnum::MASTER);
- $OrderCompleteService->complete([$this], static::$wxapp_id);
- return $status;
- });
- }
- }
|