From cee4e362c81af4c93c87f40e77649e9af5a591c6 Mon Sep 17 00:00:00 2001 From: zyf <1071160500@qq.com> Date: 星期一, 02 六月 2025 20:05:54 +0800 Subject: [PATCH] 修改工单生产数量更新的逻辑,现在只有检验合格的才更新生产数量,清除检验合格的结果也会更新 --- MES.Service/Modes/ProductionOrder.cs | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/MES.Service/Modes/ProductionOrder.cs b/MES.Service/Modes/ProductionOrder.cs index 872b65b..c40f8ae 100644 --- a/MES.Service/Modes/ProductionOrder.cs +++ b/MES.Service/Modes/ProductionOrder.cs @@ -84,13 +84,13 @@ /// 棰勮寮�宸ユ椂闂� ///</summary> [SugarColumn(ColumnName = "ESTIMATED_START_TIME")] - public DateTime? EstimatedStartTime { get; set; } + public DateTime? PlanStartDate { get; set; } /// <summary> /// 棰勮瀹屽伐鏃堕棿 ///</summary> [SugarColumn(ColumnName = "ESTIMATED_END_TIME")] - public DateTime? EstimatedEndTime { get; set; } + public DateTime? PlanFinishDate { get; set; } /// <summary> /// 璁″垝涓嬭揪鏃ユ湡 @@ -271,5 +271,11 @@ ///</summary> [SugarColumn(ColumnName = "STOCKOWNER")] public string? StockOwner { get; set; } + + /// <summary> + /// 渚涘簲鍟� + ///</summary> + [SugarColumn(ColumnName = "SUPP_NO")] + public string? SUPPLIER { get; set; } } } \ No newline at end of file -- Gitblit v1.9.3