mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-13 11:52:51 +00:00
96 lines
3.1 KiB
PHP
96 lines
3.1 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
// +----------------------------------------------------------------------
|
||
// | Author: CRMEB Team <admin@crmeb.com>
|
||
// +----------------------------------------------------------------------
|
||
namespace app\api\controller\v1\store;
|
||
|
||
use app\Request;
|
||
use app\services\activity\coupon\StoreCouponIssueServices;
|
||
|
||
/**
|
||
* 优惠券类
|
||
* Class StoreCouponsController
|
||
* @package app\api\controller\store
|
||
*/
|
||
class StoreCouponsController
|
||
{
|
||
protected $services;
|
||
|
||
public function __construct(StoreCouponIssueServices $services)
|
||
{
|
||
$this->services = $services;
|
||
}
|
||
|
||
/**
|
||
* 可领取优惠券列表
|
||
* @param Request $request
|
||
* @return mixed
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function lst(Request $request)
|
||
{
|
||
$where = $request->getMore([
|
||
['type', 0],
|
||
['product_id', 0],
|
||
['num', 0]
|
||
]);
|
||
if ($request->getFromType() == 'pc') $where['type'] = -1;
|
||
return app('json')->success($this->services->getIssueCouponList($request->uid(), $where)['list']);
|
||
}
|
||
|
||
/**
|
||
* 领取优惠券
|
||
* @param Request $request
|
||
* @return mixed
|
||
*/
|
||
public function receive(Request $request)
|
||
{
|
||
list($couponId) = $request->getMore([
|
||
['couponId', 0]
|
||
], true);
|
||
if (!$couponId || !is_numeric($couponId)) return app('json')->fail(100100);
|
||
|
||
/** @var StoreCouponIssueServices $couponIssueService */
|
||
$couponIssueService = app()->make(StoreCouponIssueServices::class);
|
||
$couponIssueService->issueUserCoupon($couponId, $request->user());
|
||
return app('json')->success(410319);
|
||
}
|
||
|
||
/**
|
||
* 用户已领取优惠券
|
||
* @param Request $request
|
||
* @param $types
|
||
* @return mixed
|
||
*/
|
||
public function user(Request $request, $types)
|
||
{
|
||
$uid = (int)$request->uid();
|
||
return app('json')->success($this->services->getUserCouponList($uid, $types));
|
||
}
|
||
|
||
/**
|
||
* 优惠券 订单获取
|
||
* @param Request $request
|
||
* @param StoreCouponIssueServices $service
|
||
* @param $cartId
|
||
* @param $new
|
||
* @return mixed
|
||
* @throws \Psr\SimpleCache\InvalidArgumentException
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function order(Request $request, StoreCouponIssueServices $service, $cartId, $new, $shippingType)
|
||
{
|
||
return app('json')->success($service->beUsableCouponList((int)$request->uid(), $cartId, !!$new, (int)$shippingType));
|
||
}
|
||
}
|