20250213 分包商报告

This commit is contained in:
2025-02-13 14:47:54 +08:00
parent 03025b4f69
commit 2a569c1bfe
8 changed files with 72 additions and 46 deletions
@@ -1,4 +1,5 @@
using BLL;
using Org.BouncyCastle.Asn1.Cmp;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -87,9 +88,9 @@ namespace FineUIPro.Web.SES
}
}
this.txtAuditDate.Text = file.AuditDate.HasValue ? string.Format("{0:yyyy-MM-dd}", file.AuditDate) : "";
if (!string.IsNullOrEmpty(file.AuditResult))
if (!string.IsNullOrEmpty(file.AuditResult.Trim()))
{
this.drpAuditResult.SelectedValue = file.AuditResult;
this.drpAuditResult.SelectedValue = file.AuditResult.Trim();
}
}
}
@@ -146,6 +147,11 @@ namespace FineUIPro.Web.SES
/// <param name="e"></param>
protected void btnSave_Click(object sender, EventArgs e)
{
if (this.drpAuditResult.SelectedValue == BLL.Const._Null)
{
Alert.ShowInTop("请选择审计结果!", MessageBoxIcon.Warning);
return;
}
string id = Request.Params["id"];
string fileId = Request.Params["fileId"];
Model.FC_ContractManagement newContract = new Model.FC_ContractManagement();