123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469 |
- <?php
- namespace app\home\controller;
- use think\facade\View;
- use think\facade\Lang;
- /**
-
- *
-
- *
- * ----------------------------------------------------------------------------
- *
-
- * 控制器
- */
- class Sellerpromotionbundling extends BaseSeller
- {
- public function initialize()
- {
- parent::initialize(); // TODO: Change the autogenerated stub
- Lang::load(base_path() . 'home/lang/' . config('lang.default_lang') . '/sellerpromotionbundling.lang.php');
- if (intval(config('ds_config.promotion_allow')) !== 1) {
- $this->error(lang('promotion_unavailable'), (string) url('Seller/index'));
- }
- }
- public function index()
- {
- $pbundling_model = model('pbundling');
- // 更新套装状态
- $where = array();
- $where[] = array('store_id', '=', session('store_id'));
- $where[] = array('blquota_endtime', '<', TIMESTAMP);
- $pbundling_model->editBundlingQuotaClose($where);
- $isPlatformStore = check_platform_store() ? true : false;
- View::assign('isPlatformStore', $isPlatformStore);
- $hasList = $isPlatformStore;
- $bundling_published = '';
- if (!$isPlatformStore) {
- // 检查是否已购买套餐
- $where = array();
- $where[] = array('store_id', '=', session('store_id'));
- $bundling_quota = $pbundling_model->getBundlingQuotaInfo($where);
- View::assign('bundling_quota', $bundling_quota);
- if (!empty($bundling_quota)) {
- // 计算已经发布活动、剩余活动数量
- $bundling_published = $pbundling_model->getBundlingCount(array('store_id' => session('store_id')));
- $bundling_surplus = intval(config('ds_config.promotion_bundling_sum')) - intval($bundling_published);
- View::assign('bundling_published', $bundling_published);
- View::assign('bundling_surplus', $bundling_surplus);
- $hasList = true;
- } elseif (intval(config('ds_config.promotion_bundling_price')) == 0) { //如果没有购买过套餐,则将之前添加的优惠组合关闭
- $hasList = true;
- } else {
- $update = array('bl_state' => $pbundling_model::STATE0);
- $pbundling_model->editBundling($update, $where);
- }
- }
- if ($hasList) {
- // 查询活动
- $where = array();
- $where[] = array('store_id', '=', session('store_id'));
- if (input('param.bundling_name') != '') {
- $where[] = array('bl_name', 'like', '%' . trim(input('param.bundling_name')) . '%');
- }
- if (is_numeric(input('param.state'))) {
- $where[] = array('bl_state', '=', input('param.state'));
- }
- $bundling_list = $pbundling_model->getBundlingList($where, '*', 'bl_id desc', 10, 0, $bundling_published);
- $bundling_list = array_under_reset($bundling_list, 'bl_id');
- View::assign('show_page', $pbundling_model->page_info->render());
- if (!empty($bundling_list)) {
- $blid_array = array_keys($bundling_list);
- $bgoods_array = $pbundling_model->getBundlingGoodsList(array(array('bl_id', 'in', $blid_array), array('blgoods_appoint', '=', 1)), 'bl_id,goods_id,count(*) as count', 'blgoods_appoint desc', 'bl_id');
- $bgoods_array1 = array_under_reset($bgoods_array, 'goods_id');
- if (!empty($bgoods_array1)) {
- $goodsid_array = array_keys($bgoods_array1);
- $goods_array = model('goods')->getGoodsList(array(
- array('goods_id', 'in', $goodsid_array)
- ), 'goods_id,goods_image');
- $goods_array = array_under_reset($goods_array, 'goods_id');
- }
- $bgoods_array = array_under_reset($bgoods_array, 'bl_id');
- foreach ($bundling_list as $key => $val) {
- $bundling_list[$key]['goods_id'] = '';
- $bundling_list[$key]['count'] = 0;
- $bundling_list[$key]['img'] = goods_thumb(array(), 60);
- if (isset($bgoods_array[$val['bl_id']]) && !empty($bgoods_array[$val['bl_id']])) {
- $bundling_list[$key]['goods_id'] = $bgoods_array[$val['bl_id']]['goods_id'];
- $bundling_list[$key]['count'] = $bgoods_array[$val['bl_id']]['count'];
- $bundling_list[$key]['img'] = goods_thumb($goods_array[$bgoods_array[$val['bl_id']]['goods_id']], 60);
- }
- }
- }
- View::assign('bundling_list', $bundling_list);
- // 状态数组
- $state_array = array(0 => lang('bundling_status_0'), 1 => lang('bundling_status_1'));
- View::assign('state_array', $state_array);
- }
- $this->setSellerCurMenu('Sellerpromotionbundling');
- $this->setSellerCurItem('index');
- return View::fetch($this->template_dir . 'index');
- }
- /**
- * 套餐购买
- */
- public function bundling_quota_add()
- {
- if (request()->isPost()) {
- if (intval(config('ds_config.promotion_bundling_price')) == 0) {
- ds_json_encode(10001, lang('param_error'));
- }
- $quantity = intval(input('post.bundling_quota_quantity')); // 购买数量(月)
- $price_quantity = $quantity * intval(config('ds_config.promotion_bundling_price')); // 扣款数
- if ($quantity <= 0 || $quantity > 12) {
- ds_json_encode(10001, lang('bundling_quota_price_fail'));
- }
- // 实例化模型
- $pbundling_model = model('pbundling');
- $data = array();
- $data['store_id'] = session('store_id');
- $data['store_name'] = session('store_name');
- $data['member_id'] = session('member_id');
- $data['member_name'] = session('member_name');
- $data['blquota_month'] = $quantity;
- $data['blquota_starttime'] = TIMESTAMP;
- $data['blquota_endtime'] = TIMESTAMP + 60 * 60 * 24 * 30 * $quantity;
- $data['blquota_state'] = 1;
- $return = $pbundling_model->addBundlingQuota($data);
- if ($return) {
- // 添加店铺费用记录
- $this->recordStorecost($price_quantity, '购买优惠套装');
- // 添加任务队列
- $end_time = TIMESTAMP + 60 * 60 * 24 * 30 * $quantity;
- $this->addcron(array('cron_exetime' => $end_time, 'cron_value' => serialize(intval(session('store_id'))), 'cron_type' => 'editBundlingQuotaClose'), true);
- $this->recordSellerlog('购买' . $quantity . '套优惠套装,单位元');
- ds_json_encode(10000, lang('bundling_quota_price_succ'));
- } else {
- ds_json_encode(10001, lang('bundling_quota_price_fail'));
- }
- }
- // 输出导航
- $this->setSellerCurMenu('Sellerpromotionbundling');
- $this->setSellerCurItem('bundling_quota_add');
- return View::fetch($this->template_dir . 'quota_add');
- }
- /**
- * 套餐续费
- */
- public function bundling_renew()
- {
- if (request()->isPost()) {
- if (intval(config('ds_config.promotion_bundling_price')) == 0) {
- ds_json_encode(10001, lang('param_error'));
- }
- $pbundling_model = model('pbundling');
- $quantity = intval(input('post.bundling_quota_quantity')); // 购买数量(月)
- $price_quantity = $quantity * intval(config('ds_config.promotion_bundling_price')); // 扣款数
- if ($quantity <= 0 || $quantity > 12) {
- ds_json_encode(10001, lang('bundling_quota_price_fail'));
- }
- $where = array();
- $where[] = array('store_id', '=', session('store_id'));
- $bundling_quota = $pbundling_model->getBundlingQuotaInfo($where);
- if ($bundling_quota['blquota_endtime'] > TIMESTAMP) {
- // 套餐未超时(结束时间+购买时间)
- $update['blquota_endtime'] = intval($bundling_quota['blquota_endtime']) + 60 * 60 * 24 * 30 * $quantity;
- } else {
- // 套餐已超时(当前时间+购买时间)
- $update['blquota_endtime'] = TIMESTAMP + 60 * 60 * 24 * 30 * $quantity;
- }
- $return = $pbundling_model->editBundlingQuotaOpen($update, $where);
- if ($return) {
- // 添加店铺费用记录
- $this->recordStorecost($price_quantity, '购买优惠套装');
- // 添加任务队列
- $this->addcron(array(
- 'cron_exetime' => $update['blquota_endtime'], 'cron_value' => serialize(session('store_id')), 'cron_type' => 'editBundlingQuotaClose'
- ), true);
- $this->recordSellerlog('续费' . $quantity . '套优惠套装,单位元');
- ds_json_encode(10000, lang('bundling_quota_price_succ'));
- } else {
- ds_json_encode(10001, lang('bundling_quota_price_fail'));
- }
- }
- $this->setSellerCurMenu('Sellerpromotionbundling');
- $this->setSellerCurItem('bundling_quota_add');
- return View::fetch($this->template_dir . 'quota_add');
- }
- /**
- * 套餐活动添加
- */
- public function bundling_add()
- {
- /**
- * 实例化模型
- */
- $pbundling_model = model('pbundling');
- // 验证套餐数量
- if (intval(config('ds_config.promotion_bundling_sum')) != 0 && !isset($_REQUEST['bundling_id'])) {
- $count = $pbundling_model->getBundlingCount(array('store_id' => session('store_id')));
- if (intval(config('ds_config.promotion_bundling_sum')) <= intval($count)) {
- $this->error(lang('bundling_add_fail_quantity_beyond'));
- ds_json_encode(10001, lang('goods_index_consult_fail'));
- }
- }
- if (request()->isPost()) {
- // 插入套餐
- $data = array();
- $bl_id = intval(input('post.bundling_id'));
- if ($bl_id <= 0) {
- $data['bl_name'] = input('post.bundling_name');
- $data['store_id'] = session('store_id');
- $data['store_name'] = session('store_name');
- $data['bl_discount_price'] = input('post.discount_price');
- $data['bl_freight_choose'] = input('post.bundling_freight_choose');
- $data['bl_freight'] = input('post.bundling_freight');
- $data['bl_state'] = intval(input('post.state'));
- $bl_id = $pbundling_model->addBundling($data);
- if (!$bl_id) {
- ds_json_encode(10001, lang('ds_common_op_fail'));
- }
- } else {
- $condition = array();
- $condition[] = array('bl_id', '=', $bl_id);
- $condition[] = array('store_id', '=', session('store_id'));
- $data['bl_name'] = input('post.bundling_name');
- $data['bl_discount_price'] = input('post.discount_price');
- $data['bl_freight_choose'] = input('post.bundling_freight_choose');
- $data['bl_freight'] = input('post.bundling_freight');
- $data['bl_state'] = intval(input('post.state'));
- $pbundling_model->editBundling($data, $condition);
- }
- // 插入套餐商品
- $goods_model = model('goods');
- $data_goods = array();
- $appoint_goodsid = false;
- if (input('post.bundling_id')) {
- $pbundling_model->delBundlingGoods(array('bl_id' => $bl_id));
- }
- $goods_array = input('post.goods/a'); #获取数组
- if (!empty($goods_array) && is_array($goods_array)) {
- foreach ($goods_array as $key => $val) {
- // 验证是否为本店铺商品
- $goods_info = $goods_model->getGoodsInfoByID($val['gid']);
- if (empty($goods_info) || $goods_info['store_id'] != session('store_id')) {
- continue;
- }
- $data = array();
- $data['bl_id'] = $bl_id;
- $data['goods_id'] = $goods_info['goods_id'];
- $data['goods_commonid'] = $goods_info['goods_commonid'];
- $data['goods_name'] = $goods_info['goods_name'];
- $data['goods_image'] = $goods_info['goods_image'];
- $data['blgoods_price'] = ds_price_format($val['price']);
- $data['blgoods_appoint'] = intval($val['appoint']);
- if (!$appoint_goodsid && intval($val['appoint']) == 1) {
- $appoint_goodsid = intval($val['gid']);
- }
- $data_goods[] = $data;
- }
- }
- // 插入数据
- $return = $pbundling_model->addBundlingGoodsAll($data_goods);
- if (!input('post.bundling_id') && !$appoint_goodsid) {
- // 自动发布动态
- // bl_id,bl_name,image_path,bl_discount_price,bl_freight_choose,bl_freight,store_id
- $data_array = array();
- $data_array['bl_id'] = $return;
- $data_array['goods_id'] = $appoint_goodsid;
- $data_array['bl_name'] = input('post.bundling_name');
- $data_array['bl_img'] = '';
- $data_array['bl_discount_price'] = $data['bl_discount_price'];
- $data_array['bl_freight_choose'] = $data['bl_freight_choose'];
- $data_array['bl_freight'] = $data['bl_freight'];
- $data_array['store_id'] = session('store_id');
- $this->storeAutoShare($data_array, 'bundling');
- }
- $this->recordSellerlog('添加优惠套装,名称:' . input('post.bundling_name') . ' id:' . $return);
- ds_json_encode(10000, lang('ds_common_op_succ'));
- } else {
- if (intval(input('param.bundling_id')) > 0) {
- $bundling_info = $pbundling_model->getBundlingInfo(array('bl_id' => intval(input('param.bundling_id')), 'store_id' => session('store_id')));
- // halt($bundling_info);
- View::assign('bundling_info', $bundling_info);
- // 验证是否属于自己的组合套餐
- if (empty($bundling_info['store_id'])) {
- $this->error(lang('param_error'), (string) url('Sellerpromotionbundling/index'));
- }
- $b_goods_list = $pbundling_model->getBundlingGoodsList(array('bl_id' => intval(input('param.bundling_id'))));
- if (!empty($b_goods_list)) {
- $goodsid_array = array();
- foreach ($b_goods_list as $val) {
- $goodsid_array[] = $val['goods_id'];
- }
- $goods_list = model('goods')->getGoodsList(array(array('goods_id', 'in', $goodsid_array)), 'goods_id,goods_price,goods_image,goods_name');
- View::assign('goods_list', array_under_reset($goods_list, 'goods_id'));
- }
- View::assign('b_goods_list', $b_goods_list);
- // 输出导航
- $this->setSellerCurMenu('Sellerpromotionbundling');
- $this->setSellerCurItem('bundling_edit');
- } else {
- // 输出导航
- $this->setSellerCurMenu('Sellerpromotionbundling');
- $this->setSellerCurItem('bundling_add');
- }
- return View::fetch($this->template_dir . 'bundling_add');
- }
- }
- /**
- * 套餐活动添加商品
- */
- public function bundling_add_goods()
- {
- /**
- * 实例化模型
- */
- $goods_model = model('goods');
- // where条件
- $where = array();
- $where[] = array('goods.store_id', '=', session('store_id'));
- if (intval(input('param.storegc_id')) > 0) {
- $where[] = array('goods.goods_stcids', 'like', '%,' . intval(input('param.storegc_id')) . ',%');
- }
- if (trim(input('param.keyword')) != '') {
- $where[] = array('goods.goods_name', 'like', '%' . trim(input('param.keyword')) . '%');
- }
- $goods_list = $goods_model->getGoodsListForPromotion($where, 'goods.goods_id,goods.goods_commonid,goods.goods_name,goods.goods_image,goods.goods_price,goods.goods_serial,goods.goods_storage', 8, 'bundling');
- View::assign('show_page', $goods_model->page_info->render());
- View::assign('goods_list', $goods_list);
- /**
- * 商品分类
- */
- $store_goods_class = model('storegoodsclass')->getClassTree(array('store_id' => session('store_id'), 'storegc_state' => '1'));
- View::assign('store_goods_class', $store_goods_class);
- echo View::fetch($this->template_dir . 'bundling_add_goods');
- exit;
- }
- /**
- * 删除优惠套装活动
- */
- public function drop_bundling()
- {
- /**
- * 参数验证
- */
- $blids = trim(input('param.bundling_id'));
- if (empty($blids)) {
- ds_json_encode(10001, lang('param_error'));
- }
- $return = model('pbundling')->delBundling($blids, session('store_id'));
- if ($return) {
- $this->recordSellerlog('删除优惠套装,套餐id:' . $blids);
- ds_json_encode(10000, lang('bundling_delete_success'));
- } else {
- ds_json_encode(10001, lang('bundling_delete_fail'));
- }
- }
- /**
- * 用户中心右边,小导航
- *
- * @param string $menu_type 导航类型
- * @param string $name 当前导航的name
- * @return
- */
- protected function getSellerItemList()
- {
- $menu_array = array();
- switch (request()->action()) {
- case 'index':
- case 'bundling_quota_list':
- $menu_array = array(
- array(
- 'name' => 'index', 'text' => lang('bundling_list'),
- 'url' => (string) url('Sellerpromotionbundling/index')
- )
- );
- break;
- case 'bundling_quota_add':
- $menu_array = array(
- array(
- 'name' => 'index', 'text' => lang('bundling_list'),
- 'url' => (string) url('Sellerpromotionbundling/index')
- ), array(
- 'name' => 'bundling_quota_add', 'text' => lang('bundling_quota_add'),
- 'url' => (string) url('Sellerpromotionbundling/bundling_quota_add')
- )
- );
- break;
- case 'bundling_renew':
- $menu_array = array(
- array(
- 'name' => 'index', 'text' => lang('bundling_list'),
- 'url' => (string) url('Sellerpromotionbundling/index')
- ), array(
- 'name' => 'bundling_renew', 'text' => lang('set_renewal'),
- 'url' => (string) url('Sellerpromotionbundling/bundling_renew')
- )
- );
- break;
- case 'bundling_add':
- $menu_array = array(
- array(
- 'name' => 'index', 'text' => lang('bundling_list'),
- 'url' => (string) url('Sellerpromotionbundling/index')
- ), array(
- 'name' => 'bundling_add', 'text' => lang('bundling_add'),
- 'url' => (string) url('Sellerpromotionbundling/bundling_add')
- )
- );
- break;
- case 'bundling_edit':
- $menu_array = array(
- array(
- 'name' => 'index', 'text' => lang('bundling_list'),
- 'url' => (string) url('Sellerpromotionbundling/index')
- ), array(
- 'name' => 'bundling_edit', 'text' => lang('bundling_edit'),
- 'url' => (string) url('Sellerpromotionbundling/bundling_edit')
- )
- );
- break;
- }
- return $menu_array;
- }
- }
|