Sin descripción
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Coupon.php 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 陈风任 <491085389@qq.com>
  11. * Date: 2019-2-12
  12. */
  13. namespace app\admin\controller;
  14. use think\Page;
  15. use think\Db;
  16. use think\Config;
  17. use app\admin\logic\ShopLogic;
  18. class Coupon extends Base
  19. {
  20. public $ShopLogic;
  21. public $userConfig = [];
  22. /**
  23. * 构造方法
  24. */
  25. public function _initialize()
  26. {
  27. parent::_initialize();
  28. $functionLogic = new \app\common\logic\FunctionLogic;
  29. $functionLogic->validate_authorfile(2);
  30. $this->ShopLogic = new ShopLogic;
  31. // 优惠券数据表
  32. $this->shop_coupon_db = Db::name('shop_coupon');
  33. $this->shop_coupon_use_db = Db::name('shop_coupon_use');
  34. // 商品数据表
  35. $this->archives_db = Db::name('archives');
  36. // 商品分类数据表
  37. $this->arctype_db = Db::name('arctype');
  38. // 默认商品模型
  39. $this->channeltype = 2;
  40. $this->assign('channeltype', $this->channeltype);
  41. // 列出营销功能里已使用的模块
  42. $marketFunc = $this->ShopLogic->marketLogic();
  43. if (!in_array('coupon', $marketFunc)) {
  44. // $this->error('内置功能已废弃!');
  45. }
  46. $this->assign('marketFunc', $marketFunc);
  47. }
  48. // 优惠券列表
  49. public function index()
  50. {
  51. $condition = [
  52. 'lang' => $this->admin_lang,
  53. 'is_del' => 0
  54. ];
  55. $keywords = input('keywords/s');
  56. // 应用搜索条件
  57. if (!empty($keywords)) $condition['coupon_name'] = ['LIKE', "%{$keywords}%"];
  58. // 分页
  59. $count = $this->shop_coupon_db->where($condition)->count();
  60. $Page = new Page($count, config('paginate.list_rows'));
  61. $show = $Page->show();
  62. $this->assign('page', $show);
  63. $this->assign('pager', $Page);
  64. // 数据查询
  65. $list = $this->shop_coupon_db
  66. ->where($condition)
  67. ->order('sort_order asc, coupon_id desc')
  68. ->limit($Page->firstRow . ',' . $Page->listRows)
  69. ->select();
  70. if (!empty($list)) {
  71. $ids = [];
  72. foreach ($list as $k => $v) {
  73. $ids[] = $v['coupon_id'];
  74. }
  75. //已领数量
  76. $getedArr = $this->shop_coupon_use_db->field('count(*) as count,coupon_id')->where('coupon_id', 'in', $ids)->group('coupon_id')->getAllWithIndex('coupon_id');
  77. foreach ($list as $k => $v) {
  78. $list[$k]['geted'] = $getedArr[$v['coupon_id']]['count'];
  79. }
  80. }
  81. $this->assign('list', $list);
  82. return $this->fetch();
  83. }
  84. // 新增优惠券
  85. public function add()
  86. {
  87. if (IS_POST) {
  88. $post = input('post.');
  89. // 数据判断处理
  90. if (empty($post['coupon_name'])) $this->error('请填写优惠券名称');
  91. $post['coupon_name'] = htmlspecialchars_decode($post['coupon_name']);
  92. if ('' == $post['conditions_use']) $this->error('请填写优惠规则-使用条件');
  93. if (empty($post['coupon_price'])) $this->error('请填写优惠规则-减免金额');
  94. if (empty($post['coupon_stock'])) $this->error('请填写库存');
  95. if (1 == $post['use_type']) {
  96. if (empty($post['use_start_time'])) $this->error('请填写优惠券有效开始时间');
  97. if (empty($post['use_end_time'])) $this->error('请填写优惠券有效结束时间');
  98. } else if (2 == $post['use_type'] || 3 == $post['use_type']) {
  99. if (empty($post['valid_days'])) $this->error('请填写优惠券有效天数');
  100. }
  101. if (empty($post['start_date'])) $this->error('请选择优惠券发放日期');
  102. if (empty($post['end_date'])) $this->error('请选择优惠券结束日期');
  103. if (2 == $post['coupon_type']) {
  104. if (empty($post['product_id'])) $this->error('请填写指定的商品ID');
  105. }
  106. $post['redeem_authority'] = !empty($post['level_id']) ? implode(',', $post['level_id']) : '';
  107. $post['start_date'] = strtotime($post['start_date']);
  108. $post['end_date'] = strtotime($post['end_date']);
  109. $post['use_start_time'] = strtotime($post['use_start_time']);
  110. $post['use_end_time'] = strtotime($post['use_end_time']);
  111. $post['add_time'] = getTime();
  112. $post['update_time'] = getTime();
  113. $post['lang'] = $this->admin_lang;
  114. if (1 == $post['coupon_type']) {
  115. $post['product_id'] = '';
  116. $post['arctype_id'] = '';
  117. } else if (2 == $post['coupon_type']) {
  118. $post['arctype_id'] = '';
  119. // 去除重复项
  120. $post['product_id'] = implode(',', array_unique(explode(',', $post['product_id'])));
  121. } else if (3 == $post['coupon_type']) {
  122. $post['product_id'] = '';
  123. }
  124. // 添加新优惠券
  125. $ResultID = $this->shop_coupon_db->add($post);
  126. if (!empty($ResultID)) {
  127. $ResultID = 2 > strlen($ResultID) ? '0' . $ResultID : $ResultID;
  128. $coupon_code = date('Ymd') . $ResultID;
  129. $update_where = [
  130. 'coupon_id' => $ResultID,
  131. ];
  132. $this->shop_coupon_db->where($update_where)->update(['coupon_code' => $coupon_code]);
  133. $this->success('操作成功', url('Coupon/index'));
  134. } else {
  135. $this->error('操作失败');
  136. }
  137. }
  138. // 会员级别
  139. $users_level = model('UsersLevel')->getList();
  140. $this->assign('users_level', $users_level);
  141. // 开始时间
  142. $start_date = date("Y-m-d H:i:s", strtotime("-0 day"));
  143. $this->assign('start_date', $start_date);
  144. // 结束时间
  145. $end_date = date("Y-m-d H:i:s", strtotime("+15 day"));
  146. $this->assign('end_date', $end_date);
  147. return $this->fetch();
  148. }
  149. // 优惠券编辑
  150. public function edit()
  151. {
  152. if (IS_POST) {
  153. $post = input('post.');
  154. $post['coupon_id'] = intval($post['coupon_id']);
  155. // 数据判断处理
  156. if (empty($post['coupon_name'])) $this->error('请填写优惠券名称');
  157. $post['coupon_name'] = htmlspecialchars_decode($post['coupon_name']);
  158. if ('' == $post['conditions_use']) $this->error('请填写优惠规则-使用条件');
  159. if (empty($post['coupon_price'])) $this->error('请填写优惠规则-减免金额');
  160. if (empty($post['coupon_stock'])) $this->error('请填写库存');
  161. if (1 == $post['use_type']) {
  162. if (empty($post['use_start_time'])) $this->error('请填写优惠券有效开始时间');
  163. if (empty($post['use_end_time'])) $this->error('请填写优惠券有效结束时间');
  164. } else if (2 == $post['use_type'] || 3 == $post['use_type']) {
  165. if (empty($post['valid_days'])) $this->error('请填写优惠券有效天数');
  166. }
  167. if (empty($post['start_date'])) $this->error('请选择优惠券发放日期');
  168. if (empty($post['end_date'])) $this->error('请选择优惠券结束日期');
  169. if (2 == $post['coupon_type']) {
  170. if (empty($post['product_id'])) $this->error('请填写指定的商品ID');
  171. }
  172. $post['redeem_authority'] = !empty($post['level_id']) ? implode(',', $post['level_id']) : '';
  173. $post['start_date'] = strtotime($post['start_date']);
  174. $post['end_date'] = strtotime($post['end_date']);
  175. $post['use_start_time'] = strtotime($post['use_start_time']);
  176. $post['use_end_time'] = strtotime($post['use_end_time']);
  177. $post['update_time'] = getTime();
  178. if (1 == $post['coupon_type']) {
  179. $post['product_id'] = '';
  180. $post['arctype_id'] = '';
  181. } else if (2 == $post['coupon_type']) {
  182. $post['arctype_id'] = '';
  183. } else if (3 == $post['coupon_type']) {
  184. $post['product_id'] = '';
  185. }
  186. $update_where = [
  187. 'coupon_id' => $post['coupon_id'],
  188. ];
  189. // 更新优惠券
  190. $ResultID = $this->shop_coupon_db->where($update_where)->update($post);
  191. if (!empty($ResultID)) {
  192. $this->success('更新成功', url('Coupon/index'));
  193. } else {
  194. $this->error('更新失败');
  195. }
  196. }
  197. $shop_coupon_where = [
  198. 'coupon_id' => input('id/d'),
  199. ];
  200. // 优惠券数据
  201. $shop_coupon = $this->shop_coupon_db->where($shop_coupon_where)->find();
  202. $shop_coupon['redeem_authority'] = explode(',', $shop_coupon['redeem_authority']);
  203. $shop_coupon['product_id_num'] = !empty($shop_coupon['product_id']) ? count(explode(',', $shop_coupon['product_id'])) : 0;
  204. $shop_coupon['arctype_id_num'] = !empty($shop_coupon['arctype_id']) ? count(explode(',', $shop_coupon['arctype_id'])) : 0;
  205. $this->assign('info', $shop_coupon);
  206. // 会员级别
  207. $users_level = model('UsersLevel')->getList();
  208. $this->assign('users_level', $users_level);
  209. return $this->fetch();
  210. }
  211. // 优惠券删除
  212. public function del()
  213. {
  214. $coupon_id = input('del_id/a');
  215. $coupon_id = eyIntval($coupon_id);
  216. if (IS_AJAX_POST && !empty($coupon_id)) {
  217. // 删除统一条件
  218. $Where = [
  219. 'coupon_id' => ['IN', $coupon_id],
  220. ];
  221. $result = $this->shop_coupon_db->field('coupon_name')->where($Where)->select();
  222. $coupon_name_list = get_arr_column($result, 'coupon_name');
  223. $return = $this->shop_coupon_db->where($Where)->update(['is_del'=>1,'update_time'=>getTime()]);
  224. if ($return) {
  225. adminLog('删除优惠券:' . implode(',', $coupon_name_list));
  226. $this->success('删除成功');
  227. } else {
  228. $this->error('删除失败');
  229. }
  230. }
  231. $this->error('参数有误');
  232. }
  233. // 选择商品
  234. public function select_product()
  235. {
  236. // 查询条件
  237. $where['a.channel'] = $this->channeltype;
  238. $where['a.status'] = 1;
  239. $where['a.is_del'] = 0;
  240. $where['a.lang'] = $this->admin_lang;
  241. $keywords = input('keywords/s');
  242. if (!empty($keywords)) $where['a.title'] = ['LIKE', "%{$keywords}%"];
  243. // 指定商品ID查询
  244. $product_ids = input('product_ids/s');
  245. if (!empty($product_ids)) $where['a.aid'] = ['IN', explode(',', $product_ids)];
  246. // 指定分类查询
  247. $typeid = input('typeid/d') ? input('typeid/d') : 0;
  248. if (!empty($typeid)) {
  249. $hasRow = model('Arctype')->getHasChildren($typeid);
  250. $typeids = get_arr_column($hasRow, 'id');
  251. $where['a.typeid'] = ['IN', $typeids];
  252. }
  253. $count = $this->archives_db->alias('a')->where($where)->count();
  254. $pageObj = new Page($count, config('paginate.list_rows'));
  255. $this->assign('page', $pageObj->show());
  256. $this->assign('pager', $pageObj);
  257. $field = 'a.aid, a.litpic, a.aid as product_id, a.title, a.users_price, b.typename';
  258. $ResultData = $this->archives_db
  259. ->alias('a')
  260. ->field($field)
  261. ->join('__ARCTYPE__ b', 'a.typeid = b.id', 'LEFT')
  262. ->where($where)
  263. ->order('a.sort_order asc, a.users_price desc, a.aid desc')
  264. ->limit($pageObj->firstRow . ',' . $pageObj->listRows)
  265. ->select();
  266. $array_new = get_archives_data($ResultData, 'aid');
  267. foreach ($ResultData as $key => $value) {
  268. $ResultData[$key]['arcurl'] = get_arcurl($array_new[$value['aid']]);
  269. $ResultData[$key]['litpic'] = handle_subdir_pic($value['litpic']);
  270. }
  271. $this->assign('list', $ResultData);
  272. /*允许发布文档列表的栏目*/
  273. $arctype_html = allow_release_arctype($typeid, [$this->channeltype]);
  274. $this->assign('arctype_html', $arctype_html);
  275. $this->assign('typeid', $typeid);
  276. /*--end*/
  277. return $this->fetch();
  278. }
  279. // 获取指定分类或查询后的所有商品ID
  280. public function ajax_get_product_id()
  281. {
  282. if (IS_AJAX_POST) {
  283. $post = input('post.');
  284. // 查询条件
  285. $where['a.channel'] = $this->channeltype;
  286. $where['a.status'] = 1;
  287. $where['a.is_del'] = 0;
  288. $where['a.lang'] = $this->admin_lang;
  289. $keywords = input('keywords/s');
  290. if (!empty($keywords)) $where['a.title'] = ['LIKE', "%{$keywords}%"];
  291. // 指定商品ID查询
  292. $product_ids = input('product_ids/s');
  293. if (!empty($product_ids)) $where['a.aid'] = ['IN', explode(',', $product_ids)];
  294. // 指定分类查询
  295. $typeid = input('typeid/d') ? input('typeid/d') : 0;
  296. if (!empty($typeid)) {
  297. $hasRow = model('Arctype')->getHasChildren($typeid);
  298. $typeids = get_arr_column($hasRow, 'id');
  299. $where['a.typeid'] = ['IN', $typeids];
  300. }
  301. $field = 'a.aid, a.aid as product_id';
  302. $ResultData = $this->archives_db
  303. ->alias('a')
  304. ->field($field)
  305. ->where($where)
  306. ->order('a.sort_order asc, a.users_price desc, a.aid desc')
  307. ->select();
  308. $product_ids = get_arr_column($ResultData, 'product_id');
  309. $ReturnData['ProductNum'] = count($ResultData);
  310. $ReturnData['ProductIDS'] = implode(',', $product_ids);
  311. $this->success('', null, $ReturnData);
  312. }
  313. }
  314. /**
  315. * 选择分类
  316. * @return [type] [description]
  317. */
  318. public function select_arctype()
  319. {
  320. $assign_data = [];
  321. // 目录列表
  322. $where = [];
  323. $where['current_channel'] = $this->channeltype;
  324. $where['is_del'] = 0; // 回收站功能
  325. $arctypeLogic = new \app\common\logic\ArctypeLogic;
  326. $arctype_list = $arctypeLogic->arctype_list(0, 0, false, 0, $where, false);
  327. $assign_data['arctype_list'] = $arctype_list;
  328. /*获取所有有子栏目的栏目id*/
  329. $parent_ids = Db::name('arctype')->where([
  330. 'parent_id' => ['gt', 0],
  331. 'is_del' => 0,
  332. ])->group('parent_id')->cache(true, EYOUCMS_CACHE_TIME, 'arctype')->column('parent_id');
  333. $cookied_treeclicked = json_decode(cookie('coupontypeids-treeClicked-Arr'));
  334. empty($cookied_treeclicked) && $cookied_treeclicked = [];
  335. $all_treeclicked = cookie('coupontypeids-treeClicked_All');
  336. empty($all_treeclicked) && $all_treeclicked = [];
  337. $tree = [
  338. 'has_children'=>!empty($parent_ids) ? 1 : 0,
  339. 'parent_ids'=>json_encode($parent_ids),
  340. 'all_treeclicked'=>$all_treeclicked,
  341. 'cookied_treeclicked'=>$cookied_treeclicked,
  342. 'cookied_treeclicked_arr'=>json_encode($cookied_treeclicked),
  343. ];
  344. $assign_data['tree'] = $tree;
  345. /* end */
  346. // 分类
  347. $typeids = input('param.typeids/s');
  348. $typeids = trim($typeids, ',');
  349. $typeids_arr = explode(',', $typeids);
  350. $assign_data['typeids'] = $typeids;
  351. $assign_data['typeids_arr'] = $typeids_arr;
  352. $this->assign($assign_data);
  353. return $this->fetch();
  354. }
  355. }