|
@@ -324,15 +324,26 @@ func (rg *ContractController) SealList(c *gin.Context) {
|
|
|
|
|
|
respList := make([]*crm.ContractSearchListResp, 0)
|
|
respList := make([]*crm.ContractSearchListResp, 0)
|
|
for i := range list {
|
|
for i := range list {
|
|
|
|
+ var contractTypeInt int
|
|
|
|
+ if list[i].ServiceType == "新签合同" {
|
|
|
|
+ contractTypeInt = 1
|
|
|
|
+ } else if list[i].ServiceType == "新签合同" {
|
|
|
|
+ contractTypeInt = 2
|
|
|
|
+ } else {
|
|
|
|
+ contractTypeInt = 3
|
|
|
|
+ }
|
|
respItem := &crm.ContractSearchListResp{
|
|
respItem := &crm.ContractSearchListResp{
|
|
- ContractId: list[i].SealId,
|
|
+ ContractId: list[i].SealId,
|
|
- ContractCode: list[i].Code,
|
|
+ ContractCode: list[i].Code,
|
|
- ProductId: list[i].ProductId,
|
|
+ ProductId: list[i].ProductId,
|
|
- CompanyName: list[i].CompanyName,
|
|
+ CompanyName: list[i].CompanyName,
|
|
- SellerId: list[i].UserId,
|
|
+ SellerId: list[i].UserId,
|
|
- SellerName: list[i].UserName,
|
|
+ SellerName: list[i].UserName,
|
|
- StartDate: utils.TimeTransferString(utils.FormatDate, list[i].StartDate),
|
|
+ ContractType: list[i].ServiceType,
|
|
- EndDate: utils.TimeTransferString(utils.FormatDate, list[i].EndDate),
|
|
+ ContractTypeInt: contractTypeInt,
|
|
|
|
+ ContractBusinessTypeInt: 1,
|
|
|
|
+ StartDate: utils.TimeTransferString(utils.FormatDate, list[i].StartDate),
|
|
|
|
+ EndDate: utils.TimeTransferString(utils.FormatDate, list[i].EndDate),
|
|
}
|
|
}
|
|
respItem.ContractBusinessTypeInt = 1
|
|
respItem.ContractBusinessTypeInt = 1
|
|
respList = append(respList, respItem)
|
|
respList = append(respList, respItem)
|