Sha256: 778c08923ad828106d381b750433fdff756a11ddb46486708a1e8df931feb3b5

Contents?: true

Size: 1.29 KB

Versions: 18

Compression:

Stored size: 1.29 KB

Contents

# coding: utf-8
module RockFintech
  module Api
    module Account
      module GatewayQuery
        # 网关自定义下单查询(查询内容:投标,签约,债转,受托支付申请)
        #
        # @param order_no	[String] 订单号
        # @param devise [String] 交易终端,默认手机 000001手机APP 000002网页 000003微信 000004柜面
        # @param remark [String] 备注,默认为空
        #
        # @return [Hash] 结果集
        #   * :result [String] "S"/"F"/"P"
        #   * :request_params [Hash] 请求参数
        #   * :response [Object] 请求返回对象
        #   * :code [String] 结果代码
        #   * :msg [String] 结果信息
        #   * :data: 具体业务返回信息
        #       * :card_no	[String] 电子账号
        #       * :order_id	[String] 订单号
        #       * :state	[Integer] 状态,1 已下单;2 超时关闭;3 完成
        #
        def gateway_query(order_no, devise="000001", remark='')
          service = "gateway_query"

          params = {
            order_no: order_no,
            client: devise,
            custom: remark,
          }

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

          res
        end
      end #GatewayQuery
    end
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
rock_fintech-0.19.0 lib/rock_fintech/api/account/gateway_query.rb
rock_fintech-0.18.4 lib/rock_fintech/api/account/gateway_query.rb
rock_fintech-0.18.1 lib/rock_fintech/api/account/gateway_query.rb
rock_fintech-0.17.0 lib/rock_fintech/api/account/gateway_query.rb
rock_fintech-0.16.0 lib/rock_fintech/api/account/gateway_query.rb
rock_fintech-0.15.0 lib/rock_fintech/api/account/gateway_query.rb
rock_fintech-0.14.0 lib/rock_fintech/api/account/gateway_query.rb
rock_fintech-0.13.0 lib/rock_fintech/api/account/gateway_query.rb
rock_fintech-0.12.0 lib/rock_fintech/api/account/gateway_query.rb
rock_fintech-0.11.0 lib/rock_fintech/api/account/gateway_query.rb
rock_fintech-0.10.0 lib/rock_fintech/api/account/gateway_query.rb
rock_fintech-0.9.0 lib/rock_fintech/api/account/gateway_query.rb
rock_fintech-0.8.0 lib/rock_fintech/api/account/gateway_query.rb
rock_fintech-0.7.0 lib/rock_fintech/api/account/gateway_query.rb
rock_fintech-0.6.0 lib/rock_fintech/api/account/gateway_query.rb
rock_fintech-0.5.0 lib/rock_fintech/api/account/gateway_query.rb
rock_fintech-0.4.0 lib/rock_fintech/api/account/gateway_query.rb
rock_fintech-0.3.0 lib/rock_fintech/api/account/gateway_query.rb