Module: Reapal::Form::CloseAccountForm
- Defined in:
- lib/reapal/form/close_account_form.rb
Instance Method Summary collapse
Instance Method Details
#close_account_form(flow_id, contract, return_url, notify_url, busway = '01') ⇒ Hash
1.11 取消签约
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/reapal/form/close_account_form.rb', line 24 def close_account_form(flow_id, contract, return_url, notify_url, busway='01') service = 'reapal.trust.closeAccount' post_path = '/agreement/closeAccountApply.htm' params = { orderNo: flow_id, contracts: contract, busway: busway, returnUrl: return_url, notifyUrl: notify_url, applyTime: Time.now.strftime('%Y-%m-%d %H:%M:%S'), } get_form_data(service, params, post_path) end |