refactor(cqms): 整理检查模块并迁移 WBS 服务

清理旧检查页面、服务和接口,补充 WBS 检查服务及数据库脚本,同步工程引用与菜单配置,收敛 CQMS 检查功能的代码组织。
This commit is contained in:
2026-09-20 15:49:27 +08:00
parent 8efe030f47
commit dc19b6d6b6
204 changed files with 319 additions and 59884 deletions
@@ -98,18 +98,6 @@ namespace FineUIPro.Web.Controls
this.lbUnitName.Text = "扫码考试时间:" + string.Format("{0:yyyy-MM-dd HH:mm:ss}", testPlan.TestStartTime) + ";至:" + string.Format("{0:yyyy-MM-dd HH:mm:ss}", testPlan.TestEndTime);
}
}
else if (!string.IsNullOrEmpty(Request.Params["TechnicalDiscloseId"]))
{
///设计交底
var technicalDisclose = BLL.CQMS_TechnicalDiscloseService.GetTechnicalDiscloseById(Request.Params["TechnicalDiscloseId"]);
if (technicalDisclose != null && !string.IsNullOrEmpty(technicalDisclose.QRCodeAttachUrl))
{
this.imgPhoto.Src = "../" + technicalDisclose.QRCodeAttachUrl;
this.lbWedCode.Text = "单位名称:" + BLL.UnitService.GetUnitNameByUnitId(technicalDisclose.UnitId);
this.lbWedName.Text = "单位工程:" + BLL.UnitWorkService.GetUnitWorkALLName(technicalDisclose.UnitWorkId);
this.lbUnitName.Text = "交底名称:" + technicalDisclose.DiscloseName;
}
}
}
}
}
@@ -116,24 +116,6 @@ namespace FineUIPro.Web.Controls
}
}
}
else if (!string.IsNullOrEmpty(Request.Params["TechnicalDiscloseId"]))
{
var technicalDisclose = Funs.DB.Technical_TechnicalDisclose.FirstOrDefault(e => e.TechnicalDiscloseId == Request.Params["TechnicalDiscloseId"]);
if (technicalDisclose != null)
{
if (!string.IsNullOrEmpty(technicalDisclose.QRCodeAttachUrl) && CreateQRCodeService.isHaveImage(technicalDisclose.QRCodeAttachUrl))
{
this.QRCodeAttachUrl = technicalDisclose.QRCodeAttachUrl;
}
else
{
this.CreateCode_Simple(Request.Params["strCode"]);
technicalDisclose.QRCodeAttachUrl = this.QRCodeAttachUrl;
Funs.DB.SubmitChanges();
}
}
}
this.Image1.ImageUrl = "~/" + this.QRCodeAttachUrl;
}
@@ -210,10 +192,6 @@ namespace FineUIPro.Web.Controls
{
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("QRCodePrint.aspx?ServerTestPlanId={0}", Request.Params["ServerTestPlanId"], "打印 - ")));
}
else if (!string.IsNullOrEmpty(Request.Params["TechnicalDiscloseId"]))
{
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("QRCodePrint.aspx?TechnicalDiscloseId={0}", Request.Params["TechnicalDiscloseId"], "打印 - ")));
}
}
}
}