李林
2023-10-07 658d4927d468c47208fd012d9128b09249c07eff
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
package com.chinaztt.mes.warehouse.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.chinaztt.mes.warehouse.entity.ReverseStockApply;
import com.chinaztt.mes.warehouse.entity.ReverseStockApplyDetail;
 
import java.util.List;
 
/**
 * @Author: Zero
 * @Date: 2022/9/16 17:34
 * @Description:
 */
public interface ReverseStockApplyService extends IService<ReverseStockApply> {
    /**
     * 生成生产退料申请表
     *
     * @return
     */
    Boolean generateApply();
 
    /**
     * 执行退料移库
     *
     * @param ids
     * @return
     */
    String executeReverseMoveLocation(List<Long> ids);
 
    /**
     * 删除退料申请
     *
     * @param idList
     * @return
     */
    Boolean deleteApply(List<Long> idList);
}