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

21 lines
587 B
PHP

<?php
/**
* 此文件是流程模块【carmwx.车辆维修】对应接口文件。
*/
class mode_carmwxClassAction extends inputAction{
public function getcardata()
{
$where= m('admin')->getcompanywhere(1);
$rows = m('carm')->getall("1=1 ".$where."",'carnum as name,id as value');
return $rows;
}
protected function savebefore($table, $arr, $id, $addbo){
$carid = $arr['carid'];
$to = m($table)->rows('id<>'.$id.' and `carid`='.$carid.' and `type`=0 and `status`=0');
if($to>0)return '当前车辆已申请了维修在处理中了';
}
}