mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
78 lines
2.7 KiB
PHP
78 lines
2.7 KiB
PHP
<?php
|
|
/**
|
|
* Copyright 2012-2026 ShopeX (https://www.shopex.cn)
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
class ome_ctl_admin_brand extends desktop_controller{
|
|
|
|
var $workground = 'goods_manager';
|
|
|
|
function index(){
|
|
$this->finder('ome_mdl_brand',array(
|
|
'title'=>'基础物料品牌',
|
|
'actions' => array(
|
|
array('label'=>'添加','href'=>'index.php?app=ome&ctl=admin_brand&act=create','target'=>'dialog::{width:600,height:300,title:\'新建物料品牌\'}'),
|
|
),
|
|
'use_buildin_new_dialog' => false,
|
|
'use_buildin_set_tag'=>false,
|
|
'use_buildin_recycle'=>true,
|
|
'use_buildin_export'=>true,
|
|
'use_buildin_import'=>true,
|
|
'use_buildin_filter'=>true,
|
|
'orderBy' =>'ordernum DESC'
|
|
));
|
|
}
|
|
|
|
function getCheckboxList(){
|
|
$brand = $this->app->model('brand');
|
|
$this->pagedata['checkboxList'] = $brand->getList('brand_id,brand_name',null,0,-1);
|
|
$this->display('admin/goods/brand/checkbox_list.html');
|
|
}
|
|
|
|
function create(){
|
|
$this->pagedata['title'] = '添加商品品牌';
|
|
$this->display('admin/goods/brand/detail.html');
|
|
}
|
|
|
|
function save(){
|
|
$this->begin('index.php?app=ome&ctl=admin_brand&act=index');
|
|
$objBrand = $this->app->model('brand');
|
|
$brand_name = addslashes($_POST['brand_name']);
|
|
|
|
if($_POST['brand_id']==''){
|
|
$brand = $objBrand->dump(array('brand_name'=>$brand_name),'*');
|
|
if(!empty($brand)){
|
|
$this->end(false,app::get('base')->_('品牌已存在!不可以继续添加'));
|
|
}
|
|
}
|
|
if($objBrand->db_dump(['brand_code'=>$_POST['brand_code'], 'brand_id|noequal'=>$_POST['brand_id']])) {
|
|
$this->end(false,app::get('base')->_('品牌编码已存在!不可以重复'));
|
|
}
|
|
$this->end($objBrand->save($_POST),app::get('base')->_('品牌保存成功'));
|
|
|
|
}
|
|
|
|
function edit(){
|
|
$brand_id = $_GET['brand_id'];
|
|
$brand_obj = $this->app->model('brand');
|
|
$brands = $brand_obj->dump(array('brand_id' => $brand_id), '*');
|
|
|
|
$this->pagedata['brandInfo'] = $brands;
|
|
$this->display('admin/goods/brand/detail.html');
|
|
}
|
|
|
|
}
|
|
|