| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?php
- namespace app\controller\admin\store;
- use app\common\repositories\store\coupon\StoreCouponProductRepository;
- use app\common\repositories\store\coupon\StoreCouponUserRepository;
- use think\App;
- use ln\basic\BaseController;
- use think\db\exception\DataNotFoundException;
- use think\db\exception\DbException;
- use think\db\exception\ModelNotFoundException;
- use app\common\repositories\store\coupon\StoreCouponRepository;
- /**
- * Class CouponIssue
- * @package app\controller\merchant\store\coupon
- * @author xaboy
- * @day 2020-05-13
- */
- class Coupon extends BaseController
- {
- /**
- * @var StoreCouponRepository
- */
- protected $repository;
- /**
- * CouponIssue constructor.
- * @param App $app
- * @param StoreCouponRepository $repository
- */
- public function __construct(App $app, StoreCouponRepository $repository)
- {
- parent::__construct($app);
- $this->repository = $repository;
- }
- /**
- * @return mixed
- * @throws DbException
- * @throws DataNotFoundException
- * @throws ModelNotFoundException
- * @author xaboy
- * @day 2020-05-14
- */
- public function lst()
- {
- $where = $this->request->params(['is_full_give', 'status', 'is_give_subscribe', 'coupon_name', ['mer_id', null],'is_trader']);
- [$page, $limit] = $this->getPage();
- return app('json')->success($this->repository->getList($where['mer_id'], $where, $page, $limit));
- }
- public function detail($id)
- {
- if (!$this->repository->exists($id))
- return app('json')->fail('数据不存在');
- $coupon = $this->repository->get($id)->append(['used_num', 'send_num']);
- return app('json')->success($coupon->toArray());
- }
- public function product($id)
- {
- $merId = $this->request->merId();
- if ($merId) {
- $exists = app()->make(StoreCouponRepository::class)->merExists($merId, $id);
- } else {
- $exists = app()->make(StoreCouponRepository::class)->exists($id);
- }
- if (!$exists) {
- return app('json')->fail('优惠券不存在');
- }
- [$page, $limit] = $this->getPage();
- return app('json')->success(app()->make(StoreCouponProductRepository::class)->productList((int)$id, $page, $limit));
- }
- /**
- * @param StoreCouponUserRepository $repository
- * @author xaboy
- * @day 2020/6/2
- */
- public function issue(StoreCouponUserRepository $repository)
- {
- [$page, $limit] = $this->getPage();
- $where = $this->request->params(['username', 'coupon_id', 'coupon', 'status', 'mer_id']);
- return app('json')->success($repository->getList($where, $page, $limit));
- }
- }
|