|
@@ -3843,8 +3843,8 @@ func (rg *RegisterController) CheckContractName(c *gin.Context) {
|
|
|
}
|
|
|
|
|
|
// CheckContract
|
|
|
-// @Title 货币单位列表
|
|
|
-// @Description 货币单位列表
|
|
|
+// @Title 校验重复合同
|
|
|
+// @Description 校验重复合同
|
|
|
// @Success 200 {object} fms.CheckContractNameResp
|
|
|
// @router /contract/register/check_contract_duplicate [post]
|
|
|
func (rg *RegisterController) CheckContractDuplicate(c *gin.Context) {
|
|
@@ -3902,17 +3902,24 @@ func (rg *RegisterController) CheckContractDuplicate(c *gin.Context) {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
+ typeIdMap := make(map[int]int)
|
|
|
registerIds := make([]int, 0)
|
|
|
for i := range list {
|
|
|
registerIds = append(registerIds, list[i].ContractRegisterId)
|
|
|
+ if list[i].ContractCode != "" {
|
|
|
+ typeIdMap[list[i].ContractRegisterId] = 1
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
- idlist, e := fms.CheckContractServiceDuplicate(registerIds)
|
|
|
+ dupList, e := fms.CheckContractServiceDuplicate(registerIds)
|
|
|
if e != nil {
|
|
|
resp.FailMsg("操作失败", "查询重复合同套餐失败, Err: "+e.Error(), c)
|
|
|
return
|
|
|
}
|
|
|
-
|
|
|
+ serviceIdMap := make(map[int]string)
|
|
|
+ for _, v := range dupList {
|
|
|
+ serviceIdMap[v.ContractRegisterId] = v.Ids
|
|
|
+ }
|
|
|
//校验套餐
|
|
|
if len(req.Services) > 0 {
|
|
|
serviceAmountMap := make(map[int]float64)
|
|
@@ -3932,11 +3939,17 @@ func (rg *RegisterController) CheckContractDuplicate(c *gin.Context) {
|
|
|
}
|
|
|
templateIdStr := strings.Join(ids, ",")
|
|
|
|
|
|
- for _, s := range idlist {
|
|
|
- if templateIdStr == *s {
|
|
|
- data.Exist = 1
|
|
|
+ for _, v := range dupList {
|
|
|
+ if serviceIds, ok := serviceIdMap[v.ContractRegisterId]; ok{
|
|
|
+ if serviceIds == templateIdStr{
|
|
|
+ data.Exist = 1
|
|
|
+ if _, ok2 := typeIdMap[v.ContractRegisterId]; ok2{
|
|
|
+ data.Type = 1
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
|
|
|
resp.OkData("查询成功", data, c)
|