信呼OA版本v2.3.8
This commit is contained in:
46
webmain/model/flow/carmreseModel.php
Normal file
46
webmain/model/flow/carmreseModel.php
Normal file
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
class flow_carmreseClassModel extends flowModel
|
||||
{
|
||||
|
||||
|
||||
protected function flowbillwhere($uid, $lx)
|
||||
{
|
||||
$where = '';
|
||||
//$key = $this->rock->post('key');
|
||||
//$dt = $this->rock->post('dt');
|
||||
//if($key != '')$where.=" and (`carnum`='$key' or `usename` like '%$key%' or `optname` like '%$key%')";
|
||||
//if($dt != '')$where.=" and (`applydt`='$dt' or `startdt` like '$dt%')";
|
||||
|
||||
return array(
|
||||
'where' => $where,
|
||||
'order' => 'optdt desc'
|
||||
);
|
||||
}
|
||||
|
||||
//自定义审核人读取
|
||||
protected function flowcheckname($num){
|
||||
$sid = '';
|
||||
$sna = '';
|
||||
//驾驶员审核读取
|
||||
if($num=='jias'){
|
||||
$sid = $this->rs['jiaid'];
|
||||
$sna = $this->rs['jianame'];
|
||||
}
|
||||
return array($sid, $sna);
|
||||
}
|
||||
|
||||
//可预定的车辆
|
||||
public function getcardata()
|
||||
{
|
||||
$where= $this->adminmodel->getcompanywhere(1);
|
||||
$rows = m('carm')->getall("`ispublic`=1 and `state`=1 ".$where."",'carnum as name,id as value');
|
||||
$arrs = $this->db->getrows('[Q]carmrese','`status`=1 group by carid','max(kmend)kmend,carid');
|
||||
$arrsa= array();
|
||||
foreach($arrs as $k=>$rs)$arrsa[$rs['carid']]=$rs['kmend'];
|
||||
//读取车辆最后公里数
|
||||
foreach($rows as $k=>$rs){
|
||||
$rows[$k]['kmstart'] = $this->rock->arrvalue($arrsa, $rs['value']);
|
||||
}
|
||||
return $rows;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user