module Reapal::Api::Tender::TenderApply
Public Instance Methods
tender_apply(flow_id, tender_no, tender_name, money, rate, fee_amount, refund_term, debit_term, debit_type, repay_date, expiry_date, tender_type, debit_contracts, guarant_contract=nil, commissioned_contract=nil, busway='01', remark='')
click to toggle source
3.1 发标
@param flow_id [String] 发标订单号 @param tender_no [String] 商户系统标的号 @param tender_name [String] 商户系统标的名称 @param money [BigDecimal] 金额 @param rate [BigDecimal] 利率 10.3表示10.3% @param fee_amount [BigDecimal] 手续费 @param refund_term [String] 还款期数 @param debit_term [Integer] 标的期限 @param debit_type [String] 期数类型,年:0,月:1,日:2 @param repay_date [Time] 还款日期 @param expiry_date [Time] 投标截止日期 @param tender_type [String] 标的类别,是否允许自动投标。00:不允许自动投标 01:允许自动投标 @param debit_contracts [String] 借款方协议号 @param guarant_contract [String] 担保方协议号 @param commissioned_contract [String] 受托方协议号 @param busway [String] 设备通道, '00':PC端;'01':手机端(默认);'02':Pad端;'03':其它 @param remark [String] 备注
@return [ Hash ] 结果集
* :result [String] 业务结果:'S/F/P' * :request_params [Hash] 请求参数 * :response [Object] 请求返回对象 * :error_code [String] 错误代号 * :error_msg [String] 错误信息 * :data: 具体业务返回信息 * :orderNo [String] 发标订单号 * :resultCode [String] 结果代码
# File lib/reapal/api/tender/tender_apply.rb, line 38 def tender_apply(flow_id, tender_no, tender_name, money, rate, fee_amount, refund_term, debit_term, debit_type, repay_date, expiry_date, tender_type, debit_contracts, guarant_contract=nil, commissioned_contract=nil, busway='01', remark='') service = 'reapal.trust.tenderApply' post_path = '/tender/rest.htm' params = { orderNo: flow_id, tenderNo: tender_no, tenderName: tender_name, amount: money, rate: rate, feeAmount: fee_amount, refundTerm: refund_term, debitTerm: debit_term, debitType: debit_type, repayDate: repay_date.strftime("%Y%m%d"), expiryDate: expiry_date.strftime("%Y%m%d"), tenderType: tender_type, debitContracts: debit_contracts, guarantContract: guarant_contract, commissionedContract: commissioned_contract, busway: busway, remark: remark, applyTime: Time.now.strftime('%Y-%m-%d %H:%M:%S'), } res = operate_post(:operate, service, params, post_path, Http::ErrorCode.tender_apply, ['0000']) Reapal.logger.info res res end