This commit is contained in:
jackchenyang 2024-06-27 17:12:48 +08:00
commit 99d396981e
16 changed files with 218 additions and 102 deletions

View File

@ -25,9 +25,9 @@ REM --------------
@echo 设置.net控制台环境 @echo 设置.net控制台环境
@echo. @echo.
@call "%VS150%" @call "%VS100COMNTOOLS%"vsvars32.bat
SqlMetal /views /server:. /database:HJGLDB_ZJBSF /code:%Model_ROOT%\Model.cs /namespace:Model SqlMetal /views /server:.\SQL2016 /database:HJGLDB_ZJBSF /code:%Model_ROOT%\Model.cs /namespace:Model
@ECHO 完成 @ECHO 完成
pause pause

Binary file not shown.

Binary file not shown.

View File

@ -100,7 +100,33 @@ namespace BLL
Model.Batch_BatchTrustItem update = db.Batch_BatchTrustItem.FirstOrDefault(e => e.TrustBatchItemId == trustBatchItemId); Model.Batch_BatchTrustItem update = db.Batch_BatchTrustItem.FirstOrDefault(e => e.TrustBatchItemId == trustBatchItemId);
if (update != null) if (update != null)
{ {
update.IsCancelTrust = isCancelTrust; var updatePoint = db.Batch_PointBatchItem.FirstOrDefault(e => e.PointBatchItemId == update.PointBatchItemId);
if (updatePoint != null)
{
updatePoint.PointDate = null;
updatePoint.PointState = null;
updatePoint.CutDate = null;////更新批明细 切除日期
updatePoint.IsBuildTrust = null;
updatePoint.JLAudit = null;
updatePoint.GLGSAudit = null;
updatePoint.QTAudit = null;
}
var item = from x in db.Batch_BatchTrustItem where x.TrustBatchId == update.TrustBatchId select x;
// 表示这个批里只有它一条明细,删除主表
if (item.Count() == 1)
{
Model.Batch_BatchTrust delTrust = db.Batch_BatchTrust.FirstOrDefault(x => x.TrustBatchId == update.TrustBatchId);
db.Batch_BatchTrustItem.DeleteOnSubmit(update);
if (delTrust != null)
{
db.Batch_BatchTrust.DeleteOnSubmit(delTrust);
}
}
else
{
db.Batch_BatchTrustItem.DeleteOnSubmit(update);
}
//update.IsCancelTrust = isCancelTrust;
db.SubmitChanges(); db.SubmitChanges();
} }
} }

View File

@ -23,7 +23,7 @@
<add key="aspnet:MaxHttpCollectionKeys" value="50000"/> <add key="aspnet:MaxHttpCollectionKeys" value="50000"/>
<add key="APPUrl" value="https://www.pgyer.com/pWSd111"/> <add key="APPUrl" value="https://www.pgyer.com/pWSd111"/>
<add key="Https" value="false"/> <add key="Https" value="false"/>
<add key="UsingUnit" value="TCC11"/> <add key="UsingUnit" value="TCC7"/>
</appSettings> </appSettings>
<!-- <!--
有关 web.config 更改的说明,请参见 http://go.microsoft.com/fwlink/?LinkId=235367。 有关 web.config 更改的说明,请参见 http://go.microsoft.com/fwlink/?LinkId=235367。

View File

@ -535,7 +535,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage
//行0 //行0
CellRangeAddress region = new CellRangeAddress(rowIndex, rowIndex + 3, 0, 2); CellRangeAddress region = new CellRangeAddress(rowIndex, rowIndex + 3, 0, 2);
ws.AddMergedRegion(region); ws.AddMergedRegion(region);
ws.GetRow(rowIndex).GetCell(0).SetCellValue(tbTitle.Rows[0]["PipelineCode"].ToString()); ws.GetRow(rowIndex).GetCell(0).SetCellValue("NDE-001");
ws.GetRow(rowIndex).GetCell(0).CellStyle = style; ws.GetRow(rowIndex).GetCell(0).CellStyle = style;
ws.GetRow(rowIndex).GetCell(1).CellStyle = style; ws.GetRow(rowIndex).GetCell(1).CellStyle = style;
ws.GetRow(rowIndex).GetCell(2).CellStyle = style; ws.GetRow(rowIndex).GetCell(2).CellStyle = style;
@ -561,7 +561,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage
//行1 //行1
region = new CellRangeAddress(rowIndex + 1, rowIndex + 1, 10, 12); region = new CellRangeAddress(rowIndex + 1, rowIndex + 1, 10, 12);
ws.AddMergedRegion(region); ws.AddMergedRegion(region);
ws.GetRow(rowIndex + 1).GetCell(10).SetCellValue("EnProjectName"); ws.GetRow(rowIndex + 1).GetCell(10).SetCellValue(tbTitle.Rows[0]["EnProjectName"].ToString());
ws.GetRow(rowIndex + 1).GetCell(10).CellStyle = CommonPrint.SetExcelStyle(hssfworkbook, BorderStyle.None, BorderStyle.Thin, BorderStyle.Thin, BorderStyle.None, VerticalAlignment.Center, HorizontalAlignment.Justify, 10.5, true, false); ws.GetRow(rowIndex + 1).GetCell(10).CellStyle = CommonPrint.SetExcelStyle(hssfworkbook, BorderStyle.None, BorderStyle.Thin, BorderStyle.Thin, BorderStyle.None, VerticalAlignment.Center, HorizontalAlignment.Justify, 10.5, true, false);
ws.GetRow(rowIndex + 1).GetCell(11).CellStyle = styleNone; ws.GetRow(rowIndex + 1).GetCell(11).CellStyle = styleNone;
ws.GetRow(rowIndex + 1).GetCell(12).CellStyle = styleNone; ws.GetRow(rowIndex + 1).GetCell(12).CellStyle = styleNone;
@ -577,7 +577,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage
//行3 //行3
region = new CellRangeAddress(rowIndex + 3, rowIndex + 3, 10, 12); region = new CellRangeAddress(rowIndex + 3, rowIndex + 3, 10, 12);
ws.AddMergedRegion(region); ws.AddMergedRegion(region);
ws.GetRow(rowIndex + 3).GetCell(10).SetCellValue("EnWorkAreaName"); ws.GetRow(rowIndex + 3).GetCell(10).SetCellValue(tbTitle.Rows[0]["EnWorkAreaName"].ToString());
ws.GetRow(rowIndex + 3).GetCell(10).CellStyle = CommonPrint.SetExcelStyle(hssfworkbook, BorderStyle.Thin, BorderStyle.Thin, BorderStyle.Thin, BorderStyle.None, VerticalAlignment.Center, HorizontalAlignment.Justify, 10.5, true, false); ws.GetRow(rowIndex + 3).GetCell(10).CellStyle = CommonPrint.SetExcelStyle(hssfworkbook, BorderStyle.Thin, BorderStyle.Thin, BorderStyle.Thin, BorderStyle.None, VerticalAlignment.Center, HorizontalAlignment.Justify, 10.5, true, false);
ws.GetRow(rowIndex + 3).GetCell(11).CellStyle = styleTop; ws.GetRow(rowIndex + 3).GetCell(11).CellStyle = styleTop;
ws.GetRow(rowIndex + 3).GetCell(12).CellStyle = styleTop; ws.GetRow(rowIndex + 3).GetCell(12).CellStyle = styleTop;
@ -617,7 +617,15 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage
ws.GetRow(rowIndex + 6).GetCell(6).SetCellValue("表面状态"); ws.GetRow(rowIndex + 6).GetCell(6).SetCellValue("表面状态");
region = new CellRangeAddress(rowIndex + 6, rowIndex + 6, 8, 12); region = new CellRangeAddress(rowIndex + 6, rowIndex + 6, 8, 12);
ws.AddMergedRegion(region); ws.AddMergedRegion(region);
if (tbTitle.Rows[0]["SurfaceState"].ToString() == "")
{
ws.GetRow(rowIndex + 6).GetCell(8).SetCellValue("打麿");
}
else
{
ws.GetRow(rowIndex + 6).GetCell(8).SetCellValue(tbTitle.Rows[0]["SurfaceState"].ToString()); ws.GetRow(rowIndex + 6).GetCell(8).SetCellValue(tbTitle.Rows[0]["SurfaceState"].ToString());
}
//行7 //行7
ws.GetRow(rowIndex + 7).GetCell(0).SetCellValue("检测标准"); ws.GetRow(rowIndex + 7).GetCell(0).SetCellValue("检测标准");
@ -668,7 +676,15 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage
ws.GetRow(rowIndex + 11).GetCell(0).SetCellValue("检测时机"); ws.GetRow(rowIndex + 11).GetCell(0).SetCellValue("检测时机");
region = new CellRangeAddress(rowIndex + 11, rowIndex + 11, 1, 12); region = new CellRangeAddress(rowIndex + 11, rowIndex + 11, 1, 12);
ws.AddMergedRegion(region); ws.AddMergedRegion(region);
if (tbTitle.Rows[0]["DetectionTiming"].ToString() == "")
{
ws.GetRow(rowIndex + 11).GetCell(1).SetCellValue("焊后");
}
else
{
ws.GetRow(rowIndex + 11).GetCell(1).SetCellValue(tbTitle.Rows[0]["DetectionTiming"].ToString()); ws.GetRow(rowIndex + 11).GetCell(1).SetCellValue(tbTitle.Rows[0]["DetectionTiming"].ToString());
}
ws.GetRow(rowIndex + 11).GetCell(1).CellStyle = CommonPrint.SetExcelStyle(hssfworkbook, BorderStyle.Thin, BorderStyle.Thin, BorderStyle.Thin, BorderStyle.Thin, VerticalAlignment.Center, HorizontalAlignment.Justify, 10.5, true, false); ws.GetRow(rowIndex + 11).GetCell(1).CellStyle = CommonPrint.SetExcelStyle(hssfworkbook, BorderStyle.Thin, BorderStyle.Thin, BorderStyle.Thin, BorderStyle.Thin, VerticalAlignment.Center, HorizontalAlignment.Justify, 10.5, true, false);
//行12 //行12
@ -796,8 +812,23 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage
ws.GetRow(rowIndex + 3).GetCell(7).SetCellValue("业主代表:"); ws.GetRow(rowIndex + 3).GetCell(7).SetCellValue("业主代表:");
ws.GetRow(rowIndex + 3).GetCell(11).SetCellValue("接收人:"); ws.GetRow(rowIndex + 3).GetCell(11).SetCellValue("接收人:");
// 尾部行4 // 尾部行4
//插入签名图片
if (!string.IsNullOrEmpty(getJLInfo.Item1))
{
InsertImage(hssfworkbook, ws, rowIndex + 4, 2, rowIndex + 4, 4, Server.MapPath(getJLInfo.Item1), 1, 1, 10);
}
else
{
ws.GetRow(rowIndex + 4).GetCell(2).SetCellValue(JLAudit); ws.GetRow(rowIndex + 4).GetCell(2).SetCellValue(JLAudit);
ws.GetRow(rowIndex + 4).GetCell(3).SetCellValue(GLGSAudit); }
if (!string.IsNullOrEmpty(getGLGSInfo.Item1))
{
InsertImage(hssfworkbook, ws, rowIndex + 4, 5, rowIndex + 4, 6, Server.MapPath(getJLInfo.Item1), 1, 8);
}
else
{
ws.GetRow(rowIndex + 4).GetCell(5).SetCellValue(GLGSAudit);
}
//尾部行6 //尾部行6
ws.GetRow(rowIndex + 6).GetCell(0).SetCellValue("专业工程师:"); ws.GetRow(rowIndex + 6).GetCell(0).SetCellValue("专业工程师:");
//尾部行8 //尾部行8
@ -811,16 +842,6 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage
ws.GetRow(rowIndex + 8).GetCell(7).SetCellValue(" 年 月 日"); ws.GetRow(rowIndex + 8).GetCell(7).SetCellValue(" 年 月 日");
ws.GetRow(rowIndex + 8).GetCell(11).SetCellValue(" 年 月 日"); ws.GetRow(rowIndex + 8).GetCell(11).SetCellValue(" 年 月 日");
//尾部行9 //尾部行9
//插入签名图片
if (!string.IsNullOrEmpty(getJLInfo.Item1))
{
InsertImage(hssfworkbook, ws, rowIndex + 6, 2, rowIndex + 6, 4, Server.MapPath(getJLInfo.Item1), 1, 1, 10);
}
if (!string.IsNullOrEmpty(getGLGSInfo.Item1))
{
InsertImage(hssfworkbook, ws, rowIndex + 6, 5, rowIndex + 6, 6, Server.MapPath(getJLInfo.Item1), 1, 8);
}
#endregion #endregion
ws = WsExcelCreateRow(ws, hssfworkbook, rowIndex + 11, rowIndex + 11, style, 0, 12, 3, true); ws = WsExcelCreateRow(ws, hssfworkbook, rowIndex + 11, rowIndex + 11, style, 0, 12, 3, true);

View File

@ -30,7 +30,8 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage
(CASE WHEN IsWelderFirst=1 THEN '是' ELSE '否' END) AS IsWelderFirst, (CASE WHEN IsWelderFirst=1 THEN '是' ELSE '否' END) AS IsWelderFirst,
JLAudit,GLGSAudit,QTAudit,IsPointAudit JLAudit,GLGSAudit,QTAudit,IsPointAudit
FROM dbo.View_Batch_PointBatchItem FROM dbo.View_Batch_PointBatchItem
WHERE PointState IS NOT NULL AND TrustBatchItemId IS NULL"; WHERE PointState IS NOT NULL AND TrustBatchItemId IS NULL
AND PointDate>'2024-06-24 23:59:59'";
List<SqlParameter> listStr = new List<SqlParameter>(); List<SqlParameter> listStr = new List<SqlParameter>();
if (!string.IsNullOrEmpty(this.txtPipeCode.Text)) if (!string.IsNullOrEmpty(this.txtPipeCode.Text))
{ {

View File

@ -47,14 +47,24 @@
<f:ListItem Value="2" Text="已处理" /> <f:ListItem Value="2" Text="已处理" />
</f:DropDownList> </f:DropDownList>
</Items> </Items>
</f:Toolbar>
<f:Toolbar ID="Toolbar7" Position="Top" runat="server" ToolbarAlign="Left">
<Items>
<f:DropDownList ID="drpTrustState" runat="server" Label="委托状态" LabelWidth="90px" Width="300px" LabelAlign="Right"
AutoPostBack="true" OnSelectedIndexChanged="Tree_TextChanged">
<f:ListItem Value="0" Text="待委托" Selected="true" />
<f:ListItem Value="1" Text="全部" />
</f:DropDownList>
</Items>
</f:Toolbar> </f:Toolbar>
<f:Toolbar ID="Toolbar3" Position="Top" runat="server" ToolbarAlign="Left"> <f:Toolbar ID="Toolbar3" Position="Top" runat="server" ToolbarAlign="Left">
<Items> <Items>
<f:DropDownList ID="drpNde" runat="server" Label="检测类型" LabelWidth="100px" Width="265px" LabelAlign="Right" <f:DropDownList ID="drpNde" runat="server" Label="检测类型" LabelWidth="90px" Width="300px" LabelAlign="Right"
AutoPostBack="true" OnSelectedIndexChanged="Tree_TextChanged"> AutoPostBack="true" OnSelectedIndexChanged="Tree_TextChanged">
</f:DropDownList> </f:DropDownList>
</Items> </Items>
</f:Toolbar> </f:Toolbar>
<%-- <f:Toolbar ID="Toolbar4" Position="Top" runat="server" ToolbarAlign="Left"> <%-- <f:Toolbar ID="Toolbar4" Position="Top" runat="server" ToolbarAlign="Left">
<Items> <Items>
<f:TextBox ID="txtWelderCode" runat="server" EmptyText="<%$ Resources:Lan,EnterQueryConditions %>" <f:TextBox ID="txtWelderCode" runat="server" EmptyText="<%$ Resources:Lan,EnterQueryConditions %>"

View File

@ -156,8 +156,14 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage
var pitem = from x in Funs.DB.Batch_PointBatchItem var pitem = from x in Funs.DB.Batch_PointBatchItem
where x.PointBatchId == p.PointBatchId && x.WeldingDate >= sar && x.WeldingDate < end where x.PointBatchId == p.PointBatchId && x.WeldingDate >= sar && x.WeldingDate < end
select x; select x;
if (drpTrustState.SelectedValue == "0")
{
pitem = pitem.Where(x => x.PointDate.HasValue && (x.IsBuildTrust == null || x.IsBuildTrust == false));
}
if (pitem.Count() > 0) if (pitem.Count() > 0)
{ {
TreeNode tn2 = new TreeNode TreeNode tn2 = new TreeNode
{ {
NodeID = p.PointBatchId, NodeID = p.PointBatchId,
@ -341,6 +347,10 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage
var q = from x in Funs.DB.Batch_PointBatchItem var q = from x in Funs.DB.Batch_PointBatchItem
where x.PointBatchId == item.PointBatchId && x.WeldingDate >= sar && x.WeldingDate < end where x.PointBatchId == item.PointBatchId && x.WeldingDate >= sar && x.WeldingDate < end
select x; select x;
if (drpTrustState.SelectedValue == "0")
{
q = q.Where(x => x.PointDate.HasValue && (x.IsBuildTrust == null || x.IsBuildTrust == false));
}
if (q.Count() > 0) if (q.Count() > 0)
{ {
TreeNode newNode = new TreeNode TreeNode newNode = new TreeNode
@ -1135,6 +1145,12 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage
} }
} }
ShowNotify("批量点口完成", MessageBoxIcon.Success);
}
else
{
ShowNotify("已无待处理焊口", MessageBoxIcon.Warning);
return;
} }
} }
else else
@ -1657,6 +1673,9 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage
pointBatchItem.PointState = null; pointBatchItem.PointState = null;
pointBatchItem.CutDate = null;////更新批明细 切除日期 pointBatchItem.CutDate = null;////更新批明细 切除日期
pointBatchItem.IsBuildTrust = null; pointBatchItem.IsBuildTrust = null;
pointBatchItem.JLAudit= null;
pointBatchItem.GLGSAudit= null;
pointBatchItem.QTAudit= null;
db.SubmitChanges(); db.SubmitChanges();
var trust = db.Batch_BatchTrustItem.FirstOrDefault(p => p.PointBatchItemId == pointBatchItemId); var trust = db.Batch_BatchTrustItem.FirstOrDefault(p => p.PointBatchItemId == pointBatchItemId);

View File

@ -68,6 +68,24 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage
/// </remarks> /// </remarks>
protected global::FineUIPro.DropDownList drpTrust; protected global::FineUIPro.DropDownList drpTrust;
/// <summary>
/// Toolbar7 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Toolbar Toolbar7;
/// <summary>
/// drpTrustState 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DropDownList drpTrustState;
/// <summary> /// <summary>
/// Toolbar3 控件。 /// Toolbar3 控件。
/// </summary> /// </summary>

View File

@ -1340,8 +1340,23 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage
ws.GetRow(rowIndex + 3).GetCell(11).SetCellValue("接收人:"); ws.GetRow(rowIndex + 3).GetCell(11).SetCellValue("接收人:");
// 尾部行4 // 尾部行4
//插入签名图片
if (!string.IsNullOrEmpty(getJLInfo.Item1))
{
InsertImage(hssfworkbook, ws, rowIndex + 4, 2, rowIndex + 4, 4, Server.MapPath(getJLInfo.Item1), 1, 1, 10);
}
else
{
ws.GetRow(rowIndex + 4).GetCell(2).SetCellValue(JLAudit); ws.GetRow(rowIndex + 4).GetCell(2).SetCellValue(JLAudit);
}
if (!string.IsNullOrEmpty(getGLGSInfo.Item1))
{
InsertImage(hssfworkbook, ws, rowIndex + 4, 5, rowIndex + 4, 6, Server.MapPath(getJLInfo.Item1), 1, 8);
}
else
{
ws.GetRow(rowIndex + 4).GetCell(5).SetCellValue(GLGSAudit); ws.GetRow(rowIndex + 4).GetCell(5).SetCellValue(GLGSAudit);
}
//尾部行6 //尾部行6
ws.GetRow(rowIndex + 6).GetCell(0).SetCellValue("专业工程师:"); ws.GetRow(rowIndex + 6).GetCell(0).SetCellValue("专业工程师:");
@ -1355,15 +1370,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage
} }
ws.GetRow(rowIndex + 8).GetCell(7).SetCellValue(" 年 月 日"); ws.GetRow(rowIndex + 8).GetCell(7).SetCellValue(" 年 月 日");
ws.GetRow(rowIndex + 8).GetCell(11).SetCellValue(" 年 月 日"); ws.GetRow(rowIndex + 8).GetCell(11).SetCellValue(" 年 月 日");
//插入签名图片
if (!string.IsNullOrEmpty(getJLInfo.Item1))
{
InsertImage(hssfworkbook, ws, rowIndex + 6, 2, rowIndex + 6, 4, Server.MapPath(getJLInfo.Item1), 1, 1,10);
}
if (!string.IsNullOrEmpty(getGLGSInfo.Item1))
{
InsertImage(hssfworkbook, ws, rowIndex + 6, 5, rowIndex + 6, 6, Server.MapPath(getJLInfo.Item1), 1, 8);
}
//尾部行9 //尾部行9
#endregion #endregion

View File

@ -48,16 +48,17 @@
</f:TextBox> </f:TextBox>
<f:CheckBox ID="ckbFirstTwo" runat="server" Label="是否首三口" LabelAlign="Right" Width="130px" LabelWidth="100"></f:CheckBox> <f:CheckBox ID="ckbFirstTwo" runat="server" Label="是否首三口" LabelAlign="Right" Width="130px" LabelWidth="100"></f:CheckBox>
<f:Label runat="server" Width="100px"></f:Label> <f:Label runat="server" Width="100px"></f:Label>
<f:ToolbarFill ID="ToolbarFill1" runat="server">
</f:ToolbarFill>
<f:Button ID="BtnAnalyse" Text="<%$ Resources:Lan,Statistics %>" Icon="ChartPie" <f:Button ID="BtnAnalyse" Text="<%$ Resources:Lan,Statistics %>" Icon="ChartPie"
runat="server" OnClick="BtnAnalyse_Click"> runat="server" OnClick="BtnAnalyse_Click">
</f:Button> </f:Button>
<f:Button ID="btnOut" OnClick="btnOut_Click" runat="server" Text="<%$ Resources:Lan,Export %>" <f:Button ID="btnOut" OnClick="btnOut_Click" runat="server" Text="<%$ Resources:Lan,Export %>"
Icon="TableGo" EnableAjax="false" DisableControlBeforePostBack="false"> Icon="TableGo" EnableAjax="false" DisableControlBeforePostBack="false">
</f:Button> </f:Button>
<f:Button ID="btnExport" BoxConfigAlign="Center" runat="server" Text="导出RT日委托表" ToolTip="日管道焊口检测委托汇总表RT" Icon="DoorOut" EnableAjax="false" DisableControlBeforePostBack="false" OnClick="btnExport_Click" EnablePress="true" Pressed="false"> <f:Button ID="btnExport" BoxConfigAlign="Center" runat="server" Text="导出RT日委托表" ToolTip="日管道焊口检测委托汇总表RT" Icon="DoorOut" EnableAjax="false" DisableControlBeforePostBack="false" OnClick="btnExport_Click" EnablePress="true" Pressed="false" Hidden="true">
</f:Button> </f:Button>
<f:ToolbarFill ID="ToolbarFill1" runat="server">
</f:ToolbarFill>
</Items> </Items>
</f:Toolbar> </f:Toolbar>
</Toolbars> </Toolbars>
@ -66,10 +67,10 @@
HeaderText="<%$ Resources:Lan,RequestSheetNumber %>" HeaderTextAlign="Center" TextAlign="Left" HeaderText="<%$ Resources:Lan,RequestSheetNumber %>" HeaderTextAlign="Center" TextAlign="Left"
SortField="TrustBatchCode"> SortField="TrustBatchCode">
</f:RenderField> </f:RenderField>
<f:RenderField Width="80px" ColumnID="InstallationCode" DataField="InstallationCode" FieldType="String" <%--<f:RenderField Width="80px" ColumnID="InstallationCode" DataField="InstallationCode" FieldType="String"
HeaderText="<%$ Resources:Lan,InstallationCode %>" HeaderTextAlign="Center" TextAlign="Left" HeaderText="<%$ Resources:Lan,InstallationCode %>" HeaderTextAlign="Center" TextAlign="Left"
SortField="InstallationCode"> SortField="InstallationCode">
</f:RenderField> </f:RenderField>--%>
<f:RenderField Width="220px" ColumnID="PipelineCode" DataField="PipelineCode" FieldType="String" <f:RenderField Width="220px" ColumnID="PipelineCode" DataField="PipelineCode" FieldType="String"
HeaderText="<%$ Resources:Lan,PipelineCode %>" HeaderTextAlign="Center" TextAlign="Left" HeaderText="<%$ Resources:Lan,PipelineCode %>" HeaderTextAlign="Center" TextAlign="Left"
SortField="PipelineCode"> SortField="PipelineCode">
@ -78,10 +79,10 @@
HeaderText="<%$ Resources:Lan,WeldingJointNumber %>" HeaderTextAlign="Center" HeaderText="<%$ Resources:Lan,WeldingJointNumber %>" HeaderTextAlign="Center"
TextAlign="Left" SortField="WeldJointCode"> TextAlign="Left" SortField="WeldJointCode">
</f:RenderField> </f:RenderField>
<f:RenderField Width="80px" ColumnID="JointArea" DataField="JointArea" FieldType="String" <%--<f:RenderField Width="80px" ColumnID="JointArea" DataField="JointArea" FieldType="String"
HeaderText="<%$ Resources:Lan,WeldingArea %>" HeaderTextAlign="Center" TextAlign="Left" HeaderText="<%$ Resources:Lan,WeldingArea %>" HeaderTextAlign="Center" TextAlign="Left"
SortField="JointArea"> SortField="JointArea">
</f:RenderField> </f:RenderField>--%>
<f:RenderField Width="120px" ColumnID="MaterialCode" DataField="MaterialCode" FieldType="String" <f:RenderField Width="120px" ColumnID="MaterialCode" DataField="MaterialCode" FieldType="String"
HeaderText="<%$ Resources:Lan,MaterialSpecification %>" HeaderTextAlign="Center" TextAlign="Left" HeaderText="<%$ Resources:Lan,MaterialSpecification %>" HeaderTextAlign="Center" TextAlign="Left"
@ -91,9 +92,9 @@
HeaderText="<%$ Resources:Lan,InchDiameter %>" HeaderTextAlign="Center" TextAlign="Left" HeaderText="<%$ Resources:Lan,InchDiameter %>" HeaderTextAlign="Center" TextAlign="Left"
SortField="Size"> SortField="Size">
</f:RenderField> </f:RenderField>
<f:RenderField Width="90px" ColumnID="Thickness" DataField="Thickness" FieldType="Double" <f:RenderField Width="90px" ColumnID="Specification" DataField="Specification" FieldType="String"
HeaderText="<%$ Resources:Lan,WallThickness %>" HeaderTextAlign="Center" TextAlign="Left" HeaderText="<%$ Resources:Lan,Specifications %>" HeaderTextAlign="Center" TextAlign="Left"
SortField="Thickness"> SortField="Specifications">
</f:RenderField> </f:RenderField>
<f:RenderField Width="90px" ColumnID="WeldTypeCode" DataField="WeldTypeCode" FieldType="String" <f:RenderField Width="90px" ColumnID="WeldTypeCode" DataField="WeldTypeCode" FieldType="String"
HeaderText="<%$ Resources:Lan,WeldingJointType %>" HeaderTextAlign="Center" TextAlign="Left" HeaderText="<%$ Resources:Lan,WeldingJointType %>" HeaderTextAlign="Center" TextAlign="Left"
@ -103,6 +104,10 @@
HeaderText="<%$ Resources:Lan,WelderCode %>" HeaderTextAlign="Center" TextAlign="Left" HeaderText="<%$ Resources:Lan,WelderCode %>" HeaderTextAlign="Center" TextAlign="Left"
SortField="WelderCode"> SortField="WelderCode">
</f:RenderField> </f:RenderField>
<f:RenderField Width="100px" ColumnID="TeamGroupName" DataField="TeamGroupName" FieldType="String"
HeaderText="施工队" HeaderTextAlign="Center" TextAlign="Left"
SortField="WelderCode">
</f:RenderField>
<f:RenderField Width="120px" ColumnID="WeldingMethodCode" DataField="WeldingMethodCode" <f:RenderField Width="120px" ColumnID="WeldingMethodCode" DataField="WeldingMethodCode"
HeaderText="<%$ Resources:Lan,WeldingMethod %>" HeaderTextAlign="Center" TextAlign="Left" HeaderText="<%$ Resources:Lan,WeldingMethod %>" HeaderTextAlign="Center" TextAlign="Left"
SortField="WeldingMethodCode" FieldType="String"> SortField="WeldingMethodCode" FieldType="String">
@ -114,6 +119,9 @@
<f:RenderField Width="90px" ColumnID="AcceptLevel" DataField="AcceptLevel" FieldType="String" HeaderText="合格等级" <f:RenderField Width="90px" ColumnID="AcceptLevel" DataField="AcceptLevel" FieldType="String" HeaderText="合格等级"
HeaderTextAlign="Center" TextAlign="Left"> HeaderTextAlign="Center" TextAlign="Left">
</f:RenderField> </f:RenderField>
<f:RenderField Width="90px" ColumnID="PIPClassCode" DataField="PIPClassCode" FieldType="String" HeaderText="压力管道分级"
HeaderTextAlign="Center" TextAlign="Left">
</f:RenderField>
<f:RenderField Width="90px" ColumnID="Sheet" DataField="Sheet" FieldType="String" HeaderText="页数" <f:RenderField Width="90px" ColumnID="Sheet" DataField="Sheet" FieldType="String" HeaderText="页数"
HeaderTextAlign="Center" TextAlign="Left"> HeaderTextAlign="Center" TextAlign="Left">
</f:RenderField> </f:RenderField>

View File

@ -7,10 +7,12 @@
// </自动生成> // </自动生成>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
namespace FineUIPro.Web.WeldingProcess.TrustManage { namespace FineUIPro.Web.WeldingProcess.TrustManage
{
public partial class TrustBatchSelect { public partial class TrustBatchSelect
{
/// <summary> /// <summary>
/// form1 控件。 /// form1 控件。
@ -138,6 +140,15 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage {
/// </remarks> /// </remarks>
protected global::FineUIPro.CheckBox ckbFirstTwo; protected global::FineUIPro.CheckBox ckbFirstTwo;
/// <summary>
/// ToolbarFill1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.ToolbarFill ToolbarFill1;
/// <summary> /// <summary>
/// BtnAnalyse 控件。 /// BtnAnalyse 控件。
/// </summary> /// </summary>
@ -165,15 +176,6 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage {
/// </remarks> /// </remarks>
protected global::FineUIPro.Button btnExport; protected global::FineUIPro.Button btnExport;
/// <summary>
/// ToolbarFill1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.ToolbarFill ToolbarFill1;
/// <summary> /// <summary>
/// ToolbarSeparator1 控件。 /// ToolbarSeparator1 控件。
/// </summary> /// </summary>

View File

@ -41,7 +41,7 @@
LabelWidth="90px"> LabelWidth="90px">
</f:DropDownList> </f:DropDownList>
<f:DropDownList ID="drpTeamGroup" runat="server" Label="班组" EnableCheckBoxSelect="true" EnableMultiSelect="true" <f:DropDownList ID="drpTeamGroup" runat="server" Label="班组" EnableCheckBoxSelect="true" EnableMultiSelect="true"
LabelAlign="Right" Width="160px" LabelWidth="80px"> LabelAlign="Right" Width="200px" LabelWidth="80px">
</f:DropDownList> </f:DropDownList>
<f:DropDownList ID="drpAudit" runat="server" Label="审核状态" LabelWidth="80" Width="160" EmptyText="请选择"> <f:DropDownList ID="drpAudit" runat="server" Label="审核状态" LabelWidth="80" Width="160" EmptyText="请选择">
<f:ListItem Value="全部" Text="全部" /> <f:ListItem Value="全部" Text="全部" />

View File

@ -29,6 +29,10 @@ namespace Model
#region #region
partial void OnCreated(); partial void OnCreated();
partial void OnCreated()
{
this.CommandTimeout = 600;
}
partial void InsertAttachFile(AttachFile instance); partial void InsertAttachFile(AttachFile instance);
partial void UpdateAttachFile(AttachFile instance); partial void UpdateAttachFile(AttachFile instance);
partial void DeleteAttachFile(AttachFile instance); partial void DeleteAttachFile(AttachFile instance);