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
| package com.zy.service;
|
| import com.baomidou.mybatisplus.plugins.Page;
| import com.baomidou.mybatisplus.service.IService;
| import com.zy.entity.LocDetl;
|
| import java.util.List;
|
| public interface LocDetlService extends IService<LocDetl> {
|
| Page<LocDetl> getStockOut(Page<LocDetl> page);
|
| /**
| * 修改库存明细数量,如果数量为0,则删除记录
| */
| boolean updateAnfme(Double anfme, String locNo, String matnr);
|
| boolean updateLocNo(String newLocNo, String oldLocNo);
|
| /**
| * 获取当天相同规格货物的深库位号
| * @param matnr 物料号
| * @return locNo 库位号
| */
| List<String> getSameDetlToday(String matnr, Integer start, Integer end);
|
| }
|
|