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

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,10 +1,6 @@
using BLL;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace FineUIPro.Web.PHTGL.BillOfQuantities
{
@@ -39,7 +35,7 @@ namespace FineUIPro.Web.PHTGL.BillOfQuantities
{
this.btnClose.OnClientClick = ActiveWindow.GetHideReference();
////权限按钮方法
// this.GetButtonPower();
// this.GetButtonPower();
this.Id = Request.Params["Id"];
this.Type = Request.Params["Type"];
if (!string.IsNullOrEmpty(this.Id))
@@ -78,7 +74,7 @@ namespace FineUIPro.Web.PHTGL.BillOfQuantities
/// <param name="e"></param>
protected void btnSave_Click(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(this.Id))
{
Model.PHTGL_Quantity table = new Model.PHTGL_Quantity();
@@ -97,7 +93,7 @@ namespace FineUIPro.Web.PHTGL.BillOfQuantities
table.WorkContent = this.txtWorkContent.Text;
table.Remarks = this.txtRemarks.Text;
table.Id = SQLHelper.GetNewID(typeof(Model.PHTGL_Quantity));
table.IsTemplate=true;
table.IsTemplate = true;
BLL.PHTGL_QuantityService.AddPHTGL_Quantity(table);
}