From 256052475715eb5c9e3bca333b43c5d7739b4959 Mon Sep 17 00:00:00 2001
From: wendy <408182087@qq.com>
Date: Fri, 27 Mar 2026 18:00:59 +0800
Subject: [PATCH] =?UTF-8?q?20260327=20=E5=B7=A5=E8=89=BA=E7=AE=A1=E9=81=93?=
=?UTF-8?q?=E8=AF=95=E5=8E=8B=E5=8C=85=E5=AE=A1=E6=A0=B8=E6=8A=A5=E9=AA=8C?=
=?UTF-8?q?=E7=94=B3=E8=AF=B7=E8=A1=A8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
HJGL_DS/BLL/Common/Const.cs | 5 +
HJGL_DS/BLL/SYBData/ApplicationFormService.cs | 1 +
.../SYBData/工艺管道试压包报审报验申请表.frx | 87 +++++
...ustrialPipelineInstallationSummary.aspx.cs | 97 +++---
.../SYBData/ApplicationForm.aspx | 99 +++++-
.../SYBData/ApplicationForm.aspx.cs | 304 +++++++++++++++++-
.../SYBData/ApplicationForm.aspx.designer.cs | 225 +++++++++++++
7 files changed, 771 insertions(+), 47 deletions(-)
create mode 100644 HJGL_DS/FineUIPro.Web/File/Fastreport/SYBData/工艺管道试压包报审报验申请表.frx
diff --git a/HJGL_DS/BLL/Common/Const.cs b/HJGL_DS/BLL/Common/Const.cs
index c97603f..252837d 100644
--- a/HJGL_DS/BLL/Common/Const.cs
+++ b/HJGL_DS/BLL/Common/Const.cs
@@ -1927,6 +1927,11 @@ namespace BLL
/// 试压包资料目录
///
public const string SYBData_FileDirectoryMenuId = "B3F05879-2439-4445-8449-AA2010FA0961";
+
+ ///
+ /// 工艺管道试压包报审/报验申请表
+ ///
+ public const string SYBData_ApplicationFormMenuId = "71F70139-5281-480D-9787-7065BDA8A290";
#endregion
#region 报表对应ID
diff --git a/HJGL_DS/BLL/SYBData/ApplicationFormService.cs b/HJGL_DS/BLL/SYBData/ApplicationFormService.cs
index cb8f7f5..90cbb21 100644
--- a/HJGL_DS/BLL/SYBData/ApplicationFormService.cs
+++ b/HJGL_DS/BLL/SYBData/ApplicationFormService.cs
@@ -38,6 +38,7 @@ namespace BLL
newApplicationForm.ProfessionalEngineer = applicationForm.ProfessionalEngineer;
newApplicationForm.ApplicationDate = applicationForm.ApplicationDate;
db.SYBData_ApplicationForm.InsertOnSubmit(newApplicationForm);
+ db.SubmitChanges();
}
///
diff --git a/HJGL_DS/FineUIPro.Web/File/Fastreport/SYBData/工艺管道试压包报审报验申请表.frx b/HJGL_DS/FineUIPro.Web/File/Fastreport/SYBData/工艺管道试压包报审报验申请表.frx
new file mode 100644
index 0000000..3f40dd2
--- /dev/null
+++ b/HJGL_DS/FineUIPro.Web/File/Fastreport/SYBData/工艺管道试压包报审报验申请表.frx
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/HJGL_DS/FineUIPro.Web/JGZL/IndustrialPipelineInstallationSummary.aspx.cs b/HJGL_DS/FineUIPro.Web/JGZL/IndustrialPipelineInstallationSummary.aspx.cs
index e2a75f8..4945f70 100644
--- a/HJGL_DS/FineUIPro.Web/JGZL/IndustrialPipelineInstallationSummary.aspx.cs
+++ b/HJGL_DS/FineUIPro.Web/JGZL/IndustrialPipelineInstallationSummary.aspx.cs
@@ -110,51 +110,63 @@ namespace FineUIPro.Web.JGZL
private void DataIsoInfo()
{
+
var isoInfo = BLL.HJGL_PW_IsoInfoService.GetIsoInfoByProjectId(this.tvControlItem.SelectedNodeID);
- foreach (var item in isoInfo)
+ if (isoInfo.Count > 0)
{
- var summary = BLL.IndustrialPipelineInstallationSummaryService.GetIndustrialPipelineInstallationSummaryByPipelineCode(item.ISO_IsoNo);
- if (summary == null)
+ if (!string.IsNullOrEmpty(this.drpCertificateCode.SelectedValue))
{
- Model.JGZL_IndustrialPipelineInstallationSummary newSummary = new JGZL_IndustrialPipelineInstallationSummary();
- newSummary.SummaryId = SQLHelper.GetNewID(typeof(Model.JGZL_IndustrialPipelineInstallationSummary));
- newSummary.ProjectId = this.tvControlItem.SelectedNodeID;
- newSummary.CertificateId = this.drpCertificateCode.SelectedValue;
- newSummary.PipelineCode = item.ISO_IsoNo;
- if (!string.IsNullOrEmpty(item.ISC_ID))
+ foreach (var item in isoInfo)
{
- newSummary.PipelineLevel = BLL.HJGL_PipingClassService.GetPipingClassByPipingClassId(item.ISC_ID).ISC_IsoName;
+ var summary = BLL.IndustrialPipelineInstallationSummaryService.GetIndustrialPipelineInstallationSummaryByPipelineCode(item.ISO_IsoNo);
+ if (summary == null)
+ {
+ Model.JGZL_IndustrialPipelineInstallationSummary newSummary = new JGZL_IndustrialPipelineInstallationSummary();
+ newSummary.SummaryId = SQLHelper.GetNewID(typeof(Model.JGZL_IndustrialPipelineInstallationSummary));
+ newSummary.ProjectId = this.tvControlItem.SelectedNodeID;
+ newSummary.CertificateId = this.drpCertificateCode.SelectedValue;
+ newSummary.PipelineCode = item.ISO_IsoNo;
+ if (!string.IsNullOrEmpty(item.ISC_ID))
+ {
+ newSummary.PipelineLevel = BLL.HJGL_PipingClassService.GetPipingClassByPipingClassId(item.ISC_ID).ISC_IsoName;
+ }
+ newSummary.DesignPressure = item.ISO_DesignPress.ToString();
+ newSummary.DesignTemperature = item.ISO_DesignTemperature.ToString();
+ if (!string.IsNullOrEmpty(item.SER_ID))
+ {
+ newSummary.Medium = BLL.HJGL_MediumService.GetServiceBySERID(item.SER_ID).SER_Name;
+ }
+ if (!string.IsNullOrEmpty(item.STE_ID))
+ {
+ newSummary.Material = BLL.HJGL_MaterialService.GetSteelBySteID(item.STE_ID).STE_Code;
+ }
+ var jointInfo = (from x in Funs.DB.HJGL_PW_JointInfo where x.ISO_ID == item.ISO_ID select x).FirstOrDefault();
+ if (jointInfo != null)
+ {
+ newSummary.Specifications = jointInfo.JOT_JointDesc;
+ }
+ newSummary.Length = item.PipeLineLength.ToString();
+ newSummary.WeldsNum = BLL.HJGL_PW_JointInfoService.GetJointCountByIsoId(item.ISO_ID).ToString();
+ if (!string.IsNullOrEmpty(item.Joty_B_Rate))
+ {
+ newSummary.LosslessRatio = HJGL_DetectionService.GetNDTRateByNDTRID(item.Joty_B_Rate).NDTR_Name;//无损检测比例
+ }
+ //newSummary.VoltageResistantTestMethod = "水压";//耐压试验方法
+ newSummary.VoltageResistantTestMedium = "水";//耐压试验介质
+ newSummary.LeakageTestMedium = "空气";//泄漏试验介质
+ newSummary.CleaningMethod = "压缩空气吹扫";//吹扫、清洗方法
+ newSummary.VoltageResistantTestPressure = item.ISO_TestPress.HasValue ? item.ISO_TestPress.Value.ToString(("0.##")) + "MPa" : "";//耐压试验压力
+ newSummary.LeakageTestPressure = item.LeakageTest + "MPa";//泄漏试验压力
+ newSummary.CorrosionControlMethod = item.ISO_Paint;//腐蚀控制方式
+ newSummary.VoltageResistantTestMethod = "水压试验";//耐压试验方法
+ BLL.IndustrialPipelineInstallationSummaryService.AddIndustrialPipelineInstallationSummary(newSummary);
+ }
}
- newSummary.DesignPressure = item.ISO_DesignPress.ToString();
- newSummary.DesignTemperature = item.ISO_DesignTemperature.ToString();
- if (!string.IsNullOrEmpty(item.SER_ID))
- {
- newSummary.Medium = BLL.HJGL_MediumService.GetServiceBySERID(item.SER_ID).SER_Name;
- }
- if (!string.IsNullOrEmpty(item.STE_ID))
- {
- newSummary.Material = BLL.HJGL_MaterialService.GetSteelBySteID(item.STE_ID).STE_Code;
- }
- var jointInfo = (from x in Funs.DB.HJGL_PW_JointInfo where x.ISO_ID == item.ISO_ID select x).FirstOrDefault();
- if (jointInfo != null)
- {
- newSummary.Specifications = jointInfo.JOT_JointDesc;
- }
- newSummary.Length = item.PipeLineLength.ToString();
- newSummary.WeldsNum = BLL.HJGL_PW_JointInfoService.GetJointCountByIsoId(item.ISO_ID).ToString();
- if (!string.IsNullOrEmpty(item.Joty_B_Rate))
- {
- newSummary.LosslessRatio = HJGL_DetectionService.GetNDTRateByNDTRID(item.Joty_B_Rate).NDTR_Name;//无损检测比例
- }
- //newSummary.VoltageResistantTestMethod = "水压";//耐压试验方法
- newSummary.VoltageResistantTestMedium = "水";//耐压试验介质
- newSummary.LeakageTestMedium = "空气";//泄漏试验介质
- newSummary.CleaningMethod = "压缩空气吹扫";//吹扫、清洗方法
- newSummary.VoltageResistantTestPressure = item.ISO_TestPress.HasValue ? item.ISO_TestPress.Value.ToString(("0.##")) + "MPa" : "";//耐压试验压力
- newSummary.LeakageTestPressure = item.LeakageTest + "MPa";//泄漏试验压力
- newSummary.CorrosionControlMethod = item.ISO_Paint;//腐蚀控制方式
- newSummary.VoltageResistantTestMethod = "水压试验";//耐压试验方法
- BLL.IndustrialPipelineInstallationSummaryService.AddIndustrialPipelineInstallationSummary(newSummary);
+ }
+ else
+ {
+ Alert.ShowInTop("请先编辑工业管道安装质量证明书!", MessageBoxIcon.Warning);
+ return;
}
}
}
@@ -552,6 +564,11 @@ namespace FineUIPro.Web.JGZL
if (CommonService.GetAllButtonPowerList(this.CurrUser.LoginProjectId, this.CurrUser.UserId,
Const.JGZL_IndustrialPipelineInstallationSummaryMenuId, Const.BtnSave))
{
+ if (string.IsNullOrEmpty(this.drpCertificateCode.SelectedValue))
+ {
+ Alert.ShowInTop("请选择质量证明书编号!", MessageBoxIcon.Warning);
+ return;
+ }
saveItem();
ShowNotify("保存成功!", MessageBoxIcon.Success);
PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
diff --git a/HJGL_DS/FineUIPro.Web/SYBData/ApplicationForm.aspx b/HJGL_DS/FineUIPro.Web/SYBData/ApplicationForm.aspx
index 2910b16..cbf2229 100644
--- a/HJGL_DS/FineUIPro.Web/SYBData/ApplicationForm.aspx
+++ b/HJGL_DS/FineUIPro.Web/SYBData/ApplicationForm.aspx
@@ -4,13 +4,106 @@
-
+
工艺管道试压包报审/报验申请表
diff --git a/HJGL_DS/FineUIPro.Web/SYBData/ApplicationForm.aspx.cs b/HJGL_DS/FineUIPro.Web/SYBData/ApplicationForm.aspx.cs
index a35cd38..ea08588 100644
--- a/HJGL_DS/FineUIPro.Web/SYBData/ApplicationForm.aspx.cs
+++ b/HJGL_DS/FineUIPro.Web/SYBData/ApplicationForm.aspx.cs
@@ -1,17 +1,313 @@
-using System;
+using BLL;
+using System;
using System.Collections.Generic;
+using System.IO;
using System.Linq;
-using System.Web;
-using System.Web.UI;
using System.Web.UI.WebControls;
namespace FineUIPro.Web.SYBData
{
- public partial class ApplicationForm : System.Web.UI.Page
+ public partial class ApplicationForm : PageBase
{
+ #region 定义项
+ ///
+ /// 主键
+ ///
+ private string ApplicationFormId
+ {
+ get
+ {
+ return (string)ViewState["ApplicationFormId"];
+ }
+ set
+ {
+ ViewState["ApplicationFormId"] = value;
+ }
+ }
+
+ ///
+ /// 项目Id
+ ///
+ private string ProjectId
+ {
+ get
+ {
+ return (string)ViewState["ProjectId"];
+ }
+ set
+ {
+ ViewState["ProjectId"] = value;
+ }
+ }
+ #endregion
+
+ #region 加载页面
+ ///
+ /// 加载页面
+ ///
+ ///
+ ///
protected void Page_Load(object sender, EventArgs e)
{
+ if (!IsPostBack)
+ {
+ this.drpProjectId.DataTextField = "ProjectCode";
+ this.drpProjectId.DataValueField = "ProjectId";
+ this.drpProjectId.DataSource = BLL.Base_ProjectService.GetOnProjectListByUserId(this.CurrUser.UserId, "1");
+ this.drpProjectId.DataBind();
+ Funs.FineUIPleaseSelect(this.drpProjectId);
+ this.drpProjectId.SelectedValue = this.CurrUser.LoginProjectId;
+ this.InitTreeMenu();//加载树
+ this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
+ this.ProjectId = this.tvControlItem.SelectedNodeID;
+ DataInfo();
+ }
}
+
+ private void DataInfo()
+ {
+ this.ApplicationFormId = string.Empty;
+ this.txtApplicationFormCode.Text = string.Empty;
+ this.txtSupervisionUnit.Text = string.Empty;
+ this.txtContents.Text = string.Empty;
+ this.txtProfessionalEngineer.Text = string.Empty;
+ this.txtApplicationDate.Text = string.Empty;
+
+ if (!string.IsNullOrEmpty(this.ProjectId))
+ {
+ var data = BLL.ApplicationFormService.GetApplicationFormByProjectId(this.ProjectId);
+ if (data != null)
+ {
+ this.ApplicationFormId = data.ApplicationFormId;
+ this.txtApplicationFormCode.Text = data.ApplicationFormCode;
+ this.txtSupervisionUnit.Text = data.SupervisionUnit;
+ this.txtContents.Text = data.Contents;
+ this.txtProfessionalEngineer.Text = data.ProfessionalEngineer;
+ this.txtApplicationDate.Text = data.ApplicationDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.ApplicationDate) : "";
+ }
+ else
+ {
+ //默认值
+ //this.txtProjectName.Text = BLL.Base_ProjectService.GetProjectByProjectId(this.ProjectId).ProjectName;
+
+ }
+ }
+ }
+ #endregion
+
+ #region 加载树项目
+ ///
+ /// 加载树
+ ///
+ private void InitTreeMenu()
+ {
+ this.tvControlItem.Nodes.Clear();
+ TreeNode rootNode = new TreeNode();
+ rootNode.Text = "项目";
+ rootNode.ToolTip = "项目";
+ rootNode.NodeID = "0";
+ rootNode.Expanded = true;
+ this.tvControlItem.Nodes.Add(rootNode);
+
+ List projects = BLL.Base_ProjectService.GetOnProjectListByUserId(this.CurrUser.UserId, "1");
+ if (this.drpProjectId.SelectedValue != BLL.Const._Null)
+ {
+ projects = projects.Where(e => e.ProjectId == this.drpProjectId.SelectedValue).ToList();
+ }
+ foreach (var item in projects)
+ {
+ TreeNode rootProjectNode = new TreeNode();//定义根节点
+ rootProjectNode.Text = item.ProjectCode;
+ rootProjectNode.NodeID = item.ProjectId;
+ rootProjectNode.EnableClickEvent = true;
+ rootProjectNode.Expanded = true;
+ rootProjectNode.ToolTip = item.ProjectName;
+ rootProjectNode.CommandName = "项目名称";
+ rootNode.Nodes.Add(rootProjectNode);
+ }
+ }
+ #endregion
+
+ #region 点击TreeView
+ ///
+ /// 点击TreeView
+ ///
+ ///
+ ///
+ protected void tvControlItem_NodeCommand(object sender, TreeCommandEventArgs e)
+ {
+ if (this.tvControlItem.SelectedNodeID != "0")
+ {
+ this.ProjectId = this.tvControlItem.SelectedNodeID;
+ DataInfo();
+ }
+ }
+ #endregion
+
+ #region 查询
+ ///
+ ///查询
+ ///
+ ///
+ ///
+ protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
+ {
+ this.ProjectId = this.drpProjectId.SelectedValue;
+ this.InitTreeMenu();
+ this.tvControlItem.SelectedNodeID = this.ProjectId;
+ }
+ #endregion
+
+ #region 保存
+ protected void btnSave_Click(object sender, EventArgs e)
+ {
+ if (CommonService.GetAllButtonPowerList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, Const.SYBData_ApplicationFormMenuId, Const.BtnSave))
+ {
+ Model.SYBData_ApplicationForm newData = new Model.SYBData_ApplicationForm();
+ newData.ProjectId = this.ProjectId;
+ newData.ApplicationFormCode = this.txtApplicationFormCode.Text.Trim();
+ newData.SupervisionUnit = this.txtSupervisionUnit.Text.Trim();
+ newData.Contents = this.txtContents.Text.Trim();
+ newData.ProfessionalEngineer = this.txtProfessionalEngineer.Text.Trim();
+ newData.ApplicationDate = Funs.GetNewDateTime(this.txtApplicationDate.Text);
+ if (!string.IsNullOrEmpty(this.ApplicationFormId))
+ {
+ newData.ApplicationFormId = this.ApplicationFormId;
+ BLL.ApplicationFormService.UpdateApplicationForm(newData);
+ ShowNotify("修改成功!", MessageBoxIcon.Success);
+ }
+ else
+ {
+ newData.ApplicationFormId = SQLHelper.GetNewID(typeof(Model.SYBData_ApplicationForm));
+ this.ApplicationFormId = newData.ApplicationFormId;
+ BLL.ApplicationFormService.AddApplicationForm(newData);
+ ShowNotify("保存成功!", MessageBoxIcon.Success);
+ }
+ DataInfo();
+ }
+ else
+ {
+ Alert.ShowInTop("您没有这个权限,请与管理员联系!", MessageBoxIcon.Warning);
+ return;
+ }
+ }
+ #endregion
+
+ #region 打印
+ ///
+ /// 打印
+ ///
+ ///
+ ///
+ protected void btnPrint_Click(object sender, EventArgs e)
+ {
+ if (!string.IsNullOrEmpty(this.ProjectId))
+ {
+ string initTemplatePath = "";
+ string rootPath = Server.MapPath("~/");
+ BLL.Common.FastReportService.ResetData();
+
+ Dictionary keyValuePairs = new Dictionary();
+ keyValuePairs.Add("ProjectName", BLL.Base_ProjectService.GetProjectByProjectId(this.ProjectId).ProjectName);
+ keyValuePairs.Add("ApplicationFormCode", this.txtApplicationFormCode.Text);
+ keyValuePairs.Add("SupervisionUnit", this.txtSupervisionUnit.Text);
+ string c = this.txtContents.Text;
+ if (c.Length > 37)
+ {
+ string a = c.Substring(0, 37);
+ string b = c.Substring(37, c.Length - 37);
+ keyValuePairs.Add("Contents", a);
+ keyValuePairs.Add("Contents2", b);
+ }
+ else
+ {
+ keyValuePairs.Add("Contents", c);
+ }
+ keyValuePairs.Add("ProfessionalEngineer", this.txtProfessionalEngineer.Text);
+ keyValuePairs.Add("ApplicationDate", string.Format("{0:yyyy年MM月dd日}", Funs.GetNewDateTime(this.txtApplicationDate.Text)));
+ BLL.Common.FastReportService.AddFastreportParameter(keyValuePairs);
+
+ initTemplatePath = "File\\Fastreport\\SYBData\\工艺管道试压包报审报验申请表.frx";
+ if (File.Exists(rootPath + initTemplatePath))
+ {
+ PageContext.RegisterStartupScript(WindowPrint.GetShowReference(String.Format("../common/ReportPrint/Fastreport.aspx?ReportPath={0}", rootPath + initTemplatePath)));
+ }
+ }
+ else
+ {
+ Alert.ShowInTop("请选择项目!", MessageBoxIcon.Warning);
+ return;
+ }
+ }
+ #endregion
+
+ #region 导出按钮
+ /// 导出按钮
+ ///
+ ///
+ ///
+ protected void btnOut_Click(object sender, EventArgs e)
+ {
+ //string rootPath = Server.MapPath("~/");
+ //string initTemplatePath = string.Empty;
+ //string uploadfilepath = string.Empty;
+ //string newUrl = string.Empty;
+ //string filePath = string.Empty;
+
+ //string projectId = this.tvControlItem.SelectedNodeID;
+ //if (!string.IsNullOrEmpty(projectId))
+ //{
+ // if (!string.IsNullOrEmpty(this.Grid1.SelectedRowID))
+ // {
+ // initTemplatePath = Const.JGZL_CoverUrl;
+ // uploadfilepath = rootPath + initTemplatePath;
+
+ // newUrl = uploadfilepath.Replace("封面导出模板", "封面");
+ // if (File.Exists(newUrl))
+ // {
+ // File.Delete(newUrl);
+ // }
+ // File.Copy(uploadfilepath, newUrl);
+ // Document doc = new Aspose.Words.Document(uploadfilepath);
+
+ // Bookmark code = doc.Range.Bookmarks["Code"];
+ // if (code != null)
+ // {
+ // code.Text = this.txtCode.Text.Trim();
+ // }
+
+ // Bookmark projectName = doc.Range.Bookmarks["ProjectName"];
+ // if (projectName != null)
+ // {
+ // projectName.Text = BLL.Base_ProjectService.GetProjectByProjectId(projectId).ProjectName;
+ // }
+ // doc.Save(newUrl);
+
+ // string fileName = Path.GetFileName(newUrl);
+ // FileInfo info = new FileInfo(newUrl);
+ // long fileSize = info.Length;
+ // Response.Clear();
+ // Response.ContentType = "application/x-zip-compressed";
+ // Response.AddHeader("Content-Disposition", "attachment;filename=" + System.Web.HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8));
+ // Response.AddHeader("Content-Length", fileSize.ToString());
+ // Response.TransmitFile(newUrl, 0, fileSize);
+ // Response.Flush();
+ // Response.Close();
+ // File.Delete(newUrl);
+ // }
+ // else
+ // {
+ // Alert.ShowInTop("请选择一条记录!", MessageBoxIcon.Warning);
+ // return;
+ // }
+ //}
+ //else
+ //{
+ // Alert.ShowInTop("请选择项目!", MessageBoxIcon.Warning);
+ // return;
+ //}
+ }
+ #endregion
}
}
\ No newline at end of file
diff --git a/HJGL_DS/FineUIPro.Web/SYBData/ApplicationForm.aspx.designer.cs b/HJGL_DS/FineUIPro.Web/SYBData/ApplicationForm.aspx.designer.cs
index d136ac9..76679e5 100644
--- a/HJGL_DS/FineUIPro.Web/SYBData/ApplicationForm.aspx.designer.cs
+++ b/HJGL_DS/FineUIPro.Web/SYBData/ApplicationForm.aspx.designer.cs
@@ -22,5 +22,230 @@ namespace FineUIPro.Web.SYBData
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
+
+ ///
+ /// PageManager1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.PageManager PageManager1;
+
+ ///
+ /// Panel1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel1;
+
+ ///
+ /// panelLeftRegion 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel panelLeftRegion;
+
+ ///
+ /// Toolbar1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Toolbar Toolbar1;
+
+ ///
+ /// drpProjectId 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DropDownList drpProjectId;
+
+ ///
+ /// tvControlItem 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Tree tvControlItem;
+
+ ///
+ /// panelCenterRegion 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel panelCenterRegion;
+
+ ///
+ /// Toolbar2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Toolbar Toolbar2;
+
+ ///
+ /// ToolbarFill1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.ToolbarFill ToolbarFill1;
+
+ ///
+ /// btnSave 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnSave;
+
+ ///
+ /// btnPrint 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnPrint;
+
+ ///
+ /// SimpleForm1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Form SimpleForm1;
+
+ ///
+ /// txtApplicationFormCode 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtApplicationFormCode;
+
+ ///
+ /// Label4 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Label Label4;
+
+ ///
+ /// Label11 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Label Label11;
+
+ ///
+ /// txtSupervisionUnit 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtSupervisionUnit;
+
+ ///
+ /// Label2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Label Label2;
+
+ ///
+ /// Label3 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Label Label3;
+
+ ///
+ /// txtContents 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextArea txtContents;
+
+ ///
+ /// Label1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Label Label1;
+
+ ///
+ /// txtRemark 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtRemark;
+
+ ///
+ /// Label5 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Label Label5;
+
+ ///
+ /// txtProfessionalEngineer 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtProfessionalEngineer;
+
+ ///
+ /// txtApplicationDate 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DatePicker txtApplicationDate;
+
+ ///
+ /// WindowPrint 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Window WindowPrint;
}
}