54 lines
1.8 KiB
C#
54 lines
1.8 KiB
C#
using ZR.Model;
|
|
using ZR.Model.MES.wms;
|
|
using ZR.Model.MES.wms.Dto;
|
|
|
|
namespace ZR.Service.mes.wms.IService
|
|
{
|
|
/// <summary>
|
|
/// 成品库当前货物表service接口
|
|
/// </summary>
|
|
public interface IWmGoodsNowProductionService : IBaseService<WmGoodsNowProduction>
|
|
{
|
|
PagedInfo<WmGoodsNowProductionDto> GetList(WmGoodsNowProductionQueryDto parm);
|
|
/// <summary>
|
|
/// 批量查看
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
(List<WmGoods_nodeDto>, int) QuerypatchsearchList(WmGoodsNowProductionQueryDto parm);
|
|
|
|
/// <summary>
|
|
/// 移动端 短批次查询
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
(List<WmGoodShortPackageCodeDto>, int) QueryshortPatch(CommonQueryDto parm);
|
|
|
|
/// <summary>
|
|
/// 移动端 查询短批次号 细则详情
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
(List<WmGoodsNowProductionDto>, int) Patchsearchdetail(WmGoodsNowProductionQueryDto parm);
|
|
|
|
WmGoodsNowProduction GetInfo(string Id);
|
|
|
|
WmGoodsNowProduction AddWmGoodsNowProduction(WmGoodsNowProduction parm);
|
|
|
|
int UpdateWmGoodsNowProduction(WmGoodsNowProduction parm);
|
|
|
|
/// <summary>
|
|
/// 批量移库(批量转移进呆滞品库等使用)
|
|
/// </summary>
|
|
/// <param name="ids">箱主键列表</param>
|
|
/// <param name="locationCode">转入库存编号</param>
|
|
/// <returns></returns>
|
|
int BatchUpdateLocationCode(BatchUpdateLocationCodeDto parm);
|
|
|
|
int ModifyInventoryQuantity(string id, int stack_num);
|
|
|
|
PagedInfo<WmGoodsNowProductionDictDto> GetDictData(WmGoodsNowProductionDictDto parm);
|
|
|
|
}
|
|
}
|