123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <?php
- // +----------------------------------------------------------------------
- // | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2017~2024 https://www.yiovo.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
- // +----------------------------------------------------------------------
- // | Author: 萤火科技 <admin@yiovo.com>
- // +----------------------------------------------------------------------
- declare (strict_types=1);
- namespace app\store\model;
- use app\common\model\Coupon as CouponModel;
- use app\common\enum\coupon\ExpireType as ExpireTypeEnum;
- use app\common\enum\coupon\ApplyRange as ApplyRangeEnum;
- /**
- * 优惠券模型
- * Class Coupon
- * @package app\store\model
- */
- class Coupon extends CouponModel
- {
- /**
- * 获取列表记录
- * @param array $param
- * @return \think\Paginator
- * @throws \think\db\exception\DbException
- */
- public function getList(array $param = []): \think\Paginator
- {
- // 检索查询条件
- $filter = $this->getFilter($param);
- // 查询列表数据
- return $this->where($filter)
- ->where('is_delete', '=', 0)
- ->order(['sort', 'create_time' => 'desc'])
- ->paginate(15);
- }
- /**
- * 检索查询条件
- * @param array $param
- * @return array
- */
- private function getFilter(array $param = []): array
- {
- // 默认查询条件
- $param = $this->setQueryDefaultValue($param, ['search' => '']);
- // 检索查询条件
- $filter = [];
- !empty($param['search']) && $filter[] = ['name', 'like', "%{$param['search']}%"];
- return $filter;
- }
- /**
- * 添加新记录
- * @param array $data
- * @return bool|false
- */
- public function add(array $data): bool
- {
- $data['store_id'] = self::$storeId;
- return $this->save($this->createData($data));
- }
- /**
- * 更新记录
- * @param array $data
- * @return bool
- */
- public function edit(array $data): bool
- {
- return $this->save($this->createData($data)) !== false;
- }
- /**
- * 创建数据
- * @param array $data
- * @return array
- */
- private function createData(array $data): array
- {
- // 折扣券记录有效期
- // 领取后生效
- if ($data['expire_type'] == ExpireTypeEnum::RECEIVE) {
- $data['start_time'] = $data['end_time'] = 0;
- } // 固定时间
- elseif ($data['expire_type'] == ExpireTypeEnum::FIXED_TIME) {
- $times = between_time($data['betweenTime']);
- $data['start_time'] = $times['start_time'];
- $data['end_time'] = $times['end_time'] + (86400 - 1);
- $data['expire_day'] = 1;
- }
- // 适用范围
- if ($data['apply_range'] == ApplyRangeEnum::ALL) {
- $data['apply_range_config'] = [];
- }
- return $data;
- }
- /**
- * 删除记录 (软删除)
- * @return bool
- */
- public function setDelete(): bool
- {
- return $this->save(['is_delete' => 1]) !== false;
- }
- }
|