1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072 |
- <?php
- namespace app\admin\controller;
- use think\facade\View;
- use think\facade\Lang;
- use think\facade\Db;
- /**
- * ============================================================================
- * DSMall多用户商城
- * ============================================================================
- * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
- * 网站地址: http://www.csdeshang.com
- * ----------------------------------------------------------------------------
- * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
- * 不允许对程序代码以任何形式任何目的的再发布。
- * ============================================================================
- * 控制器
- */
- class Store extends AdminControl {
- public function initialize() {
- parent::initialize();
- Lang::load(base_path() . 'admin/lang/' . config('lang.default_lang') . '/store.lang.php');
- }
- /**
- * 店铺
- */
- public function store() {
- $store_model = model('store');
- $owner_and_name = input('get.owner_and_name');
- if (trim($owner_and_name) != '') {
- $condition[] = array('member_name', 'like', '%' . $owner_and_name . '%');
- }
- $store_name = input('get.store_name');
- if (trim($store_name) != '') {
- $condition[] = array('store_name', 'like', '%' . trim($store_name) . '%');
- }
- $grade_id = input('get.grade_id');
- if (intval($grade_id) > 0) {
- $condition[] = array('grade_id', '=', intval($grade_id));
- }
- $store_state = input('get.store_state');
- switch ($store_state) {
- case 'close':
- $condition[] = array('store_state', '=', 0);
- break;
- case 'open':
- $condition[] = array('store_state', '=', 1);
- break;
- case 'expired':
- $condition[] = array('store_endtime', 'between', array(1, TIMESTAMP));
- $condition[] = array('store_state', '=', 1);
- break;
- case 'expire':
- $condition[] = array('store_endtime', 'between', array(TIMESTAMP, TIMESTAMP + 864000));
- $condition[] = array('store_state', '=', 1);
- break;
- }
- // 默认店铺管理不包含自营店铺
- $condition[] = array('is_platform_store', '=', 0);
- //店铺列表
- $store_list = $store_model->getStoreList($condition, 10, 'store_id desc');
- //店铺等级
- $storegrade_model = model('storegrade');
- $grade_list = $storegrade_model->getStoregradeList();
- $search_grade_list = array();
- if (!empty($grade_list)) {
- $search_grade_list[0] = lang('no_select_grade');
- foreach ($grade_list as $k => $v) {
- $search_grade_list[$v['storegrade_id']] = $v['storegrade_name'];
- }
- }
- View::assign('search_grade_list', $search_grade_list);
- View::assign('grade_list', $grade_list);
- View::assign('store_list', $store_list);
- View::assign('store_state_list', $this->_get_store_state_array());
- View::assign('show_page', $store_model->page_info->render());
- $this->setAdminCurItem('store');
- return View::fetch('store');
- }
- private function _get_store_state_array() {
- return array(
- 'open' => lang('ds_open'),
- 'close' => lang('ds_close'),
- 'expire' => lang('about_to_expire'),
- 'expired' => lang('has_expired')
- );
- }
- /**
- * 店铺编辑
- */
- public function store_edit() {
- $store_id = input('param.store_id');
- $store_model = model('store');
- //取店铺信息
- $store_array = $store_model->getStoreInfoByID($store_id);
- if (empty($store_array)) {
- $this->error(lang('store_no_exist'));
- }
- //保存
- if (!request()->isPost()) {
- //整理店铺内容
- $store_array['store_endtime'] = $store_array['store_endtime'] ? date('Y-m-d', $store_array['store_endtime']) : '';
- //店铺分类
- $storeclass_model = model('storeclass');
- $parent_list = $storeclass_model->getStoreclassList(array(), '', false);
- //店铺等级
- $storegrade_model = model('storegrade');
- $grade_list = $storegrade_model->getStoregradeList();
- View::assign('grade_list', $grade_list);
- View::assign('class_list', $parent_list);
- View::assign('store_array', $store_array);
- $joinin_detail = model('storejoinin')->getOneStorejoinin(array('member_id' => $store_array['member_id']));
- View::assign('joinin_detail', $joinin_detail);
- $this->setAdminCurItem('store_edit');
- return View::fetch('store_edit');
- } else {
- //取店铺等级的审核
- $storegrade_model = model('storegrade');
- $grade_array = $storegrade_model->getOneStoregrade(intval(input('post.grade_id')));
- if (empty($grade_array)) {
- $this->error(lang('please_input_store_level'));
- }
- //结束时间
- $time = '';
- if (trim(input('post.end_time')) != '') {
- $time = strtotime(input('post.end_time'));
- }
- $update_array = array();
- $update_array['store_name'] = trim(input('post.store_name'));
- $update_array['storeclass_id'] = intval(input('post.storeclass_id'));
- $update_array['grade_id'] = intval(input('post.grade_id'));
- $update_array['store_endtime'] = $time;
- $update_array['store_state'] = intval(input('post.store_state'));
- $update_array['store_baozh'] = trim(input('post.store_baozh')); //保障服务开关
- $update_array['store_qtian'] = trim(input('post.store_qtian')); //保障服务-七天退换
- $update_array['store_zhping'] = trim(input('post.store_zhping')); //保障服务-正品保证
- $update_array['store_erxiaoshi'] = trim(input('post.store_erxiaoshi')); //保障服务-两小时发货
- $update_array['store_tuihuo'] = trim(input('post.store_tuihuo')); //保障服务-退货承诺
- $update_array['store_shiyong'] = trim(input('post.store_shiyong')); //保障服务-试用
- $update_array['store_xiaoxie'] = trim(input('post.store_xiaoxie')); //保障服务-消协
- $update_array['store_huodaofk'] = trim(input('post.store_huodaofk')); //保障服务-货到付款
- $update_array['store_shiti'] = trim(input('post.store_shiti')); //保障服务-实体店铺
- $data['store_type'] = input('post.store_type') == 1 ? 1 : 0;
- $condition = array();
- $condition[] = array('member_id', '=', intval(input('post.member_id')));
- if ($update_array['store_state'] == 0) {
- //根据店铺状态修改该店铺所有商品状态
- $goods_model = model('goods');
- $goods_model->editProducesOffline(array(array('store_id', '=', $store_id)));
- $update_array['store_close_info'] = trim(input('post.store_close_info'));
- $update_array['store_recommend'] = 0;
- } else {
- //店铺开启后商品不在自动上架,需要手动操作
- $update_array['store_close_info'] = '';
- }
- if ($update_array['store_name'] != $store_array['store_name']) {
- $goods_model = model('goods');
- $goods_model->editGoodsCommon(array('store_name' => $update_array['store_name']), array('store_id' => $store_id));
- $goods_model->editGoods(array('store_name' => $update_array['store_name']), array('store_id' => $store_id));
- }
- $result = $store_model->editStore($update_array, array('store_id' => $store_id));
- $store_type = model('Storejoinin')->editStorejoinin($data, $condition);
- if ($result || $store_type) {
- //店铺名称修改处理
- $store_name = trim(input('post.store_name'));
- $store_info = $store_model->getStoreInfoByID($store_id);
- if (!empty($store_name)) {
- $condition = array();
- $condition[] = array('store_id', '=', $store_id);
- $update = array();
- $update['store_name'] = $store_name;
- $bllGoods = $store_model->editGoodscommon($condition, $update);
- $bllGoods = $store_model->editGoods($condition, $update);
- }
- $this->log(lang('ds_edit') . lang('ds_store') . '[' . input('post.store_name') . ']', 1);
- $this->success(lang('ds_common_save_succ'), (string) url('Store/store'));
- } else {
- $this->log(lang('ds_edit') . lang('ds_store') . '[' . input('post.store_name') . ']', 1);
- $this->error(lang('ds_common_save_fail'));
- }
- }
- }
- /**
- * 编辑保存注册信息
- */
- public function edit_save_joinin() {
- if (request()->isPost()) {
- $member_id = input('post.member_id');
- if ($member_id <= 0) {
- $this->error(lang('param_error'));
- }
- $param = array();
- $param['company_name'] = input('post.company_name');
- $param['company_province_id'] = intval(input('post.province_id'));
- $param['company_address'] = input('post.company_address');
- $param['company_address_detail'] = input('post.company_address_detail');
- $param['company_registered_capital'] = intval(input('post.company_registered_capital'));
- $param['contacts_name'] = input('post.contacts_name');
- $param['contacts_phone'] = input('post.contacts_phone');
- $param['contacts_email'] = input('post.contacts_email');
- $param['business_licence_number'] = input('post.business_licence_number');
- $param['business_licence_address'] = input('post.business_licence_address');
- $param['business_licence_start'] = input('post.business_licence_start');
- $param['business_licence_end'] = input('post.business_licence_end');
- $param['business_sphere'] = input('post.business_sphere');
- if (!empty($_FILES['business_licence_number_electronic']['name'])) {
- $param['business_licence_number_electronic'] = $this->upload_image('business_licence_number_electronic');
- }
- $param['bank_account_name'] = input('post.bank_account_name');
- $param['bank_account_number'] = input('post.bank_account_number');
- $param['bank_name'] = input('post.bank_name');
- $param['bank_address'] = input('post.bank_address');
- $param['settlement_bank_account_name'] = input('post.settlement_bank_account_name');
- $param['settlement_bank_account_number'] = input('post.settlement_bank_account_number');
- $param['settlement_bank_name'] = input('post.settlement_bank_name');
- $param['settlement_bank_address'] = input('post.settlement_bank_address');
- $result = model('storejoinin')->editStorejoinin($param, array('member_id' => $member_id));
- if ($result >= 0) {
- //更新店铺信息
- $store_update = array();
- $store_update['store_company_name'] = $param['company_name'];
- $store_update['area_info'] = $param['company_address'];
- $store_update['store_address'] = $param['company_address_detail'];
- $store_model = model('store');
- $store_info = $store_model->getStoreInfo(array('member_id' => $member_id));
- if (!empty($store_info)) {
- $r = $store_model->editStore($store_update, array('member_id' => $member_id));
- $this->log('编辑店铺信息' . '[ID:' . $r . ']', 1);
- }
- $this->success(lang('ds_common_op_succ'), (string) url('Store/store'));
- } else {
- $this->error(lang('ds_common_op_fail'));
- }
- }
- }
- private function upload_image($file) {
- //上传文件保存路径
- $pic_name = '';
- if (!empty($_FILES[$file]['name'])) {
- //设置特殊图片名称
- $member_id = input('post.member_id');
- $file_name = $member_id . '_' . date('YmdHis') . rand(10000, 99999) . '.png';
- $res = ds_upload_pic('home' . DIRECTORY_SEPARATOR . 'store_joinin', $file, $file_name);
- if ($res['code']) {
- $pic_name = $res['data']['file_name'];
- } else {
- $this->error($res['msg']);
- }
- }
- return $pic_name;
- }
- /**
- * 店铺经营类目管理
- */
- public function store_bind_class() {
- $store_id = intval(input('param.store_id'));
- $store_model = model('store');
- $storebindclass_model = model('storebindclass');
- $goodsclass_model = model('goodsclass');
- $gc_list = $goodsclass_model->getGoodsclassListByParentId(0);
- View::assign('gc_list', $gc_list);
- $store_info = $store_model->getStoreInfoByID($store_id);
- if (empty($store_info)) {
- $this->error(lang('param_error'));
- }
- View::assign('store_info', $store_info);
- $store_bind_class_list = $storebindclass_model->getStorebindclassList(array(array('store_id', '=', $store_id), array('storebindclass_state', 'in', array(1, 2))), null);
- $goods_class = model('goodsclass')->getGoodsclassIndexedListAll();
- for ($i = 0, $j = count($store_bind_class_list); $i < $j; $i++) {
- $store_bind_class_list[$i]['class_1_name'] = @$goods_class[$store_bind_class_list[$i]['class_1']]['gc_name'];
- $store_bind_class_list[$i]['class_2_name'] = @$goods_class[$store_bind_class_list[$i]['class_2']]['gc_name'];
- $store_bind_class_list[$i]['class_3_name'] = @$goods_class[$store_bind_class_list[$i]['class_3']]['gc_name'];
- }
- View::assign('store_bind_class_list', $store_bind_class_list);
- $this->setAdminCurItem('store_bind_class');
- return View::fetch('store_bind_class');
- }
- /**
- * 添加经营类目
- */
- public function store_bind_class_add() {
- $store_id = intval(input('post.store_id'));
- $commis_rate = intval(input('post.commis_rate'));
- if ($commis_rate < 0 || $commis_rate > 100) {
- $this->error(lang('param_error'));
- }
- @list($class_1, $class_2, $class_3) = explode(',', input('post.goods_class'));
- $storebindclass_model = model('storebindclass');
- $param = array();
- $param['store_id'] = $store_id;
- $param['class_1'] = $class_1;
- $param['storebindclass_state'] = 1;
- if (!empty($class_2)) {
- $param['class_2'] = $class_2;
- }
- if (!empty($class_3)) {
- $param['class_3'] = $class_3;
- }
- // 检查类目是否已经存在
- $store_bind_class_info = $storebindclass_model->getStorebindclassInfo($param);
- if (!empty($store_bind_class_info)) {
- $this->error(lang('storeclass_has_exist'));
- }
- $param['commis_rate'] = $commis_rate;
- $result = $storebindclass_model->addStorebindclass($param);
- if ($result) {
- $this->log('新增店铺经营类目,类目编号:' . $result . ',店铺编号:' . $store_id);
- $this->success(lang('ds_common_save_succ'));
- } else {
- $this->error(lang('ds_common_save_fail'));
- }
- }
- /**
- * 删除经营类目
- */
- public function store_bind_class_del() {
- $bid = intval(input('param.bid'));
- $storebindclass_model = model('storebindclass');
- $goods_model = model('goods');
- $store_bind_class_info = $storebindclass_model->getStorebindclassInfo(array('storebindclass_id' => $bid));
- if (empty($store_bind_class_info)) {
- ds_json_encode('10001', lang('ds_common_del_fail'));
- }
- // 商品下架
- $condition = array();
- $condition[] = array('store_id', '=', $store_bind_class_info['store_id']);
- $gc_id = $store_bind_class_info['class_1'] . ',' . $store_bind_class_info['class_2'] . ',' . $store_bind_class_info['class_3'];
- $update = array();
- $update['goods_stateremark'] = lang('admin_delete_store_bind_class');
- $condition[] = array('gc_id', 'in', rtrim($gc_id, ','));
- $goods_model->editProducesLockUp($update, $condition);
- $result = $storebindclass_model->delStorebindclass(array('storebindclass_id' => $bid));
- if (!$result) {
- ds_json_encode('10001', lang('ds_common_del_fail'));
- } else {
- $this->log('删除店铺经营类目,类目编号:' . $bid . ',店铺编号:' . $store_bind_class_info['store_id']);
- ds_json_encode('10000', lang('ds_common_del_succ'));
- }
- }
- public function store_bind_class_update() {
- $bid = intval(input('param.id'));
- if ($bid <= 0) {
- echo json_encode(array('result' => FALSE, 'message' => lang('param_error')));
- die;
- }
- $new_commis_rate = intval(input('param.value'));
- if ($new_commis_rate < 0 || $new_commis_rate >= 100) {
- echo json_encode(array('result' => FALSE, 'message' => lang('param_error')));
- die;
- } else {
- $update = array('commis_rate' => $new_commis_rate);
- $condition = array('storebindclass_id' => $bid);
- $storebindclass_model = model('storebindclass');
- $result = $storebindclass_model->editStorebindclass($update, $condition);
- if ($result) {
- $this->log('更新店铺经营类目,类目编号:' . $bid);
- echo json_encode(array('result' => TRUE));
- die;
- } else {
- echo json_encode(array('result' => FALSE, 'message' => lang('ds_common_op_fail')));
- die;
- }
- }
- }
- /**
- * 店铺 待审核列表
- */
- public function store_joinin() {
- $condition = array();
- //店铺列表
- if (input('param.owner_and_name')) {
- $condition[] = array('member_name', 'like', '%' . input('param.owner_and_name') . '%');
- }
- if (input('param.store_name')) {
- $condition[] = array('store_name', 'like', '%' . input('param.store_name') . '%');
- }
- if (input('param.grade_id') && intval(input('param.grade_id')) > 0) {
- $condition[] = array('storegrade_id', '=', input('param.grade_id'));
- }
- if (input('param.joinin_state') && intval(input('param.joinin_state')) > 0) {
- $condition[] = array('joinin_state', '=', input('param.joinin_state'));
- } else {
- $condition[] = array('joinin_state', '>', 0);
- }
- $storejoinin_model = model('storejoinin');
- $store_list = $storejoinin_model->getStorejoininList($condition, 10, 'joinin_state asc');
- View::assign('store_list', $store_list);
- View::assign('joinin_state_array', $this->get_store_joinin_state());
- //店铺等级
- $storegrade_model = model('storegrade');
- $grade_list = $storegrade_model->getStoregradeList();
- View::assign('grade_list', $grade_list);
- View::assign('show_page', $storejoinin_model->page_info->render());
- View::assign('filtered', $condition ? 1 : 0); //是否有查询条件
- $this->setAdminCurItem('store_joinin');
- return View::fetch('store_joinin');
- }
- /**
- * 经营类目申请列表
- */
- public function store_bind_class_applay_list() {
- $condition = array();
- // 不显示自营店铺绑定的类目
- $state = input('param.state');
- if ($state != '') {
- if (in_array($state, array('0', '1',))) {
- $condition[] = array('storebindclass_state', '=', intval($state));
- }
- } else {
- $condition[] = array('storebindclass_state', 'in', array('0', '1',));
- }
- $store_id = input('store_id');
- if (intval($store_id)) {
- $condition[] = array('store_id', '=', intval($store_id));
- }
- $storebindclass_model = model('storebindclass');
- $store_bind_class_list = $storebindclass_model->getStorebindclassList($condition, 15, 'storebindclass_state asc,storebindclass_id desc');
- $goods_class = model('goodsclass')->getGoodsclassIndexedListAll();
- $store_ids = array();
- for ($i = 0; $i < count($store_bind_class_list); $i++) {
- $store_bind_class_list[$i]['class_1_name'] = @$goods_class[$store_bind_class_list[$i]['class_1']]['gc_name'];
- $store_bind_class_list[$i]['class_2_name'] = @$goods_class[$store_bind_class_list[$i]['class_2']]['gc_name'];
- $store_bind_class_list[$i]['class_3_name'] = @$goods_class[$store_bind_class_list[$i]['class_3']]['gc_name'];
- $store_ids[] = $store_bind_class_list[$i]['store_id'];
- }
- //取店铺信息
- $store_model = model('store');
- $store_list = $store_model->getStoreList(array(array('store_id', 'in', $store_ids)), null);
- $bind_store_list = array();
- if (!empty($store_list) && is_array($store_list)) {
- foreach ($store_list as $k => $v) {
- $bind_store_list[$v['store_id']]['store_name'] = $v['store_name'];
- $bind_store_list[$v['store_id']]['seller_name'] = $v['seller_name'];
- }
- }
- View::assign('bind_list', $store_bind_class_list);
- View::assign('bind_store_list', $bind_store_list);
- View::assign('show_page', $storebindclass_model->page_info->render());
- View::assign('filtered', $condition ? 1 : 0); //是否有查询条件
- $this->setAdminCurItem('store_bind_class_applay_list');
- return View::fetch('bind_class_applay_list');
- }
- /**
- * 审核经营类目申请
- */
- public function store_bind_class_applay_check() {
- $storebindclass_model = model('storebindclass');
- $condition = array();
- $condition[] = array('storebindclass_id', '=', intval(input('param.bid')));
- $condition[] = array('storebindclass_state', '=', 0);
- $update = $storebindclass_model->editStorebindclass(array('storebindclass_state' => 1), $condition);
- if ($update) {
- $this->log('审核新经营类目申请,店铺ID:' . input('param.store_id'), 1);
- ds_json_encode(10000, lang('ds_common_op_succ'));
- } else {
- $this->error(lang('ds_common_op_fail'), get_referer());
- }
- }
- /**
- * 删除经营类目申请
- */
- public function store_bind_class_applay_del() {
- $storebindclass_model = model('storebindclass');
- $condition = array();
- $condition[] = array('storebindclass_id', '=', intval(input('param.bid')));
- $del = $storebindclass_model->delStorebindclass($condition);
- if ($del) {
- $this->log('删除经营类目,店铺ID:' . input('param.store_id'), 1);
- ds_json_encode(10000, lang('ds_common_del_succ'));
- } else {
- $this->error(lang('ds_common_del_fail'), get_referer());
- }
- }
- private function get_store_joinin_state() {
- $joinin_state_array = array(
- STORE_JOIN_STATE_NEW => lang('store_join_state_new'),
- STORE_JOIN_STATE_PAY => lang('store_join_state_pay'),
- STORE_JOIN_STATE_VERIFY_SUCCESS => lang('storereopen_state_0'),
- STORE_JOIN_STATE_VERIFY_FAIL => lang('store_join_state_verify_fail'),
- STORE_JOIN_STATE_PAY_FAIL => lang('store_join_state_pay_fail'),
- STORE_JOIN_STATE_FINAL => lang('store_join_state_final'),
- );
- return $joinin_state_array;
- }
- /**
- * 店铺续签申请列表
- */
- public function reopen_list() {
- $condition = array();
- $store_id = input('get.store_id');
- if (intval($store_id)) {
- $condition[] = array('storereopen_store_id', '=', intval($store_id));
- }
- $store_name = input('get.store_name');
- if (!empty($store_name)) {
- $condition[] = array('storereopen_store_name', '=', $store_name);
- }
- $storereopen_state = input('get.storereopen_state');
- if ($storereopen_state != '') {
- $condition[] = array('storereopen_state', '=', intval($storereopen_state));
- }
- $storereopen_model = model('storereopen');
- $reopen_list = $storereopen_model->getStorereopenList($condition, 15);
- View::assign('reopen_list', $reopen_list);
- View::assign('filtered', $condition ? 1 : 0); //是否有查询条件
- View::assign('show_page', $storereopen_model->page_info->render());
- $this->setAdminCurItem('reopen_list');
- return View::fetch('store_reopen_list');
- }
- /**
- * 审核店铺续签申请
- */
- public function reopen_check() {
- if (intval(input('param.storereopen_id')) <= 0)
- exit();
- $storereopen_model = model('storereopen');
- $condition = array();
- $condition[] = array('storereopen_id', '=', intval(input('param.storereopen_id')));
- $condition[] = array('storereopen_state', '=', 1);
- //取当前申请信息
- $reopen_info = $storereopen_model->getStorereopenInfo($condition);
- $data = array();
- $data['storereopen_state'] = 2;
- $update = $storereopen_model->editStorereopen($data, $condition);
- //取目前店铺有效截止日期
- $store_info = model('store')->getStoreInfoByID($reopen_info['storereopen_store_id']);
- $start_time = strtotime(date('Y-m-d 0:0:0', $store_info['store_endtime'])) + 24 * 3600;
- $new_store_endtime = strtotime(date('Y-m-d 23:59:59', $start_time) . " +" . intval($reopen_info['storereopen_year']) . " year");
- if ($update) {
- //更新店铺有效期
- model('store')->editStore(array('store_endtime' => $new_store_endtime), array('store_id' => $reopen_info['storereopen_store_id']));
- $msg = '审核通过店铺续签申请,店铺ID:' . $reopen_info['storereopen_store_id'];
- $this->log($msg, 1);
- ds_json_encode('10000', lang('ds_common_op_succ'));
- } else {
- ds_json_encode('10001', lang('ds_common_op_fail'));
- }
- }
- /**
- * 删除店铺续签申请
- */
- public function reopen_del() {
- $storereopen_model = model('storereopen');
- $condition = array();
- $condition[] = array('storereopen_id', '=', intval(input('param.storereopen_id')));
- $condition[] = array('storereopen_state', 'in', array(0, 1));
- //取当前申请信息
- $reopen_info = $storereopen_model->getStorereopenInfo($condition);
- $cert_file = BASE_UPLOAD_PATH . DIRECTORY_SEPARATOR . ATTACH_STORE_JOININ . DIRECTORY_SEPARATOR . $reopen_info['storereopen_pay_cert'];
- $del = $storereopen_model->delStorereopen($condition);
- if ($del) {
- if (is_file($cert_file)) {
- unlink($cert_file);
- }
- $this->log('删除店铺续签目申请,店铺ID:' . input('param.storereopen_store_id'), 1);
- ds_json_encode('10000', lang('ds_common_del_succ'));
- } else {
- ds_json_encode('10001', lang('ds_common_del_fail'));
- }
- }
- /**
- * 审核详细页
- */
- public function store_joinin_detail() {
- $storejoinin_model = model('storejoinin');
- $member_id = input('param.member_id');
- $joinin_detail = $storejoinin_model->getOneStorejoinin(array('member_id' => $member_id));
- $joinin_detail_title = lang('ds_view');
- if (in_array(intval($joinin_detail['joinin_state']), array(STORE_JOIN_STATE_NEW, STORE_JOIN_STATE_PAY))) {
- $joinin_detail_title = lang('ds_verify');
- }
- if (!empty($joinin_detail['sg_info'])) {
- $store_grade_info = model('storegrade')->getOneStoregrade($joinin_detail['storegrade_id']);
- $joinin_detail['storegrade_price'] = $store_grade_info['storegrade_price'];
- } else {
- $joinin_detail['sg_info'] = @unserialize($joinin_detail['sg_info']);
- if (is_array($joinin_detail['sg_info'])) {
- $joinin_detail['storegrade_price'] = $joinin_detail['sg_info']['storegrade_price'];
- }
- }
- View::assign('joinin_detail_title', $joinin_detail_title);
- View::assign('joinin_detail', $joinin_detail);
- return View::fetch('store_joinin_detail');
- }
- /**
- * 审核
- */
- public function store_joinin_verify() {
- $storejoinin_model = model('storejoinin');
- $joinin_detail = $storejoinin_model->getOneStorejoinin(array('member_id' => input('param.member_id')));
- switch (intval($joinin_detail['joinin_state'])) {
- case STORE_JOIN_STATE_NEW:
- $this->store_joinin_verify_pass($joinin_detail);
- break;
- case STORE_JOIN_STATE_PAY:
- $this->store_joinin_verify_open($joinin_detail);
- break;
- default:
- $this->error(lang('param_error'));
- break;
- }
- }
- private function store_joinin_verify_pass($joinin_detail) {
- $param = array();
- $param['joinin_state'] = input('post.verify_type') === 'pass' ? STORE_JOIN_STATE_VERIFY_SUCCESS : STORE_JOIN_STATE_VERIFY_FAIL;
- $param['joinin_message'] = input('post.joinin_message');
- $param['paying_amount'] = abs(floatval(input('post.paying_amount')));
- $commis_rate_array = input('post.commis_rate/a'); #获取数组
- $param['store_class_commis_rates'] = is_array($commis_rate_array) ? implode(',', $commis_rate_array) : '';
- $storejoinin_model = model('storejoinin');
- $storejoinin_model->editStorejoinin($param, array('member_id' => input('post.member_id')));
- if ($param['paying_amount'] > 0) {
- dsLayerOpenSuccess(lang('store_join_verify_final'));
- } else {
- //如果开店支付费用为零,则审核通过后直接开通,无需再上传付款凭证
- $this->store_joinin_verify_open($joinin_detail);
- }
- }
- private function store_joinin_verify_open($joinin_detail) {
- $storejoinin_model = model('storejoinin');
- $store_model = model('store');
- $param = array();
- $param['joinin_state'] = input('post.verify_type') === 'pass' ? STORE_JOIN_STATE_FINAL : STORE_JOIN_STATE_PAY_FAIL;
- $param['joinin_message'] = input('post.joinin_message');
- if (input('post.verify_type') === 'pass') {
- Db::startTrans();
- try{
- $store_model->setStoreOpen($joinin_detail,$param);
- }catch(\Exception $e) {
- Db::rollback();
- $this->error($e->getMessage());
- }
- Db::commit();
- dsLayerOpenSuccess(lang('ds_common_op_succ'));
- } else {
- Db::startTrans();
- try{
- $predeposit_model = model('predeposit');
- if($joinin_detail['rcb_amount']>0){
- $data_pd = array();
- $data_pd['member_id'] = $joinin_detail['member_id'];
- $data_pd['member_name'] = $joinin_detail['member_name'];
- $data_pd['amount'] = $joinin_detail['rcb_amount'];
- $data_pd['order_sn'] = $joinin_detail['pay_sn'];
- $predeposit_model->changeRcb('storejoinin_cancel', $data_pd);
- }
- if($joinin_detail['pd_amount']>0){
- $data_pd = array();
- $data_pd['member_id'] = $joinin_detail['member_id'];
- $data_pd['member_name'] = $joinin_detail['member_name'];
- $data_pd['amount'] = $joinin_detail['pd_amount'];
- $data_pd['order_sn'] = $joinin_detail['pay_sn'];
- $predeposit_model->changePd('storejoinin_cancel', $data_pd);
- }
- //改变店铺状态
- $storejoinin_model->editStorejoinin($param, array('member_id' => input('param.member_id')));
- }catch(\Exception $e) {
- Db::rollback();
- $this->error($e->getMessage());
- }
- Db::commit();
- dsLayerOpenSuccess(lang('ds_common_op_succ'));
- // $this->error(lang('store_open_reject'));
- }
- }
- /**
- * 提醒续费
- */
- public function remind_renewal() {
- $store_id = intval(input('param.store_id'));
- $store_info = model('store')->getStoreInfoByID($store_id);
- if (!empty($store_info) && $store_info['store_endtime'] < (TIMESTAMP + 864000) && cookie('remindRenewal' . $store_id) == null) {
- // 发送商家消息
- $param = array();
- $param['code'] = 'store_expire';
- $param['store_id'] = intval(input('param.store_id'));
- $param['param'] = array();
- $param['ali_param'] = array();
- $param['ten_param'] = array();
- //微信模板消息
- $param['weixin_param'] = array(
- 'data' => array(
- "keyword1" => array(
- "value" => $store_info['store_name'],
- "color" => "#333"
- ),
- "keyword2" => array(
- "value" => date('Y-m-d', $store_info['store_endtime']),
- "color" => "#333"
- )
- ),
- );
- model('cron')->addCron(array('cron_exetime'=>TIMESTAMP,'cron_type'=>'sendStoremsg','cron_value'=>serialize($param)));
- cookie('remindRenewal' . $store_id, 1, 86400 * 10); // 十天
- $this->success(lang('ds_common_op_succ'));
- }
- $this->error(lang('ds_common_op_fail'));
- }
- /*
- //删除店铺操作,暂时屏蔽
- public function del() {
- $store_id = intval(input('param.id'));
- $store_model = model('store');
- $storeArray = $store_model->field('is_platform_store,store_name')->find($store_id);
- if (empty($storeArray)) {
- ds_json_encode('10001', lang('外驻店铺不存在'));
- }
- if ($storeArray['is_platform_store']) {
- ds_json_encode('10001', lang('不能在此删除自营店铺'));
- }
- $condition = array(
- 'store_id' => $store_id,
- );
- if (model('goods')->getGoodsCount($condition) > 0){
- ds_json_encode('10001', lang('已经发布商品的外驻店铺不能被删除'));
- }
- // 完全删除店铺
- $store_model->delStoreEntirely($condition);
- //删除入驻相关
- $member_id = intval(input('param.member_id'));
- $store_joinin = model('storejoinin');
- $condition = array(
- 'member_id' => $member_id,
- );
- $store_joinin->delStorejoinin($condition);
- $this->log("删除外驻店铺: {$storeArray['store_name']}");
- ds_json_encode('10000', lang('ds_common_del_succ'));
- }
- *
- */
- //删除店铺操作
- public function del_join() {
- $member_id = (int) input('param.member_id');
- $store_joinin = model('storejoinin');
- $condition = array(
- 'member_id' => $member_id,
- );
- $mm = $store_joinin->getOneStorejoinin($condition);
- if (empty($mm)) {
- $this->error(lang('ds_common_op_fail'), get_referer());
- }
- if ($mm['joinin_state'] == '20') {
-
- }
- $store_name = $mm['store_name'];
- $store_model = model('store');
- $scount = $store_model->getStoreCount($condition);
- if ($scount > 0) {
- $this->error(lang('store_exist'), get_referer());
- }
- Db::startTrans();
- try{
- $predeposit_model = model('predeposit');
- if($mm['rcb_amount']>0){
- $data_pd = array();
- $data_pd['member_id'] = $mm['member_id'];
- $data_pd['member_name'] = $mm['member_name'];
- $data_pd['amount'] = $mm['rcb_amount'];
- $data_pd['order_sn'] = $mm['pay_sn'];
- $predeposit_model->changeRcb('storejoinin_cancel', $data_pd);
- }
- if($mm['pd_amount']>0){
- $data_pd = array();
- $data_pd['member_id'] = $mm['member_id'];
- $data_pd['member_name'] = $mm['member_name'];
- $data_pd['amount'] = $mm['pd_amount'];
- $data_pd['order_sn'] = $mm['pay_sn'];
- $predeposit_model->changePd('storejoinin_cancel', $data_pd);
- }
- // 完全删除店铺入驻
- $store_joinin->delStorejoinin($condition);
- }catch(\Exception $e) {
- Db::rollback();
- $this->error($e->getMessage());
- }
- Db::commit();
- $this->log(lang('del_store') . ":" . $store_name);
- ds_json_encode('10000', lang('ds_common_del_succ'));
- }
- public function newshop_add() {
- if (!request()->isPost()) {
- return View::fetch('store_newshop_add');
- } else {
- $member_name = input('post.member_name');
- $member_password = input('post.member_password');
- $seller_name = $member_name;
- $store_name = input('post.store_name');
- if (strlen($member_name) < 3 || strlen($member_name) > 15)
- $this->error(lang('name_length_error'));
- if (strlen($member_password) < 6)
- $this->error(lang('member_password_minlength'));
- if (!$this->checkMemberName($member_name))
- $this->error(lang('member_name_exist'));
- try {
- $memberId = model('member')->addMember(array(
- 'member_name' => $member_name,
- 'member_password' => $member_password,
- ));
- } catch (Exception $ex) {
- $this->error(lang('seller_account_add_fail'));
- }
- $store_model = model('store');
- $saveArray = array();
- $saveArray['store_name'] = $store_name;
- $saveArray['member_id'] = $memberId;
- $saveArray['member_name'] = $member_name;
- $saveArray['seller_name'] = $seller_name;
- $saveArray['bind_all_gc'] = 1;
- $saveArray['store_state'] = 1;
- $saveArray['store_addtime'] = TIMESTAMP;
- $saveArray['is_platform_store'] = 0;
- $saveArray['grade_id'] = 1;
- $storeId = $store_model->addStore($saveArray);
- model('seller')->addSeller(array(
- 'seller_name' => $seller_name,
- 'member_id' => $memberId,
- 'store_id' => $storeId,
- 'sellergroup_id' => 0,
- 'is_admin' => 1,
- ));
- model('storejoinin')->addStorejoinin(array(
- 'seller_name' => $seller_name,
- 'store_name' => $store_name,
- 'member_name' => $member_name,
- 'member_id' => $memberId,
- 'joinin_state' => 40,
- 'company_province_id' => 0,
- 'storeclass_bail' => 0,
- 'joinin_year' => 1,
- ));
- // 添加相册默认
- $album_model = model('album');
- $album_arr = array();
- $album_arr['aclass_name'] = lang('store_save_defaultalbumclass_name');
- $album_arr['store_id'] = $storeId;
- $album_arr['aclass_des'] = '';
- $album_arr['aclass_sort'] = '255';
- $album_arr['aclass_cover'] = '';
- $album_arr['aclass_uploadtime'] = TIMESTAMP;
- $album_arr['aclass_isdefault'] = '1';
- $album_model->addAlbumclass($album_arr);
- //插入店铺扩展表
- $store_model->addStoreextend(array('store_id' => $storeId));
- // 删除自营店id缓存
- model('store')->dropCachedOwnShopIds();
- $this->log(lang('add_store') . ": {$saveArray['store_name']}");
- $this->success(lang('add_store_bind_class'), (string) url('Store/store_bind_class', ['store_id' => $storeId]));
- }
- }
- public function check_seller_name() {
- echo json_encode($this->checkSellerName(input('param.seller_name')));
- exit;
- }
- private function checkSellerName($sellerName) {
- // 判断store_joinin是否存在记录
- $count = (int) model('storejoinin')->getStorejoininCount(array(
- 'seller_name' => $sellerName,
- ));
- if ($count > 0)
- return false;
- $seller = model('seller')->getSellerInfo(array(
- 'seller_name' => $sellerName,
- ));
- if (!empty($seller)) {
- return false;
- }
- return TRUE;
- }
- public function check_member_name() {
- echo json_encode($this->checkMemberName(input('param.member_name')));
- exit;
- }
- private function checkMemberName($member_name) {
- // 判断store_joinin是否存在记录
- $count = (int) model('storejoinin')->getStorejoininCount(array(
- 'member_name' => $member_name,
- ));
- if ($count > 0)
- return false;
- return !model('member')->getMemberCount(array(
- 'member_name' => $member_name,
- ));
- }
- /**
- * 验证店铺名称是否存在
- */
- public function ckeck_store_name() {
- $where = array();
- $where[] = array('store_name', '=', input('param.store_name'));
- $where[] = array('store_id', '<>', input('param.store_id'));
- $store_info = model('store')->getStoreInfo($where);
- if (!empty($store_info['store_name'])) {
- echo 'false';
- } else {
- echo 'true';
- }
- }
- /**
- * 验证店铺名称是否存在
- */
- private function ckeckStoreName($store_name) {
- $condition = array();
- $condition[] = array('store_name', '=', $store_name);
- $store_info = model('store')->getStoreInfo($condition);
- if (!empty($store_info['store_name'])) {
- return false;
- } else {
- return true;
- }
- }
- //ajax操作
- public function ajax() {
- $store_model = model('store');
- switch (input('param.branch')) {
- /**
- * 品牌名称
- */
- case 'store_sort':
- $id = intval(input('param.id'));
- $result = $store_model->editStore(array('store_sort' => trim(input('param.value'))), array('store_id' => $id));
- if ($result) {
- $this->log(lang('ds_edit') . lang('ds_store') . '[' . $id . ']', 1);
- }
- echo 'true';
- exit;
- break;
- }
- }
- /**
- * 获取卖家栏目列表,针对控制器下的栏目
- */
- protected function getAdminItemList() {
- $menu_array = array(
- array(
- 'name' => 'store',
- 'text' => lang('ds_manage'),
- 'url' => (string) url('Store/store')
- ), array(
- 'name' => 'store_joinin',
- 'text' => lang('pending'),
- 'url' => (string) url('Store/store_joinin')
- ), array(
- 'name' => 'reopen_list',
- 'text' => lang('reopen_list'),
- 'url' => (string) url('Store/reopen_list')
- ), array(
- 'name' => 'store_bind_class_applay_list',
- 'text' => lang('store_bind_class_apply'),
- 'url' => (string) url('Store/store_bind_class_applay_list')
- ), array(
- 'name' => 'newshop_add',
- 'text' => lang('add_store'),
- 'url' => "javascript:dsLayerOpen('" . (string) url('Store/newshop_add') . "','" . lang('add_store') . "')"
- )
- );
- if (request()->action() == 'store_bind_class') {
- $menu_array[] = [
- 'name' => 'store_bind_class', 'text' => lang('ds_edit') . lang('store_bind_class'), 'url' => '#'
- ];
- }
- return $menu_array;
- }
- }
- ?>
|