自动化立体仓库 - WMS系统
#
luxiaotao1123
2022-12-08 c69120c632f60bbbaf7a075d12ee0071b47deccc
src/main/java/com/zy/asrs/service/OrderDetlService.java
@@ -1,8 +1,30 @@
package com.zy.asrs.service;
import com.zy.asrs.entity.OrderDetl;
import com.baomidou.mybatisplus.plugins.Page;
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.OrderDetl;
import java.util.List;
public interface OrderDetlService extends IService<OrderDetl> {
    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 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);
}