mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
81 lines
2.3 KiB
PHP
81 lines
2.3 KiB
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class taoguaninventory_ctl_admin_codestate extends desktop_controller{
|
||
var $name = "编码状态信息";
|
||
var $workground = "setting_tools";
|
||
function index(){
|
||
|
||
$action=array(
|
||
array('label' =>'新建', 'href' => 'index.php?app=taoguaninventory&ctl=admin_codestate&act=add','target' => 'dialog::{width:700,height:400,title:\'编码新建\'}'));
|
||
$params = array(
|
||
'title'=>'编码状态信息',
|
||
'use_buildin_new_dialog' => false,
|
||
'use_buildin_set_tag'=>false,
|
||
'use_buildin_recycle'=>false,
|
||
'use_buildin_export'=>false,
|
||
|
||
'use_buildin_filter'=>true,
|
||
'orderBy'=>'eid DESC',
|
||
// 'actions'=>$action,
|
||
);
|
||
$this->finder('taoguaninventory_mdl_encoded_state',$params);
|
||
}
|
||
|
||
/**
|
||
* 新建
|
||
*/
|
||
function edit_state($eid){
|
||
|
||
$oState = app::get('taoguaninventory')->model('encoded_state');
|
||
$state = $oState->dump($eid,'*');
|
||
$this->pagedata['state']=$state;
|
||
unset($state);
|
||
$this->page('admin/encode/add.html');
|
||
}
|
||
|
||
/**
|
||
* 保存
|
||
*/
|
||
function save(){
|
||
$this->begin();
|
||
$data = array();
|
||
$oState = app::get('taoguaninventory')->model('encoded_state');
|
||
|
||
$data = array(
|
||
'eid' => $_POST['eid'],
|
||
'head' =>$_POST['head'],
|
||
'bhlen'=>$_POST['bhlen'],
|
||
|
||
);
|
||
$result = $oState->save($data);
|
||
if( $result ){
|
||
$this->end(true, '成功', 'index.php?app=taoguaninventory&ctl=admin_codestate&act=index');
|
||
}else{
|
||
$this->end(false, '失败.');
|
||
}
|
||
|
||
}
|
||
|
||
/**
|
||
获取状态信息
|
||
*/
|
||
function getencode(){
|
||
$name = $_GET['name'];
|
||
$oState = app::get('taoguaninventory')->model('encoded_state');
|
||
if($name){
|
||
$state = $oState->dump(array('name'=>$name),'name');
|
||
$date = array();
|
||
if($state){
|
||
$date['message'] = '存在';
|
||
}else{
|
||
$date['message'] = '不存在';
|
||
}
|
||
echo json_encode($date);
|
||
}
|
||
}
|
||
}
|
||
?>
|