Files
xinhu/webmain/flow/input/mode_finpayAction.php
2022-08-14 16:47:40 +08:00

28 lines
649 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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;
}
}