Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

Discount.php 21KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\admin\controller;
  14. use think\Db;
  15. use think\Page;
  16. class Discount extends Base
  17. {
  18. /**
  19. * 构造方法
  20. */
  21. public function _initialize()
  22. {
  23. parent::_initialize();
  24. $functionLogic = new \app\common\logic\FunctionLogic;
  25. $functionLogic->validate_authorfile(2);
  26. }
  27. /**
  28. * 限时折扣商品列表
  29. */
  30. public function index()
  31. {
  32. $list = array();
  33. $keywords = input('keywords/s');
  34. $condition = array();
  35. if (!empty($keywords)) {
  36. $condition['b.title'] = array('LIKE', "%{$keywords}%");
  37. }
  38. $fields = "a.*,b.title,b.litpic";
  39. $Db = Db::name('discount_goods');
  40. $count = $Db->alias("a")->join('archives b', "a.aid=b.aid")->where($condition)->count('a.discount_gid');// 查询满足要求的总记录数
  41. $Page = $pager = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
  42. $list = $Db->alias("a")->field($fields)
  43. ->join('archives b', "a.aid=b.aid")
  44. ->where($condition)
  45. ->order('a.sort_order asc, a.discount_gid desc')
  46. ->limit($Page->firstRow . ',' . $Page->listRows)
  47. ->select();
  48. $show = $Page->show();// 分页显示输出
  49. $this->assign('page', $show);// 赋值分页输出
  50. $this->assign('list', $list);// 赋值数据集
  51. $this->assign('pager', $pager);// 赋值分页对象
  52. return $this->fetch();
  53. }
  54. /**
  55. * 商品选择
  56. * @return [type] [description]
  57. */
  58. public function ajax_archives_list()
  59. {
  60. $assign_data = array();
  61. $condition = array();
  62. // 获取到所有URL参数
  63. $param = input('param.');
  64. $typeid = input('param.typeid/d');
  65. // 应用搜索条件
  66. foreach (['keywords', 'typeid'] as $key) {
  67. if ($key == 'keywords' && !empty($param[$key])) {
  68. $condition['a.title'] = array('LIKE', "%{$param[$key]}%");
  69. } else if ($key == 'typeid' && !empty($param[$key])) {
  70. $typeid = $param[$key];
  71. $hasRow = model('Arctype')->getHasChildren($typeid);
  72. $typeids = get_arr_column($hasRow, 'id');
  73. /*权限控制 by 小虎哥*/
  74. $admin_info = session('admin_info');
  75. if (0 < intval($admin_info['role_id'])) {
  76. $auth_role_info = $admin_info['auth_role_info'];
  77. if (!empty($auth_role_info)) {
  78. if (isset($auth_role_info['only_oneself']) && 1 == $auth_role_info['only_oneself']) {
  79. $condition['a.admin_id'] = $admin_info['admin_id'];
  80. }
  81. if (!empty($auth_role_info['permission']['arctype'])) {
  82. if (!empty($typeid)) {
  83. $typeids = array_intersect($typeids, $auth_role_info['permission']['arctype']);
  84. }
  85. }
  86. }
  87. }
  88. /*--end*/
  89. $condition['a.typeid'] = array('IN', $typeids);
  90. } else if (!empty($param[$key])) {
  91. $condition['a.' . $key] = array('eq', $param[$key]);
  92. }
  93. }
  94. // 审核通过
  95. $condition['a.arcrank'] = array('gt', -1);
  96. /*多语言*/
  97. $condition['a.lang'] = array('eq', $this->admin_lang);
  98. /*回收站数据不显示*/
  99. $condition['a.is_del'] = array('eq', 0);
  100. $channels = 2;
  101. $condition['a.channel'] = $channels;
  102. $count = Db::name('archives')->alias('a')->where($condition)->count('aid');// 查询满足要求的总记录数
  103. $Page = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
  104. $list = Db::name('archives')
  105. ->alias('a')
  106. ->field("a.aid,a.litpic,a.title,b.typename,a.update_time")
  107. ->where($condition)
  108. ->join('__ARCTYPE__ b', 'a.typeid = b.id', 'LEFT')
  109. ->order('a.sort_order asc, a.aid desc')
  110. ->limit($Page->firstRow . ',' . $Page->listRows)
  111. ->getAllWithIndex('aid');
  112. $show = $Page->show(); // 分页显示输出
  113. $assign_data['page'] = $show; // 赋值分页输出
  114. $assign_data['list'] = $list; // 赋值数据集
  115. $assign_data['pager'] = $Page; // 赋值分页对象
  116. /*允许发布文档列表的栏目*/
  117. $allow_release_channel = !empty($channels) ? explode(',', $channels) : [];
  118. $assign_data['arctype_html'] = allow_release_arctype($typeid, $allow_release_channel);
  119. /*--end*/
  120. // 模型名称
  121. $channeltype_ntitle = '文档';
  122. if (!stristr($channels, ',')) {
  123. $channeltype_row = \think\Cache::get('extra_global_channeltype');
  124. $channeltype_ntitle = $channeltype_row[$channels]['ntitle'];
  125. }
  126. $assign_data['channeltype_ntitle'] = $channeltype_ntitle;
  127. $this->assign($assign_data);
  128. return $this->fetch();
  129. }
  130. /**
  131. * 添加限时折扣商品
  132. */
  133. public function add()
  134. {
  135. if (IS_POST) {
  136. $post = input('post.');
  137. if (is_array($post['discount_price'])) {
  138. $post['is_sku'] = 1; // 多规格限时折扣商品
  139. if (is_array($post['discount_stock'])) {
  140. $post['discount_stock_total'] = 0;
  141. foreach ($post['discount_stock'] as $k => $v) {
  142. $post['discount_stock_total'] += $v['spec_discount_stock'];
  143. }
  144. }
  145. }
  146. $newData = [
  147. 'aid' => $post['aid'],
  148. 'is_sku' => isset($post['is_sku']) ? $post['is_sku'] : 0,
  149. 'discount_stock' => is_array($post['discount_stock']) ? $post['discount_stock_total'] : $post['discount_stock'],
  150. 'discount_price' => is_array($post['discount_price']) ? 0 : $post['discount_price'],
  151. 'virtual_sales' => $post['virtual_sales'],
  152. 'add_time' => getTime(),
  153. 'update_time' => getTime(),
  154. ];
  155. $insertId = Db::name('discount_goods')->insertGetId($newData);
  156. if (false !== $insertId) {
  157. if (isset($post['is_sku']) && 1 == $post['is_sku']) {
  158. model('ProductSpecValue')->ProducSpecValueEditSave($post);
  159. }
  160. adminLog('新增限时折扣商品:' . $insertId);
  161. $this->success("操作成功", url('Discount/index'));
  162. } else {
  163. $this->error("操作失败", url('Discount/index'));
  164. }
  165. exit;
  166. }
  167. $id = input('id/d');
  168. $info = Db::name('archives')->field('aid,litpic,title,users_price')->where('aid', $id)->find();
  169. // 获取规格数据信息
  170. // 包含:SpecSelectName、HtmlTable、spec_mark_id_arr、preset_value
  171. $assign_data = model('ProductSpecData')->GetDiscountProductSpecData($id);
  172. // 商城配置
  173. $shopConfig = getUsersConfigData('shop');
  174. $assign_data['shopConfig'] = $shopConfig;
  175. $this->assign('info', $info);
  176. $this->assign($assign_data);
  177. return $this->fetch();
  178. }
  179. /**
  180. * 编辑限时折扣商品
  181. */
  182. public function edit()
  183. {
  184. if (IS_POST) {
  185. $post = input('post.');
  186. if (is_array($post['discount_price'])) {
  187. $post['is_sku'] = 1; // 多规格限时折扣商品
  188. if (is_array($post['discount_stock'])) {
  189. $post['discount_stock_total'] = 0;
  190. foreach ($post['discount_stock'] as $k => $v) {
  191. $post['discount_stock_total'] += $v['spec_discount_stock'];
  192. }
  193. }
  194. }
  195. $data = [
  196. 'is_sku' => isset($post['is_sku']) ? $post['is_sku'] : 0,
  197. 'discount_stock' => is_array($post['discount_stock']) ? $post['discount_stock_total'] : $post['discount_stock'],
  198. 'discount_price' => is_array($post['discount_price']) ? 0 : $post['discount_price'],
  199. 'virtual_sales' => $post['virtual_sales'],
  200. 'update_time' => getTime(),
  201. ];
  202. $r = Db::name('discount_goods')->where('discount_gid', intval($post['discount_gid']))->update($data);
  203. if (false !== $r) {
  204. if (isset($post['is_sku']) && 1 == $post['is_sku']) {
  205. model('ProductSpecValue')->ProducSpecValueEditSave($post);
  206. }
  207. adminLog('编辑限时折扣商品:' . $post['discount_gid']);
  208. $this->success("操作成功", url('Discount/index'));
  209. } else {
  210. $this->error("操作失败", url('Discount/index'));
  211. }
  212. exit;
  213. }
  214. $id = input('id/d'); //指discount_gid
  215. $info = Db::name('discount_goods')
  216. ->alias('a')
  217. ->field('a.*,b.litpic,b.title,b.users_price')
  218. ->join('archives b', 'a.aid = b.aid')
  219. ->where('a.discount_gid', $id)
  220. ->find();
  221. // 获取规格数据信息
  222. // 包含:SpecSelectName、HtmlTable、spec_mark_id_arr、preset_value
  223. $assign_data = model('ProductSpecData')->GetDiscountProductSpecData($info['aid']);
  224. // 商城配置
  225. $shopConfig = getUsersConfigData('shop');
  226. $assign_data['shopConfig'] = $shopConfig;
  227. $this->assign('info', $info);
  228. $this->assign($assign_data);
  229. return $this->fetch();
  230. }
  231. /**
  232. * 删除限时折扣商品
  233. */
  234. public function del()
  235. {
  236. if (IS_POST) {
  237. $id_arr = input('del_id/a');
  238. $id_arr = eyIntval($id_arr);
  239. if (!empty($id_arr)) {
  240. $aids = Db::name('discount_goods')
  241. ->where('discount_gid', 'IN', $id_arr)
  242. ->column('aid');
  243. $r = Db::name('discount_goods')
  244. ->where('discount_gid', 'IN', $id_arr)
  245. ->delete();
  246. if ($r) {
  247. Db::name('product_spec_value')
  248. ->where('aid', 'IN', $aids)
  249. ->update([
  250. 'discount_price' => 0,
  251. 'discount_stock' => 0,
  252. 'is_discount' => 0,
  253. 'update_time' => getTime()
  254. ]);
  255. adminLog('删除限时折扣商品,aid:' . implode(',', $aids));
  256. $this->success('删除成功');
  257. } else {
  258. $this->error('删除失败');
  259. }
  260. } else {
  261. $this->error('参数有误');
  262. }
  263. }
  264. $this->error('非法访问');
  265. }
  266. /**
  267. * 活动会场列表
  268. * @return mixed
  269. */
  270. public function active_index()
  271. {
  272. $list = array();
  273. // $keywords = input('keywords/s');
  274. //
  275. $condition = array();
  276. // if (!empty($keywords)) {
  277. // $condition['title'] = array('LIKE', "%{$keywords}%");
  278. // }
  279. $Db = Db::name('discount_active');
  280. $count = $Db->where($condition)->count('active_id');// 查询满足要求的总记录数
  281. $Page = $pager = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
  282. $list = $Db
  283. ->where($condition)
  284. ->order('end_date desc')
  285. ->limit($Page->firstRow . ',' . $Page->listRows)
  286. ->getAllWithIndex('active_id');
  287. $show = $Page->show();// 分页显示输出
  288. $this->assign('page', $show);// 赋值分页输出
  289. $this->assign('list', $list);// 赋值数据集
  290. $this->assign('pager', $pager);// 赋值分页对象
  291. return $this->fetch();
  292. }
  293. /**
  294. * 添加活动场次
  295. */
  296. public function active_add()
  297. {
  298. if (IS_POST) {
  299. $post = input('post.');
  300. if (!empty($post['start_date'])) $post['start_date'] = strtotime($post['start_date']);
  301. if (!empty($post['end_date'])) $post['end_date'] = strtotime($post['end_date']);
  302. if (!empty($post['preheat_time'])) {
  303. $post['preheat_time'] = strtotime($post['preheat_time']);
  304. if ($post['preheat_time'] > $post['start_date']){
  305. $this->error('预热时间不能大于开始时间');
  306. }
  307. }
  308. $post['add_time'] = getTime();
  309. $post['update_time'] = getTime();
  310. $insertId = Db::name('discount_active')->insertGetId($post);
  311. if (false !== $insertId) {
  312. $goodsData = [];
  313. $discount_goods_id_arr = [];
  314. foreach ($post['goods']['discount_gid'] as $k => $v) {
  315. if (!in_array($v,$discount_goods_id_arr)){
  316. $discount_goods_id_arr[] = $v;
  317. $goodsData[] = [
  318. 'active_id' => $insertId,
  319. 'discount_goods_id' => $v,
  320. 'aid' => $post['goods']['aid'][$k],
  321. 'add_time' => getTime(),
  322. 'update_time' => getTime(),
  323. ];
  324. }
  325. }
  326. Db::name('discount_active_goods')->insertAll($goodsData);
  327. adminLog('新增限时折扣活动:' . $insertId);
  328. $this->success("操作成功", url('Discount/active_index'));
  329. } else {
  330. $this->error("操作失败", url('Discount/index'));
  331. }
  332. exit;
  333. }
  334. return $this->fetch();
  335. }
  336. /**
  337. * 编辑活动
  338. */
  339. public function active_edit()
  340. {
  341. if(IS_POST){
  342. $post = input('post.');
  343. if (!empty($post['goods'])){
  344. Db::name('discount_active_goods')
  345. ->where(['active_id'=>intval($post['active_id'])])
  346. ->delete();
  347. $goodsData = [];
  348. $discount_goods_id_arr = [];
  349. foreach ($post['goods']['discount_gid'] as $k => $v) {
  350. if (!in_array($v,$discount_goods_id_arr)){
  351. $discount_goods_id_arr[] = $v;
  352. $goodsData[] = [
  353. 'active_id' => $post['active_id'],
  354. 'discount_goods_id' => $v,
  355. 'aid' => $post['goods']['aid'][$k],
  356. 'add_time' => getTime(),
  357. 'update_time' => getTime(),
  358. ];
  359. }
  360. }
  361. $r = Db::name('discount_active_goods')->insertAll($goodsData);
  362. if ($r){
  363. adminLog('编辑活动active_id:' . $post['active_id']);
  364. $this->success("操作成功", url('Discount/active_index',['id'=>$post['active_id']]));
  365. } else {
  366. $this->error("操作失败", url('Discount/active_edit',['id'=>$post['active_id']]));
  367. }
  368. }
  369. }
  370. $id = input('id/d');
  371. $info = Db::name('discount_active')->where('active_id',$id)->find();
  372. $goods = Db::name('discount_active_goods')
  373. ->alias('a')
  374. ->field('a.*,b.litpic,b.title')
  375. ->join('archives b','a.aid=b.aid')
  376. ->where('a.active_id',$id)
  377. ->select();
  378. $this->assign('info',$info);
  379. $this->assign('goods',$goods);
  380. return $this->fetch();
  381. }
  382. /**
  383. * 删除活动会场
  384. */
  385. public function active_del()
  386. {
  387. if (IS_POST) {
  388. $id_arr = input('del_id/a');
  389. $id_arr = eyIntval($id_arr);
  390. if (!empty($id_arr)) {
  391. $r = Db::name('discount_active')
  392. ->where('active_id', 'IN', $id_arr)
  393. ->delete();
  394. if ($r) {
  395. Db::name('discount_active_goods')
  396. ->where('active_id', 'IN', $id_arr)
  397. ->delete();
  398. adminLog('删除活动,active_id:' . implode(',', $id_arr));
  399. $this->success('删除成功');
  400. } else {
  401. $this->error('删除失败');
  402. }
  403. } else {
  404. $this->error('参数有误');
  405. }
  406. }
  407. $this->error('非法访问');
  408. }
  409. /**
  410. * 限时折扣商品选择
  411. * @return [type] [description]
  412. */
  413. public function goods_list()
  414. {
  415. $assign_data = array();
  416. $condition = array();
  417. // 获取到所有URL参数
  418. $param = input('param.');
  419. $typeid = input('param.typeid/d');
  420. // 应用搜索条件
  421. foreach (['keywords', 'typeid'] as $key) {
  422. if ($key == 'keywords' && !empty($param[$key])) {
  423. $condition['a.title'] = array('LIKE', "%{$param[$key]}%");
  424. } else if ($key == 'typeid' && !empty($param[$key])) {
  425. $typeid = $param[$key];
  426. $hasRow = model('Arctype')->getHasChildren($typeid);
  427. $typeids = get_arr_column($hasRow, 'id');
  428. /*权限控制 by 小虎哥*/
  429. $admin_info = session('admin_info');
  430. if (0 < intval($admin_info['role_id'])) {
  431. $auth_role_info = $admin_info['auth_role_info'];
  432. if (!empty($auth_role_info)) {
  433. if (isset($auth_role_info['only_oneself']) && 1 == $auth_role_info['only_oneself']) {
  434. $condition['a.admin_id'] = $admin_info['admin_id'];
  435. }
  436. if (!empty($auth_role_info['permission']['arctype'])) {
  437. if (!empty($typeid)) {
  438. $typeids = array_intersect($typeids, $auth_role_info['permission']['arctype']);
  439. }
  440. }
  441. }
  442. }
  443. /*--end*/
  444. $condition['a.typeid'] = array('IN', $typeids);
  445. }
  446. }
  447. /*回收站数据不显示*/
  448. $where['b.is_del'] = 0;
  449. $where['b.status'] = 1;
  450. $count = Db::name('discount_goods')->alias('b')->where($where)->count('aid');// 查询满足要求的总记录数
  451. $Page = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
  452. $list = Db::name('discount_goods')
  453. ->alias('b')
  454. ->field("a.litpic,a.title,b.discount_gid,b.aid,b.update_time,b.discount_stock")
  455. ->where($where)
  456. ->where($condition)
  457. ->join('archives a', 'a.aid = b.aid', 'LEFT')
  458. ->join('arctype c', 'a.typeid = c.id', 'LEFT')
  459. ->order('b.sort_order asc, b.discount_gid desc')
  460. ->limit($Page->firstRow . ',' . $Page->listRows)
  461. ->getAllWithIndex('aid');
  462. if ($list) {
  463. foreach ($list as $key => $val) {
  464. $val['litpic'] = get_default_pic($val['litpic']);
  465. $json_encode_params = [
  466. 'discount_gid' => $val['discount_gid'],
  467. 'aid' => $val['aid'],
  468. 'title' => $val['title'],
  469. 'litpic' => $val['litpic'],
  470. ];
  471. $val['json_encode_params'] = json_encode($json_encode_params, JSON_UNESCAPED_SLASHES);
  472. $list[$key] = $val;
  473. }
  474. }
  475. $show = $Page->show(); // 分页显示输出
  476. $assign_data['page'] = $show; // 赋值分页输出
  477. $assign_data['list'] = $list; // 赋值数据集
  478. $assign_data['pager'] = $Page; // 赋值分页对象
  479. $channels = 2;
  480. /*允许发布文档列表的栏目*/
  481. $allow_release_channel = !empty($channels) ? explode(',', $channels) : [];
  482. $assign_data['arctype_html'] = allow_release_arctype($typeid, $allow_release_channel);
  483. /*--end*/
  484. $this->assign($assign_data);
  485. return $this->fetch();
  486. }
  487. }