自动化立体仓库 - WMS系统
pang.jiabao
2024-12-02 57936e11434f6614f818a0a0a495918dc1af6dd6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package com.zy.asrs.service;
 
import com.alibaba.fastjson.JSONObject;
import com.core.common.R;
import com.zy.asrs.entity.BasDevp;
import com.zy.asrs.entity.LocDetl;
import com.zy.asrs.entity.OrderDetl;
import com.zy.asrs.entity.param.CombParam;
import com.zy.asrs.entity.param.MobileAdjustParam;
import com.zy.asrs.entity.param.OffSaleParam;
 
import java.util.Date;
 
public interface MobileService {
 
    /**
     * 组托
     */
    void comb(CombParam param, Long userId);
 
    /**
     * 上架
     */
    void onSale(CombParam param,Long userId);
 
    /**
     * 下架
     */
    void offSale(OffSaleParam param, Long userId);
 
    /**
     * 盘点
     */
    void adjust(MobileAdjustParam param, Long userId);
 
    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);
 
    /**
     * 平库下架
     */
    R WarehouseOut(CombParam combParam, Long userId);
 
    /**
     * 平库上架
     */
    R WarehouseIn(String locNo, String barcode, Long userId);
}