|
@@ -79,15 +79,17 @@ func (rg *ContractController) SearchList(c *gin.Context) {
|
|
|
return
|
|
|
}
|
|
|
for i := range payList {
|
|
|
- payCompanyMap[payList[i].PayOnBehalfContractId] = payList[i].CompanyName
|
|
|
- payContractCodeMap[payList[i].PayOnBehalfContractId] = payList[i].ContractCode
|
|
|
+ payCompanyMap[payList[i].PaymentOnBehalfContractId] = payList[i].CompanyName
|
|
|
+ payContractCodeMap[payList[i].PaymentOnBehalfContractId] = payList[i].ContractCode
|
|
|
}
|
|
|
}
|
|
|
|
|
|
respList := make([]*crm.ContractSearchListResp, 0)
|
|
|
for i := range list {
|
|
|
+ contractType := list[i].ContractType
|
|
|
contractTypeKey := crm.ContractTypeFmsMap[list[i].ContractType]
|
|
|
if list[i].ContractBusinessType == "代付合同" {
|
|
|
+ contractType = "代付合同"
|
|
|
contractTypeKey = fms.ContractTypeAgentPay
|
|
|
}
|
|
|
|
|
@@ -101,7 +103,7 @@ func (rg *ContractController) SearchList(c *gin.Context) {
|
|
|
SellerId: list[i].SellerId,
|
|
|
SellerName: list[i].SellerName,
|
|
|
ContractTypeKey: contractTypeKey,
|
|
|
- ContractType: list[i].ContractType,
|
|
|
+ ContractType: contractType,
|
|
|
Price: list[i].Price,
|
|
|
StartDate: utils.TimeTransferString(utils.FormatDate, list[i].StartDate),
|
|
|
EndDate: utils.TimeTransferString(utils.FormatDate, list[i].EndDate),
|