mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-26 04:50:16 +00:00
322 lines
12 KiB
PHP
322 lines
12 KiB
PHP
<?php
|
|
|
|
namespace app\admin\controller\ump;
|
|
|
|
use app\admin\controller\AuthController;
|
|
use app\admin\model\store\StoreCategory as CategoryModel;
|
|
use think\facade\Route as Url;
|
|
use app\admin\model\wechat\WechatUser as UserModel;
|
|
use app\admin\model\ump\{StoreCouponIssue, StoreCoupon as CouponModel};
|
|
use crmeb\services\{FormBuilder as Form, UtilService as Util, JsonService as Json};
|
|
|
|
/**
|
|
* 优惠券控制器
|
|
* Class StoreCategory
|
|
* @package app\admin\controller\system
|
|
*/
|
|
class StoreCoupon extends AuthController
|
|
{
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function index()
|
|
{
|
|
$where = Util::getMore([
|
|
['status', ''],
|
|
['title', ''],
|
|
['type','']
|
|
], $this->request);
|
|
$this->assign('where', $where);
|
|
$this->assign(CouponModel::systemPage($where));
|
|
return $this->fetch();
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function create()
|
|
{
|
|
$data = Util::getMore(['type',]);//接收参数
|
|
$tab_id = !empty(request()->param('tab_id')) ? request()->param('tab_id') : 1;
|
|
//前面通用字段
|
|
$f = [];
|
|
$f[] = Form::input('title', '优惠券名称');
|
|
//不同类型不同字段
|
|
$formbuider = [];
|
|
switch ($data['type']) {
|
|
case 1://品类券
|
|
$formbuider = CouponModel::createClassRule($tab_id);
|
|
break;
|
|
case 2://商品券
|
|
$formbuider = CouponModel::createProductRule($tab_id);
|
|
break;
|
|
}
|
|
//后面通用字段
|
|
$formbuiderfoot = array();
|
|
$formbuiderfoot[] = Form::number('coupon_price', '优惠券面值', 0)->min(0);
|
|
$formbuiderfoot[] = Form::number('use_min_price', '最低消费')->min(0);
|
|
$formbuiderfoot[] = Form::number('coupon_time', '有效期限')->min(0);
|
|
$formbuiderfoot[] = Form::number('sort', '排序');
|
|
$formbuiderfoot[] = Form::hidden('type', $data['type']);
|
|
$formbuiderfoot[] = Form::radio('status', '状态', 0)->options([['label' => '开启', 'value' => 1], ['label' => '关闭', 'value' => 0]])->value(1);
|
|
$formbuiders = array_merge($f, $formbuider, $formbuiderfoot);
|
|
$form = Form::make_post_form('添加优惠券', $formbuiders, Url::buildUrl('save'));
|
|
$this->assign(compact('form'));
|
|
$this->assign('get', request()->param());
|
|
return $this->fetch();
|
|
}
|
|
|
|
/**
|
|
* 选择商品
|
|
* @param int $id
|
|
*/
|
|
public function select()
|
|
{
|
|
return $this->fetch();
|
|
}
|
|
|
|
/**
|
|
* 保存
|
|
*/
|
|
public function save()
|
|
{
|
|
$data = Util::postMore([
|
|
'title',
|
|
['product_id', []],
|
|
['category_id', 0],
|
|
'coupon_price',
|
|
'use_min_price',
|
|
'coupon_time',
|
|
'sort',
|
|
['status', 0],
|
|
['type', 0]
|
|
]);
|
|
if (!in_array($data['type'],[0,1,2])) return Json::fail('优惠券类型有误');
|
|
if (!$data['title']) return Json::fail('请输入优惠券名称');
|
|
if (!$data['coupon_price']) return Json::fail('请输入优惠券面值');
|
|
if (!$data['coupon_time']) return Json::fail('请输入优惠券有效期限');
|
|
$data['product_id'] = implode(',', $data['product_id']);
|
|
$data['add_time'] = time();
|
|
CouponModel::create($data);
|
|
return Json::successful('添加优惠券成功!');
|
|
}
|
|
|
|
/**
|
|
* 显示编辑资源表单页.
|
|
* @param $id
|
|
* @return string|void
|
|
* @throws \FormBuilder\exception\FormBuilderException
|
|
*/
|
|
public function edit($id)
|
|
{
|
|
$coupon = CouponModel::get($id);
|
|
if (!$coupon) return Json::fail('数据不存在!');
|
|
$f = [];
|
|
$f[] = Form::input('title', '优惠券名称', $coupon->getData('title'));
|
|
$f[] = Form::number('coupon_price', '优惠券面值', $coupon->getData('coupon_price'))->min(0);
|
|
$f[] = Form::number('use_min_price', '优惠券最低消费', $coupon->getData('use_min_price'))->min(0);
|
|
$f[] = Form::number('coupon_time', '优惠券有效期限', $coupon->getData('coupon_time'))->min(0);
|
|
$f[] = Form::number('sort', '排序', $coupon->getData('sort'));
|
|
$f[] = Form::radio('status', '状态', $coupon->getData('status'))->options([['label' => '开启', 'value' => 1], ['label' => '关闭', 'value' => 0]]);
|
|
|
|
$form = Form::make_post_form('添加优惠券', $f, Url::buildUrl('update', array('id' => $id)));
|
|
$this->assign(compact('form'));
|
|
return $this->fetch('public/form-builder');
|
|
}
|
|
|
|
|
|
/**
|
|
* 保存更新的资源
|
|
*
|
|
* @param $id
|
|
*/
|
|
public function update($id)
|
|
{
|
|
$data = Util::postMore([
|
|
'title',
|
|
'coupon_price',
|
|
'use_min_price',
|
|
'coupon_time',
|
|
'sort',
|
|
['status', 0]
|
|
]);
|
|
if (!$data['title']) return Json::fail('请输入优惠券名称');
|
|
if (!$data['coupon_price']) return Json::fail('请输入优惠券面值');
|
|
if (!$data['coupon_time']) return Json::fail('请输入优惠券有效期限');
|
|
CouponModel::edit($data, $id);
|
|
return Json::successful('修改成功!');
|
|
}
|
|
|
|
/**
|
|
* 删除指定资源
|
|
*
|
|
* @param int $id
|
|
* @return \think\Response
|
|
*/
|
|
public function delete($id)
|
|
{
|
|
if (!$id) return Json::fail('数据不存在!');
|
|
$data['is_del'] = 1;
|
|
if (!CouponModel::edit($data, $id))
|
|
return Json::fail(CouponModel::getErrorInfo('删除失败,请稍候再试!'));
|
|
else
|
|
return Json::successful('删除成功!');
|
|
}
|
|
|
|
/**
|
|
* 修改优惠券状态
|
|
* @param $id
|
|
* @return \think\response\Json
|
|
*/
|
|
public function status($id)
|
|
{
|
|
if (!$id) return Json::fail('数据不存在!');
|
|
if (!CouponModel::editIsDel($id))
|
|
return Json::fail(CouponModel::getErrorInfo('修改失败,请稍候再试!'));
|
|
else
|
|
return Json::successful('修改成功!');
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function grant_subscribe()
|
|
{
|
|
$where = Util::getMore([
|
|
['status', ''],
|
|
['title', ''],
|
|
['is_del', 0],
|
|
], $this->request);
|
|
$this->assign('where', $where);
|
|
$this->assign(CouponModel::systemPageCoupon($where));
|
|
return $this->fetch();
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function grant_all()
|
|
{
|
|
$where = Util::getMore([
|
|
['status', ''],
|
|
['title', ''],
|
|
['is_del', 0],
|
|
], $this->request);
|
|
$this->assign('where', $where);
|
|
$this->assign(CouponModel::systemPageCoupon($where));
|
|
return $this->fetch();
|
|
}
|
|
|
|
/**
|
|
* @param $id
|
|
*/
|
|
public function grant($id)
|
|
{
|
|
$where = Util::getMore([
|
|
['status', ''],
|
|
['title', ''],
|
|
['is_del', 0],
|
|
], $this->request);
|
|
$nickname = UserModel::where('uid', 'IN', $id)->column('nickname', 'uid');
|
|
$this->assign('where', $where);
|
|
$this->assign('uid', $id);
|
|
$this->assign('nickname', implode(',', $nickname));
|
|
$this->assign(CouponModel::systemPageCoupon($where));
|
|
return $this->fetch();
|
|
}
|
|
|
|
public function issue($id)
|
|
{
|
|
if (!CouponModel::be(['id' => $id, 'status' => 1, 'is_del' => 0]))
|
|
return $this->failed('发布的优惠劵已失效或不存在!');
|
|
$f = [];
|
|
$f[] = Form::input('id', '优惠劵ID', $id)->disabled(1);
|
|
$f[] = Form::dateTimeRange('range_date', '领取时间')->placeholder('不填为永久有效');
|
|
$f[] = Form::radio('is_permanent', '是否不限量', 0)->options([['label' => '限量', 'value' => 0], ['label' => '不限量', 'value' => 1]]);
|
|
$f[] = Form::number('count', '发布数量', 0)->min(0)->placeholder('不填或填0,为不限量');
|
|
$f[] = Form::radio('is_full_give', '消费满赠', 0)->options([['label' => '开启', 'value' => 1], ['label' => '关闭', 'value' => 0]]);
|
|
$f[] = Form::number('full_reduction', '满赠金额')->min(0)->placeholder('赠送优惠券的最低消费金额');
|
|
$f[] = Form::radio('is_give_subscribe', '首次关注赠送', 0)->options([['label' => '开启', 'value' => 1], ['label' => '关闭', 'value' => 0]]);
|
|
$f[] = Form::radio('status', '状态', 1)->options([['label' => '开启', 'value' => 1], ['label' => '关闭', 'value' => 0]]);
|
|
|
|
$form = Form::make_post_form('添加优惠券', $f, Url::buildUrl('update_issue', array('id' => $id)));
|
|
$this->assign(compact('form'));
|
|
return $this->fetch('public/form-builder');
|
|
|
|
// FormBuilder::text('id','优惠劵ID',$id)->disabled();
|
|
// FormBuilder::dateTimeRange('range_date','领取时间')->placeholder('不填为永久有效');
|
|
// FormBuilder::text('count','发布数量')->placeholder('不填或填0,为不限量');
|
|
// FormBuilder::radio('status','是否开启',[
|
|
// ['value'=>1,'label'=>'开启'],
|
|
// ['value'=>0,'label'=>'关闭']
|
|
// ],1);
|
|
// $this->assign(['title'=>'发布优惠券','rules'=>FormBuilder::builder()->getContent(),'action'=>Url::buildUrl('update_issue',array('id'=>$id))]);
|
|
// return $this->fetch('public/common_form');
|
|
}
|
|
|
|
public function update_issue($id)
|
|
{
|
|
list($_id, $rangeTime, $count, $status, $is_permanent, $full_reduction, $is_give_subscribe, $is_full_give) = Util::postMore([
|
|
'id',
|
|
['range_date', ['', '']],
|
|
['count', 0],
|
|
['status', 0],
|
|
['is_permanent', 0],
|
|
['full_reduction', 0],
|
|
['is_give_subscribe', 0],
|
|
['is_full_give', 0]
|
|
], null, true);
|
|
if ($_id != $id) return Json::fail('操作失败,信息不对称');
|
|
if (!$count) $count = 0;
|
|
if (!CouponModel::be(['id' => $id, 'status' => 1, 'is_del' => 0])) return Json::fail('发布的优惠劵已失效或不存在!');
|
|
if (count($rangeTime) != 2) return Json::fail('请选择正确的时间区间');
|
|
|
|
list($startTime, $endTime) = $rangeTime;
|
|
// echo $startTime;echo $endTime;var_dump($rangeTime);die;
|
|
if (!$startTime) $startTime = 0;
|
|
if (!$endTime) $endTime = 0;
|
|
if (!$startTime && $endTime) return Json::fail('请选择正确的开始时间');
|
|
if ($startTime && !$endTime) return Json::fail('请选择正确的结束时间');
|
|
if (StoreCouponIssue::setIssue($id, $count, strtotime($startTime), strtotime($endTime), $count, $status, $is_permanent,$full_reduction, $is_give_subscribe, $is_full_give))
|
|
return Json::successful('发布优惠劵成功!');
|
|
else
|
|
return Json::fail('发布优惠劵失败!');
|
|
}
|
|
|
|
|
|
/**
|
|
* 给分组用户发放优惠券
|
|
*/
|
|
public function grant_group()
|
|
{
|
|
$where = Util::getMore([
|
|
['status', ''],
|
|
['title', ''],
|
|
['is_del', 0],
|
|
], $this->request);
|
|
$group = UserModel::getUserGroup();
|
|
$this->assign('where', $where);
|
|
$this->assign('group', json_encode($group));
|
|
$this->assign(CouponModel::systemPageCoupon($where));
|
|
return $this->fetch();
|
|
}
|
|
|
|
/**
|
|
* 给标签用户发放优惠券
|
|
*/
|
|
public function grant_tag()
|
|
{
|
|
$where = Util::getMore([
|
|
['status', ''],
|
|
['title', ''],
|
|
['is_del', 0],
|
|
], $this->request);
|
|
$tag = UserModel::getUserTag();;//获取所有标签
|
|
$this->assign('where', $where);
|
|
$this->assign('tag', json_encode($tag));
|
|
$this->assign(CouponModel::systemPageCoupon($where));
|
|
return $this->fetch();
|
|
}
|
|
}
|