Sha256: 73bc4a22f26638a578431b808c318f0fda840e652532bd9c84479185d2eaf8bf

Contents?: true

Size: 1.16 KB

Versions: 7

Compression:

Stored size: 1.16 KB

Contents

# coding: utf-8

module Reapal
  module Api
    module Money
      module DepositQuery

        # 2.3 充值查询(API)
        #
        # @param deposit_flow_id [ String ] 充值订单号
        #
        # @return [ Hash ] 结果集
        #   * :result [String] "S"/"F"/"P"
        #   * :error_msg [String] 错误提示
        #   * :data [Hash] 成功数据
        #       * :orderNo [String]  充值订单号
        #       * :amount [BigDecimal] 交易金额
        #       * :charge [BigDecimal] 手续费
        #       * :resultCode [String] 结果代码
        #
        def deposit_query(deposit_flow_id)
          service = 'reapal.trust.depositQuery'
          post_path = '/service/depwit.htm'

          params = {
            orderNo: deposit_flow_id,
            queryTime: Time.now.strftime('%Y-%m-%d %H:%M:%S'),
          }

          res = operate_post(:query, service, params, post_path, Http::ErrorCode.deposit_query, ['0000'])

          if 'P' == res[:result] && ('0001' || '0004') == res[:data][:resultCode]
            res[:result] = 'F'
          end

          Reapal.logger.info res

          res
        end

      end # module
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
reapal-0.18.0 lib/reapal/api/money/deposit_query.rb
reapal-0.17.0 lib/reapal/api/money/deposit_query.rb
reapal-0.16.0 lib/reapal/api/money/deposit_query.rb
reapal-0.15.0 lib/reapal/api/money/deposit_query.rb
reapal-0.14.0 lib/reapal/api/money/deposit_query.rb
reapal-0.13.0 lib/reapal/api/money/deposit_query.rb
reapal-0.12.0 lib/reapal/api/money/deposit_query.rb