Module: Reapal::Form::TenderInvestForm

Defined in:
lib/reapal/form/tender_invest_form.rb

Instance Method Summary collapse

Instance Method Details

#tender_invest_form(flow_id, tender_no, amount, invest_contract, return_url, notify_url, coupon_amt = nil, remark = '') ⇒ Hash

3.4 投标



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/reapal/form/tender_invest_form.rb', line 25

def tender_invest_form(flow_id, tender_no,
                       amount, invest_contract,
                       return_url, notify_url,
                       coupon_amt=nil, remark='')
  service = 'reapal.trust.tenderInvest'
  post_path = '/tender/rest.htm'

  params = {
    orderNo: flow_id,
    tenderNo: tender_no,
    amount: amount,
    investContracts: invest_contract,
    returnUrl: return_url,
    notifyUrl: notify_url,
    busway: '00',
    remark: remark,
    applyTime: Time.now.strftime('%Y-%m-%d %H:%M:%S'),
  }

  get_form_data(service, params, post_path)
end