| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- //客户.收款单的应用
- class agent_custfinaClassModel extends agentModel
- {
-
-
- //状态显示替换
- protected function agentrows($rows, $rowd, $uid)
- {
- $statea = $this->flow->statearrs;
- foreach($rowd as $k=>$rs){
- $state = $rs['paystatus'];
- $ztarr = $statea[$state];
- $rows[$k]['statustext'] = $ztarr[0];
- $rows[$k]['statuscolor'] = $ztarr[1];
- }
- return $rows;
- }
-
- public function gettotal()
- {
- $stotal = $this->getwdtotal($this->adminid);
- $titles = '';
- return array('stotal'=>$stotal,'titles'=> $titles);
- }
-
- private function getwdtotal($uid)
- {
- $where = '`uid`='.$uid.' and `type`=0 and `ispay`=0';
- $stotal = m('custfina')->rows($where);
- return $stotal;
- }
- }
|