解决系统管理-》基础数据-》库房/药房管理无法添加的耗材库问题

This commit is contained in:
2025-11-07 16:27:56 +08:00
parent 16a4d38113
commit 2dcd7ba1d5

View File

@@ -63,7 +63,7 @@ public class LocationServiceImpl extends ServiceImpl<LocationMapper, Location> i
@Override @Override
public List<Location> getPharmacyCabinetList() { public List<Location> getPharmacyCabinetList() {
return baseMapper.selectList(new LambdaQueryWrapper<Location>().in(Location::getFormEnum, return baseMapper.selectList(new LambdaQueryWrapper<Location>().in(Location::getFormEnum,
LocationForm.CABINET.getValue(), LocationForm.PHARMACY.getValue())); LocationForm.CABINET.getValue(), LocationForm.PHARMACY.getValue(), LocationForm.WAREHOUSE.getValue()));
} }
/** /**