代码无效引用清理,试压包资料界面看板修改

This commit is contained in:
2025-10-10 14:33:21 +08:00
parent 87fb529521
commit 55b798135c
933 changed files with 5897 additions and 7541 deletions
@@ -1,16 +1,9 @@
using BLL;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using BLL;
using FineUIPro.Web.PHTGL.BiddingManagement;
namespace FineUIPro.Web.PHTGL.Filing
{
public partial class BidDocumentsStandingBookEdit: PageBase
public partial class BidDocumentsStandingBookEdit : PageBase
{
#region
/// <summary>
@@ -72,8 +65,8 @@ namespace FineUIPro.Web.PHTGL.Filing
this.txtApprovePersonFormCode.Text = model.ApprovePersonFormCode;
this.txtBidWinner.Text = model.BidWinner;
this.txtSetSubReviewCode.Text = model.SetSubReviewCode;
this.txtBidNoticeCode.Text=model.BidNoticeCode;
this.txtBidUnitFileCode.Text = model.BidUnitFileCode;
this.txtBidNoticeCode.Text = model.BidNoticeCode;
this.txtBidUnitFileCode.Text = model.BidUnitFileCode;
}
}
}
@@ -89,7 +82,7 @@ namespace FineUIPro.Web.PHTGL.Filing
{
Model.PHTGL_BidDocumentsStandingBook table = new Model.PHTGL_BidDocumentsStandingBook();
table.UnitId = this.CurrUser.UnitId;
table.DepartId=this.CurrUser.DepartId;
table.DepartId = this.CurrUser.DepartId;
table.EPCCode = this.txtEPCCode.Text;
table.ProjectShortName = this.txtProjectShortName.Text;
table.ProjectCode = this.txtProjectCode.Text;
@@ -104,10 +97,10 @@ namespace FineUIPro.Web.PHTGL.Filing
table.Bidding_StartTime = this.txtBidding_StartTime.Text;
table.ApprovePersonFormCode = this.txtApprovePersonFormCode.Text;
table.BidWinner = this.txtBidWinner.Text;
table.SetSubReviewCode = this.txtSetSubReviewCode.Text;
table.SetSubReviewCode = this.txtSetSubReviewCode.Text;
table.State = 0;
table.BidNoticeCode=this.txtBidNoticeCode.Text;
table.BidUnitFileCode=this.txtBidUnitFileCode.Text;
table.BidNoticeCode = this.txtBidNoticeCode.Text;
table.BidUnitFileCode = this.txtBidUnitFileCode.Text;
if (Type == "1")
{
table.ProjectId = this.CurrUser.LoginProjectId;
@@ -238,13 +231,13 @@ namespace FineUIPro.Web.PHTGL.Filing
/// <returns></returns>
private void GetButtonPower()
{
if (!string .IsNullOrEmpty(BidDocumentsStandingBookId))
if (!string.IsNullOrEmpty(BidDocumentsStandingBookId))
{
var q = BLL.BidDocStandingBookService.GetPHTGL_BidDocumentsStandingBookById(BidDocumentsStandingBookId);
if (q != null&& q.State==1)
if (q != null && q.State == 1)
{
btnSave.Hidden = true;
btnSubmit.Hidden=true;
btnSubmit.Hidden = true;
}
}
}
@@ -263,7 +256,7 @@ namespace FineUIPro.Web.PHTGL.Filing
BidDocumentsStandingBookId = Guid.NewGuid().ToString();
}
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("~/AttachFile/webuploader.aspx?type=0&toKeyId={0}&path=FileUpload/BidDocumentsStandingBook&menuId={1}",
this.BidDocumentsStandingBookId+ "-BidUnit", BLL.Const.ProjectBidDocumentsStandingBookMenuId)));
this.BidDocumentsStandingBookId + "-BidUnit", BLL.Const.ProjectBidDocumentsStandingBookMenuId)));
}
/// <summary>
/// 中标通知书
@@ -277,7 +270,7 @@ namespace FineUIPro.Web.PHTGL.Filing
BidDocumentsStandingBookId = Guid.NewGuid().ToString();
}
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("~/AttachFile/webuploader.aspx?type=0&toKeyId={0}&path=FileUpload/BidDocumentsStandingBook&menuId={1}",
this.BidDocumentsStandingBookId+ "-BidNotice", BLL.Const.ProjectBidDocumentsStandingBookMenuId)));
this.BidDocumentsStandingBookId + "-BidNotice", BLL.Const.ProjectBidDocumentsStandingBookMenuId)));
}
/// <summary>
/// 实施计划文件
@@ -382,6 +375,6 @@ namespace FineUIPro.Web.PHTGL.Filing
// //this.txtApprovePersonFormCode.Text = model.ApprovePersonFormCode;
// }
}
}