説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Sharp.php 29KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737
  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. use think\Cache;
  17. use app\admin\logic\ShopLogic;
  18. class Sharp extends Base
  19. {
  20. public $ShopLogic;
  21. /**
  22. * 构造方法
  23. */
  24. public function _initialize()
  25. {
  26. parent::_initialize();
  27. $functionLogic = new \app\common\logic\FunctionLogic;
  28. $functionLogic->validate_authorfile(2);
  29. $this->ShopLogic = new ShopLogic;
  30. // 列出营销功能里已使用的模块
  31. $marketFunc = $this->ShopLogic->marketLogic();
  32. if (!in_array('sharp', $marketFunc)) {
  33. // $this->error('内置功能已废弃!');
  34. }
  35. $this->assign('marketFunc', $marketFunc);
  36. }
  37. /**
  38. * 秒杀商品列表
  39. */
  40. public function index()
  41. {
  42. $list = array();
  43. $keywords = input('keywords/s');
  44. $condition = array();
  45. if (!empty($keywords)) {
  46. $condition['b.title'] = array('LIKE', "%{$keywords}%");
  47. }
  48. $fields = "a.*,b.title,b.litpic";
  49. $Db = Db::name('sharp_goods');
  50. $count = $Db->alias("a")->join('archives b', "a.aid=b.aid")->where($condition)->count('a.sharp_goods_id');// 查询满足要求的总记录数
  51. $Page = $pager = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
  52. $list = $Db->alias("a")->field($fields)
  53. ->join('archives b', "a.aid=b.aid")
  54. ->where($condition)
  55. ->order('a.sort_order asc, a.sharp_goods_id desc')
  56. ->limit($Page->firstRow . ',' . $Page->listRows)
  57. ->select();
  58. $show = $Page->show();// 分页显示输出
  59. $this->assign('page', $show);// 赋值分页输出
  60. $this->assign('list', $list);// 赋值数据集
  61. $this->assign('pager', $pager);// 赋值分页对象
  62. return $this->fetch();
  63. }
  64. /**
  65. * 商品选择
  66. * @return [type] [description]
  67. */
  68. public function ajax_archives_list()
  69. {
  70. $assign_data = array();
  71. $condition = array();
  72. // 获取到所有URL参数
  73. $param = input('param.');
  74. $typeid = input('param.typeid/d');
  75. // 应用搜索条件
  76. foreach (['keywords', 'typeid'] as $key) {
  77. if ($key == 'keywords' && !empty($param[$key])) {
  78. $condition['a.title'] = array('LIKE', "%{$param[$key]}%");
  79. } else if ($key == 'typeid' && !empty($param[$key])) {
  80. $typeid = $param[$key];
  81. $hasRow = model('Arctype')->getHasChildren($typeid);
  82. $typeids = get_arr_column($hasRow, 'id');
  83. /*权限控制 by 小虎哥*/
  84. $admin_info = session('admin_info');
  85. if (0 < intval($admin_info['role_id'])) {
  86. $auth_role_info = $admin_info['auth_role_info'];
  87. if (!empty($auth_role_info)) {
  88. if (isset($auth_role_info['only_oneself']) && 1 == $auth_role_info['only_oneself']) {
  89. $condition['a.admin_id'] = $admin_info['admin_id'];
  90. }
  91. if (!empty($auth_role_info['permission']['arctype'])) {
  92. if (!empty($typeid)) {
  93. $typeids = array_intersect($typeids, $auth_role_info['permission']['arctype']);
  94. }
  95. }
  96. }
  97. }
  98. /*--end*/
  99. $condition['a.typeid'] = array('IN', $typeids);
  100. } else if (!empty($param[$key])) {
  101. $condition['a.' . $key] = array('eq', $param[$key]);
  102. }
  103. }
  104. // 审核通过
  105. $condition['a.arcrank'] = array('gt', -1);
  106. /*多语言*/
  107. $condition['a.lang'] = array('eq', $this->admin_lang);
  108. /*回收站数据不显示*/
  109. $condition['a.is_del'] = array('eq', 0);
  110. $channels = 2;
  111. $condition['a.channel'] = $channels;
  112. /**
  113. * 数据查询,搜索出主键ID的值
  114. */
  115. $count = Db::name('archives')->alias('a')->where($condition)->count('aid');// 查询满足要求的总记录数
  116. $Page = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
  117. $list = Db::name('archives')
  118. ->alias('a')
  119. ->field("a.aid,a.litpic,a.title,b.typename,a.update_time")
  120. ->where($condition)
  121. ->join('__ARCTYPE__ b', 'a.typeid = b.id', 'LEFT')
  122. ->order('a.sort_order asc, a.aid desc')
  123. ->limit($Page->firstRow . ',' . $Page->listRows)
  124. ->getAllWithIndex('aid');
  125. $show = $Page->show(); // 分页显示输出
  126. $assign_data['page'] = $show; // 赋值分页输出
  127. $assign_data['list'] = $list; // 赋值数据集
  128. $assign_data['pager'] = $Page; // 赋值分页对象
  129. /*允许发布文档列表的栏目*/
  130. $allow_release_channel = !empty($channels) ? explode(',', $channels) : [];
  131. $assign_data['arctype_html'] = allow_release_arctype($typeid, $allow_release_channel);
  132. /*--end*/
  133. // 模型名称
  134. $channeltype_ntitle = '文档';
  135. if (!stristr($channels, ',')) {
  136. $channeltype_row = \think\Cache::get('extra_global_channeltype');
  137. $channeltype_ntitle = $channeltype_row[$channels]['ntitle'];
  138. }
  139. $assign_data['channeltype_ntitle'] = $channeltype_ntitle;
  140. $this->assign($assign_data);
  141. return $this->fetch();
  142. }
  143. /**
  144. * 添加秒杀商品
  145. */
  146. public function add()
  147. {
  148. if (IS_POST) {
  149. $post = input('post.');
  150. if (is_array($post['seckill_price'])) {
  151. $post['is_sku'] = 1; // 多规格秒杀商品
  152. if (is_array($post['seckill_stock'])) {
  153. $post['seckill_stock_total'] = 0;
  154. foreach ($post['seckill_stock'] as $k => $v) {
  155. $post['seckill_stock_total'] += $v['spec_seckill_stock'];
  156. }
  157. }
  158. }
  159. $newData = [
  160. 'aid' => $post['aid'],
  161. 'limit' => $post['limit'],
  162. 'is_sku' => isset($post['is_sku']) ? $post['is_sku'] : 0,
  163. 'seckill_stock' => is_array($post['seckill_stock']) ? $post['seckill_stock_total'] : $post['seckill_stock'],
  164. 'seckill_price' => is_array($post['seckill_price']) ? 0 : $post['seckill_price'],
  165. 'virtual_sales' => $post['virtual_sales'],
  166. 'add_time' => getTime(),
  167. 'update_time' => getTime(),
  168. ];
  169. $insertId = Db::name('sharp_goods')->insertGetId($newData);
  170. if (false !== $insertId) {
  171. if (isset($post['is_sku']) && 1 == $post['is_sku']) {
  172. model('ProductSpecValue')->ProducSpecValueEditSave($post);
  173. }
  174. adminLog('新增秒杀商品:' . $insertId);
  175. $this->success("操作成功", url('Sharp/index'));
  176. } else {
  177. $this->error("操作失败", url('Sharp/index'));
  178. }
  179. exit;
  180. }
  181. $id = input('id/d');
  182. $info = Db::name('archives')->field('aid,litpic,title,users_price')->where('aid', $id)->find();
  183. // 获取规格数据信息
  184. // 包含:SpecSelectName、HtmlTable、spec_mark_id_arr、preset_value
  185. $assign_data = model('ProductSpecData')->GetSharpProductSpecData($id);
  186. // 商城配置
  187. $shopConfig = getUsersConfigData('shop');
  188. $assign_data['shopConfig'] = $shopConfig;
  189. $this->assign('info', $info);
  190. $this->assign($assign_data);
  191. return $this->fetch();
  192. }
  193. /**
  194. * 编辑秒杀商品
  195. */
  196. public function edit()
  197. {
  198. if (IS_POST) {
  199. $post = input('post.');
  200. if (is_array($post['seckill_price'])) {
  201. $post['is_sku'] = 1; // 多规格秒杀商品
  202. if (is_array($post['seckill_stock'])) {
  203. $post['seckill_stock_total'] = 0;
  204. foreach ($post['seckill_stock'] as $k => $v) {
  205. $post['seckill_stock_total'] += $v['spec_seckill_stock'];
  206. }
  207. }
  208. }
  209. $data = [
  210. 'limit' => $post['limit'],
  211. 'is_sku' => isset($post['is_sku']) ? $post['is_sku'] : 0,
  212. 'seckill_stock' => is_array($post['seckill_stock']) ? $post['seckill_stock_total'] : $post['seckill_stock'],
  213. 'seckill_price' => is_array($post['seckill_price']) ? 0 : $post['seckill_price'],
  214. 'virtual_sales' => $post['virtual_sales'],
  215. 'update_time' => getTime(),
  216. ];
  217. $r = Db::name('sharp_goods')->where('sharp_goods_id', intval($post['sharp_goods_id']))->update($data);
  218. if (false !== $r) {
  219. if (isset($post['is_sku']) && 1 == $post['is_sku']) {
  220. model('ProductSpecValue')->ProducSpecValueEditSave($post);
  221. }
  222. adminLog('编辑秒杀商品:' . $post['sharp_goods_id']);
  223. $this->success("操作成功", url('Sharp/index'));
  224. } else {
  225. $this->error("操作失败", url('Sharp/index'));
  226. }
  227. exit;
  228. }
  229. $id = input('id/d'); //指sharp_goods_id
  230. $info = Db::name('sharp_goods')
  231. ->alias('a')
  232. ->field('a.*,b.litpic,b.title,b.users_price')
  233. ->join('archives b', 'a.aid = b.aid')
  234. ->where('a.sharp_goods_id', $id)
  235. ->find();
  236. // 获取规格数据信息
  237. // 包含:SpecSelectName、HtmlTable、spec_mark_id_arr、preset_value
  238. $assign_data = model('ProductSpecData')->GetSharpProductSpecData($info['aid']);
  239. // 商城配置
  240. $shopConfig = getUsersConfigData('shop');
  241. $assign_data['shopConfig'] = $shopConfig;
  242. $this->assign('info', $info);
  243. $this->assign($assign_data);
  244. return $this->fetch();
  245. }
  246. /**
  247. * 删除秒杀商品
  248. */
  249. public function del()
  250. {
  251. if (IS_POST) {
  252. $id_arr = input('del_id/a');
  253. $id_arr = eyIntval($id_arr);
  254. if (!empty($id_arr)) {
  255. $aids = Db::name('sharp_goods')
  256. ->where('sharp_goods_id', 'IN', $id_arr)
  257. ->column('aid');
  258. $r = Db::name('sharp_goods')
  259. ->where('sharp_goods_id', 'IN', $id_arr)
  260. ->delete();
  261. if ($r) {
  262. Db::name('product_spec_value')
  263. ->where('aid', 'IN', $aids)
  264. ->update([
  265. 'seckill_price' => 0,
  266. 'seckill_stock' => 0,
  267. 'is_seckill' => 0,
  268. 'update_time' => getTime()
  269. ]);
  270. adminLog('删除秒杀商品,aid:' . implode(',', $aids));
  271. $this->success('删除成功');
  272. } else {
  273. $this->error('删除失败');
  274. }
  275. } else {
  276. $this->error('参数有误');
  277. }
  278. }
  279. $this->error('非法访问');
  280. }
  281. /**
  282. * 活动会场列表
  283. * @return mixed
  284. */
  285. public function active_index()
  286. {
  287. $list = array();
  288. // $keywords = input('keywords/s');
  289. //
  290. $condition = array();
  291. // if (!empty($keywords)) {
  292. // $condition['title'] = array('LIKE', "%{$keywords}%");
  293. // }
  294. $Db = Db::name('sharp_active');
  295. $count = $Db->where($condition)->count('active_id');// 查询满足要求的总记录数
  296. $Page = $pager = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
  297. $list = $Db
  298. ->where($condition)
  299. ->order('active_date desc')
  300. ->limit($Page->firstRow . ',' . $Page->listRows)
  301. ->getAllWithIndex('active_id');
  302. $ids = [];
  303. foreach ($list as $k => $v) {
  304. $ids[] = $v['active_id'];
  305. }
  306. if (!empty($ids)) {
  307. $count = Db::name('sharp_active_time')->where('active_id', 'in', $ids)->field('count(*) as count,active_id')->group('active_id')->select();
  308. if (!empty($count)) {
  309. foreach ($count as $k => $v) {
  310. $list[$v['active_id']]['count'] = $v['count'];
  311. }
  312. }
  313. }
  314. $show = $Page->show();// 分页显示输出
  315. $this->assign('page', $show);// 赋值分页输出
  316. $this->assign('list', $list);// 赋值数据集
  317. $this->assign('pager', $pager);// 赋值分页对象
  318. return $this->fetch();
  319. }
  320. /**
  321. * 添加活动场次
  322. */
  323. public function active_add()
  324. {
  325. if (IS_POST) {
  326. $post = input('post.');
  327. if ($post['active_date'] < date('Y-m-d')) {
  328. $this->error('活动日期不能小于当前日期!');
  329. }
  330. //先查询该活动日期场次是否已经存在
  331. $have = Db::name('sharp_active')->where('active_date',strtotime($post['active_date']))->find();
  332. if (!empty($have)){
  333. $insertId = $have['active_id'];
  334. }else{
  335. $activeData = [
  336. 'active_date' => strtotime($post['active_date']),
  337. 'add_time' => getTime(),
  338. 'update_time' => getTime(),
  339. ];
  340. $insertId = Db::name('sharp_active')->insertGetId($activeData);
  341. }
  342. if (false !== $insertId) {
  343. //查出已经建立的秒杀活动时间
  344. $have_time = Db::name('sharp_active_time')
  345. ->where('active_time','in',$post['active_time'])
  346. ->where('active_id',$insertId)
  347. ->column('active_time');
  348. $activeTime = [];
  349. foreach ($post['active_time'] as $v) {
  350. if (in_array($v,$have_time)){
  351. //已经存在,则跳过
  352. continue;
  353. }
  354. $activeTime[] = [
  355. 'active_time' => $v,
  356. 'active_id' => $insertId,
  357. 'add_time' => getTime(),
  358. 'update_time' => getTime(),
  359. ];
  360. }
  361. $sharpActiveTimeModel = new \app\admin\model\SharpActiveTime();
  362. $timeData = $sharpActiveTimeModel->saveAll($activeTime);
  363. if ($timeData && $post['goods']) {
  364. $goodsData = [];
  365. foreach ($timeData as $k1 => $v1) {
  366. foreach ($post['goods']['sharp_goods_id'] as $k => $v) {
  367. $goodsData[] = [
  368. 'active_time_id' => $v1->getData('active_time_id'),
  369. 'active_id' => $insertId,
  370. 'sharp_goods_id' => $v,
  371. 'aid' => $post['goods']['aid'][$k],
  372. 'add_time' => getTime(),
  373. 'update_time' => getTime(),
  374. ];
  375. }
  376. }
  377. Db::name('sharp_active_goods')->insertAll($goodsData);
  378. }
  379. adminLog('新增活动场次:' . $insertId);
  380. $this->success("操作成功", url('Sharp/active_index'));
  381. } else {
  382. $this->error("操作失败", url('Sharp/index'));
  383. }
  384. exit;
  385. }
  386. return $this->fetch();
  387. }
  388. /**
  389. * 删除活动会场
  390. */
  391. public function active_del()
  392. {
  393. if (IS_POST) {
  394. $id_arr = input('del_id/a');
  395. $id_arr = eyIntval($id_arr);
  396. if (!empty($id_arr)) {
  397. $r = Db::name('sharp_active')
  398. ->where('active_id', 'IN', $id_arr)
  399. ->delete();
  400. if ($r) {
  401. Db::name('sharp_active_time')
  402. ->where('active_id', 'IN', $id_arr)
  403. ->delete();
  404. Db::name('sharp_active_goods')
  405. ->where('active_id', 'IN', $id_arr)
  406. ->delete();
  407. adminLog('删除活动会场,active_id:' . implode(',', $id_arr));
  408. $this->success('删除成功');
  409. } else {
  410. $this->error('删除失败');
  411. }
  412. } else {
  413. $this->error('参数有误');
  414. }
  415. }
  416. $this->error('非法访问');
  417. }
  418. /**
  419. * 秒杀商品选择
  420. * @return [type] [description]
  421. */
  422. public function goods_list()
  423. {
  424. $assign_data = array();
  425. $condition = array();
  426. // 获取到所有URL参数
  427. $param = input('param.');
  428. $typeid = input('param.typeid/d');
  429. // 应用搜索条件
  430. foreach (['keywords', 'typeid'] as $key) {
  431. if ($key == 'keywords' && !empty($param[$key])) {
  432. $condition['a.title'] = array('LIKE', "%{$param[$key]}%");
  433. } else if ($key == 'typeid' && !empty($param[$key])) {
  434. $typeid = $param[$key];
  435. $hasRow = model('Arctype')->getHasChildren($typeid);
  436. $typeids = get_arr_column($hasRow, 'id');
  437. /*权限控制 by 小虎哥*/
  438. $admin_info = session('admin_info');
  439. if (0 < intval($admin_info['role_id'])) {
  440. $auth_role_info = $admin_info['auth_role_info'];
  441. if (!empty($auth_role_info)) {
  442. if (isset($auth_role_info['only_oneself']) && 1 == $auth_role_info['only_oneself']) {
  443. $condition['a.admin_id'] = $admin_info['admin_id'];
  444. }
  445. if (!empty($auth_role_info['permission']['arctype'])) {
  446. if (!empty($typeid)) {
  447. $typeids = array_intersect($typeids, $auth_role_info['permission']['arctype']);
  448. }
  449. }
  450. }
  451. }
  452. /*--end*/
  453. $condition['a.typeid'] = array('IN', $typeids);
  454. }
  455. }
  456. /*回收站数据不显示*/
  457. $where['b.is_del'] = 0;
  458. $where['b.status'] = 1;
  459. /**
  460. * 数据查询,搜索出主键ID的值
  461. */
  462. $count = Db::name('sharp_goods')->alias('b')->where($where)->count('aid');// 查询满足要求的总记录数
  463. $Page = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
  464. $list = Db::name('sharp_goods')
  465. ->alias('b')
  466. ->field("a.litpic,a.title,b.sharp_goods_id,b.aid,b.update_time,b.seckill_stock,b.limit")
  467. ->where($where)
  468. ->where($condition)
  469. ->join('archives a', 'a.aid = b.aid', 'LEFT')
  470. ->join('arctype c', 'a.typeid = c.id', 'LEFT')
  471. ->order('b.sort_order asc, b.sharp_goods_id desc')
  472. ->limit($Page->firstRow . ',' . $Page->listRows)
  473. ->getAllWithIndex('aid');
  474. if ($list) {
  475. foreach ($list as $key => $val) {
  476. $val['litpic'] = get_default_pic($val['litpic']);
  477. $json_encode_params = [
  478. 'sharp_goods_id' => $val['sharp_goods_id'],
  479. 'aid' => $val['aid'],
  480. 'title' => $val['title'],
  481. 'litpic' => $val['litpic'],
  482. ];
  483. $val['json_encode_params'] = json_encode($json_encode_params, JSON_UNESCAPED_SLASHES);
  484. $list[$key] = $val;
  485. }
  486. }
  487. $show = $Page->show(); // 分页显示输出
  488. $assign_data['page'] = $show; // 赋值分页输出
  489. $assign_data['list'] = $list; // 赋值数据集
  490. $assign_data['pager'] = $Page; // 赋值分页对象
  491. $channels = 2;
  492. /*允许发布文档列表的栏目*/
  493. $allow_release_channel = !empty($channels) ? explode(',', $channels) : [];
  494. $assign_data['arctype_html'] = allow_release_arctype($typeid, $allow_release_channel);
  495. /*--end*/
  496. $this->assign($assign_data);
  497. return $this->fetch();
  498. }
  499. /**
  500. * 活动会场-场次列表
  501. * @return mixed
  502. */
  503. public function active_time_index()
  504. {
  505. $list = [];
  506. $where = [];
  507. $active_id = input('id/d');
  508. $where['a.active_id'] = $active_id;
  509. $Db = Db::name('sharp_active_time')->alias('a');
  510. $count = $Db->where($where)->count('a.active_time_id');// 查询满足要求的总记录数
  511. $Page = $pager = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
  512. $list = Db::name('sharp_active_time')->alias('a')
  513. ->where($where)
  514. ->field('a.*,b.active_date')
  515. ->join('sharp_active b','a.active_id = b.active_id')
  516. ->order('a.active_time asc')
  517. ->limit($Page->firstRow . ',' . $Page->listRows)
  518. ->getAllWithIndex('active_time_id');
  519. $ids = [];
  520. foreach ($list as $k => $v) {
  521. if ($v['active_time']<10){
  522. $list[$k]['active_time'] = '0'.$v['active_time'].':00';
  523. }else{
  524. $list[$k]['active_time'] = $v['active_time'].':00';
  525. }
  526. $ids[] = $v['active_time_id'];
  527. }
  528. if (!empty($ids)) {
  529. $count = Db::name('sharp_active_goods')
  530. ->where('active_id', $active_id)
  531. ->where('active_time_id', 'in', $ids)
  532. ->field('count(*) as count,active_time_id')
  533. ->group('active_time_id')->select();
  534. if (!empty($count)) {
  535. foreach ($count as $k => $v) {
  536. $list[$v['active_time_id']]['count'] = $v['count'];
  537. }
  538. }
  539. }
  540. $show = $Page->show();// 分页显示输出
  541. $this->assign('page', $show);// 赋值分页输出
  542. $this->assign('list', $list);// 赋值数据集
  543. $this->assign('pager', $pager);// 赋值分页对象
  544. return $this->fetch();
  545. }
  546. /**
  547. * 删除活动场次
  548. */
  549. public function active_time_del()
  550. {
  551. if (IS_POST) {
  552. $id_arr = input('del_id/a');
  553. $id_arr = eyIntval($id_arr);
  554. if (!empty($id_arr)) {
  555. $r = Db::name('sharp_active_time')
  556. ->where('active_time_id', 'IN', $id_arr)
  557. ->delete();
  558. if ($r) {
  559. Db::name('sharp_active_goods')
  560. ->where('active_time_id', 'IN', $id_arr)
  561. ->delete();
  562. adminLog('删除活动场次,active_time_id:' . implode(',', $id_arr));
  563. $this->success('删除成功');
  564. } else {
  565. $this->error('删除失败');
  566. }
  567. } else {
  568. $this->error('参数有误');
  569. }
  570. }
  571. $this->error('非法访问');
  572. }
  573. /**
  574. * 编辑活动场次
  575. */
  576. public function active_time_edit()
  577. {
  578. if(IS_POST){
  579. $post = input('post.');
  580. if (!empty($post['goods'])){
  581. Db::name('sharp_active_goods')
  582. ->where(['active_id'=>intval($post['active_id']),'active_time_id'=>intval($post['active_time_id'])])
  583. ->delete();
  584. $goodsData = [];
  585. foreach ($post['goods']['sharp_goods_id'] as $k => $v) {
  586. $goodsData[] = [
  587. 'active_time_id' => $post['active_time_id'],
  588. 'active_id' => $post['active_id'],
  589. 'sharp_goods_id' => $v,
  590. 'aid' => $post['goods']['aid'][$k],
  591. 'add_time' => getTime(),
  592. 'update_time' => getTime(),
  593. ];
  594. }
  595. $r = Db::name('sharp_active_goods')->insertAll($goodsData);
  596. if ($r){
  597. adminLog('编辑活动场次active_time_id:' . $post['active_time_id']);
  598. $this->success("操作成功", url('Sharp/active_time_index',['id'=>$post['active_id']]));
  599. } else {
  600. $this->error("操作失败", url('Sharp/active_time_edit',['id'=>$post['active_time_id']]));
  601. }
  602. }
  603. }
  604. $id = input('id/d');
  605. $info = Db::name('sharp_active_time')->alias('a')
  606. ->where('active_time_id',$id)
  607. ->field('a.*,b.active_date')
  608. ->join('sharp_active b','a.active_id = b.active_id')
  609. ->order('a.active_time asc')
  610. ->find();
  611. if ($info['active_time']<10){
  612. $info['active_time'] = '0'.$info['active_time'].':00';
  613. }else{
  614. $info['active_time'] = $info['active_time'].':00';
  615. }
  616. $goods = Db::name('sharp_active_goods')
  617. ->alias('a')
  618. ->field('a.*,b.litpic,b.title')
  619. ->join('archives b','a.aid=b.aid')
  620. ->where('a.active_time_id',$id)
  621. ->select();
  622. $this->assign('info',$info);
  623. $this->assign('goods',$goods);
  624. return $this->fetch();
  625. }
  626. /**
  627. * 活动会场-添加场次
  628. * @return mixed
  629. */
  630. public function active_time_add()
  631. {
  632. if(IS_POST){
  633. $post = input('post.');
  634. if(!empty($post['active_time'])){
  635. foreach ($post['active_time'] as $v) {
  636. $activeTime[] = [
  637. 'active_time' => $v,
  638. 'active_id' => $post['active_id'],
  639. 'add_time' => getTime(),
  640. 'update_time' => getTime(),
  641. ];
  642. }
  643. $sharpActiveTimeModel = new \app\admin\model\SharpActiveTime();
  644. $timeData = $sharpActiveTimeModel->saveAll($activeTime);
  645. if ($timeData && $post['goods']) {
  646. $goodsData = [];
  647. $active_time_ids = [];
  648. foreach ($timeData as $k1 => $v1) {
  649. foreach ($post['goods']['sharp_goods_id'] as $k => $v) {
  650. $active_time_id = $v1->getData('active_time_id');
  651. $active_time_ids[] = $active_time_id;
  652. $goodsData[] = [
  653. 'active_time_id' => $active_time_id,
  654. 'active_id' => $post['active_id'],
  655. 'sharp_goods_id' => $v,
  656. 'aid' => $post['goods']['aid'][$k],
  657. 'add_time' => getTime(),
  658. 'update_time' => getTime(),
  659. ];
  660. }
  661. }
  662. Db::name('sharp_active_goods')->insertAll($goodsData);
  663. }
  664. if ($timeData){
  665. adminLog('新增活动场次active_time_id:' . implode(',', $active_time_ids));
  666. $this->success("操作成功", url('Sharp/active_time_index',['id'=>$post['active_id']]));
  667. }else {
  668. $this->error("操作失败", url('Sharp/active_time_add',['id'=>$post['active_id']]));
  669. }
  670. }
  671. $this->error("请选择活动场次!", url('Sharp/active_time_add',['id'=>$post['active_id']]));
  672. }
  673. $active_id = input('id/d');
  674. $info = Db::name('sharp_active')->where('active_id',$active_id)->find();
  675. if (empty($info)){
  676. $this->error("该活动会场不存在!", url('Sharp/active_index'));
  677. }
  678. $info['active_time'] = Db::name('sharp_active_time')->where('active_id',$active_id)->column('active_time');
  679. $this->assign('info',$info);
  680. return $this->fetch();
  681. }
  682. }