Sha256: db4670e33a1f4047c0af795443f0efad8d3d512a334f025559ee040755577743

Contents?: true

Size: 1.94 KB

Versions: 20

Compression:

Stored size: 1.94 KB

Contents

# coding: utf-8
module RockFintech
  module Form
    module Money
      module RechargeP
        # 绑定卡到电子账户充值
        #
        # @return [ Hash ] 结果集
        #   * :result [String] "S"/"F"/"P"
        #   * :request_params [Hash] 请求参数
        #   * :response [Object] 请求返回对象
        #   * :code [String] 结果代码
        #   * :msg [String] 结果信息
        #   * :data: 具体业务返回信息
        #       * :order_no [String] 订单编号
        #       * :order_id [String] 订单号
        #       * :url [String] 页面跳转 url
        #
        def recharge_p(order_no, card_no, bind_card, currency, amount, fee,
                       cert_type, cert_no, name, mobile, callback_url,
                       auth_flag, auth_seq_id, user_bank_code, user_bank_name_en,
                       user_bank_name_cn, bank_province, bank_city,
                       success_url, fail_url, user_ip, devise='000001', remark='')
          service = 'recharge_p'

          params = {
            order_no: order_no,
            card_no: card_no,
            bind_card: bind_card,
            currency: currency,
            amount: amount,
            fee: fee,
            cert_type: cert_type,
            cert_no: cert_no,
            name: name,
            mobile: mobile,
            callback_url: callback_url,
            auth_flag: auth_flag,
            auth_seq_id: auth_seq_id,
            user_bank_code: user_bank_code,
            user_bank_name_en: user_bank_name_en,
            user_bank_name_cn: user_bank_name_cn,
            bank_province: bank_province,
            bank_city: bank_city,
            success_url: success_url,
            fail_url: fail_url,
            user_ip: user_ip,
            client: devise,
            custom: remark,
          }

          res = operate_post(:operate, service, params, Http::ErrorCode.recharge_p, ['RD000000'])

          res
        end
      end
    end
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
rock_fintech-0.19.0 lib/rock_fintech/form/money/recharge_p.rb
rock_fintech-0.18.4 lib/rock_fintech/form/money/recharge_p.rb
rock_fintech-0.18.1 lib/rock_fintech/form/money/recharge_p.rb
rock_fintech-0.17.0 lib/rock_fintech/form/money/recharge_p.rb
rock_fintech-0.16.0 lib/rock_fintech/form/money/recharge_p.rb
rock_fintech-0.15.0 lib/rock_fintech/form/money/recharge_p.rb
rock_fintech-0.14.0 lib/rock_fintech/form/money/recharge_p.rb
rock_fintech-0.13.0 lib/rock_fintech/form/money/recharge_p.rb
rock_fintech-0.12.0 lib/rock_fintech/form/money/recharge_p.rb
rock_fintech-0.11.0 lib/rock_fintech/form/money/recharge_p.rb
rock_fintech-0.10.0 lib/rock_fintech/form/money/recharge_p.rb
rock_fintech-0.9.0 lib/rock_fintech/form/money/recharge_p.rb
rock_fintech-0.8.0 lib/rock_fintech/form/money/recharge_p.rb
rock_fintech-0.7.0 lib/rock_fintech/form/money/recharge_p.rb
rock_fintech-0.6.0 lib/rock_fintech/form/money/recharge_p.rb
rock_fintech-0.5.0 lib/rock_fintech/form/money/recharge_p.rb
rock_fintech-0.4.0 lib/rock_fintech/form/money/recharge_p.rb
rock_fintech-0.3.0 lib/rock_fintech/form/money/recharge_p.rb
rock_fintech-0.2.0 lib/rock_fintech/form/money/recharge_p.rb
rock_fintech-0.1.0 lib/rock_fintech/form/money/recharge_p.rb