Files
xinhu/webmain/flow/input/mode_diaoboAction.php
2022-08-14 16:47:40 +08:00

44 lines
976 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* 此文件是流程模块【diaobo.调拨单】对应控制器接口文件。
*/
class mode_diaoboClassAction extends inputAction{
protected function savebefore($table, $arr, $id, $addbo){
$data = $this->getsubtabledata(0);
if(count($data)==0)return '至少要有一行记录';
foreach($data as $k=>$rs){
if(isset($rs['aid']))foreach($data as $k1=>$rs1){
if($k!=$k1){
if($rs['aid']==$rs1['aid'])
return '行'.($k1+1).'的物品已在行'.($k+1).'上填写,不要重复填写';
}
}
}
$rows = array();
$rows['custname'] = m('godepot')->getmou('depotname', $arr['custid']);
$rows['type'] = '3';//一定要是3不能去掉
return array(
'rows' => $rows
);
}
protected function saveafter($table, $arr, $id, $addbo){
}
//仓库列表
public function godepot()
{
}
public function getgoodsdata()
{
return m('goods')->getgoodsdata(3);
}
}