This commit is contained in:
jing's 2024-01-10 23:22:52 +08:00
parent eeb58516de
commit fa71e7024d
1 changed files with 6 additions and 0 deletions

View File

@ -116,6 +116,12 @@ public class AggregOptionConfigService {
childList) { childList) {
childVO.setChild(goupParentIdList.get(childVO.getRowId())); childVO.setChild(goupParentIdList.get(childVO.getRowId()));
try{
Collections.sort((List<OptionalEbomImportChildVO>)childVO.getChild(), (option0, option1) -> option0.getDrawingNo().compareTo(option1.getDrawingNo()));
}catch (Exception e){
}
} }
} }