|
@@ -49,6 +49,10 @@ import com.persagy.service.models.responses.SCreateResponse
|
|
|
import com.persagy.service.models.responses.SQueryResponse
|
|
|
import com.persagy.service.utils.SSpringContextUtil
|
|
|
import org.slf4j.LoggerFactory
|
|
|
+import java.util.ArrayList
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 字典类型
|
|
@@ -355,7 +359,52 @@ object DictDefClassService : SObjectService<DefClass>(SMybatisDao(DefClass::clas
|
|
|
}
|
|
|
}else if (dictDefFuncList01.size == 0) {
|
|
|
// schemeService.dictInfo(projectId, dictProject.groupCode!!, request.type!!)
|
|
|
- schemeService.dictInfoCommon("common",projectId,dictProject.groupCode!!,request.type!!)
|
|
|
+// schemeService.dictInfoCommon("common",projectId,dictProject.groupCode!!,request.type!!)
|
|
|
+
|
|
|
+ val map = HashMap<String,DefFuncIdProject>()
|
|
|
+
|
|
|
+
|
|
|
+ val select = defFuncIdProjectService.select(SFilter.eq("type", "common"),
|
|
|
+ SFilter.eq("classCode", request.type!!))
|
|
|
+ select.tableName = "dict.def_funcid"
|
|
|
+ val dictDefFuncIdListCommon =select.exec()
|
|
|
+ if (dictDefFuncIdListCommon.size>0) {
|
|
|
+ for (dictDef in dictDefFuncIdListCommon){
|
|
|
+ map[dictDef.code!!] = dictDef
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ val select1 = defFuncIdProjectService.select(SFilter.eq("type", "group"),
|
|
|
+ SFilter.eq("classCode", request.type!!),
|
|
|
+ SFilter.eq("projectId", "0"))
|
|
|
+ select1.tableName = "dict.def_funcid"
|
|
|
+ val dictDefFuncIdListGroup = select1.exec()
|
|
|
+ if (dictDefFuncIdListGroup.size>0) {
|
|
|
+ for (dictDef in dictDefFuncIdListGroup) {
|
|
|
+ map[dictDef.code!!] = dictDef
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ val select2 =
|
|
|
+ defFuncIdProjectService.select(SFilter.eq("type", "project"), SFilter.eq("projectId", projectId),SFilter.eq("classCode", request.type!!))
|
|
|
+ select2.tableName = "dict.def_funcid"
|
|
|
+ val dictDefFuncIdListProject = select2.exec()
|
|
|
+ logger.debug("项目= ${dictDefFuncIdListProject.size}")
|
|
|
+ if (dictDefFuncIdListProject.size>0) {
|
|
|
+ for (dictDef in dictDefFuncIdListProject) {
|
|
|
+ map[dictDef.code!!] = dictDef
|
|
|
+ }
|
|
|
+ }
|
|
|
+ val dictList: List<DefFuncIdProject> = ArrayList<DefFuncIdProject>(map.values)
|
|
|
+ if (dictList.size>0) {
|
|
|
+ for (dict in dictList) {
|
|
|
+ dict.projectId = projectId
|
|
|
+ dict.groupCode = Opt.groupCode
|
|
|
+ dict.type = "project"
|
|
|
+ defFuncIdProjectService.replace(dict)
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
val dictDefFuncBuilder = dictDefFuncId.select(request.filters).filter(
|
|
|
// SFilter.eq("type","common"),
|