Sha256: c42d1e56eb66dcf7aacb19ec8501e0448b36e9392f7efb03c4f23910e8fb78e3

Contents?: true

Size: 1.76 KB

Versions: 7

Compression:

Stored size: 1.76 KB

Contents

# coding: utf-8

module Reapal
  module Api
    module Money
      module SubAccountQuery

        # 2.9 企业分账查询(API)
        #
        # @param sub_account_flow_id [ String ] 分账订单号
        # @param serial_no [ String ] 分账流水号(传空串表示该订单批量查询)
        #
        # @return [ Hash ] 结果集
        #   * :result [String] 业务结果:'S/F/P'
        #   * :request_params [Hash] 请求参数
        #   * :response [Object] 请求返回对象
        #   * :error_code [String] 错误代号
        #   * :error_msg [String] 错误信息
        #   * :data: 具体业务返回信息
        #       * :orderNO [String] 分账订单号
        #       * :subDetails [String]  分账明细
        #           * serialNo [String] 分账流水号
        #           * payeeContracts [String] 收款方协议号
        #           * amount [BigDecimal] 金额
        #           * remark [String] 备注
        #           * resultCode [String] 结果代码
        #       * :resultCode [String] 结果代码 0000:分账成功;0001 : 分账失败;0002:处理中
        #
        def sub_account_query(sub_account_flow_id, serial_no='')
          service = 'reapal.trust.subAccountQuery'
          post_path = '/service/depwit.htm'

          params = {
            orderNo: sub_account_flow_id,
            serialNo: serial_no,
            applyTime: Time.now.strftime('%Y-%m-%d %H:%M:%S'),
          }

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

          if 'P' == res[:result] && '0001' == 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/sub_account_query.rb
reapal-0.17.0 lib/reapal/api/money/sub_account_query.rb
reapal-0.16.0 lib/reapal/api/money/sub_account_query.rb
reapal-0.15.0 lib/reapal/api/money/sub_account_query.rb
reapal-0.14.0 lib/reapal/api/money/sub_account_query.rb
reapal-0.13.0 lib/reapal/api/money/sub_account_query.rb
reapal-0.12.0 lib/reapal/api/money/sub_account_query.rb