From 11d1cc99e1652af442cb388ffda2c63a53277adb Mon Sep 17 00:00:00 2001 From: wendy <408182087@qq.com> Date: Thu, 9 Apr 2026 11:31:50 +0800 Subject: [PATCH] =?UTF-8?q?20260409=20=E8=BF=94=E4=BF=AE=E7=84=8A=E7=BC=9D?= =?UTF-8?q?=E8=AE=B0=E5=BD=95=E5=AF=BC=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../版本日志/HJGLDB_DS_2026-04-09_bwj.sql | 64 ++++++ HJGL_DS/FineUIPro.Web/FineUIPro.Web.csproj | 8 + .../HJGL/WeldingManage/RepairItemRecord.aspx | 6 + .../WeldingManage/RepairItemRecord.aspx.cs | 24 ++- .../RepairItemRecord.aspx.designer.cs | 88 +++++---- .../WeldingManage/RepairItemRecordOut.aspx | 122 ++++++++++++ .../WeldingManage/RepairItemRecordOut.aspx.cs | 183 ++++++++++++++++++ .../RepairItemRecordOut.aspx.designer.cs | 116 +++++++++++ HJGL_DS/Model/Model.cs | 36 ++++ 9 files changed, 611 insertions(+), 36 deletions(-) create mode 100644 DataBase/版本日志/HJGLDB_DS_2026-04-09_bwj.sql create mode 100644 HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecordOut.aspx create mode 100644 HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecordOut.aspx.cs create mode 100644 HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecordOut.aspx.designer.cs diff --git a/DataBase/版本日志/HJGLDB_DS_2026-04-09_bwj.sql b/DataBase/版本日志/HJGLDB_DS_2026-04-09_bwj.sql new file mode 100644 index 0000000..54ce951 --- /dev/null +++ b/DataBase/版本日志/HJGLDB_DS_2026-04-09_bwj.sql @@ -0,0 +1,64 @@ + +----޺¼ͼ +alter VIEW [dbo].[HJGL_View_CH_RepairItemRecord] +/*޺¼ͼ*/ +AS +SELECT +Record.RepairItemRecordId, +Record.ProjectId, +Record.ISO_ID, +Record.JOT_ID, +Record.FilmNum, +Record.TrustItemID, +Record.BatchId, +Record.RepairMark, +Record.DefectNature, +Record.IsWeld, +Record.JOT_CellWelder, +Record.JOT_FloorWelder, +Record.WeldDate, +Record.ConstructionPerson, +Record.ConfirmDate, +Record.FeedbackDate, +Record.NDT_ID, +Record.IsPrint, +Record.PrintMan, +Record.PrintDate, +Record.TrustRemark, +Project.ProjectCode, +IsoInfo.ISO_IsoNo, +JointInfo.JOT_JointNo, +CASE Record.IsWeld WHEN 1 THEN 'True' + ELSE 'False' END AS IsWeldStr, +WeldMethod.WME_Name, --ӷ +Steel.STE_Code, --Ӳ +CONVERT(FLOAT,JointInfo.JOT_Dia) AS JOT_Dia, --⾶ +JointInfo.JOT_PrepareTemp, --Ԥ¶ +CellWelder.WED_Code AS CellWelderCode, --׺ +FloorWelder.WED_Code AS FloorWelderCode, --溸 +Batch.BatchCode, --α +RepairItem.ExtendedNum, --ĺ +RepairItem.CheckPlace, --ص +RepairItem.Remark, --ע +RepairItem.CheckPerson, --Ա +Repair.RepairTrustDate, --ί +Repair.CH_RepairNo --ίе +,(case when trustItem.CH_TrustItemID is not null and trustItem.States='2' then 1 else (case when repairItems.CH_RepairItemId is not null and repairItems.States='2' then 1 else 0 end) end) as States1--Ƭϸ +,(case when trustItem.CH_TrustItemID is not null and trustItem.States!='2' then 1 else (case when repairItems.CH_RepairItemId is not null and repairItems.States!='2' then 1 else 0 end) end) as States3--Ƭ +FROM dbo.HJGL_CH_RepairItemRecord AS Record +LEFT JOIN dbo.Base_Project AS Project ON Project.ProjectId=Record.ProjectId +LEFT JOIN dbo.HJGL_PW_IsoInfo AS IsoInfo ON Record.ISO_ID = IsoInfo.ISO_ID +LEFT JOIN dbo.HJGL_PW_JointInfo AS JointInfo ON JointInfo.JOT_ID = Record.JOT_ID +LEFT JOIN dbo.HJGL_BS_WeldMethod AS WeldMethod ON WeldMethod.WME_ID = JointInfo.WME_ID +LEFT JOIN dbo.HJGL_BS_Steel AS Steel ON Steel.STE_ID=JointInfo.STE_ID +LEFT JOIN dbo.HJGL_BS_Welder AS CellWelder ON CellWelder.WED_ID=Record.JOT_CellWelder +LEFT JOIN dbo.HJGL_BS_Welder AS FloorWelder ON FloorWelder.WED_ID=Record.JOT_FloorWelder +LEFT JOIN dbo.HJGL_BO_Batch AS Batch ON Batch.BatchId=Record.BatchId +LEFT JOIN dbo.HJGL_CH_RepairItem AS RepairItem ON RepairItem.RepairItemRecordId=Record.RepairItemRecordId +LEFT JOIN dbo.HJGL_CH_Repair AS Repair ON Repair.CH_RepairID=RepairItem.CH_RepairID +left join HJGL_CH_TrustItem as trustItem on trustItem.CH_TrustItemID = Record.TrustItemID +left join HJGL_CH_RepairItem as repairItems on repairItems.CH_RepairItemId= Record.TrustItemID + +GO + + diff --git a/HJGL_DS/FineUIPro.Web/FineUIPro.Web.csproj b/HJGL_DS/FineUIPro.Web/FineUIPro.Web.csproj index 0552bc7..eeb9fc5 100644 --- a/HJGL_DS/FineUIPro.Web/FineUIPro.Web.csproj +++ b/HJGL_DS/FineUIPro.Web/FineUIPro.Web.csproj @@ -1181,6 +1181,7 @@ + @@ -6282,6 +6283,13 @@ RepairItemRecord.aspx + + RepairItemRecordOut.aspx + ASPXCodeBehind + + + RepairItemRecordOut.aspx + RepairItemRecordTrust.aspx ASPXCodeBehind diff --git a/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecord.aspx b/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecord.aspx index e3c1dc9..a525828 100644 --- a/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecord.aspx +++ b/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecord.aspx @@ -59,6 +59,8 @@ + + @@ -192,6 +194,10 @@ Target="Self" EnableResize="true" runat="server" IsModal="true" Width="1024px" Height="620px"> + diff --git a/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecord.aspx.cs b/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecord.aspx.cs index 3de3eb0..5c6b285 100644 --- a/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecord.aspx.cs +++ b/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecord.aspx.cs @@ -89,7 +89,6 @@ namespace FineUIPro.Web.HJGL.WeldingManage this.drpIsoNo.SelectedValue = BLL.Const._Null; } this.BindGrid(); - this.BindGrid(); } #endregion @@ -513,7 +512,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage protected void btnPrintNew_Click(object sender, EventArgs e) { string projectId = this.tvControlItem.SelectedNodeID; - + if (projectId != null) { string initTemplatePath = ""; @@ -602,5 +601,26 @@ namespace FineUIPro.Web.HJGL.WeldingManage return; } } + + #region 导出 + /// + /// 导出焊缝返修记录 + /// + /// + /// + protected void btnOut_Click(object sender, EventArgs e) + { + string projectId = this.tvControlItem.SelectedNodeID; + var pro = BLL.Base_ProjectService.GetProjectByProjectId(projectId); + if (pro != null) + { + PageContext.RegisterStartupScript(Window3.GetShowReference(String.Format("RepairItemRecordOut.aspx?projectId={0}", projectId, "导出 - "))); + } + else + { + Alert.ShowInTop("请选择项目!", MessageBoxIcon.Warning); + } + } + #endregion } } \ No newline at end of file diff --git a/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecord.aspx.designer.cs b/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecord.aspx.designer.cs index f5c0e73..adaf3c5 100644 --- a/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecord.aspx.designer.cs +++ b/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecord.aspx.designer.cs @@ -7,11 +7,13 @@ // //------------------------------------------------------------------------------ -namespace FineUIPro.Web.HJGL.WeldingManage { - - - public partial class RepairItemRecord { - +namespace FineUIPro.Web.HJGL.WeldingManage +{ + + + public partial class RepairItemRecord + { + /// /// form1 控件。 /// @@ -20,7 +22,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::System.Web.UI.HtmlControls.HtmlForm form1; - + /// /// PageManager1 控件。 /// @@ -29,7 +31,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.PageManager PageManager1; - + /// /// Panel1 控件。 /// @@ -38,7 +40,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel1; - + /// /// panelLeftRegion 控件。 /// @@ -47,7 +49,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel panelLeftRegion; - + /// /// Toolbar1 控件。 /// @@ -56,7 +58,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Toolbar Toolbar1; - + /// /// drpProjectId 控件。 /// @@ -65,7 +67,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList drpProjectId; - + /// /// tvControlItem 控件。 /// @@ -74,7 +76,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Tree tvControlItem; - + /// /// panelCenterRegion 控件。 /// @@ -83,7 +85,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel panelCenterRegion; - + /// /// Toolbar2 控件。 /// @@ -92,7 +94,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Toolbar Toolbar2; - + /// /// drpIsoNo 控件。 /// @@ -101,7 +103,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList drpIsoNo; - + /// /// rblIsWeld 控件。 /// @@ -110,7 +112,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.RadioButtonList rblIsWeld; - + /// /// ToolbarFill1 控件。 /// @@ -119,7 +121,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ToolbarFill ToolbarFill1; - + /// /// btnSave 控件。 /// @@ -128,7 +130,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnSave; - + /// /// btnPrintNew 控件。 /// @@ -137,7 +139,16 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnPrintNew; - + + /// + /// btnOut 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnOut; + /// /// Grid1 控件。 /// @@ -146,7 +157,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid Grid1; - + /// /// CbxIsHotProess 控件。 /// @@ -155,7 +166,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TemplateField CbxIsHotProess; - + /// /// cbIsHotProess 控件。 /// @@ -164,7 +175,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::System.Web.UI.WebControls.CheckBox cbIsHotProess; - + /// /// drpCellWelder 控件。 /// @@ -173,7 +184,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList drpCellWelder; - + /// /// txtWeldDate 控件。 /// @@ -182,7 +193,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DatePicker txtWeldDate; - + /// /// txtConstructionPerson 控件。 /// @@ -191,7 +202,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtConstructionPerson; - + /// /// txtConfirmDate 控件。 /// @@ -200,7 +211,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DatePicker txtConfirmDate; - + /// /// TemplateField1 控件。 /// @@ -209,7 +220,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TemplateField TemplateField1; - + /// /// cbIsPrint 控件。 /// @@ -218,7 +229,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::System.Web.UI.WebControls.CheckBox cbIsPrint; - + /// /// ToolbarSeparator1 控件。 /// @@ -227,7 +238,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ToolbarSeparator ToolbarSeparator1; - + /// /// ToolbarText1 控件。 /// @@ -236,7 +247,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ToolbarText ToolbarText1; - + /// /// ddlPageSize 控件。 /// @@ -245,7 +256,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList ddlPageSize; - + /// /// Window1 控件。 /// @@ -254,7 +265,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Window Window1; - + /// /// Window2 控件。 /// @@ -263,7 +274,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Window Window2; - + /// /// Window6 控件。 /// @@ -272,7 +283,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Window Window6; - + /// /// Window7 控件。 /// @@ -281,5 +292,14 @@ namespace FineUIPro.Web.HJGL.WeldingManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Window Window7; + + /// + /// Window3 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Window Window3; } } diff --git a/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecordOut.aspx b/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecordOut.aspx new file mode 100644 index 0000000..b884670 --- /dev/null +++ b/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecordOut.aspx @@ -0,0 +1,122 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="RepairItemRecordOut.aspx.cs" Inherits="FineUIPro.Web.HJGL.WeldingManage.RepairItemRecordOut" %> + + + + + + + 导出焊缝返修记录 + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <%----%> + + + <%----%> + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecordOut.aspx.cs b/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecordOut.aspx.cs new file mode 100644 index 0000000..f4518c8 --- /dev/null +++ b/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecordOut.aspx.cs @@ -0,0 +1,183 @@ +using BLL; +using System; +using System.Collections.Generic; +using System.Data; +using System.Data.SqlClient; +using System.Linq; +using System.Text; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace FineUIPro.Web.HJGL.WeldingManage +{ + public partial class RepairItemRecordOut : PageBase + { + #region 加载页面 + /// + /// 加载页面 + /// + /// + /// + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + this.ddlPageSize.SelectedValue = Grid1.PageSize.ToString(); + // 绑定表格 + this.BindGrid(); + } + } + #endregion + + #region 绑定数据 + /// + /// 绑定数据 + /// + private void BindGrid() + { + string strSql = @"SELECT * from HJGL_View_CH_RepairItemRecord where ProjectId = @ProjectId"; + List listStr = new List(); + listStr.Add(new SqlParameter("@ProjectId", Request.Params["projectId"])); + + if (this.rblIsWeld.SelectedValue == "0") + { + strSql += " AND IsWeld is null "; + } + else if (this.rblIsWeld.SelectedValue == "1") + { + strSql += " AND IsWeld = 1 "; + } + SqlParameter[] parameter = listStr.ToArray(); + DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter); + // 2.获取当前分页数据 + //var table = this.GetPagedDataTable(Grid1, tb1); + Grid1.RecordCount = tb.Rows.Count; + var table = this.GetPagedDataTable(Grid1, tb); + Grid1.DataSource = table; + Grid1.DataBind(); + } + #endregion + + #region 分页排序 + /// + /// + /// + /// + /// + protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e) + { + Grid1.PageIndex = e.NewPageIndex; + BindGrid(); + } + + /// + /// 分页下拉选择 + /// + /// + /// + protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e) + { + Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue); + BindGrid(); + } + + /// + /// + /// + /// + /// + protected void Grid1_FilterChange(object sender, EventArgs e) + { + BindGrid(); + } + + /// + /// 排序 + /// + /// + /// + protected void Grid1_Sort(object sender, FineUIPro.GridSortEventArgs e) + { + Grid1.SortDirection = e.SortDirection; + Grid1.SortField = e.SortField; + BindGrid(); + } + #endregion + + /// + /// 查询 + /// + /// + /// + protected void TextBox_TextChanged(object sender, EventArgs e) + { + this.BindGrid(); + } + + #region 导出按钮 + /// 导出按钮 + /// + /// + /// + protected void btnOut_Click(object sender, EventArgs e) + { + Response.ClearContent(); + string filename = Funs.GetNewFileName(); + Response.AddHeader("content-disposition", "attachment; filename=" + System.Web.HttpUtility.UrlEncode("返修焊缝记录" + filename, System.Text.Encoding.UTF8) + ".xls"); + Response.ContentType = "application/excel"; + Response.ContentEncoding = System.Text.Encoding.UTF8; + this.Grid1.PageSize = 100000; + this.BindGrid(); + Response.Write(GetGridTableHtml(Grid1)); + Response.End(); + } + + /// + /// 导出方法 + /// + /// + /// + private string GetGridTableHtml(Grid grid) + { + StringBuilder sb = new StringBuilder(); + sb.Append(""); + sb.Append(""); + sb.Append(""); + foreach (GridColumn column in grid.Columns) + { + if (column.HeaderText != "序号") + { + sb.AppendFormat("", column.HeaderText); + } + } + sb.Append(""); + foreach (GridRow row in grid.Rows) + { + sb.Append(""); + foreach (GridColumn column in grid.Columns) + { + if (column.ColumnID != "tfNumber") + { + string html = row.Values[column.ColumnIndex].ToString(); + if (html.Contains("f-grid-static-checkbox")) + { + // 包含 f-checked = 勾选 + if (html.Contains("f-checked")) + html = "√"; + else + html = "×"; + } + sb.AppendFormat("", html); + } + } + sb.Append(""); + } + + sb.Append("
{0}
{0}
"); + + return sb.ToString(); + } + #endregion + } +} \ No newline at end of file diff --git a/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecordOut.aspx.designer.cs b/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecordOut.aspx.designer.cs new file mode 100644 index 0000000..15eabcb --- /dev/null +++ b/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/RepairItemRecordOut.aspx.designer.cs @@ -0,0 +1,116 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能导致不正确的行为,如果 +// 重新生成代码,则所做更改将丢失。 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.HJGL.WeldingManage +{ + + + public partial class RepairItemRecordOut + { + + /// + /// form1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// Panel1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Panel Panel1; + + /// + /// Grid1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Grid Grid1; + + /// + /// Toolbar3 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar Toolbar3; + + /// + /// rblIsWeld 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.RadioButtonList rblIsWeld; + + /// + /// ToolbarFill1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.ToolbarFill ToolbarFill1; + + /// + /// btnOut 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnOut; + + /// + /// ToolbarSeparator1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.ToolbarSeparator ToolbarSeparator1; + + /// + /// ToolbarText1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.ToolbarText ToolbarText1; + + /// + /// ddlPageSize 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DropDownList ddlPageSize; + } +} diff --git a/HJGL_DS/Model/Model.cs b/HJGL_DS/Model/Model.cs index 32d09ac..f98f69f 100644 --- a/HJGL_DS/Model/Model.cs +++ b/HJGL_DS/Model/Model.cs @@ -62183,6 +62183,10 @@ namespace Model private string _CH_RepairNo; + private int _States1; + + private int _States3; + public HJGL_View_CH_RepairItemRecord() { } @@ -62794,6 +62798,38 @@ namespace Model } } } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_States1", DbType="Int NOT NULL")] + public int States1 + { + get + { + return this._States1; + } + set + { + if ((this._States1 != value)) + { + this._States1 = value; + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_States3", DbType="Int NOT NULL")] + public int States3 + { + get + { + return this._States3; + } + set + { + if ((this._States3 != value)) + { + this._States3 = value; + } + } + } } [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.HJGL_View_CH_TrustItem")]