refactor(wms): 修改库存查询接口

- 将方法 queryByBatchAndLocation 修改为只根据批次码查询库存
- 移除了该方法的 locationCode 参数
master
zangch@mesnac.com 14 hours ago
parent c887d9831a
commit 6dacf11dbf

@ -83,10 +83,10 @@ public interface IWmsInventoryService {
TableDataInfo<WmsInventoryVo> listInventoryAlarm(WmsInventoryBo bo, PageQuery pageQuery);
/**
*
*
* @param batchCode
* @param locationCode
* @return VO
*/
WmsInventoryVo queryByBatchAndLocation(String batchCode, String locationCode);
WmsInventoryVo queryByBatchAndLocation(String batchCode);
}

Loading…
Cancel
Save