自动化立体仓库 - WMS系统
LSH
2023-12-07 04b1a3915a612bf806f6c6b83e0e9c501560065a
src/main/java/com/zy/asrs/service/MobileService.java
@@ -1,8 +1,12 @@
package com.zy.asrs.service;
import com.alibaba.fastjson.JSONObject;
import com.zy.asrs.entity.param.CombParam;
import com.zy.asrs.entity.param.MobileAdjustParam;
import com.zy.asrs.entity.BasDevp;
import com.zy.asrs.entity.LocDetl;
import com.zy.asrs.entity.OrderDetl;
import com.zy.asrs.entity.param.*;
import java.util.Date;
public interface MobileService {
@@ -10,6 +14,18 @@
     * 组托
     */
    void comb(CombParam param, Long userId);
    void trussComb(TrussCombParam param, Long userId);
    void trussComb2(PalletizingCompleteParam param, Long userId);
    /**
     * 上架
     */
    void onSale(CombParam param);
    /**
     * 下架
     */
    void offSale(OffSaleParam param);
    /**
     * 盘点
@@ -19,4 +35,7 @@
    void packComb(CombParam param, Long userId);
    void pakoutByOrder(JSONObject param, Long userId);
    void stockOut(OrderDetl orderDetl, BasDevp staNo, LocDetl locDetl,
                  Double curOutQty, Integer ioType, Long userId, Date now);
}