This commit is contained in:
2023-07-10 18:10:50 +08:00
parent bfa693d306
commit a873d6c064
14 changed files with 175 additions and 269 deletions
@@ -53,7 +53,7 @@ namespace FineUIPro.Web.OfficeCheck.Check
}
this.CheckNoticeId = Request.Params["CheckNoticeId"];
if (!string.IsNullOrEmpty(this.CheckNoticeId))
{
{
var checkReport = BLL.CheckReportService.GetCheckReportByCheckNoticeId(this.CheckNoticeId);
if (checkReport != null)
{
@@ -61,7 +61,7 @@ namespace FineUIPro.Web.OfficeCheck.Check
this.txtValues1.Text = checkReport.CheckPurpose;
this.txtValues2.Text = checkReport.Basis;
this.txtValues3.Text = checkReport.BasicInfo;
this.txtValues4.Text = checkReport.ConformItem;
//this.txtValues4.Text = checkReport.ConformItem;
this.txtValues6.Text = checkReport.Opinion;
this.txtValues7.Text = checkReport.CheckResult;
this.BindGrid2();
@@ -162,7 +162,7 @@ namespace FineUIPro.Web.OfficeCheck.Check
newCheckReport.CheckPurpose = this.txtValues1.Text.Trim();
newCheckReport.Basis = this.txtValues2.Text.Trim();
newCheckReport.BasicInfo = this.txtValues3.Text.Trim();
newCheckReport.ConformItem = this.txtValues4.Text.Trim();
//newCheckReport.ConformItem = this.txtValues4.Text.Trim();
newCheckReport.Opinion = this.txtValues6.Text.Trim();
newCheckReport.CheckResult = this.txtValues7.Text.Trim();
if (!string.IsNullOrEmpty(hdCheckReportId.Text.Trim()))