提交 38adf048 authored 作者: chengye's avatar chengye

修复写入主表使用人与部门

上级 3f82240c
......@@ -9,7 +9,7 @@ function initbodys(){
$('input[name="buydate"]').val(ret.buydt);
$('input[name="price"]').val(ret.price);
$('textarea[name="info"]').text(ret.info);
$('input[name="temp_assetm_id"]').val(ret.assetm_id);
$('input[name="temp_assetm_id"]').val(ret.temp_assetm_id);
},'post,json');
};
}
\ No newline at end of file
......@@ -17,7 +17,7 @@ class mode_assetmuseClassAction extends inputAction{
$mArr['usename'] = $arr['user'];
$mArr['deptname'] = $arr['dept'];
$mArr['state'] = 1;
$where = ' id = '.$arr['assetm_id'];
$where = ' id = '.$arr['temp_assetm_id'];
m('assetm')->update($mArr,$where);
return ['rows'=>$arr];
}
......@@ -37,7 +37,7 @@ class mode_assetmuseClassAction extends inputAction{
$id = $this->post('num');
$sql = 'id = '.$id;
$data = m('assetm')->getone($sql,"title,price,buydt,CONCAT('型号:',`model_type`,' 机器编号:',`model_id`,' 处理器(CPU):',`model_cpu`,' 内存:',`model_ram`,' 硬盘:',`model_hdd`,' 显卡:',`model_vc`,' 操作系统:',`model_os`) as info");
$data['assetm_id'] = $id;
$data['temp_assetm_id'] = $id;
$this->returnjson($data);
}
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论