no message

main
HUOJIN\92525 2025-04-08 10:31:11 +08:00
parent 552d61690f
commit 914d45a479
2 changed files with 2 additions and 2 deletions

View File

@ -328,7 +328,7 @@ public class LocationService {
//库位 //库位
LocationEntity location = exitLocationMap.get(locationsImportForm.getLocationCode()); LocationEntity location = exitLocationMap.get(locationsImportForm.getLocationCode());
//库位为空则新,否则新 //库位为空则,否则
if (location == null) { if (location == null) {
insertToLocation.add(createLocation(locationsImportForm.getLocationCode(), area.getAreaId(), locationType)); insertToLocation.add(createLocation(locationsImportForm.getLocationCode(), area.getAreaId(), locationType));
} else { } else {

View File

@ -44,6 +44,6 @@ public class ValidateDictKey {
} }
return selectByKeyCode.stream() return selectByKeyCode.stream()
.collect(Collectors.toMap(DictDataVO::getDataValue,DictDataVO::getDataLabel)); .collect(Collectors.toMap(DictDataVO::getDataLabel,DictDataVO::getDataValue));
} }
} }