自动化立体仓库 - WMS系统
whycq
2023-07-24 b7e08df5a07b3fa832a46ecc31983e16f2bccc8c
src/main/java/com/zy/asrs/service/LocDetlService.java
@@ -15,7 +15,7 @@
    /**
     * 修改库存明细数量,如果数量为0,则删除记录
     */
    boolean updateAnfme(Double qty, String locNo, String matNo);
    boolean updateAnfme(Double qty, String locNo, String matNo,String supplier);
    boolean updateLocNo(String newLocNo, String oldLocNo);
@@ -24,7 +24,7 @@
     * @param matNo 产品号
     * @return locNo 库位号
     */
    List<String> getSameDetlToday(String matNo);
    List<String> getSameDetlToday(String matNo, Integer start, Integer end);
    /**
     *
@@ -51,7 +51,7 @@
     * 导出全部库存统计
     * @return
     */
    List<LocDetl> getStockStatisExcel();
    List<LocDetl> getStockStatisExcel(LocDetl locDetl);
    /**
     * 搜索库存统计
@@ -59,4 +59,11 @@
     * @return
     */
//    List<LocDetl> getlocDetlByMatNoAndMatName(LocDetl locDetl);
    /**
     * 库存上报ERP时,根据物料汇总查询库存总量
     * @return
     */
    public List<LocDetl> getStockSum();
}