1.增加单灯出库查询物料接口

2.修改入库查询物料接口
3.货架出库单据计算物料重复问题修复
4.出库单据、盘点单据生成单据号修改为按 202406100001这种格式
This commit is contained in:
hehaibing-1996
2024-05-10 09:52:27 +08:00
parent 3c2cc27467
commit f57b79d0fc
12 changed files with 228 additions and 83 deletions

View File

@ -11,8 +11,19 @@ namespace WCS.BLL.Config
/// </summary>
public class JsConfig
{
public List<string> ModuleCodePatterns { get; set; }
public List<string>? ModuleCodePatterns { get; set; }
/// <summary>
/// 不同种类的物料分批次入库
/// </summary>
public bool IsSameMatCodeOut { get; set; }
/// <summary>
/// 是否接入WMS系统
/// </summary>
public bool IsAccessWMS { get; set; }
/// <summary>
/// WMS系统
/// </summary>
public string? WMSUrl { get; set; }
}
}