mode_finpayAction.php 649 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * 此文件是流程模块【finpay.付款申请】对应控制器接口文件。
  4. */
  5. class mode_finpayClassAction extends inputAction{
  6. protected function savebefore($table, $arr, $id, $addbo){
  7. $rows['type'] = '4';//一定要是4,不能去掉
  8. return array(
  9. 'rows'=>$rows
  10. );
  11. }
  12. public function selectcust()
  13. {
  14. $rows = m('crm')->getmycust($this->adminid, $this->rock->arrvalue($this->rs, 'custid'));
  15. return $rows;
  16. }
  17. public function getotherAjax()
  18. {
  19. $id = (int)$this->get('id','0');
  20. $rs = m('customer')->getone($id, 'id,shibieid,openbank,cardid,address,tel');
  21. return $rs;
  22. }
  23. }
粤ICP备19079148号