分拣、工位bom、现场问题处理

This commit is contained in:
2024-09-29 10:20:22 +08:00
parent cd06d414bc
commit b44b349544
26 changed files with 701 additions and 288 deletions

View File

@@ -86,5 +86,10 @@ namespace Tnb.WarehouseMgr.Entities.Dto.ErpInputs
/// 子表主键
/// </summary>
public string erp_line_pk { get; set; }
/// <summary>
/// 供应商(辅助属性)
/// </summary>
public string? auxprop_gys { get; set; }
}
}

View File

@@ -95,5 +95,10 @@ namespace Tnb.WarehouseMgr.Entities.Dto.ErpInputs
/// 供应商(辅助属性)
/// </summary>
public string auxprop_gys { get; set; }
/// <summary>
/// 生产单位(厂商)
/// </summary>
public string? production_unit { get; set; }
}
}

View File

@@ -55,7 +55,6 @@ namespace Tnb.WarehouseMgr.Entities.Dto
// 策略编号
public string PolicyCode { get; set; }
// 策略编号
public ISqlSugarClient dbConn { get; set; } = null;
}
}

View File

@@ -1,4 +1,6 @@
namespace Tnb.WarehouseMgr.Entities.Dto
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities.Dto
{
public class OutStockStrategyZCC2Floor2Query
{
@@ -54,5 +56,6 @@
/// </summary>
public string[] endlocations { get; set; }
public ISqlSugarClient dbConn { get; set; } = null;
}
}