# Conflicts:
#	ZR.Admin.WebApi/appsettings.development.json
This commit is contained in:
赵正易
2024-03-26 15:31:49 +08:00
36 changed files with 1140 additions and 125 deletions

View File

@@ -0,0 +1,24 @@
using System;
using ZR.Model;
using System.Collections.Generic;
using ZR.Model.MES.wms;
using ZR.Model.MES.wms.Dto;
namespace ZR.Service.Business.IBusinessService
{
/// <summary>
/// 盘点记录service接口
/// </summary>
public interface IWmCheckLogService : IBaseService<WmCheckLog>
{
PagedInfo<WmCheckLogDto> GetList(WmCheckLogQueryDto parm);
WmCheckLog GetInfo(int Id);
WmCheckLog AddWmCheckLog(WmCheckLog parm);
int UpdateWmCheckLog(WmCheckLog parm);
}
}

View File

@@ -0,0 +1,25 @@
using System;
using ZR.Model;
using ZR.Model.Dto;
using System.Collections.Generic;
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);
WmGoodsNowProduction GetInfo(string Id);
WmGoodsNowProduction AddWmGoodsNowProduction(WmGoodsNowProduction parm);
int UpdateWmGoodsNowProduction(WmGoodsNowProduction parm);
}
}

View File

@@ -10,15 +10,15 @@ namespace ZR.Service.mes.wms.IService
/// <summary>
/// 出库货物记录表service接口
/// </summary>
public interface IWmGoodsOutProductionService : IBaseService<WmGoodsOutProduction>
public interface IWmGoodsOutProductionService : IBaseService<WmGoodsOutRecord>
{
PagedInfo<WmGoodsOutProductionDto> GetList(WmGoodsOutProductionQueryDto parm);
WmGoodsOutProduction GetInfo(string Id);
WmGoodsOutRecord GetInfo(string Id);
WmGoodsOutProduction AddWmGoodsOutProduction(WmGoodsOutProduction parm);
WmGoodsOutRecord AddWmGoodsOutProduction(WmGoodsOutRecord parm);
int UpdateWmGoodsOutProduction(WmGoodsOutProduction parm);
int UpdateWmGoodsOutProduction(WmGoodsOutRecord parm);
}
}

View File

@@ -20,5 +20,7 @@ namespace ZR.Service.mes.wms.IService
int UpdateWmMaterial(WmMaterial parm);
WmGoodsNowProduction GetInfoByPatchCode(string patchCode);
}
}

View File

@@ -31,5 +31,10 @@ namespace ZR.Service.mes.wms.IService
List<WmOutOrderPlan> Generate_outorderplan(string shipment_num);
(int, int) DoMaterialOut(WmDoMaterialOut_Dto doMaterialOut, string Createby);
bool OverOutorderplan(string shipment_num);
}
}