Module: Reapal::Form::ComUpdateInfoForm
- Defined in:
- lib/reapal/form/com_update_info_form.rb
Instance Method Summary collapse
-
#com_update_info_form(flow_id, contract, return_url, notify_url, busway = '01', remark = '') ⇒ Hash
1.3 企业信息修改.
Instance Method Details
#com_update_info_form(flow_id, contract, return_url, notify_url, busway = '01', remark = '') ⇒ Hash
1.3 企业信息修改
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'lib/reapal/form/com_update_info_form.rb', line 23 def com_update_info_form(flow_id, contract, return_url, notify_url, busway='01', remark='') service = 'reapal.trust.comUpadteInfo' post_path = '/agreement/agree.htm' params = { orderNo: flow_id, contracts: contract, busway: busway, returnUrl: return_url, notifyUrl: notify_url, remark: remark, applyTime: Time.now.strftime('%Y-%m-%d %H:%M:%S'), } get_form_data(service, params, post_path) end |