| | |
| | | using Model.ModelDto.SysDto; |
| | | using Model.ModelVm; |
| | | using Model.ModelVm.SysVm; |
| | | using SqlSugar; |
| | | using System.Collections.Generic; |
| | | using System.Threading.Tasks; |
| | | |
| | | namespace WMS.IBLL.IBllAsnServer |
| | | { |
| | |
| | | /// <param name="model">查询条件</param> |
| | | /// <param name="count">数量</param> |
| | | /// <returns>入库单信息</returns> |
| | | List<ArrivalNoticeDto> GetArrivalNoticeList(ArrivalNoticeVm model, out int count); |
| | | Task<List<ArrivalNoticeDto>> GetArrivalNoticeList(ArrivalNoticeVm model, RefAsync<int> count); |
| | | |
| | | /// <summary> |
| | | /// 入库单明细数量 |
| | |
| | | /// <param name="model">查询条件</param> |
| | | /// <param name="count"></param> |
| | | /// <returns></returns> |
| | | List<ArrivalNoticeDetailDto> GetArrivalNoticeDetailList(ArrivalNoticeDetailVm model, out int count); |
| | | Task<List<ArrivalNoticeDetailDto>> GetArrivalNoticeDetailList(ArrivalNoticeDetailVm model, RefAsync<int> count); |
| | | |
| | | /// <summary> |
| | | /// 获取入库单明细剩余打印数量 |