Sha256: 1e2e15489110a81c7bafa8eb22d22b97c09c1792dba35a8604b8ce944817758c

Contents?: true

Size: 1.44 KB

Versions: 1

Compression:

Stored size: 1.44 KB

Contents

# coding: utf-8

module Reapal
  module Form
    module WithdrawApplyForm

      # 2.7 提现申请
      #
      # @param contract [String] 用户协议
      # @param flow_id [String] 订单号
      # @param money [Number] 提现金额,2位小数
      # @param charge [Number] 手续费,2位小数
      # @param return_url [String] 回调 url
      # @param notify_url [String] 通知 url
      # @param buyway [String] 设备通道,默认手机端。00:PC端;01:手机端;02:Pad端;03:其它
      #
      # @return [ Hash ] 结果集
      #   * :form_method
      #     * :method
      #     * :url
      #   * :form_data
      #     * :merchant_id
      #     * :encryptkey
      #     * :data
      #
      def withdraw_apply_form(contract, flow_id, money, charge, return_url, notify_url, busway='01')
        service = 'reapal.trust.withdrawApply'
        post_path = '/reagw/service/withdraw.htm'

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

        form_data = Http.get_body(service, params, @config)

        {
          form_method: {
            method: :post,
            url: config[:server_url] + post_path,
          },
          form_data: form_data
        }
      end

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reapal-0.2.2 lib/reapal/form/withdraw_apply_form.rb