| | |
| | | using Model.ModelDto.DataDto; |
| | | using SqlSugar; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | |
| | | namespace WMS.IBLL.IBllCheckServer |
| | | { |
| | |
| | | /// <param name="lotNo">批次</param> |
| | | /// <param name="palletNo">托盘号</param> |
| | | /// <returns></returns> |
| | | List<MateDataStockDto> GetPalletsOutside(string skuNo, string skuName, string lotNo, string palletNo, int page, int limit, out int count); |
| | | Task<List<MateDataStockDto>> GetPalletsOutside(string skuNo, string skuName, string lotNo, string palletNo, int page, int limit, RefAsync<int> count); |
| | | |
| | | /// <summary> |
| | | /// 库外托盘指定储位信息 |
| | |
| | | /// <param name="stockDetailId">库存明细ID</param> |
| | | /// <param name="locateId">储位信息ID</param> |
| | | /// <param name="userId">操作人</param> |
| | | void SaveAppointSlot(int stockDetailId, int locateId, int userId); |
| | | Task SaveAppointSlot(int stockDetailId, int locateId); |
| | | |
| | | } |
| | | } |