| | |
| | | import com.baomidou.mybatisplus.plugins.Page; |
| | | import com.baomidou.mybatisplus.service.IService; |
| | | import com.zy.asrs.entity.ManLocDetl; |
| | | import com.zy.asrs.entity.param.LocDetlAdjustParam; |
| | | import com.zy.asrs.entity.result.StockVo; |
| | | |
| | | import java.util.List; |
| | |
| | | |
| | | /** |
| | | * 获取当天相同规格货物的深库位号 |
| | | * @param matnr 商品编号 |
| | | * @param matnr 品号 |
| | | * @return locNo 库位号 |
| | | */ |
| | | List<String> getSameDetlToday(String matnr, Integer start, Integer end); |
| | |
| | | Page<ManLocDetl> getOutPage(Page<ManLocDetl> manLocDetlPage); |
| | | |
| | | |
| | | void adjustLocDetl(LocDetlAdjustParam param, Long userId); |
| | | |
| | | Page<ManLocDetl> selectAllPage(Page<ManLocDetl> param); |
| | | |
| | | ManLocDetl selectInventory(String LocNo,String Matnr,String batch); |
| | | |
| | | int deleteDatailed (String locNo, String matnr,String batch); |
| | | |
| | | int increase(Double anfme,String locNo, String matnr,String batch); |
| | | |
| | | } |