信呼OA版本v2.3.8

This commit is contained in:
雨中磐石
2022-08-14 16:47:40 +08:00
parent 4640677d27
commit e3fcd913e3
1405 changed files with 133635 additions and 73 deletions

View File

@@ -0,0 +1,28 @@
<?php
/**
* 此文件是流程模块【finpay.付款申请】对应控制器接口文件。
*/
class mode_finpayClassAction extends inputAction{
protected function savebefore($table, $arr, $id, $addbo){
$rows['type'] = '4';//一定要是4不能去掉
return array(
'rows'=>$rows
);
}
public function selectcust()
{
$rows = m('crm')->getmycust($this->adminid, $this->rock->arrvalue($this->rs, 'custid'));
return $rows;
}
public function getotherAjax()
{
$id = (int)$this->get('id','0');
$rs = m('customer')->getone($id, 'id,shibieid,openbank,cardid,address,tel');
return $rs;
}
}