123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466 |
- <?php
- namespace app\admin\controller;
- use think\facade\View;
- use think\facade\Lang;
- /**
-
- *
-
- *
- * ----------------------------------------------------------------------------
- *
-
- * 控制器
- */
- class Brand extends AdminControl
- {
- const EXPORT_SIZE = 1000;
- public function initialize()
- {
- parent::initialize();
- Lang::load(base_path() . 'admin/lang/' . config('lang.default_lang') . '/brand.lang.php');
- }
- /**
- * 品牌列表
- */
- public function index()
- {
- $brand_model = model('brand');
- /**
- * 检索条件
- */
- if (!empty(input('param.search_brand_name'))) {
- $condition[] = array('brand_name', 'like', "%" . input('param.search_brand_name') . "%");
- }
- if (!empty(input('param.search_brand_class'))) {
- $condition[] = array('brand_class', 'like', "%" . input('param.search_brand_class') . "%");
- }
- $condition[] = array('brand_apply', '=', '1');
- $brand_list = $brand_model->getBrandList($condition, "*", 10);
- View::assign('showpage', $brand_model->page_info->render());
- View::assign('brand_list', $brand_list);
- View::assign('search_brand_name', trim(input('param.search_brand_name')));
- View::assign('search_brand_class', trim(input('param.search_brand_class')));
- $this->setAdminCurItem('index');
- return View::fetch();
- }
- /**
- * 增加品牌
- */
- public function brand_add()
- {
- $brand_model = model('brand');
- if (request()->isPost()) {
- $data = [
- 'brand_name' => input('post.brand_name'), 'brand_initial' => input('post.brand_initial'),
- 'brand_sort' => input('post.brand_sort')
- ];
- $brand_validate = ds_validate('brand');
- if (!$brand_validate->scene('brand_add')->check($data)) {
- $this->error($brand_validate->getError());
- } else {
- $insert_array = array();
- if (!empty($_FILES['_pic']['name'])) {
- $res = ds_upload_pic(ATTACH_BRAND, '_pic');
- if ($res['code']) {
- $brand_pic = $res['data']['file_name'];
- } else {
- $this->error($res['msg']);
- }
- }
- $insert_array['brand_name'] = trim(input('post.brand_name'));
- $insert_array['brand_initial'] = strtoupper(input('post.brand_initial'));
- $insert_array['gc_id'] = input('post.class_id');
- $insert_array['brand_class'] = trim(input('post.brand_class'));
- if (!empty($brand_pic)) {
- $insert_array['brand_pic'] = $brand_pic;
- }
- $insert_array['brand_recommend'] = trim(input('post.brand_recommend'));
- $insert_array['brand_sort'] = intval(input('post.brand_sort'));
- $insert_array['brand_showtype'] = intval(input('post.brand_showtype')) == 1 ? 1 : 0;
- $result = $brand_model->addBrand($insert_array);
- if ($result) {
- $this->log(lang('ds_add') . lang('brand_index_brand') . '[' . input('post.brand_name') . ']', 1);
- dsLayerOpenSuccess(lang('ds_common_save_succ'));
- } else {
- $this->error(lang('ds_common_save_fail'));
- }
- }
- } else {
- $brand_array = [
- 'brand_id' => '',
- 'brand_name' => '',
- 'brand_initial' => '',
- 'gc_id' => '',
- 'brand_class' => '',
- 'brand_pic' => '',
- 'brand_showtype' => '0',
- 'brand_recommend' => '1',
- 'brand_sort' => '0',
- ];
- View::assign('brand_array', $brand_array);
- // 一级商品分类
- $gc_list = model('goodsclass')->getGoodsclassListByParentId(0);
- View::assign('gc_list', $gc_list);
- return View::fetch('form');
- }
- }
- /**
- * 品牌编辑
- */
- public function brand_edit()
- {
- $brand_model = model('brand');
- if (request()->isPost()) {
- $data = [
- 'brand_name' => input('post.brand_name'), 'brand_initial' => input('post.brand_initial'),
- 'brand_sort' => input('post.brand_sort')
- ];
- $brand_validate = ds_validate('brand');
- if (!$brand_validate->scene('brand_edit')->check($data)) {
- $this->error($brand_validate->getError());
- } else {
- if (!empty($_FILES['_pic']['name'])) {
- $res = ds_upload_pic(ATTACH_BRAND, '_pic');
- if ($res['code']) {
- $brand_pic = $res['data']['file_name'];
- } else {
- $this->error($res['msg']);
- }
- }
- $brand_info = $brand_model->getBrandInfo(array('brand_id' => intval(input('post.brand_id'))));
- $condition = array();
- $condition[] = array('brand_id', '=', intval(input('post.brand_id')));
- $update_array = array();
- $update_array['brand_name'] = trim(input('post.brand_name'));
- $update_array['brand_initial'] = strtoupper(input('post.brand_initial'));
- $update_array['gc_id'] = input('post.class_id');
- $update_array['brand_class'] = trim(input('post.brand_class'));
- if (!empty($brand_pic)) {
- $update_array['brand_pic'] = $brand_pic;
- }
- $update_array['brand_recommend'] = intval(input('post.brand_recommend'));
- $update_array['brand_sort'] = intval(input('post.brand_sort'));
- $update_array['brand_showtype'] = intval(input('post.brand_showtype')) == 1 ? 1 : 0;
- $result = $brand_model->editBrand($condition, $update_array);
- if ($result >= 0) {
- if (!empty(input('post.brand_pic')) && !empty($brand_info['brand_pic'])) {
- @unlink(BASE_UPLOAD_PATH . DIRECTORY_SEPARATOR . ATTACH_BRAND . DIRECTORY_SEPARATOR . $brand_info['brand_pic']);
- }
- $this->log(lang('ds_edit') . lang('brand_index_brand') . '[' . input('post.brand_name') . ']', 1);
- dsLayerOpenSuccess(lang('ds_common_save_succ'));
- } else {
- $this->log(lang('ds_edit') . lang('brand_index_brand') . '[' . input('post.brand_name') . ']', 0);
- $this->error(lang('ds_common_save_fail'));
- }
- }
- } else {
- $brand_info = $brand_model->getBrandInfo(array('brand_id' => intval(input('param.brand_id'))));
- if (empty($brand_info)) {
- $this->error(lang('param_error'));
- }
- View::assign('brand_array', $brand_info);
- // 一级商品分类
- $gc_list = model('goodsclass')->getGoodsclassListByParentId(0);
- View::assign('gc_list', $gc_list);
- return View::fetch('form');
- }
- }
- /**
- * 删除品牌
- */
- public function brand_del()
- {
- $brand_id = input('param.brand_id');
- $brand_id_array = ds_delete_param($brand_id);
- if ($brand_id_array == FALSE) {
- $this->log(lang('ds_del') . lang('brand_index_brand') . '[ID:' . $brand_id . ']', 0);
- ds_json_encode(10001, lang('param_error'));
- }
- $brand_mod = model('brand');
- $condition = array();
- $condition[] = array('brand_id', 'in', $brand_id_array);
- $brand_mod->delBrand($condition);
- $this->log(lang('ds_del') . lang('brand_index_brand') . '[ID:' . $brand_id . ']', 1);
- ds_json_encode(10000, lang('ds_common_del_succ'));
- }
- /**
- * 品牌申请
- */
- public function brand_apply()
- {
- $brand_model = model('brand');
- /**
- * 对申请品牌进行操作 通过,拒绝
- */
- if (request()->isPost()) {
- $del_id_array = input('post.del_id/a'); #获取数组
- if (!empty($del_id_array)) {
- switch (input('post.type')) {
- case 'pass':
- //更新品牌 申请状态
- $brandid_array = array();
- foreach ($del_id_array as $v) {
- $brandid_array[] = intval($v);
- }
- $update_array = array();
- $update_array['brand_apply'] = 1;
- $condition = array();
- $condition[] = array('brand_id', 'in', $brandid_array);
- $brand_model->editBrand($condition, $update_array);
- $this->log(lang('brand_apply_pass') . '[ID:' . implode(',', $brandid_array) . ']', null);
- $this->success(lang('brand_apply_passed'));
- break;
- case 'refuse':
- //删除该品牌
- $brandid_array = array();
- foreach ($del_id_array as $v) {
- $brandid_array[] = intval($v);
- }
- $condition = array();
- $condition[] = array('brand_id', 'in', $brandid_array);
- $brand_model->delBrand($condition);
- $this->log(lang('ds_del') . lang('brand_index_brand') . '[ID:' . implode(',', $del_id_array) . ']', 1);
- $this->success(lang('ds_common_del_succ'));
- break;
- default:
- $this->success(lang('brand_apply_invalid_argument'));
- }
- } else {
- $this->log(lang('ds_del') . lang('brand_index_brand'), 0);
- $this->error(lang('ds_common_del_fail'));
- }
- } else {
- /**
- * 检索条件
- */
- $condition = array();
- if (!empty(input('param.search_brand_name'))) {
- $condition[] = array('brand_name', 'like', '%' . trim(input('param.search_brand_name')) . '%');
- }
- if (!empty(input('param.search_brand_class'))) {
- $condition[] = array('brand_class', 'like', '%' . trim(input('param.search_brand_class')) . '%');
- }
- $brand_list = $brand_model->getBrandNoPassedList($condition, '*', 10);
- View::assign('brand_list', $brand_list);
- View::assign('show_page', $brand_model->page_info->render());
- View::assign('search_brand_name', trim(input('param.search_brand_name')));
- View::assign('search_brand_class', trim(input('param.search_brand_class')));
- View::assign('filtered', $condition ? 1 : 0); //是否有查询条件
- $this->setAdminCurItem('brand_apply');
- return View::fetch('brand_apply');
- }
- }
- /**
- * 审核 申请品牌操作
- */
- public function brand_apply_set()
- {
- $brand_model = model('brand');
- if (intval(input('param.brand_id')) > 0) {
- switch (input('param.state')) {
- case 'pass':
- /**
- * 更新品牌 申请状态
- */
- $update_array = array();
- $update_array['brand_apply'] = 1;
- $result = $brand_model->editBrand(array('brand_id' => intval(input('param.brand_id'))), $update_array);
- if ($result) {
- $this->log(lang('brand_apply_pass') . '[ID:' . intval(input('param.brand_id')) . ']', null);
- $this->success(lang('brand_apply_pass'));
- } else {
- $this->log(lang('brand_apply_fail') . '[ID:' . intval(input('param.brand_id')) . ')', 0);
- $this->error(lang('brand_apply_fail'));
- }
- break;
- case 'refuse':
- // 删除
- $brand_model->delBrand(array('brand_id' => intval(input('param.brand_id'))));
- $this->log(lang('ds_del') . lang('brand_index_brand') . '[ID:' . intval(input('param.brand_id')) . ']', 1);
- $this->success(lang('ds_common_del_succ'));
- break;
- default:
- $this->error(lang('brand_apply_paramerror'));
- }
- } else {
- $this->log(lang('ds_del') . lang('brand_index_brand') . '[ID:' . intval(input('param.brand_id')) . ']', 0);
- $this->error(lang('brand_apply_brandparamerror'));
- }
- }
- /**
- * ajax操作
- */
- public function ajax()
- {
- $brand_model = model('brand');
- switch (input('param.branch')) {
- /**
- * 品牌名称
- */
- case 'brand_name':
- /**
- * 判断是否有重复
- */
- $condition[] = array('brand_name', '=', trim(input('param.value')));
- $condition[] = array('brand_id', '<>', intval(input('param.id')));
- $result = $brand_model->getBrandList($condition);
- if (empty($result)) {
- $brand_model->editBrand(array('brand_id' => intval(input('param.id'))), array('brand_name' => trim(input('param.value'))));
- $this->log(lang('ds_edit') . lang('brand_index_name') . '[' . input('param.value') . ']', 1);
- echo 'true';
- exit;
- } else {
- echo 'false';
- exit;
- }
- break;
- /**
- * 品牌类别,品牌排序,推荐
- */
- case 'brand_class':
- case 'brand_sort':
- case 'brand_recommend':
- $brand_model->editBrand(array('brand_id' => intval(input('param.id'))), array(input('param.column') => trim(input('param.value'))));
- $detail_log = str_replace(array(
- 'brand_class', 'brand_sort', 'brand_recommend'
- ), array(
- lang('brand_index_class'), lang('ds_sort'), lang('ds_recommend')
- ), input('param.branch'));
- $this->log(lang('ds_edit') . lang('brand_index_brand') . $detail_log . '[ID:' . intval(input('param.id')) . ')', 1);
- echo 'true';
- exit;
- break;
- /**
- * 验证品牌名称是否有重复
- */
- case 'check_brand_name':
- $condition[] = array('brand_name', '=', trim(input('param.brand_name')));
- $condition[] = array('brand_id', '<>', intval(input('param.id')));
- $result = $brand_model->getBrandList($condition);
- if (empty($result)) {
- echo 'true';
- exit;
- } else {
- echo 'false';
- exit;
- }
- break;
- }
- }
- /**
- * 品牌导出第一步
- */
- public function export_step1()
- {
- $brand_model = model('brand');
- $condition = array();
- if ((input('param.search_brand_name'))) {
- $condition[] = array('brand_name', 'like', "%{input('param.search_brand_name')}%");
- }
- if ((input('param.search_brand_class'))) {
- $condition[] = array('brand_class', 'like', "%{input('param.search_brand_class')}%");
- }
- $condition[] = array('brand_apply', '=', '1');
- if (!is_numeric(input('param.page'))) {
- $count = $brand_model->getBrandCount($condition);
- $export_list = array();
- if ($count > self::EXPORT_SIZE) { //显示下载链接
- $page = ceil($count / self::EXPORT_SIZE);
- for ($i = 1; $i <= $page; $i++) {
- $limit1 = ($i - 1) * self::EXPORT_SIZE + 1;
- $limit2 = $i * self::EXPORT_SIZE > $count ? $count : $i * self::EXPORT_SIZE;
- $export_list[$i] = $limit1 . ' ~ ' . $limit2;
- }
- View::assign('export_list', $export_list);
- return View::fetch('export_excel');
- } else { //如果数量小,直接下载
- $data = $brand_model->getBrandList($condition, '*', self::EXPORT_SIZE, 'brand_id desc');
- $this->createExcel($data);
- }
- } else { //下载
- $limit1 = (input('param.page') - 1) * self::EXPORT_SIZE;
- $limit2 = self::EXPORT_SIZE;
- $data = $brand_model->getBrandList($condition, '*', $limit2, 'brand_id desc');
- $this->createExcel($data);
- }
- }
- /**
- * 生成excel
- *
- * @param array $data
- */
- private function createExcel($data = array())
- {
- Lang::load(base_path() . 'admin/lang/' . config('lang.default_lang') . '/export.lang.php');
- $excel_obj = new \excel\Excel();
- $excel_data = array();
- //设置样式
- $excel_obj->setStyle(array(
- 'id' => 's_title', 'Font' => array('FontName' => lang('ds_song_typeface'), 'Size' => '12', 'Bold' => '1')
- ));
- //header
- $excel_data[0][] = array('styleid' => 's_title', 'data' => lang('exp_brandid'));
- $excel_data[0][] = array('styleid' => 's_title', 'data' => lang('exp_brand'));
- $excel_data[0][] = array('styleid' => 's_title', 'data' => lang('exp_brand_cate'));
- $excel_data[0][] = array('styleid' => 's_title', 'data' => lang('exp_brand_img'));
- foreach ((array) $data as $k => $v) {
- $tmp = array();
- $tmp[] = array('data' => $v['brand_id']);
- $tmp[] = array('data' => $v['brand_name']);
- $tmp[] = array('data' => $v['brand_class']);
- $tmp[] = array('data' => $v['brand_pic']);
- $excel_data[] = $tmp;
- }
- $excel_data = $excel_obj->charset($excel_data, CHARSET);
- $excel_obj->addArray($excel_data);
- $excel_obj->addWorksheet($excel_obj->charset(lang('exp_brand'), CHARSET));
- $excel_obj->generateXML($excel_obj->charset(lang('exp_brand'), CHARSET) . input('param.page') . '-' . date('Y-m-d-H', TIMESTAMP));
- }
- /**
- * 获取卖家栏目列表,针对控制器下的栏目
- */
- protected function getAdminItemList()
- {
- $menu_array = array(
- array(
- 'name' => 'index',
- 'text' => lang('ds_manage'),
- 'url' => (string) url('Brand/index'),
- ),
- array(
- 'name' => 'brand_add',
- 'text' => lang('ds_add'),
- 'url' => "javascript:dsLayerOpen('" . (string) url('Brand/brand_add') . "','" . lang('ds_add') . "')"
- ),
- array(
- 'name' => 'brand_apply',
- 'text' => lang('brand_index_to_audit'),
- 'url' => (string) url('Brand/brand_apply')
- )
- );
- return $menu_array;
- }
- }
|