信呼OA版本v2.3.8
This commit is contained in:
21
webmain/model/agent/custfkdModel.php
Normal file
21
webmain/model/agent/custfkdModel.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
//客户.付款单的应用
|
||||
class agent_custfkdClassModel extends agentModel
|
||||
{
|
||||
|
||||
|
||||
//状态显示替换
|
||||
protected function agentrows($rows, $rowd, $uid)
|
||||
{
|
||||
$statea = $this->flow->statearrf;
|
||||
foreach($rowd as $k=>$rs){
|
||||
$state = $rs['paystatus'];
|
||||
$ztarr = $statea[$state];
|
||||
$rows[$k]['statustext'] = $ztarr[0];
|
||||
$rows[$k]['statuscolor'] = $ztarr[1];
|
||||
$rows[$k]['modenum'] = 'custfinb';
|
||||
}
|
||||
return $rows;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user