Files
xinhu/webmain/model/flowModel.php
2022-08-14 16:47:40 +08:00

148 lines
4.8 KiB
PHP

<?php
class flowClassModel extends Model
{
public $flow = null;
public function initflow($num,$mid=null, $isqx=true)
{
$this->flow = m('flow:'.$num.'');
$this->flow->initdata($num);
if($mid != null)$this->flow->loaddata($mid, $isqx);
return $this->flow;
}
public function opt($act,$num,$mid,$cs1='',$cs2='',$cs3='',$cs4='')
{
$this->initflow($num, $mid);
return $this->flow->$act($cs1, $cs2, $cs3, $cs4);
}
public function getdatalog($num, $mid, $lx)
{
return $this->opt('getdatalog', $num, $mid, $lx);
}
public function submit($num, $mid, $na='', $sm='')
{
$this->initflow($num,$mid, false);
return $this->flow->submit($na, $sm);
}
public function deletebill($num, $mid, $sm='', $dlqx=true)
{
$this->initflow($num,$mid, false);
return $this->flow->deletebill($sm, $dlqx);
}
public function zuofeibill($num, $mid, $sm='')
{
$this->initflow($num,$mid, false);
return $this->flow->zuofeibill($sm);
}
public function getoptmenu($num, $mid, $lx=0)
{
$this->initflow($num,$mid, false);
return $this->flow->getoptmenu($lx);
}
public function optmenu($num, $mid, $optid, $zt, $sm)
{
$this->initflow($num,$mid, false);
return $this->flow->optmenu($optid, $zt, $sm);
}
public function getdataedit($num, $mid)
{
return $this->opt('getdataedit', $num, $mid);
}
public function addlog($num, $mid,$na,$barr=array())
{
$darr = array(
'name' => $na
);
foreach($barr as $k=>$v)$darr[$k]=$v;
return $this->opt('addlog', $num, $mid, $darr);
}
public function printexecl($num, $event)
{
return $this->opt('printexecl', $num, null, $event);
}
public function repipei($whe='')
{
$srows = $this->db->getrows('[Q]flow_set','status=1 and isflow>0 '.$whe.'','`num`,`name`,`table`,id,`where`','sort');
$str = '';
$dbs = m('flow_bill');
foreach($srows as $k=>$rs){
$where = $rs['where'];
if(!isempt($where)){
$where = $this->rock->covexec($where);
$where = "and $where";
}
$flow = $this->initflow($rs['num']);
$rows = $this->db->getrows('[Q]'.$rs['table'].'','status not in(1,5) and isturn=1 '.$where.'');
$hshu = 0;
$yics = 0;
foreach($rows as $k1=>$rs1){
$flow->loaddata($rs1['id'], false);
$bar = $flow->getflow(true);
$hshu+=$this->db->row_count();
if(isempt($bar['nowcheckid']))$yics++;
}
if($hshu>0)$str.=''.$rs['name'].'匹配('.$hshu.')条;';
if($yics>0)$str.=''.$rs['name'].'<font color=red>('.$yics.')条没审核人</font>;';
}
if($str=='')$str = '无从新匹配记录';
$rows = $this->db->getall("select a.`id`,b.`name`,b.`deptname` from `[Q]flow_bill` a left join `[Q]admin` b on a.`uid`=b.`id` where b.`id` is not null and (ifnull(a.uname,'')='' or ifnull(a.udeptname,'')='')");
foreach($rows as $k=>$rs){
$dbs->update(array(
'uname' => $rs['name'],
'udeptname' => $rs['deptname'],
), $rs['id']);
}
$dbs->update('`isturn`=1','`status`=1');
return $str;
}
/**
* 往一个模块新增单据数据
* 返回单据id
* 调用方法m('flow')->querydata('模块编号', array());
*/
public function querydata($num, $cans, $sm='')
{
$flow = $this->initflow($num);
$allfields = $this->db->getallfields('[Q]'.$flow->mtable.'');
if(in_array('uid', $allfields) && !isset($cans['uid']))$cans['uid'] = $this->adminid;
if(in_array('optid', $allfields))$cans['optid'] = $this->adminid;
if(in_array('createid', $allfields))$cans['createid'] = $this->adminid;
if(in_array('createname', $allfields))$cans['createname'] = $this->adminname;
if(in_array('optname', $allfields))$cans['optname'] = $this->adminname;
if(in_array('optdt', $allfields))$cans['optdt'] = $this->rock->now;
if(in_array('createdt', $allfields))$cans['createdt'] = $this->rock->now;
if(in_array('adddt', $allfields))$cans['adddt'] = $this->rock->now;
if(in_array('applydt', $allfields) && !isset($cans['applydt']))$cans['applydt'] = $this->rock->date;
if(in_array('status', $allfields) && !isset($cans['status']))$cans['status'] = 0;
if(in_array('isturn', $allfields) && !isset($cans['isturn']))$cans['isturn'] = 1;//是否提交
if(isset($cans['uid'])){
$urs = $flow->adminmodel->getone($cans['uid']);
in_array('uname', $allfields) and $cans['uname'] = $urs['name'];
in_array('applyname', $allfields) and $cans['applyname'] = $urs['name'];
in_array('applydeptname', $allfields) and $cans['applydeptname'] = $urs['deptname'];
}
foreach($cans as $k=>$v)if(!in_array($k, $allfields))unset($cans[$k]);
$mid = $flow->insert($cans);
$isturn = isset($cans['isturn']) ? $cans['isturn'] : 1;
$na = '';
if($isturn==0)$na = '保存';
$flow->loaddata($mid, false);
$flow->submit($na, $sm);
return $mid;
}
}