20250908 焊接统计分析表

This commit is contained in:
2025-09-08 11:30:40 +08:00
parent f6b2bdfb81
commit ced7b82085
17 changed files with 947 additions and 64 deletions
+4
View File
@@ -6177,6 +6177,10 @@ namespace BLL
#region
/// <summary>
/// 焊接统计分析表
/// </summary>
public const string WeldingStatisticalMenuId = "0F3ECADA-F108-4C24-979C-67CA49E3726B";
/// <summary>
/// 单位工区进度分析
/// </summary>
public const string UnitAreaAnalyzeMenuId = "66A76F90-96A7-4C1F-B8D9-125DDEACEF52";
+2
View File
@@ -39,6 +39,7 @@ namespace BLL
WorkAreaCode = WorkArea.WorkAreaCode,
WorkAreaName = WorkArea.WorkAreaName,
Remark = WorkArea.Remark,
CompletionDate=WorkArea.CompletionDate,
};
db.ProjectData_WorkArea.InsertOnSubmit(newWorkArea);
@@ -61,6 +62,7 @@ namespace BLL
newWorkArea.WorkAreaName = WorkArea.WorkAreaName;
newWorkArea.InstallationId = WorkArea.InstallationId;
newWorkArea.SupervisorUnitId = WorkArea.SupervisorUnitId;
newWorkArea.CompletionDate = WorkArea.CompletionDate;
db.SubmitChanges();
}
}