| | |
| | | private void getCodeOrderDTOs(CodeClassifyVO codeClassifyVO, CodeClassifyTemplateVO templateVO, Map<String, RowDatas> codeDataMap, Map<String, ClientBusinessObject> codeSystemObjectMap, List<CodeOrderDTO> codeOrderDTOList, Map<String, String> errorMap, boolean isCodeOrGroupCode) { |
| | | codeSystemObjectMap.keySet().forEach(code -> { |
| | | ClientBusinessObject sysDataObject = codeSystemObjectMap.get(code); |
| | | if (isCodeOrGroupCode) { |
| | | /*if (isCodeOrGroupCode) { |
| | | // code = sysDataObject.getAttributeValue("GROUPCODE"); |
| | | if (StringUtils.isBlank(code)) { |
| | | code = sysDataObject.getId(); |
| | | } |
| | | }*/ |
| | | if(isCodeOrGroupCode){ |
| | | String groupCode=sysDataObject.getAttributeValue("GROUPCODE"); |
| | | if(codeDataMap.containsKey(groupCode)){ |
| | | code=groupCode; |
| | | } |
| | | } |
| | | CodeOrderDTO orderDTO = new CodeOrderDTO(); |
| | | if (codeDataMap.containsKey(code)) { |