123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405 |
- <?php
- /**
- * 用户中心-优惠套装
- *
- *
- *
- ***/
- defined('InShopNC') or exit('Access Invalid!');
- class store_promotion_bundlingControl extends BaseSellerControl {
- public function __construct() {
- parent::__construct();
- /**
- * 读取语言包
- */
- Language::read('member_layout,member_store_promotion_bundling');
- //检查是否开启
- if (intval(C('promotion_allow')) !== 1) {
- showMessage(Language::get('promotion_unavailable'), urlShop('seller_center', 'index'),'','error');
- }
- }
- public function indexOp() {
- $this->bundling_listOp();
- }
- /**
- * 发布的活动列表
- */
- public function bundling_listOp() {
- $model_bundling = Model('p_bundling');
- // 更新套装状态
- $where = array();
- $where['store_id'] = $_SESSION['store_id'];
- $where['bl_quota_endtime'] = array('lt', TIMESTAMP);
- $model_bundling->editBundlingQuotaClose($where);
- $hasList = false;
- if (checkPlatformStore()) {
- Tpl::output('isOwnShop', true);
- $hasList = true;
- } else {
- // 检查是否已购买套餐
- $where = array();
- $where['store_id'] = $_SESSION['store_id'];
- $bundling_quota = $model_bundling->getBundlingQuotaInfo($where);
- Tpl::output('bundling_quota', $bundling_quota);
- if (!empty($bundling_quota)) {
- // 计算已经发布活动、剩余活动数量
- $bundling_published = $model_bundling->getBundlingCount(array('store_id' => $_SESSION['store_id']));
- $bundling_surplus = intval(C('promotion_bundling_sum')) - intval($bundling_published);
- Tpl::output('bundling_published', $bundling_published);
- Tpl::output('bundling_surplus', $bundling_surplus);
- $hasList = true;
- }
- }
- if ($hasList) {
- // 查询活动
- $where = array();
- $where['store_id'] = $_SESSION['store_id'];
- if ($_GET['bundling_name'] != '') {
- $where['bl_name'] = array('like', '%' . trim($_GET['bundling_name']) . '%');
- }
- if (is_numeric($_GET['state'])) {
- $where['bl_state'] = $_GET['state'];
- }
- $bundling_list = $model_bundling->getBundlingList($where, '*', 'bl_id desc', 10, 0, $bundling_published);
- $bundling_list = array_under_reset($bundling_list, 'bl_id');
- Tpl::output('show_page',$model_bundling->showpage(2));
- if (!empty($bundling_list)) {
- $blid_array = array_keys($bundling_list);
- $bgoods_array = $model_bundling->getBundlingGoodsList(array('bl_id' => array('in', $blid_array), 'bl_appoint' => 1), 'bl_id,goods_id,count(*) as count', 'bl_appoint desc', 'bl_id');
- $bgoods_array = array_under_reset($bgoods_array, 'goods_id');
- if (!empty($bgoods_array)) {
- $goodsid_array = array_keys($bgoods_array);
- $goods_array = Model('goods')->getGoodsList(array('goods_id' => array('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'] = $bgoods_array[$val['bl_id']]['goods_id'];
- $bundling_list[$key]['count'] = $bgoods_array[$val['bl_id']]['count'];
- $bundling_list[$key]['img'] = thumb($goods_array[$bgoods_array[$val['bl_id']]['goods_id']], 60);
- }
- }
- Tpl::output('list', $bundling_list);
- // 状态数组
- $state_array = array(0=>Language::get('bundling_status_0') , 1=>Language::get('bundling_status_1'));
- Tpl::output('state_array', $state_array);
- }
- $this->profile_menu('bundling_list', 'bundling_list');
- Tpl::showpage('store_promotion_bundling.list');
- }
- /**
- * 套餐购买
- */
- public function bundling_quota_addOp() {
- if (chksubmit()) {
- $quantity = intval($_POST['bundling_quota_quantity']); // 购买数量(月)
- $price_quantity = $quantity * intval(C('promotion_bundling_price')); // 扣款数
- if ($quantity <= 0 || $quantity > 12) {
- showDialog(Language::get('bundling_quota_price_fail'), urlShop('store_promotion_bundling', 'bundling_quota_add'), '', 'error' );
- }
- // 实例化模型
- $model_bundling = Model('p_bundling');
- $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['bl_quota_month'] = $quantity;
- $data['bl_quota_starttime'] = TIMESTAMP;
- $data['bl_quota_endtime'] = TIMESTAMP + 60 * 60 * 24 * 30 * $quantity;
- $data['bl_state'] = 1;
- $return = $model_bundling->addBundlingQuota($data);
- if ($return) {
- // 添加店铺费用记录
- $this->recordStoreCost($price_quantity, '购买优惠套装');
- // 添加任务队列
- $end_time = TIMESTAMP + 60 * 60 * 24 * 30 * $quantity;
- $this->addcron(array('exetime' => $end_time, 'exeid' => $_SESSION['store_id'], 'type' => 3), true);
- $this->recordSellerLog('购买'.$quantity.'套优惠套装,单位元');
- showDialog(L('bundling_quota_price_succ'), urlShop('store_promotion_bundling', 'bundling_list'), 'succ');
- } else {
- showDialog(L('bundling_quota_price_fail'), urlShop('store_promotion_bundling', 'bundling_quota_add'));
- }
- }
- // 输出导航
- self::profile_menu('bundling_quota_add', 'bundling_quota_add');
- Tpl::showpage('store_promotion_bundling.quota_add');
- }
- /**
- * 套餐续费
- */
- public function bundling_renewOp() {
- if (chksubmit()) {
- $model_bundling = Model('p_bundling');
- $quantity = intval($_POST['bundling_quota_quantity']); // 购买数量(月)
- $price_quantity = $quantity * intval(C('promotion_bundling_price')); // 扣款数
- if ($quantity <= 0 || $quantity > 12) {
- showDialog(Language::get('bundling_quota_price_fail'), urlShop('store_promotion_bundling', 'bundling_quota_add'), '', 'error' );
- }
- $where = array();
- $where['store_id'] = $_SESSION ['store_id'];
- $bundling_quota = $model_bundling->getBundlingQuotaInfo($where);
- if ($bundling_quota['bl_quota_endtime'] > TIMESTAMP) {
- // 套餐未超时(结束时间+购买时间)
- $update['bl_quota_endtime'] = intval($bundling_quota['bl_quota_endtime']) + 60 * 60 * 24 * 30 * $quantity;
- } else {
- // 套餐已超时(当前时间+购买时间)
- $update['bl_quota_endtime'] = TIMESTAMP + 60 * 60 * 24 * 30 * $quantity;
- }
- $return = $model_bundling->editBundlingQuotaOpen($update, $where);
- if ($return) {
- // 添加店铺费用记录
- $this->recordStoreCost($price_quantity, '购买优惠套装');
- // 添加任务队列
- $this->addcron(array('exetime' => $update['bl_quota_endtime'], 'exeid' => $_SESSION['store_id'], 'type' => 3), true);
- $this->recordSellerLog('续费'.$quantity.'套优惠套装,单位元');
- showDialog(L('bundling_quota_price_succ'), urlShop('store_promotion_bundling', 'bundling_list'), 'succ');
- } else {
- showDialog(L('bundling_quota_price_fail'), urlShop('store_promotion_bundling', 'bundling_quota_add'));
- }
- }
- self::profile_menu('bundling_renew', 'bundling_renew');
- Tpl::showpage('store_promotion_bundling.quota_add');
- }
- /**
- * 套餐活动添加
- */
- public function bundling_addOp() {
- /**
- * 实例化模型
- */
- $model_bundling = Model('p_bundling');
- // 验证套餐数量
- if (intval(C('promotion_bundling_sum')) != 0 && !isset($_REQUEST['bundling_id'])) {
- $count = $model_bundling->getBundlingCount(array('store_id' => $_SESSION['store_id']));
- if (intval(C('promotion_bundling_sum')) <= intval($count)) {
- showMessage(L('bundling_add_fail_quantity_beyond'), '', '', 'error');
- }
- }
- if (chksubmit()) {
- // 插入套餐
- $data = array();
- if (isset($_POST['bundling_id'])) {
- $data['bl_id'] = intval($_POST['bundling_id']);
- }
- $data['bl_name'] = $_POST['bundling_name'];
- $data['store_id'] = $_SESSION['store_id'];
- $data['store_name'] = $_SESSION['store_name'];
- $data['bl_discount_price'] = $_POST['discount_price'];
- $data['bl_freight_choose'] = $_POST['bundling_freight_choose'];
- $data['bl_freight'] = $_POST['bundling_freight'];
- $data['bl_state'] = intval($_POST['state']);
- $return = $model_bundling->addBundling($data, true);
- if (!$return) {
- showDialog(L('nc_common_op_fail'), '', '', 'error');
- }
- // 插入套餐商品
- $model_goods = Model('goods');
- $data_goods = array();
- $appoint_goodsid = false;
- $model_bundling->delBundlingGoods(array('bl_id' => intval($_POST['bundling_id'])));
- if (!empty($_POST['goods']) && is_array($_POST['goods'])) {
- foreach ($_POST['goods'] as $key => $val) {
- // 验证是否为本店铺商品
- $goods_info = $model_goods->getGoodsInfoByID($val['gid'], 'goods_id,goods_name,goods_image,store_id');
- if (empty($goods_info) || $goods_info['store_id'] != $_SESSION['store_id']) {
- continue;
- }
- $data = array();
- $data['bl_id'] = isset($_POST['bundling_id']) ? intval($_POST['bundling_id']) : $return;
- $data['goods_id'] = $goods_info['goods_id'];
- $data['goods_name'] = $goods_info['goods_name'];
- $data['goods_image'] = $goods_info['goods_image'];
- $data['bl_goods_price'] = ncPriceFormat($val['price']);
- $data['bl_appoint'] = intval($val['appoint']);
- if (!$appoint_goodsid && intval($val['appoint']) == 1) {
- $appoint_goodsid = intval($val['gid']);
- }
- $data_goods[] = $data;
- }
- }
- // 插入数据
- $return = $model_bundling->addBundlingGoodsAll($data_goods);
- if (!isset($_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'] = $data['bl_name'];
- $data_array['bl_img'] = empty($_POST['image_path']) ? '' : $_POST['image_path'][0];
- $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('添加优惠套装,名称:'.$data['bl_name'] . ' id:'.$return);
- showDialog(L('nc_common_op_succ'), urlShop('store_promotion_bundling', 'bundling_list'), 'succ');
- }
- // 是否能使用编辑器
- if(checkPlatformStore()){ // 平台店铺可以使用编辑器
- $editor_multimedia = true;
- } else { // 三方店铺需要
- $editor_multimedia = false;
- if ($this->store_grade['sg_function'] == 'editor_multimedia') {
- $editor_multimedia = true;
- }
- }
- Tpl::output('editor_multimedia', $editor_multimedia);
- if (intval($_GET['bundling_id']) > 0) {
- $bundling_info = $model_bundling->getBundlingInfo(array('bl_id' => intval($_GET['bundling_id']), 'store_id' => $_SESSION['store_id']));
- Tpl::output('bundling_info', $bundling_info);
- // 验证是否属于自己的组合套餐
- if (empty($bundling_info['store_id'])) {
- showMessage(L( 'wrong_argument'), urlShop('store_promotion_bundling', 'bundling_list'), '', 'error' );
- }
- $b_goods_list = $model_bundling->getBundlingGoodsList(array('bl_id' => intval($_GET['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('goods_id' => array('in', $goodsid_array)), 'goods_id,goods_price,goods_image,goods_name');
- Tpl::output('goods_list', array_under_reset($goods_list, 'goods_id'));
- }
- Tpl::output('b_goods_list', $b_goods_list);
- // 输出导航
- self::profile_menu('bundling_edit', 'bundling_edit');
- } else {
- // 输出导航
- self::profile_menu('bundling_add', 'bundling_add');
- }
- Tpl::showpage('store_promotion_bundling.add');
- }
- /**
- * 套餐活动添加商品
- */
- public function bundling_add_goodsOp() {
- /**
- * 实例化模型
- */
- $model_goods =Model('goods');
- // where条件
- $where = array ();
- $where['store_id'] = $_SESSION['store_id'];
- if (intval($_GET['stc_id']) > 0) {
- $where['goods_stcids'] = array('like', '%,' . intval($_GET['stc_id']) . ',%');
- }
- if (trim($_GET['keyword']) != '') {
- $where['goods_name'] = array('like', '%' . trim($_GET['keyword']) . '%');
- }
- $goods_list = $model_goods->getGoodsListForPromotion($where, '*', 8, 'bundling');
- Tpl::output('show_page', $model_goods->showpage(2));
- Tpl::output('goods_list', $goods_list);
- /**
- * 商品分类
- */
- $store_goods_class = Model('store_goods_class')->getClassTree(array('store_id' => $_SESSION['store_id'], 'stc_state' => '1'));
- Tpl::output('store_goods_class', $store_goods_class);
- Tpl::showpage('store_promotion_bundling.add_goods', 'null_layout');
- }
- /**
- * 删除优惠套装活动
- */
- public function drop_bundlingOp(){
- /**
- * 参数验证
- */
- $blids = trim($_GET['bundling_id']);
- if (empty($blids)) {
- showDialog(L('para_error'), '', 'error');
- }
- $return = Model('p_bundling')->delBundling($blids, $_SESSION['store_id']);
- if ($return) {
- $this->recordSellerLog('删除优惠套装,套餐id:'.$blids);
- showDialog(L('bundling_delete_success'), 'reload', 'succ');
- } else {
- showDialog(L('bundling_delete_fail'), '', 'error');
- }
- }
- /**
- * 用户中心右边,小导航
- *
- * @param string $menu_type 导航类型
- * @param string $menu_key 当前导航的menu_key
- * @return
- */
- private function profile_menu($menu_type,$menu_key='') {
- $menu_array = array();
- switch ($menu_type) {
- case 'bundling_list':
- case 'bundling_quota_list':
- $menu_array = array(
- 1=>array('menu_key'=>'bundling_list', 'menu_name'=>Language::get('bundling_list'), 'menu_url'=>urlShop('store_promotion_bundling', 'bundling_list'))
- );
- break;
- case 'bundling_quota_add':
- $menu_array = array(
- 1=>array('menu_key'=>'bundling_list', 'menu_name'=>Language::get('bundling_list'), 'menu_url'=>urlShop('store_promotion_bundling', 'bundling_list')),
- 2=>array('menu_key'=>'bundling_quota_add', 'menu_name'=>Language::get('bundling_quota_add'), 'menu_url'=>urlShop('store_promotion_bundling', 'bundling_quota_add'))
- );
- break;
- case 'bundling_renew':
- $menu_array = array(
- 1=>array('menu_key'=>'bundling_list', 'menu_name'=>Language::get('bundling_list'), 'menu_url'=>urlShop('store_promotion_bundling', 'bundling_list')),
- 2=>array('menu_key'=>'bundling_renew', 'menu_name'=>'套餐续费', 'menu_url'=>urlShop('store_promotion_bundling', 'bundling_renew'))
- );
- break;
- case 'bundling_add':
- $menu_array = array(
- 1=>array('menu_key'=>'bundling_list', 'menu_name'=>Language::get('bundling_list'), 'menu_url'=>urlShop('store_promotion_bundling', 'bundling_list')),
- 2=>array('menu_key'=>'bundling_add', 'menu_name'=>Language::get('bundling_add'), 'menu_url'=>urlShop('store_promotion_bundling', 'bundling_add'))
- );
- break;
- case 'bundling_edit':
- $menu_array = array(
- 1=>array('menu_key'=>'bundling_list', 'menu_name'=>Language::get('bundling_list'), 'menu_url'=>urlShop('store_promotion_bundling', 'bundling_list')),
- 2=>array('menu_key'=>'bundling_edit', 'menu_name'=>Language::get('bundling_edit'), 'menu_url'=>urlShop('store_promotion_bundling', 'bundling_edit'))
- );
- break;
- }
- Tpl::output('member_menu',$menu_array);
- Tpl::output('menu_key',$menu_key);
- }
- }
|