提交代码

This commit is contained in:
2024-01-24 09:17:17 +08:00
parent 210a264a30
commit a1f0314f72
13 changed files with 718 additions and 7 deletions
+4
View File
@@ -3186,6 +3186,10 @@ namespace BLL
/// 开车方案编制计划模板文件原始虚拟路径
/// </summary>
public const string SchemePlanTemplateUrl = "File\\Excel\\TestRun\\开车方案编制计划.xlsx";
/// <summary>
/// 开车责任分工表模板文件原始虚拟路径
/// </summary>
public const string DutyTemplateUrl = "File\\Excel\\TestRun\\开车责任分工表.xlsx";
#endregion
#region
@@ -39,7 +39,7 @@ namespace BLL
/// <returns></returns>
public static List<Model.DriverPrepare_SchemePlanItem> GetModelList()
{
return (from x in Funs.DB.DriverPrepare_SchemePlanItem where x.SchemePlanId == "合成氨尿素项目" || x.SchemePlanId == "磷酸项目" || x.SchemePlanId == "LNG项目" select x).ToList();
return (from x in Funs.DB.DriverPrepare_SchemePlanItem where x.SchemePlanId == "公用工程" || x.SchemePlanId == "空分" || x.SchemePlanId == "气化" || x.SchemePlanId == "净化" || x.SchemePlanId == "合成" || x.SchemePlanId == "尿素" || x.SchemePlanId == "磷酸项目" || x.SchemePlanId == "LNG项目" select x).ToList();
}
/// <summary>