Browse Source

Merge branch 'pool_639' into debug

ziwen 1 year ago
parent
commit
71b19c8dee
1 changed files with 1 additions and 1 deletions
  1. 1 1
      models/fms/contract_register.go

+ 1 - 1
models/fms/contract_register.go

@@ -936,7 +936,7 @@ type ContractServiceDuplicateItem struct {
 
 func CheckContractServiceDuplicate(registerIds []int) (list []*ContractServiceDuplicateItem, err error) {
 	err = global.DEFAULT_MYSQL.Table("contract_service").
-		Select("GROUP_CONCAT(service_template_id ORDER BY service_template_id)  AS ids ").
+		Select("GROUP_CONCAT(service_template_id ORDER BY service_template_id)  AS ids, contract_register_id ").
 		Where("contract_register_id IN (?)", registerIds).
 		Group("contract_register_id").Find(&list).Error
 	return