Module: Reapal::Api::Tender::HistoryTenderInfoModify
- Defined in:
- lib/reapal/api/tender/history_tender_info_modify.rb
Instance Method Summary collapse
Instance Method Details
#history_tender_info_modify(flow_id, tender_no, fee_amount, refund_term, tender_type, debit_contracts, guarant_contract = nil, commissioned_contract = nil, tender_status = nil, busway = '01', remark = '') ⇒ Hash
3.19 历史标的信息修改
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/reapal/api/tender/history_tender_info_modify.rb', line 32 def history_tender_info_modify(flow_id, tender_no, fee_amount, refund_term, tender_type, debit_contracts, guarant_contract=nil, commissioned_contract=nil, tender_status=nil, busway='01', remark='') service = 'reapal.trust.historyTenderInfoModify' post_path = '/tender/rest.htm' params = { orderNo: flow_id, tenderNo: tender_no, feeAmount: fee_amount, refundTerm: refund_term, tenderType: tender_type, debitContracts: debit_contracts, guarantContract: guarant_contract, commissionedContract: commissioned_contract, tenderStatus: tender_status, busway: busway, remark: remark, applyTime: Time.now.strftime('%Y-%m-%d %H:%M:%S'), } res = operate_post(:operate, service, params, post_path, Http::ErrorCode.history_tender_info_modify, ['0000']) Reapal.logger.info res res end |