自动化立体仓库 - WMS系统
#
LSH
2023-03-27 b50a2e2df1c0fab844dc194ae58f01cf906e32b8
src/main/java/com/zy/asrs/service/OrderDetlService.java
@@ -1,5 +1,6 @@
package com.zy.asrs.service;
import com.baomidou.mybatisplus.plugins.Page;
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.OrderDetl;
@@ -9,14 +10,28 @@
    List<OrderDetl> selectByOrderId(Long orderId);
    Page<OrderDetl> getPakoutPage(Page<OrderDetl> page);
    OrderDetl selectItem(Long orderId, String matnr, String batch);
    OrderDetl selectItem(String orderNo, String matnr, String batch);
    OrderDetl selectItemNoneOfBatch(String orderNo, String matnr);
    OrderDetl selectItemOfBatch(String matnr, String batch);
    OrderDetl findByLook(List<OrderDetl> orderDetls, Long orderId, String matnr, String batch);
    boolean increaseAnfme(Long orderId, String matnr, String batch, Double qty);
    boolean increase(Long orderId, String matnr, String batch, Double qty);
    boolean decrease(String orderNo, String matnr, String batch, Double qty);
    boolean modifyStatus(Long orderId, Integer status);
    List<OrderDetl> selectRemainder(Long orderId);
    OrderDetl selectContainBatch(String batch);
}