mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
92 lines
2.7 KiB
PHP
92 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.
|
|
*/
|
|
/**
|
|
* ============================
|
|
* @Author: yaokangming
|
|
* @Version: 1.0
|
|
* @DateTime: 2020/10/22 16:12:45
|
|
* @describe: 仓库分组
|
|
* ============================
|
|
*/
|
|
class omeauto_ctl_branchgroup extends desktop_controller {
|
|
var $workground = "setting_tools";
|
|
|
|
function index() {
|
|
$action=array(
|
|
array(
|
|
'label' => $this->app->_('添加仓库分组'),
|
|
'href' => 'index.php?app=omeauto&ctl=branchgroup&act=addBranchGroup',
|
|
'target'=>'dialog::{width:600,height:400,title:\'添加仓库分组\'}',
|
|
),
|
|
);
|
|
|
|
$params = array(
|
|
'title' => '仓库分组',
|
|
'use_buildin_recycle' => true,
|
|
'actions' => $action
|
|
);
|
|
$this->finder('omeauto_mdl_branchgroup', $params);
|
|
}
|
|
|
|
/**
|
|
* 添加BranchGroup
|
|
* @return mixed 返回值
|
|
*/
|
|
|
|
public function addBranchGroup() {
|
|
$this->display('branchgroup/edit.html');
|
|
}
|
|
|
|
/**
|
|
* edit
|
|
* @return mixed 返回值
|
|
*/
|
|
public function edit() {
|
|
$bgId = (int) $_GET['bg_id'];
|
|
$this->pagedata['data'] = app::get('omeauto')->model('branchgroup')->db_dump($bgId);
|
|
$this->display('branchgroup/edit.html');
|
|
}
|
|
|
|
/**
|
|
* doSave
|
|
* @return mixed 返回值
|
|
*/
|
|
public function doSave() {
|
|
$bgId = $_POST['bg_id'];
|
|
$name = $_POST['name'];
|
|
$branchId = implode(',', $_POST['branch_id']);
|
|
if (empty($name)) {
|
|
$this->splash('error', '', '名称不能为空');
|
|
}
|
|
if (empty($branchId)) {
|
|
$this->splash('error', '', '仓库不能为空');
|
|
}
|
|
$url = "index.php?app=omeauto&ctl=branchgroup&act=index";
|
|
$data = array(
|
|
'name' => $name,
|
|
'branch_group' => $branchId,
|
|
'last_modified' => time(),
|
|
);
|
|
if($bgId) {
|
|
$data['bg_id'] = $bgId;
|
|
} else {
|
|
$data['createtime'] = time();
|
|
}
|
|
app::get('omeauto')->model('branchgroup')->db_save($data);
|
|
$this->splash('success', $url, '保存完成');
|
|
}
|
|
} |