付款申请增加‘开户行’‘账号’

hotfix/paypal-note
Jimmy Liow 3 years ago
parent c3447c5777
commit 8a16785b01

@ -32,6 +32,8 @@ class index extends CI_Controller {
$message = $this->input->post('message'); $message = $this->input->post('message');
$currency = $this->input->post('currency'); $currency = $this->input->post('currency');
$channelType = $this->input->post('ChannelType'); $channelType = $this->input->post('ChannelType');
$bankName = $this->input->post('BankName');
$bankAccount = $this->input->post('BankAccount');
if(empty($postunionid)){ if(empty($postunionid)){
exit('参数(postunionid)为空'); exit('参数(postunionid)为空');
@ -83,6 +85,10 @@ class index extends CI_Controller {
$postData['form_component_values']['5']['value'] = $currency; $postData['form_component_values']['5']['value'] = $currency;
$postData['form_component_values']['6']['name'] = '渠道类型'; $postData['form_component_values']['6']['name'] = '渠道类型';
$postData['form_component_values']['6']['value'] = $channelType; $postData['form_component_values']['6']['value'] = $channelType;
$postData['form_component_values']['7']['name'] = '开户行';
$postData['form_component_values']['7']['value'] = $bankName;
$postData['form_component_values']['8']['name'] = '账号';
$postData['form_component_values']['8']['value'] = $bankAccount;
//print_r(json_encode($postData));die(); //print_r(json_encode($postData));die();
$response = GetPost_http($url,json_encode($postData),'json'); $response = GetPost_http($url,json_encode($postData),'json');

Loading…
Cancel
Save