Module: Reapal::Form::WithdrawApplyForm

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

Instance Method Summary collapse

Instance Method Details

#withdraw_apply_form(contract, flow_id, money, charge, return_url, notify_url, remark = '', busway = '01') ⇒ Hash

2.4 提现申请

Parameters:

  • contract (String)

    用户协议

  • flow_id (String)

    订单号

  • money (Number)

    提现金额,2位小数

  • charge (Number)

    手续费,2位小数

  • return_url (String)

    回调 url

  • notify_url (String)

    通知 url

  • remark (String) (defaults to: '')

    默认是空

  • busway (String) (defaults to: '01')

    设备通道,默认手机端。00:PC端;01:手机端;02:Pad端;03:其它

Returns:

  • (Hash)

    结果集

    • :form_method

      • :method

      • :url

    • :form_data

      • :merchant_id

      • :encryptkey

      • :data



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

def withdraw_apply_form(contract, flow_id, money, charge, return_url, notify_url, remark='', busway='01')
  service = 'reapal.trust.withdrawApply'
  post_path = '/service/withdraw.htm'

  params = {
    orderNo: flow_id,
    contracts: contract,
    amount: money,
    charge: charge,
    busway: busway,
    remark: remark,
    returnUrl: return_url,
    notifyUrl: notify_url,
    applyTime: Time.now.strftime('%Y-%m-%d %H:%M:%S'),
  }

  get_form_data(service, params, post_path)
end