20250616
This commit is contained in:
parent
f2762ac0c7
commit
a5ca2969a5
|
@ -0,0 +1,46 @@
|
|||
|
||||
ALTER PROC [dbo].[HJGL_sp_rpt_RemakeReason]
|
||||
@parm NVARCHAR(500) = NULL
|
||||
AS
|
||||
/*管线综合分析:佘春生修改于2018.08.08*/
|
||||
declare @ProjectId nvarchar(50),@StartDate nvarchar(50),@EndDate nvarchar(50)
|
||||
set @ProjectId= (select items from Split_StrByDelimiter(@parm,',') where id=1)
|
||||
set @StartDate= (select items from Split_StrByDelimiter(@parm,',') where id=2)
|
||||
set @EndDate= (select items from Split_StrByDelimiter(@parm,',') where id=3)
|
||||
|
||||
SELECT v.* FROM
|
||||
(SELECT NEWID() as id,
|
||||
trust.ProjectId,rq.CheckMan
|
||||
,sum(CONVERT(INT,TypeNum_Error)) AS t1Num --铅字编号错误
|
||||
,sum(CONVERT(INT,TypeNum_Defect)) AS t2Num --铅字编号缺失
|
||||
,sum(CONVERT(INT,TypeNum_Position)) AS t3Num --铅字编号位置
|
||||
,sum(CONVERT(INT,TypeNum_Displacement)) AS t4Num --铅字编号位置
|
||||
,sum(CONVERT(INT,ImageQualityMeter_Error)) AS t5Num --像质计错误
|
||||
,sum(CONVERT(INT,ImageQualityMeter_Defect)) AS t6Num --像质计缺失
|
||||
,sum(CONVERT(INT,RayField_Tilt)) AS t7Num --射线场倾斜
|
||||
,sum(CONVERT(INT,RayField_Whitehead)) AS t8Num --射线场白头
|
||||
,sum(CONVERT(INT,RayField_FocalLengthSmall)) AS t9Num --射线场焦距小
|
||||
,sum(CONVERT(INT,Blackness_TooHigh)) AS t10Num --黑度过高
|
||||
,sum(CONVERT(INT,Blackness_TooLow)) AS t11Num --黑度过低
|
||||
,sum(CONVERT(INT,EllipticalOpening_TooMuch)) AS t12Num --椭圆开口过大
|
||||
,sum(CONVERT(INT,EllipticalOpening_TooSmall)) AS t13Num --椭圆开口过小
|
||||
,sum(CONVERT(INT,NegativeOffset)) AS t14Num --底片偏移
|
||||
,sum(CONVERT(INT,Ghosting)) AS t15Num --缺片重影
|
||||
,sum(CONVERT(INT,LocationIsNot)) AS t16Num --位置不符
|
||||
,sum(CONVERT(INT,PseudoDefects_Obstacles)) AS t17Num --伪缺陷障碍
|
||||
,sum(CONVERT(INT,PseudoDefects_Mark)) AS t18Num --伪缺陷印痕
|
||||
,sum(CONVERT(INT,BackScattering)) AS t19Num --背散射
|
||||
,sum(CONVERT(INT,FilmSensitizingScreen)) AS t20Num --胶片增感屏
|
||||
,sum(CONVERT(INT,WashPiece)) AS t21Num --洗片
|
||||
FROM HJGL_BO_RemakeReason AS rq
|
||||
LEFT JOIN HJGL_BO_QualityRating AS QualityRating ON QualityRating.QualityRatingId = rq.QualityRatingId
|
||||
LEFT JOIN HJGL_CH_TrustItem AS TrustItem ON TrustItem.CH_TrustItemID = QualityRating.CH_TrustItemID
|
||||
LEFT JOIN HJGL_CH_Trust AS trust ON trust.CH_TrustID = TrustItem.CH_TrustID
|
||||
WHERE (TrustItem.ShootDate>=@StartDate OR @StartDate IS NULL)
|
||||
AND (TrustItem.ShootDate<=@EndDate OR @EndDate IS NULL)
|
||||
GROUP BY trust.ProjectId,rq.CheckMan) v
|
||||
WHERE v.ProjectId = @projectId OR @projectId IS NULL
|
||||
|
||||
GO
|
||||
|
||||
|
|
@ -40,7 +40,7 @@
|
|||
FieldType="String" HeaderText="项目号" HeaderTextAlign="Center">
|
||||
</f:RenderField>
|
||||
<f:RenderField Width="180px" ColumnID="ProjectName" DataField="ProjectName" SortField="ProjectName"
|
||||
FieldType="String" HeaderText="项目名称" HeaderTextAlign="Center">
|
||||
FieldType="String" HeaderText="项目名称" HeaderTextAlign="Center" ExpandUnusedSpace="true">
|
||||
</f:RenderField>
|
||||
<f:RenderField Width="180px" ColumnID="ShortName" DataField="ShortName" SortField="ShortName"
|
||||
FieldType="String" HeaderText="项目号" HeaderTextAlign="Center">
|
||||
|
@ -82,31 +82,38 @@
|
|||
</f:Toolbar>
|
||||
</Toolbars>
|
||||
<Columns>
|
||||
<f:TemplateField HeaderText="序号" HeaderTextAlign="Center" Width="100px">
|
||||
<f:TemplateField HeaderText="序号" HeaderTextAlign="Center" Width="60px">
|
||||
<ItemTemplate>
|
||||
<asp:Label ID="labNumber" runat="server" Text=' <%# Container.DataItemIndex + 1%>'></asp:Label>
|
||||
<asp:HiddenField runat="server" ID="hidProjectId" Value='<%#Eval("ProjectId") %>'></asp:HiddenField>
|
||||
<asp:HiddenField runat="server" ID="hidNDTR_ID" Value='<%#Eval("NDTR_ID") %>'></asp:HiddenField>
|
||||
<asp:HiddenField runat="server" ID="hidJOTY_Group" Value='<%#Eval("JOTY_Group") %>'></asp:HiddenField>
|
||||
<asp:HiddenField runat="server" ID="hidVICheckDate" Value='<%#Eval("VICheckDate") %>'></asp:HiddenField>
|
||||
<asp:HiddenField runat="server" ID="hidJOT_WeldDate" Value='<%#Eval("JOT_WeldDate") %>'></asp:HiddenField>
|
||||
<asp:HiddenField runat="server" ID="hidProjectName" Value='<%#Eval("ProjectName") %>'></asp:HiddenField>
|
||||
<asp:HiddenField runat="server" ID="hidISO_ID" Value='<%#Eval("ISO_ID") %>'></asp:HiddenField>
|
||||
</ItemTemplate>
|
||||
</f:TemplateField>
|
||||
<f:RenderField HeaderText="施工号" ColumnID="ProjectCode" DataField="ProjectCode" SortField="ProjectCode"
|
||||
FieldType="String" HeaderTextAlign="Center" TextAlign="Left" Width="150px">
|
||||
</f:RenderField>
|
||||
<f:RenderField HeaderText="项目名称" ColumnID="ProjectName" DataField="ProjectName" SortField="ProjectName"
|
||||
FieldType="String" HeaderTextAlign="Center" TextAlign="Left" Width="240px">
|
||||
FieldType="String" HeaderTextAlign="Center" TextAlign="Left" Width="240px" ExpandUnusedSpace="true">
|
||||
</f:RenderField>
|
||||
<f:RenderField HeaderText="外观检查日期" ColumnID="VICheckDate" DataField="VICheckDate"
|
||||
SortField="VICheckDate" FieldType="Date" Renderer="Date" HeaderTextAlign="Center"
|
||||
TextAlign="Left" Width="150px">
|
||||
<f:RenderField HeaderText="管线号" ColumnID="ISO_IsoNo" DataField="ISO_IsoNo" SortField="ISO_IsoNo"
|
||||
FieldType="String" HeaderTextAlign="Center" TextAlign="Left" Width="220px">
|
||||
</f:RenderField>
|
||||
<f:RenderField HeaderText="批号" ColumnID="BatchCode" DataField="BatchCode" SortField="BatchCode"
|
||||
FieldType="String" HeaderTextAlign="Center" TextAlign="Left" Width="120px">
|
||||
</f:RenderField>
|
||||
<f:RenderField HeaderText="焊接日期" ColumnID="JOT_WeldDate" DataField="JOT_WeldDate"
|
||||
SortField="JOT_WeldDate" FieldType="Date" Renderer="Date" RendererArgument="yyyy-MM-dd" HeaderTextAlign="Center"
|
||||
TextAlign="Left" Width="110px">
|
||||
</f:RenderField>
|
||||
<f:RenderField HeaderText="检测比例" ColumnID="NDTR_Name" DataField="NDTR_Name" SortField="NDTR_Name"
|
||||
FieldType="String" HeaderTextAlign="Center" TextAlign="Left" Width="120px">
|
||||
FieldType="String" HeaderTextAlign="Center" TextAlign="Left" Width="100px">
|
||||
</f:RenderField>
|
||||
<f:RenderField HeaderText="焊缝类型" ColumnID="JointType" DataField="JointType" SortField="JointType"
|
||||
FieldType="String" HeaderTextAlign="Center" TextAlign="Left" Width="120px">
|
||||
FieldType="String" HeaderTextAlign="Center" TextAlign="Left" Width="100px">
|
||||
</f:RenderField>
|
||||
</Columns>
|
||||
</f:Grid>
|
||||
|
|
|
@ -48,21 +48,42 @@ namespace FineUIPro.Web.ContinuousPrint
|
|||
/// </summary>
|
||||
public void BindGrid1(string ProjectId)
|
||||
{
|
||||
string strSql = @" SELECT v.ProjectId,project.ProjectCode,project.ProjectName,v.JOTY_Group,
|
||||
(CASE WHEN v.JOTY_Group='1' THEN '对接焊缝' WHEN v.JOTY_Group='2' THEN '角焊缝'
|
||||
WHEN v.JOTY_Group='3' THEN '支管连接焊缝' END) AS JointType,
|
||||
v.VICheckDate,v.NDTR_ID,rate.NDTR_Name
|
||||
FROM
|
||||
(SELECT batch.ProjectId,batchDetail.VICheckDate,batch.NDTR_ID,jointType.JOTY_Group
|
||||
FROM dbo.HJGL_BO_BatchDetail batchDetail
|
||||
LEFT JOIN dbo.HJGL_BO_Batch batch ON batch.BatchId=batchDetail.BatchId
|
||||
LEFT JOIN dbo.HJGL_PW_JointInfo joint ON joint.JOT_ID=batchDetail.JOT_ID
|
||||
LEFT JOIN dbo.HJGL_BS_JointType jointType ON jointType.JOTY_ID = joint.JOTY_ID
|
||||
WHERE BatchDetail.VICheckDate IS NOT NULL
|
||||
GROUP BY batch.ProjectId,jointType.JOTY_Group,batchDetail.VICheckDate,batch.NDTR_ID) v
|
||||
LEFT JOIN dbo.Base_Project project ON project.ProjectId = v.ProjectId
|
||||
LEFT JOIN dbo.HJGL_BS_NDTRate rate ON rate.NDTR_ID = v.NDTR_ID
|
||||
where v.ProjectId= @ProjectId";
|
||||
//string strSql = @" SELECT v.ProjectId,project.ProjectCode,project.ProjectName,v.JOTY_Group,
|
||||
// (CASE WHEN v.JOTY_Group='1' THEN '对接焊缝' WHEN v.JOTY_Group='2' THEN '角焊缝'
|
||||
// WHEN v.JOTY_Group='3' THEN '支管连接焊缝' END) AS JointType,
|
||||
// v.VICheckDate,v.NDTR_ID,rate.NDTR_Name
|
||||
// FROM
|
||||
// (SELECT batch.ProjectId,batchDetail.VICheckDate,batch.NDTR_ID,jointType.JOTY_Group
|
||||
// FROM dbo.HJGL_BO_BatchDetail batchDetail
|
||||
// LEFT JOIN dbo.HJGL_BO_Batch batch ON batch.BatchId=batchDetail.BatchId
|
||||
// LEFT JOIN dbo.HJGL_PW_JointInfo joint ON joint.JOT_ID=batchDetail.JOT_ID
|
||||
// LEFT JOIN dbo.HJGL_BS_JointType jointType ON jointType.JOTY_ID = joint.JOTY_ID
|
||||
// WHERE BatchDetail.VICheckDate IS NOT NULL
|
||||
// GROUP BY batch.ProjectId,jointType.JOTY_Group,batchDetail.VICheckDate,batch.NDTR_ID) v
|
||||
// LEFT JOIN dbo.Base_Project project ON project.ProjectId = v.ProjectId
|
||||
// LEFT JOIN dbo.HJGL_BS_NDTRate rate ON rate.NDTR_ID = v.NDTR_ID
|
||||
// where v.ProjectId= @ProjectId";
|
||||
string strSql = @" select distinct batch.ProjectId,
|
||||
Project.ProjectCode,
|
||||
Project.ProjectName,
|
||||
weldReport.JOT_WeldDate,
|
||||
(CASE WHEN jointType.JOTY_Group='1' THEN '对接焊缝'
|
||||
WHEN jointType.JOTY_Group='2' THEN '角焊缝'
|
||||
WHEN jointType.JOTY_Group='3' THEN '支管连接焊缝' END) AS JointType,
|
||||
jointType.JOTY_Group,
|
||||
rate.NDTR_ID,
|
||||
rate.NDTR_Name,
|
||||
isoInfo.ISO_ID,
|
||||
isoInfo.ISO_IsoNo,
|
||||
batch.BatchCode
|
||||
from HJGL_BO_BatchDetail batchDetail
|
||||
JOIN dbo.HJGL_BO_Batch batch ON batch.BatchId=batchDetail.BatchId
|
||||
LEFT JOIN dbo.HJGL_PW_JointInfo joint ON joint.JOT_ID=batchDetail.JOT_ID
|
||||
left join HJGL_PW_IsoInfo isoInfo on isoInfo.ISO_ID=joint.ISO_ID
|
||||
LEFT JOIN dbo.Base_Project AS Project ON Project.ProjectId = joint.ProjectId
|
||||
left join HJGL_BO_WeldReportMain weldReport on weldReport.DReportID = joint.DReportID
|
||||
LEFT JOIN dbo.HJGL_BS_JointType jointType ON jointType.JOTY_ID = joint.JOTY_ID
|
||||
LEFT JOIN dbo.HJGL_BS_NDTRate rate ON rate.NDTR_ID = batch.NDTR_ID where batch.ProjectId=@ProjectId ";
|
||||
List<SqlParameter> listStr = new List<SqlParameter>();
|
||||
listStr.Add(new SqlParameter("@ProjectId", ProjectId));
|
||||
SqlParameter[] parameter = listStr.ToArray();
|
||||
|
@ -184,14 +205,16 @@ namespace FineUIPro.Web.ContinuousPrint
|
|||
System.Web.UI.WebControls.HiddenField hidProjectId = Grid2.Rows[gi].FindControl("hidProjectId") as System.Web.UI.WebControls.HiddenField;
|
||||
System.Web.UI.WebControls.HiddenField hidNDTR_ID = Grid2.Rows[gi].FindControl("hidNDTR_ID") as System.Web.UI.WebControls.HiddenField;
|
||||
System.Web.UI.WebControls.HiddenField hidJOTY_Group = Grid2.Rows[gi].FindControl("hidJOTY_Group") as System.Web.UI.WebControls.HiddenField;
|
||||
System.Web.UI.WebControls.HiddenField hidVICheckDate = Grid2.Rows[gi].FindControl("hidVICheckDate") as System.Web.UI.WebControls.HiddenField;
|
||||
System.Web.UI.WebControls.HiddenField hidJOT_WeldDate = Grid2.Rows[gi].FindControl("hidJOT_WeldDate") as System.Web.UI.WebControls.HiddenField;
|
||||
System.Web.UI.WebControls.HiddenField hidProjectName = Grid2.Rows[gi].FindControl("hidProjectName") as System.Web.UI.WebControls.HiddenField;
|
||||
System.Web.UI.WebControls.HiddenField hidISO_ID = Grid2.Rows[gi].FindControl("hidISO_ID") as System.Web.UI.WebControls.HiddenField;
|
||||
|
||||
var listStr = new List<SqlParameter>();
|
||||
listStr.Add(new SqlParameter("@ProjectId", hidProjectId.Value));
|
||||
listStr.Add(new SqlParameter("@NDTR_ID", hidNDTR_ID.Value));
|
||||
listStr.Add(new SqlParameter("@JOTY_Group", hidJOTY_Group.Value));
|
||||
listStr.Add(new SqlParameter("@VICheckDate", hidVICheckDate.Value));
|
||||
listStr.Add(new SqlParameter("@WeldingDate", hidJOT_WeldDate.Value));
|
||||
listStr.Add(new SqlParameter("@ISO_ID", hidISO_ID.Value));
|
||||
|
||||
SqlParameter[] parameter = listStr.ToArray();
|
||||
var tb = SQLHelper.GetDataTableRunProc("HJGL_sp_WeldInspectionCheckRecordNew", parameter);
|
||||
|
|
|
@ -193,13 +193,13 @@ namespace FineUIPro.Web.ContinuousPrint {
|
|||
protected global::System.Web.UI.WebControls.HiddenField hidJOTY_Group;
|
||||
|
||||
/// <summary>
|
||||
/// hidVICheckDate 控件。
|
||||
/// hidJOT_WeldDate 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.HiddenField hidVICheckDate;
|
||||
protected global::System.Web.UI.WebControls.HiddenField hidJOT_WeldDate;
|
||||
|
||||
/// <summary>
|
||||
/// hidProjectName 控件。
|
||||
|
@ -210,6 +210,15 @@ namespace FineUIPro.Web.ContinuousPrint {
|
|||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.HiddenField hidProjectName;
|
||||
|
||||
/// <summary>
|
||||
/// hidISO_ID 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.HiddenField hidISO_ID;
|
||||
|
||||
/// <summary>
|
||||
/// Window1 控件。
|
||||
/// </summary>
|
||||
|
|
|
@ -1,54 +1,201 @@
|
|||
|
||||
错误信息开始=====>
|
||||
错误类型:SqlException
|
||||
错误信息:在与 SQL Server 建立连接时出现与网络相关的或特定于实例的错误。未找到或无法访问服务器。请验证实例名称是否正确并且 SQL Server 已配置为允许远程连接。 (provider: SQL Network Interfaces, error: 26 - 定位指定的服务器/实例时出错)
|
||||
错误类型:HttpException
|
||||
错误信息:DataBinding:“System.Data.DataRowView”不包含名为“NDTR_ID”的属性。
|
||||
错误堆栈:
|
||||
在 System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, SqlCredential credential, Object providerInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance, SqlConnectionString userConnectionOptions, SessionData reconnectSessionData, DbConnectionPool pool, String accessToken, Boolean applyTransientFaultHandling, SqlAuthenticationProviderManager sqlAuthProviderManager)
|
||||
在 System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection, DbConnectionOptions userOptions)
|
||||
在 System.Data.ProviderBase.DbConnectionFactory.CreatePooledConnection(DbConnectionPool pool, DbConnection owningObject, DbConnectionOptions options, DbConnectionPoolKey poolKey, DbConnectionOptions userOptions)
|
||||
在 System.Data.ProviderBase.DbConnectionPool.CreateObject(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
|
||||
在 System.Data.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
|
||||
在 System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection)
|
||||
在 System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection)
|
||||
在 System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
|
||||
在 System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
|
||||
在 System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry)
|
||||
在 System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
|
||||
在 System.Data.SqlClient.SqlConnection.Open()
|
||||
在 System.Data.Linq.SqlClient.SqlConnectionManager.UseConnection(IConnectionUser user)
|
||||
在 System.Data.Linq.SqlClient.SqlProvider.get_IsSqlCe()
|
||||
在 System.Data.Linq.SqlClient.SqlProvider.InitializeProviderMode()
|
||||
在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
|
||||
在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
|
||||
在 BLL.Sys_UserService.UserLogOn(String account, String password, Boolean rememberMe, Page page) 位置 E:\鼎盛\HJGL_DS\HJGL_DS\BLL\Common\SysManage\Sys_UserService.cs:行号 39
|
||||
在 FineUIPro.Web.Login.btnLogin_Click(Object sender, EventArgs e)
|
||||
在 FineUIPro.Button.OnClick(EventArgs e)
|
||||
在 System.Web.UI.DataBinder.GetPropertyValue(Object container, String propName)
|
||||
在 System.Web.UI.DataBinder.Eval(Object container, String[] expressionParts)
|
||||
在 ASP.continuousprint_weldingjointinspection_aspx.__DataBindinghidNDTR_ID(Object sender, EventArgs e) 位置 e:\鼎盛\HJGL_DS\HJGL_DS\FineUIPro.Web\ContinuousPrint\WeldingJointInspection.aspx:行号 89
|
||||
在 System.Web.UI.Control.OnDataBinding(EventArgs e)
|
||||
在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
|
||||
在 System.Web.UI.Control.DataBindChildren()
|
||||
在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
|
||||
在 FineUIPro.GridRow.NeyGkTAyBZXelPYcHqKACezTrQMaA()
|
||||
在 FineUIPro.Grid.NeyGkTAyBZXelPYcHqKACezTrQMaA(Int32 , Object )
|
||||
在 FineUIPro.Grid.FmLkfIWGspEZkSaigqKtQvIROoZU(DataTable , Boolean )
|
||||
在 FineUIPro.Grid.DataBind(Boolean keepCurrentRows)
|
||||
在 FineUIPro.Grid.OnRowClick(GridRowClickEventArgs e)
|
||||
在 FineUIPro.Grid.RaisePostBackEvent(String eventArgument)
|
||||
在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
|
||||
出错时间:05/27/2025 16:56:28
|
||||
出错文件:http://localhost:64304/Login.aspx
|
||||
出错时间:06/16/2025 11:31:09
|
||||
出错文件:http://localhost:64304/ContinuousPrint/WeldingJointInspection.aspx
|
||||
IP地址:::1
|
||||
操作人员:管理员
|
||||
|
||||
出错时间:05/27/2025 16:56:28
|
||||
出错时间:06/16/2025 11:31:09
|
||||
|
||||
|
||||
错误信息开始=====>
|
||||
错误类型:XmlException
|
||||
错误信息:名称不能以“<”字符(十六进制值 0x3C)开头。 第 14 行,位置 2。
|
||||
错误类型:HttpException
|
||||
错误信息:DataBinding:“System.Data.DataRowView”不包含名为“NDTR_ID”的属性。
|
||||
错误堆栈:
|
||||
在 System.Xml.XmlTextReaderImpl.Throw(Exception e)
|
||||
在 System.Xml.XmlTextReaderImpl.Throw(String res, String[] args)
|
||||
在 System.Xml.XmlTextReaderImpl.ParseQName(Boolean isQName, Int32 startOffset, Int32& colonPos)
|
||||
在 System.Xml.XmlTextReaderImpl.ParseElement()
|
||||
在 System.Xml.XmlTextReaderImpl.ParseElementContent()
|
||||
在 System.Xml.XmlTextReaderImpl.Read()
|
||||
在 System.Xml.XmlTextReader.Read()
|
||||
在 System.Configuration.XmlUtil.CopyXmlNode(XmlUtilWriter utilWriter)
|
||||
在 System.Configuration.XmlUtil.CopyElement(XmlUtilWriter utilWriter)
|
||||
在 System.Configuration.XmlUtil.CopySection()
|
||||
在 System.Configuration.BaseConfigurationRecord.ScanSectionsRecursive(XmlUtil xmlUtil, String parentConfigKey, Boolean inLocation, String locationSubPath, OverrideModeSetting overrideMode, Boolean skipInChildApps)
|
||||
在 System.Configuration.BaseConfigurationRecord.ScanSections(XmlUtil xmlUtil)
|
||||
在 System.Configuration.BaseConfigurationRecord.InitConfigFromFile()
|
||||
出错时间:06/09/2025 10:47:53
|
||||
在 System.Web.UI.DataBinder.GetPropertyValue(Object container, String propName)
|
||||
在 System.Web.UI.DataBinder.Eval(Object container, String[] expressionParts)
|
||||
在 ASP.continuousprint_weldingjointinspection_aspx.__DataBindinghidNDTR_ID(Object sender, EventArgs e) 位置 e:\鼎盛\HJGL_DS\HJGL_DS\FineUIPro.Web\ContinuousPrint\WeldingJointInspection.aspx:行号 89
|
||||
在 System.Web.UI.Control.OnDataBinding(EventArgs e)
|
||||
在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
|
||||
在 System.Web.UI.Control.DataBindChildren()
|
||||
在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
|
||||
在 FineUIPro.GridRow.NeyGkTAyBZXelPYcHqKACezTrQMaA()
|
||||
在 FineUIPro.Grid.NeyGkTAyBZXelPYcHqKACezTrQMaA(Int32 , Object )
|
||||
在 FineUIPro.Grid.FmLkfIWGspEZkSaigqKtQvIROoZU(DataTable , Boolean )
|
||||
在 FineUIPro.Grid.DataBind(Boolean keepCurrentRows)
|
||||
在 FineUIPro.Grid.OnRowClick(GridRowClickEventArgs e)
|
||||
在 FineUIPro.Grid.RaisePostBackEvent(String eventArgument)
|
||||
在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
|
||||
出错时间:06/16/2025 11:31:11
|
||||
出错文件:http://localhost:64304/ContinuousPrint/WeldingJointInspection.aspx
|
||||
IP地址:::1
|
||||
操作人员:管理员
|
||||
|
||||
出错时间:06/09/2025 10:47:53
|
||||
出错时间:06/16/2025 11:31:11
|
||||
|
||||
|
||||
错误信息开始=====>
|
||||
错误类型:HttpException
|
||||
错误信息:DataBinding:“System.Data.DataRowView”不包含名为“NDTR_ID”的属性。
|
||||
错误堆栈:
|
||||
在 System.Web.UI.DataBinder.GetPropertyValue(Object container, String propName)
|
||||
在 System.Web.UI.DataBinder.Eval(Object container, String[] expressionParts)
|
||||
在 ASP.continuousprint_weldingjointinspection_aspx.__DataBindinghidNDTR_ID(Object sender, EventArgs e) 位置 e:\鼎盛\HJGL_DS\HJGL_DS\FineUIPro.Web\ContinuousPrint\WeldingJointInspection.aspx:行号 89
|
||||
在 System.Web.UI.Control.OnDataBinding(EventArgs e)
|
||||
在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
|
||||
在 System.Web.UI.Control.DataBindChildren()
|
||||
在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
|
||||
在 FineUIPro.GridRow.NeyGkTAyBZXelPYcHqKACezTrQMaA()
|
||||
在 FineUIPro.Grid.NeyGkTAyBZXelPYcHqKACezTrQMaA(Int32 , Object )
|
||||
在 FineUIPro.Grid.FmLkfIWGspEZkSaigqKtQvIROoZU(DataTable , Boolean )
|
||||
在 FineUIPro.Grid.DataBind(Boolean keepCurrentRows)
|
||||
在 FineUIPro.Grid.OnRowClick(GridRowClickEventArgs e)
|
||||
在 FineUIPro.Grid.RaisePostBackEvent(String eventArgument)
|
||||
在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
|
||||
出错时间:06/16/2025 11:31:13
|
||||
出错文件:http://localhost:64304/ContinuousPrint/WeldingJointInspection.aspx
|
||||
IP地址:::1
|
||||
操作人员:管理员
|
||||
|
||||
出错时间:06/16/2025 11:31:13
|
||||
|
||||
|
||||
错误信息开始=====>
|
||||
错误类型:HttpException
|
||||
错误信息:DataBinding:“System.Data.DataRowView”不包含名为“NDTR_ID”的属性。
|
||||
错误堆栈:
|
||||
在 System.Web.UI.DataBinder.GetPropertyValue(Object container, String propName)
|
||||
在 System.Web.UI.DataBinder.Eval(Object container, String[] expressionParts)
|
||||
在 ASP.continuousprint_weldingjointinspection_aspx.__DataBindinghidNDTR_ID(Object sender, EventArgs e) 位置 e:\鼎盛\HJGL_DS\HJGL_DS\FineUIPro.Web\ContinuousPrint\WeldingJointInspection.aspx:行号 89
|
||||
在 System.Web.UI.Control.OnDataBinding(EventArgs e)
|
||||
在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
|
||||
在 System.Web.UI.Control.DataBindChildren()
|
||||
在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
|
||||
在 FineUIPro.GridRow.NeyGkTAyBZXelPYcHqKACezTrQMaA()
|
||||
在 FineUIPro.Grid.NeyGkTAyBZXelPYcHqKACezTrQMaA(Int32 , Object )
|
||||
在 FineUIPro.Grid.FmLkfIWGspEZkSaigqKtQvIROoZU(DataTable , Boolean )
|
||||
在 FineUIPro.Grid.DataBind(Boolean keepCurrentRows)
|
||||
在 FineUIPro.Grid.OnRowClick(GridRowClickEventArgs e)
|
||||
在 FineUIPro.Grid.RaisePostBackEvent(String eventArgument)
|
||||
在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
|
||||
出错时间:06/16/2025 11:31:15
|
||||
出错文件:http://localhost:64304/ContinuousPrint/WeldingJointInspection.aspx
|
||||
IP地址:::1
|
||||
操作人员:管理员
|
||||
|
||||
出错时间:06/16/2025 11:31:15
|
||||
|
||||
|
||||
错误信息开始=====>
|
||||
错误类型:HttpException
|
||||
错误信息:DataBinding:“System.Data.DataRowView”不包含名为“NDTR_ID”的属性。
|
||||
错误堆栈:
|
||||
在 System.Web.UI.DataBinder.GetPropertyValue(Object container, String propName)
|
||||
在 System.Web.UI.DataBinder.Eval(Object container, String[] expressionParts)
|
||||
在 ASP.continuousprint_weldingjointinspection_aspx.__DataBindinghidNDTR_ID(Object sender, EventArgs e) 位置 e:\鼎盛\HJGL_DS\HJGL_DS\FineUIPro.Web\ContinuousPrint\WeldingJointInspection.aspx:行号 89
|
||||
在 System.Web.UI.Control.OnDataBinding(EventArgs e)
|
||||
在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
|
||||
在 System.Web.UI.Control.DataBindChildren()
|
||||
在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
|
||||
在 FineUIPro.GridRow.NeyGkTAyBZXelPYcHqKACezTrQMaA()
|
||||
在 FineUIPro.Grid.NeyGkTAyBZXelPYcHqKACezTrQMaA(Int32 , Object )
|
||||
在 FineUIPro.Grid.FmLkfIWGspEZkSaigqKtQvIROoZU(DataTable , Boolean )
|
||||
在 FineUIPro.Grid.DataBind(Boolean keepCurrentRows)
|
||||
在 FineUIPro.Grid.OnRowClick(GridRowClickEventArgs e)
|
||||
在 FineUIPro.Grid.RaisePostBackEvent(String eventArgument)
|
||||
在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
|
||||
出错时间:06/16/2025 11:31:18
|
||||
出错文件:http://localhost:64304/ContinuousPrint/WeldingJointInspection.aspx
|
||||
IP地址:::1
|
||||
操作人员:管理员
|
||||
|
||||
出错时间:06/16/2025 11:31:18
|
||||
|
||||
|
||||
错误信息开始=====>
|
||||
错误类型:HttpException
|
||||
错误信息:DataBinding:“System.Data.DataRowView”不包含名为“NDTR_ID”的属性。
|
||||
错误堆栈:
|
||||
在 System.Web.UI.DataBinder.GetPropertyValue(Object container, String propName)
|
||||
在 System.Web.UI.DataBinder.Eval(Object container, String[] expressionParts)
|
||||
在 ASP.continuousprint_weldingjointinspection_aspx.__DataBindinghidNDTR_ID(Object sender, EventArgs e) 位置 e:\鼎盛\HJGL_DS\HJGL_DS\FineUIPro.Web\ContinuousPrint\WeldingJointInspection.aspx:行号 89
|
||||
在 System.Web.UI.Control.OnDataBinding(EventArgs e)
|
||||
在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
|
||||
在 System.Web.UI.Control.DataBindChildren()
|
||||
在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
|
||||
在 FineUIPro.GridRow.NeyGkTAyBZXelPYcHqKACezTrQMaA()
|
||||
在 FineUIPro.Grid.NeyGkTAyBZXelPYcHqKACezTrQMaA(Int32 , Object )
|
||||
在 FineUIPro.Grid.FmLkfIWGspEZkSaigqKtQvIROoZU(DataTable , Boolean )
|
||||
在 FineUIPro.Grid.DataBind(Boolean keepCurrentRows)
|
||||
在 FineUIPro.Grid.OnRowClick(GridRowClickEventArgs e)
|
||||
在 FineUIPro.Grid.RaisePostBackEvent(String eventArgument)
|
||||
在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
|
||||
出错时间:06/16/2025 11:31:20
|
||||
出错文件:http://localhost:64304/ContinuousPrint/WeldingJointInspection.aspx
|
||||
IP地址:::1
|
||||
操作人员:管理员
|
||||
|
||||
出错时间:06/16/2025 11:31:20
|
||||
|
||||
|
||||
错误信息开始=====>
|
||||
错误类型:HttpException
|
||||
错误信息:DataBinding:“System.Data.DataRowView”不包含名为“NDTR_ID”的属性。
|
||||
错误堆栈:
|
||||
在 System.Web.UI.DataBinder.GetPropertyValue(Object container, String propName)
|
||||
在 System.Web.UI.DataBinder.Eval(Object container, String[] expressionParts)
|
||||
在 ASP.continuousprint_weldingjointinspection_aspx.__DataBindinghidNDTR_ID(Object sender, EventArgs e) 位置 e:\鼎盛\HJGL_DS\HJGL_DS\FineUIPro.Web\ContinuousPrint\WeldingJointInspection.aspx:行号 89
|
||||
在 System.Web.UI.Control.OnDataBinding(EventArgs e)
|
||||
在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
|
||||
在 System.Web.UI.Control.DataBindChildren()
|
||||
在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
|
||||
在 FineUIPro.GridRow.NeyGkTAyBZXelPYcHqKACezTrQMaA()
|
||||
在 FineUIPro.Grid.NeyGkTAyBZXelPYcHqKACezTrQMaA(Int32 , Object )
|
||||
在 FineUIPro.Grid.FmLkfIWGspEZkSaigqKtQvIROoZU(DataTable , Boolean )
|
||||
在 FineUIPro.Grid.DataBind(Boolean keepCurrentRows)
|
||||
在 FineUIPro.Grid.OnRowClick(GridRowClickEventArgs e)
|
||||
在 FineUIPro.Grid.RaisePostBackEvent(String eventArgument)
|
||||
在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
|
||||
出错时间:06/16/2025 11:31:20
|
||||
出错文件:http://localhost:64304/ContinuousPrint/WeldingJointInspection.aspx
|
||||
IP地址:::1
|
||||
操作人员:管理员
|
||||
|
||||
出错时间:06/16/2025 11:31:20
|
||||
|
||||
|
||||
错误信息开始=====>
|
||||
错误类型:ViewStateException
|
||||
错误信息:无效的视图状态。
|
||||
Client IP: ::1
|
||||
Port: 8742
|
||||
Referer: http://localhost:64304/ContinuousPrint/WeldingJointInspection.aspx
|
||||
Path: /ContinuousPrint/WeldingJointInspection.aspx
|
||||
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0
|
||||
ViewState: /wEdADGnm4eusMgLI95ZcqpaSV8K+3GqxzG2J+U/g9/cRF+FhcCurPTiWy9daDa4Uu+xZs2OrJUAsVE+/SXcVFgGfTy1R1Gs9VzqQdsrcDHk38iP40dbnKKQjKuUZXtr6/Z5d0qe7XOxkUtMgefGofIRNAr2HBHGQjGpXVuLC49UfDySYsjlQKui4Hc5dQgJSnoYpDs3Z3I056Ac79PwQnyhFOYSqZTrH9cCRltmlIWllnygsyKrYrGqdqKi2qwFgRXmlBBTtjHnur+0tovaRs6n+I2rPgYKrAu00xIgQ0dDgbw+iRbmsWjnH8y/fbFALLs/oLVXDCMnc1gnI1/KnvWL9mfhrpEVymVMrEirjv+x+WqRJH0T+xR5U/yyGb9Q0SuQakQ2rjeVHZNT8lNoqBO01TSsAary/NBCOGB6teTRFWS9+/45gi1IyT/9KM3ZldJ1q0Li8AJm2tU38hOGyYRrqCUVwQXSBAdwWHC1B5IdZI1vA4xHDdZrmHe0qY8eXW6qXe1PnBqvn6SnA5+0qOT1Qkn28tVWnqw9hllXvrroeXoTQ/4DShPiaOg/F695Ody68UEIz3E0nC90SalNIdgxQWu5Dsqurg8Ec7R0WUNBH70082mm1s6XgB4CXaGofeTydOMFUKheZf19UlmK2O8CyWtid5ETiyReB7ueUsC/dyOf8RgK6kZaNeA3B/UGR+...
|
||||
错误堆栈:
|
||||
|
||||
出错时间:06/16/2025 15:29:37
|
||||
出错文件:http://localhost:64304/ContinuousPrint/WeldingJointInspection.aspx
|
||||
IP地址:::1
|
||||
操作人员:管理员
|
||||
|
||||
出错时间:06/16/2025 15:29:37
|
||||
|
||||
|
|
|
@ -0,0 +1,299 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="06/11/2025 22:22:55" ReportInfo.Modified="06/11/2025 23:06:26" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<ScriptText>using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Windows.Forms;
|
||||
using System.Drawing;
|
||||
using System.Data;
|
||||
using FastReport;
|
||||
using FastReport.Data;
|
||||
using FastReport.Dialog;
|
||||
using FastReport.Barcode;
|
||||
using FastReport.Table;
|
||||
using FastReport.Utils;
|
||||
|
||||
namespace FastReport
|
||||
{
|
||||
public class ReportScript
|
||||
{
|
||||
|
||||
private void Table2_ManualBuild(object sender, EventArgs e)
|
||||
{
|
||||
DataSourceBase rowData = Report.GetDataSource("Data");
|
||||
// init the data source
|
||||
rowData.Init();
|
||||
|
||||
// print the first table row - it is a header
|
||||
|
||||
// now enumerate the data source and print the table body
|
||||
while (rowData.HasMoreRows)
|
||||
{
|
||||
// print the table body
|
||||
Table2.PrintRow(0);
|
||||
Table2.PrintColumns();
|
||||
|
||||
// go next data source row
|
||||
rowData.Next();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</ScriptText>
|
||||
<Dictionary>
|
||||
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QFZhz3ws8ERKv3fZ5ebfi6Nw==">
|
||||
<TableDataSource Name="Data" DataType="System.Int32" PropName="Attach_Image" Enabled="true" TableName="Data">
|
||||
<Column Name="CheckMan" DataType="System.String" PropName="attach_image_id"/>
|
||||
<Column Name="t1Num" DataType="System.String" PropName="image_series"/>
|
||||
<Column Name="t2Num" DataType="System.String" PropName="file_name"/>
|
||||
<Column Name="t3Num" DataType="System.String" PropName="file_size"/>
|
||||
<Column Name="t4Num" DataType="System.String" PropName="file_type"/>
|
||||
<Column Name="t5Num" DataType="System.String" PropName="created_date"/>
|
||||
<Column Name="t6Num" DataType="System.String" PropName="created_by"/>
|
||||
<Column Name="t7Num" DataType="System.String" PropName="series_desc"/>
|
||||
<Column Name="t8Num" DataType="System.String" PropName="file_path"/>
|
||||
<Column Name="t9Num" DataType="System.String" PropName="series_timestamp"/>
|
||||
<Column Name="t10Num" DataType="System.String" PropName="Column"/>
|
||||
<Column Name="t11Num" DataType="System.String" PropName="Column"/>
|
||||
<Column Name="t12Num" DataType="System.String" PropName="Column"/>
|
||||
<Column Name="t13Num" DataType="System.String" PropName="Column"/>
|
||||
<Column Name="t14Num" DataType="System.String" PropName="Column"/>
|
||||
<Column Name="t15Num" DataType="System.String" PropName="Column"/>
|
||||
<Column Name="t16Num" DataType="System.String" PropName="Column"/>
|
||||
<Column Name="t17Num" DataType="System.String" PropName="Column"/>
|
||||
<Column Name="t18Num" DataType="System.String" PropName="Column"/>
|
||||
<Column Name="t19Num" DataType="System.String" PropName="Column"/>
|
||||
<Column Name="t20Num" DataType="System.String" PropName="Column"/>
|
||||
<Column Name="t21Num" DataType="System.String" PropName="Column"/>
|
||||
</TableDataSource>
|
||||
</MsSqlDataConnection>
|
||||
<Parameter Name="varValue" DataType="System.String"/>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" Landscape="true" PaperWidth="297" PaperHeight="210" LeftMargin="20" TopMargin="25" RightMargin="20" BottomMargin="20" FirstPageSource="4" OtherPagesSource="4" Guides="0,963.91,76.03,439,38.23,57.13,515.46,47.68,66.58,228.95,305.41,601.37,639.6,677.83,716.06,792.52,859.1,925.68,114.26,152.49,190.72,267.18,343.64,381.87,477.23,553.69,754.29">
|
||||
<PageHeaderBand Name="PageHeader1" Width="971.46" Height="113.4" Guides="0,113.4,28.35,85.05,56.7">
|
||||
<TableObject Name="Table1" Width="963.91" Height="113.4">
|
||||
<TableColumn Name="Column1" Width="76.03"/>
|
||||
<TableColumn Name="Column2" Width="38.23"/>
|
||||
<TableColumn Name="Column3" Width="38.23"/>
|
||||
<TableColumn Name="Column4" Width="38.23"/>
|
||||
<TableColumn Name="Column5" Width="38.23"/>
|
||||
<TableColumn Name="Column6" Width="38.23"/>
|
||||
<TableColumn Name="Column7" Width="38.23"/>
|
||||
<TableColumn Name="Column8" Width="38.23"/>
|
||||
<TableColumn Name="Column9" Width="38.23"/>
|
||||
<TableColumn Name="Column10" Width="57.13"/>
|
||||
<TableColumn Name="Column11" Width="38.23"/>
|
||||
<TableColumn Name="Column12" Width="38.23"/>
|
||||
<TableColumn Name="Column13" Width="38.23"/>
|
||||
<TableColumn Name="Column14" Width="47.68"/>
|
||||
<TableColumn Name="Column15" Width="38.23"/>
|
||||
<TableColumn Name="Column16" Width="38.23"/>
|
||||
<TableColumn Name="Column17" Width="38.23"/>
|
||||
<TableColumn Name="Column18" Width="38.23"/>
|
||||
<TableColumn Name="Column19" Width="38.23"/>
|
||||
<TableColumn Name="Column20" Width="66.58"/>
|
||||
<TableColumn Name="Column21" Width="66.58"/>
|
||||
<TableColumn Name="Column22" Width="38.23"/>
|
||||
<TableRow Name="Row1" Height="28.35">
|
||||
<TableCell Name="Cell1" Border.Lines="All" Text="部门" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell2" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="9"/>
|
||||
<TableCell Name="Cell3" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell4" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell5" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell26" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell27" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell28" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell29" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell30" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell31" Border.Lines="All" Text="时间段" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell32" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell33" Border.Lines="All" Text="[varValue]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="10"/>
|
||||
<TableCell Name="Cell34" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell35" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell36" Border.Lines="All" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell37" Border.Lines="All" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell38" Border.Lines="All" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell39" Border.Lines="All" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell40" Border.Lines="All" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell41" Border.Lines="All" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell42" Border.Lines="All" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row2" Height="28.35">
|
||||
<TableCell Name="Cell6" Border.Lines="All" Text="/" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" RowSpan="2"/>
|
||||
<TableCell Name="Cell7" Border.Lines="All" Text="重拍原因及数量(张)" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="21"/>
|
||||
<TableCell Name="Cell8" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell9" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell10" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell43" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell44" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell45" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell46" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell47" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell48" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell49" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell50" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell51" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell52" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell53" Border.Lines="All" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell54" Border.Lines="All" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell55" Border.Lines="All" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell56" Border.Lines="All" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell57" Border.Lines="All" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell58" Border.Lines="All" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell59" Border.Lines="All" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row3" Height="28.35">
|
||||
<TableCell Name="Cell11" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell12" Border.Lines="All" Text="铅字编号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="4"/>
|
||||
<TableCell Name="Cell13" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell14" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell15" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell60" Border.Lines="All" Text="像质计" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell61" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell62" Border.Lines="All" Text="射线场" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="3"/>
|
||||
<TableCell Name="Cell63" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell64" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell65" Border.Lines="All" Text="黑度" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell66" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell67" Border.Lines="All" Text="椭圆开口" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell68" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell69" Border.Lines="All" Text="底片偏移" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" RowSpan="2"/>
|
||||
<TableCell Name="Cell70" Border.Lines="All" Text="缺片重影" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" RowSpan="2"/>
|
||||
<TableCell Name="Cell71" Border.Lines="All" Text="位置不符" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" RowSpan="2"/>
|
||||
<TableCell Name="Cell72" Border.Lines="All" Text="伪缺陷" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell73" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell74" Border.Lines="All" Text="背散射" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" RowSpan="2"/>
|
||||
<TableCell Name="Cell75" Border.Lines="All" Text="胶片增感屏" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" RowSpan="2"/>
|
||||
<TableCell Name="Cell76" Border.Lines="All" Text="洗片" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" RowSpan="2"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row4" Height="28.35">
|
||||
<TableCell Name="Cell16" Border.Lines="All" Text="检测人员" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell17" Border.Lines="All" Text="错误" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell18" Border.Lines="All" Text="缺失" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell19" Border.Lines="All" Text="位置" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell20" Border.Lines="All" Text="移位" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell77" Border.Lines="All" Text="错误" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell78" Border.Lines="All" Text="缺失" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell79" Border.Lines="All" Text="倾斜" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell80" Border.Lines="All" Text="白头" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell81" Border.Lines="All" Text="焦距小" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell82" Border.Lines="All" Text="过高" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell83" Border.Lines="All" Text="过低" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell84" Border.Lines="All" Text="过大" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell85" Border.Lines="All" Text="过小" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell86" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell87" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell88" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell89" Border.Lines="All" Text="障碍" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell90" Border.Lines="All" Text="印痕" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell91" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell92" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell93" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</PageHeaderBand>
|
||||
<DataBand Name="Data1" Top="117.4" Width="971.46" Height="28.35" Guides="0,28.35">
|
||||
<TableObject Name="Table2" Width="963.91" Height="28.35" ManualBuildEvent="Table2_ManualBuild">
|
||||
<TableColumn Name="Column23" Width="76.03"/>
|
||||
<TableColumn Name="Column24" Width="38.23"/>
|
||||
<TableColumn Name="Column25" Width="38.23"/>
|
||||
<TableColumn Name="Column26" Width="38.23"/>
|
||||
<TableColumn Name="Column27" Width="38.23"/>
|
||||
<TableColumn Name="Column28" Width="38.23"/>
|
||||
<TableColumn Name="Column29" Width="38.23"/>
|
||||
<TableColumn Name="Column30" Width="38.23"/>
|
||||
<TableColumn Name="Column31" Width="38.23"/>
|
||||
<TableColumn Name="Column32" Width="57.13"/>
|
||||
<TableColumn Name="Column33" Width="38.23"/>
|
||||
<TableColumn Name="Column34" Width="38.23"/>
|
||||
<TableColumn Name="Column35" Width="38.23"/>
|
||||
<TableColumn Name="Column36" Width="47.68"/>
|
||||
<TableColumn Name="Column37" Width="38.23"/>
|
||||
<TableColumn Name="Column38" Width="38.23"/>
|
||||
<TableColumn Name="Column39" Width="38.23"/>
|
||||
<TableColumn Name="Column40" Width="38.23"/>
|
||||
<TableColumn Name="Column41" Width="38.23"/>
|
||||
<TableColumn Name="Column42" Width="66.58"/>
|
||||
<TableColumn Name="Column43" Width="66.58"/>
|
||||
<TableColumn Name="Column44" Width="38.23"/>
|
||||
<TableRow Name="Row8" Height="28.35">
|
||||
<TableCell Name="Cell160" Border.Lines="All" Text="[Data.CheckMan]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell161" Border.Lines="All" Text="[Data.t1Num]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell162" Border.Lines="All" Text="[Data.t2Num]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell163" Border.Lines="All" Text="[Data.t3Num]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell164" Border.Lines="All" Text="[Data.t4Num]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell165" Border.Lines="All" Text="[Data.t5Num]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell166" Border.Lines="All" Text="[Data.t6Num]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell167" Border.Lines="All" Text="[Data.t7Num]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell168" Border.Lines="All" Text="[Data.t8Num]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell169" Border.Lines="All" Text="[Data.t9Num]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell170" Border.Lines="All" Text="[Data.t10Num]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell171" Border.Lines="All" Text="[Data.t11Num]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell172" Border.Lines="All" Text="[Data.t12Num]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell173" Border.Lines="All" Text="[Data.t13Num]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell174" Border.Lines="All" Text="[Data.t14Num]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell175" Border.Lines="All" Text="[Data.t15Num]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell176" Border.Lines="All" Text="[Data.t16Num]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell177" Border.Lines="All" Text="[Data.t17Num]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell178" Border.Lines="All" Text="[Data.t18Num]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell179" Border.Lines="All" Text="[Data.t19Num]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell180" Border.Lines="All" Text="[Data.t20Num]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell181" Border.Lines="All" Text="[Data.t21Num]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
<ColumnFooterBand Name="ColumnFooter1" Top="182.1" Width="971.46">
|
||||
<ChildBand Name="Child1" Top="149.75" Width="971.46" Height="28.35" Guides="0,28.35" FillUnusedSpace="true">
|
||||
<TableObject Name="Table3" Width="963.91" Height="28.35">
|
||||
<TableColumn Name="Column45" Width="76.03"/>
|
||||
<TableColumn Name="Column46" Width="38.23"/>
|
||||
<TableColumn Name="Column47" Width="38.23"/>
|
||||
<TableColumn Name="Column48" Width="38.23"/>
|
||||
<TableColumn Name="Column49" Width="38.23"/>
|
||||
<TableColumn Name="Column50" Width="38.23"/>
|
||||
<TableColumn Name="Column51" Width="38.23"/>
|
||||
<TableColumn Name="Column52" Width="38.23"/>
|
||||
<TableColumn Name="Column53" Width="38.23"/>
|
||||
<TableColumn Name="Column54" Width="57.13"/>
|
||||
<TableColumn Name="Column55" Width="38.23"/>
|
||||
<TableColumn Name="Column56" Width="38.23"/>
|
||||
<TableColumn Name="Column57" Width="38.23"/>
|
||||
<TableColumn Name="Column58" Width="47.68"/>
|
||||
<TableColumn Name="Column59" Width="38.23"/>
|
||||
<TableColumn Name="Column60" Width="38.23"/>
|
||||
<TableColumn Name="Column61" Width="38.23"/>
|
||||
<TableColumn Name="Column62" Width="38.23"/>
|
||||
<TableColumn Name="Column63" Width="38.23"/>
|
||||
<TableColumn Name="Column64" Width="66.58"/>
|
||||
<TableColumn Name="Column65" Width="66.58"/>
|
||||
<TableColumn Name="Column66" Width="38.23"/>
|
||||
<TableRow Name="Row9" Height="28.35">
|
||||
<TableCell Name="Cell182" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell183" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell184" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell185" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell186" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell187" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell188" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell189" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell190" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell191" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell192" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell193" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell194" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell195" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell196" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell197" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell198" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell199" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell200" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell201" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell202" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell203" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</ChildBand>
|
||||
</ColumnFooterBand>
|
||||
</ReportPage>
|
||||
</Report>
|
|
@ -0,0 +1,156 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="06/11/2025 23:08:04" ReportInfo.Modified="06/11/2025 23:27:11" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<ScriptText>using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Windows.Forms;
|
||||
using System.Drawing;
|
||||
using System.Data;
|
||||
using FastReport;
|
||||
using FastReport.Data;
|
||||
using FastReport.Dialog;
|
||||
using FastReport.Barcode;
|
||||
using FastReport.Table;
|
||||
using FastReport.Utils;
|
||||
|
||||
namespace FastReport
|
||||
{
|
||||
public class ReportScript
|
||||
{
|
||||
|
||||
private void Table2_ManualBuild(object sender, EventArgs e)
|
||||
{
|
||||
DataSourceBase rowData = Report.GetDataSource("Data");
|
||||
// init the data source
|
||||
rowData.Init();
|
||||
|
||||
// print the first table row - it is a header
|
||||
|
||||
// now enumerate the data source and print the table body
|
||||
while (rowData.HasMoreRows)
|
||||
{
|
||||
// print the table body
|
||||
Table2.PrintRow(0);
|
||||
Table2.PrintColumns();
|
||||
|
||||
// go next data source row
|
||||
rowData.Next();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</ScriptText>
|
||||
<Dictionary>
|
||||
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QFQx7G5Hdyy/m/x0lhNWMM9A==">
|
||||
<TableDataSource Name="Data" DataType="System.Int32" PropName="Attach_Image" Enabled="true" TableName="Data">
|
||||
<Column Name="Number" DataType="System.String" PropName="attach_image_id"/>
|
||||
<Column Name="ProjectName" DataType="System.String" PropName="image_series"/>
|
||||
<Column Name="TotalFileNum" DataType="System.String" PropName="file_name"/>
|
||||
<Column Name="RemakeFileNum" DataType="System.String" PropName="file_size"/>
|
||||
<Column Name="PassRate" DataType="System.String" PropName="file_type"/>
|
||||
</TableDataSource>
|
||||
</MsSqlDataConnection>
|
||||
<Parameter Name="varValue" DataType="System.String"/>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" LeftMargin="25" TopMargin="20" RightMargin="20" BottomMargin="20" FirstPageSource="4" OtherPagesSource="4" Guides="0,623.7,41.85,136.35,117.45,89.1,60.75,83.7,220.05,356.4,562.95,473.85">
|
||||
<PageHeaderBand Name="PageHeader1" Width="623.7" Height="160.65" Guides="0,160.65,18.9,75.6,56.7,103.95,28.35,132.3">
|
||||
<TableObject Name="Table1" Width="623.7" Height="160.65" Border.Lines="Bottom">
|
||||
<TableColumn Name="Column1" Width="41.85"/>
|
||||
<TableColumn Name="Column2" Width="41.85"/>
|
||||
<TableColumn Name="Column3" Width="136.35"/>
|
||||
<TableColumn Name="Column4" Width="136.35"/>
|
||||
<TableColumn Name="Column5" Width="117.45"/>
|
||||
<TableColumn Name="Column6" Width="89.1"/>
|
||||
<TableColumn Name="Column7" Width="60.75"/>
|
||||
<TableRow Name="Row1">
|
||||
<TableCell Name="Cell1" Text="YA-BK-97-2013" HorzAlign="Right" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="7"/>
|
||||
<TableCell Name="Cell2"/>
|
||||
<TableCell Name="Cell3"/>
|
||||
<TableCell Name="Cell4"/>
|
||||
<TableCell Name="Cell5"/>
|
||||
<TableCell Name="Cell26"/>
|
||||
<TableCell Name="Cell27"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row2" Height="56.7">
|
||||
<TableCell Name="Cell6" Text="拍片一次合格率统计表" HorzAlign="Center" VertAlign="Center" Font="宋体, 16pt, style=Bold" ColSpan="7"/>
|
||||
<TableCell Name="Cell7" HorzAlign="Center" VertAlign="Center" Font="宋体, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell8" HorzAlign="Center" VertAlign="Center" Font="宋体, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell9" HorzAlign="Center" VertAlign="Center" Font="宋体, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell10" HorzAlign="Center" VertAlign="Center" Font="宋体, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell28" HorzAlign="Center" VertAlign="Center" Font="宋体, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell29" HorzAlign="Center" VertAlign="Center" Font="宋体, 16pt, style=Bold"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row3" Height="28.35">
|
||||
<TableCell Name="Cell11" Border.Lines="All" Text="部门" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell12" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell13" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell14" Border.Lines="All" Text="统计起止时间" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell15" Border.Lines="All" Text="[varValue]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="3"/>
|
||||
<TableCell Name="Cell30" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell31" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row4" Height="28.35">
|
||||
<TableCell Name="Cell16" Border.Lines="All" Text="序号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" RowSpan="2"/>
|
||||
<TableCell Name="Cell17" Border.Lines="All" Text="项目名称/施工号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="3" RowSpan="2"/>
|
||||
<TableCell Name="Cell18" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell19" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell20" Border.Lines="All" Text="射线检测" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell32" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell33" Border.Lines="All" Text="合格率%" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" RowSpan="2"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row5" Height="28.35">
|
||||
<TableCell Name="Cell21" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell22" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell23" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell24" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell25" Border.Lines="All" Text="一次RT量(张)" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell34" Border.Lines="All" Text="补片(张)" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell35" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</PageHeaderBand>
|
||||
<DataBand Name="Data1" Top="164.65" Width="623.7" Height="37.8" Guides="0,37.8">
|
||||
<TableObject Name="Table2" Width="623.7" Height="37.8" Border.Lines="All" ManualBuildEvent="Table2_ManualBuild">
|
||||
<TableColumn Name="Column8" Width="41.85"/>
|
||||
<TableColumn Name="Column9" Width="41.85"/>
|
||||
<TableColumn Name="Column10" Width="136.35"/>
|
||||
<TableColumn Name="Column11" Width="136.35"/>
|
||||
<TableColumn Name="Column12" Width="117.45"/>
|
||||
<TableColumn Name="Column13" Width="89.1"/>
|
||||
<TableColumn Name="Column14" Width="60.75"/>
|
||||
<TableRow Name="Row10" Height="37.8">
|
||||
<TableCell Name="Cell64" Border.Lines="All" Text="[Data.Number]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell65" Border.Lines="All" Text="[Data.ProjectName]" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="3"/>
|
||||
<TableCell Name="Cell66" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell67" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell68" Border.Lines="All" Text="[Data.TotalFileNum]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell69" Border.Lines="All" Text="[Data.RemakeFileNum]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell70" Border.Lines="All" Text="[Data.PassRate]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
<ColumnFooterBand Name="ColumnFooter1" Top="248.25" Width="623.7">
|
||||
<ChildBand Name="Child1" Top="206.45" Width="623.7" Height="37.8" Guides="0,37.8" FillUnusedSpace="true">
|
||||
<TableObject Name="Table3" Width="623.7" Height="37.8" Border.Lines="All">
|
||||
<TableColumn Name="Column15" Width="41.85"/>
|
||||
<TableColumn Name="Column16" Width="41.85"/>
|
||||
<TableColumn Name="Column17" Width="136.35"/>
|
||||
<TableColumn Name="Column18" Width="136.35"/>
|
||||
<TableColumn Name="Column19" Width="117.45"/>
|
||||
<TableColumn Name="Column20" Width="89.1"/>
|
||||
<TableColumn Name="Column21" Width="60.75"/>
|
||||
<TableRow Name="Row11" Height="37.8">
|
||||
<TableCell Name="Cell71" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell72" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="3"/>
|
||||
<TableCell Name="Cell73" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell74" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell75" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell76" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell77" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</ChildBand>
|
||||
</ColumnFooterBand>
|
||||
</ReportPage>
|
||||
</Report>
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="11/22/2024 15:19:04" ReportInfo.Modified="05/09/2025 16:32:18" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="11/22/2024 15:19:04" ReportInfo.Modified="06/16/2025 14:40:10" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<ScriptText>using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
|
@ -42,7 +42,7 @@ namespace FastReport
|
|||
}
|
||||
</ScriptText>
|
||||
<Dictionary>
|
||||
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqdP6ADbZQpLOMXx+Ivgq2SioFBJ7B1iEOuUxf7y1evrTM15NUOhfx6SD2+E9SReEWvg7u6EQdXpqQDDPj6WgkoKQIrTt5q9lJyuCu5B6Nl0MXJ6ZEae4ta6haGkhwICyq72I9X2dS6a3zf8gkFZpb6VtdwKlyFhTivyv2i8IjPiUXLimy5mJMh8U2rXyiDDAJjJwuY6vI3N7IrkA/ctinjQ==">
|
||||
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QFIivhvgFLiGeh14nMUOBc7Q==">
|
||||
<TableDataSource Name="Data" DataType="System.Int32" PropName="Attach_Image" Enabled="true" TableName="Data">
|
||||
<Column Name="Number" DataType="System.String" PropName="attach_image_id"/>
|
||||
<Column Name="WED_Code" DataType="System.String" PropName="image_series"/>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="11/23/2024 15:00:41" ReportInfo.Modified="06/03/2025 16:10:03" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="11/23/2024 15:00:41" ReportInfo.Modified="06/16/2025 15:28:06" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<ScriptText>using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
|
@ -42,7 +42,7 @@ namespace FastReport
|
|||
}
|
||||
</ScriptText>
|
||||
<Dictionary>
|
||||
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QFmsU4j1CDjBlyO5m7ygS6qQ==">
|
||||
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QF4rQ9KnFMYQtrw/n6V6CPlQ==">
|
||||
<TableDataSource Name="Attach_Image" Alias="Data" DataType="System.Int32" Enabled="true" TableName="Attach_Image">
|
||||
<Column Name="Number" DataType="System.String" PropName="attach_image_id"/>
|
||||
<Column Name="ISO_IsoNo" DataType="System.String" PropName="image_series"/>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<UseIISExpress>true</UseIISExpress>
|
||||
<LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig>
|
||||
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
|
||||
<Use64BitIISExpress />
|
||||
<IISExpressSSLPort />
|
||||
<IISExpressAnonymousAuthentication />
|
||||
|
|
|
@ -57,9 +57,9 @@
|
|||
</Items>
|
||||
<Items>
|
||||
<f:Grid ID="Grid1" ShowBorder="true" ShowHeader="false" Title="工程无损检测重拍报表" EnableCollapse="true"
|
||||
AutoScroll="true" runat="server" BoxFlex="1" DataKeyNames="CheckMan" AllowCellEditing="true"
|
||||
EnableColumnLines="true" ClicksToEdit="1" DataIDField="CheckMan" AllowSorting="true"
|
||||
SortField="CheckMan" SortDirection="ASC" OnSort="Grid1_Sort" EnableTextSelection="True">
|
||||
AutoScroll="true" runat="server" BoxFlex="1" DataKeyNames="id" AllowCellEditing="true"
|
||||
EnableColumnLines="true" ClicksToEdit="1" DataIDField="id" AllowSorting="true"
|
||||
SortField="id" SortDirection="ASC" OnSort="Grid1_Sort" EnableTextSelection="True">
|
||||
<Columns>
|
||||
<f:RenderField HeaderText="检测人员" ColumnID="CheckMan" DataField="CheckMan" SortField="CheckMan"
|
||||
FieldType="String" HeaderTextAlign="Center" TextAlign="Left" Width="100px">
|
||||
|
|
|
@ -7,6 +7,7 @@ using System.Web.UI.WebControls;
|
|||
using BLL;
|
||||
using System.Data.SqlClient;
|
||||
using System.Data;
|
||||
using System.IO;
|
||||
|
||||
namespace FineUIPro.Web.HJGL.CheckManage
|
||||
{
|
||||
|
@ -124,7 +125,7 @@ namespace FineUIPro.Web.HJGL.CheckManage
|
|||
SqlParameter[] parameter = listStr.ToArray();
|
||||
DataTable tb = SQLHelper.GetDataTableRunProc("HJGL_sp_rpt_RemakeReason", parameter);
|
||||
this.Grid1.RecordCount = tb.Rows.Count;
|
||||
tb = GetFilteredTable(Grid1.FilteredData, tb);
|
||||
//tb = GetFilteredTable(Grid1.FilteredData, tb);
|
||||
var table = this.GetPagedDataTable(Grid1, tb);
|
||||
Grid1.DataSource = table;
|
||||
Grid1.DataBind();
|
||||
|
@ -162,8 +163,84 @@ namespace FineUIPro.Web.HJGL.CheckManage
|
|||
{
|
||||
varValue = startDate + "~" + endDate;
|
||||
}
|
||||
varValue = HttpUtility.UrlEncodeUnicode(varValue);
|
||||
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("../../Common/ReportPrint/ExReportPrint.aspx?ispop=1&reportId={0}&replaceParameter={1}&varValue={2}&projectId=0", BLL.Const.HJGL_NDTRemakeReportId, parm, varValue, "打印 - ")));
|
||||
|
||||
string initTemplatePath = "";
|
||||
string rootPath = Server.MapPath("~/");
|
||||
BLL.Common.FastReportService.ResetData();
|
||||
|
||||
var listStr = new List<SqlParameter>();
|
||||
listStr.Add(new SqlParameter("@parm", parm));
|
||||
SqlParameter[] parameter = listStr.ToArray();
|
||||
var tb = SQLHelper.GetDataTableRunProc("HJGL_sp_rpt_RemakeReason", parameter);
|
||||
|
||||
DataTable dt = new DataTable();
|
||||
dt.TableName = "Data";
|
||||
dt.Columns.Add("CheckMan");
|
||||
dt.Columns.Add("t1Num");
|
||||
dt.Columns.Add("t2Num");
|
||||
dt.Columns.Add("t3Num");
|
||||
dt.Columns.Add("t4Num");
|
||||
dt.Columns.Add("t5Num");
|
||||
dt.Columns.Add("t6Num");
|
||||
dt.Columns.Add("t7Num");
|
||||
dt.Columns.Add("t8Num");
|
||||
dt.Columns.Add("t9Num");
|
||||
dt.Columns.Add("t10Num");
|
||||
dt.Columns.Add("t11Num");
|
||||
dt.Columns.Add("t12Num");
|
||||
dt.Columns.Add("t13Num");
|
||||
dt.Columns.Add("t14Num");
|
||||
dt.Columns.Add("t15Num");
|
||||
dt.Columns.Add("t16Num");
|
||||
dt.Columns.Add("t17Num");
|
||||
dt.Columns.Add("t18Num");
|
||||
dt.Columns.Add("t19Num");
|
||||
dt.Columns.Add("t20Num");
|
||||
dt.Columns.Add("t21Num");
|
||||
DataRow[] rows = tb.DefaultView.ToTable().Select();
|
||||
foreach (var row in rows)
|
||||
{
|
||||
var newRows = dt.NewRow();
|
||||
newRows["CheckMan"] = row["CheckMan"].ToString();
|
||||
newRows["t1Num"] = row["t1Num"].ToString();
|
||||
newRows["t2Num"] = row["t2Num"].ToString();
|
||||
newRows["t3Num"] = row["t3Num"].ToString();
|
||||
newRows["t4Num"] = row["t4Num"].ToString();
|
||||
newRows["t5Num"] = row["t5Num"].ToString();
|
||||
newRows["t6Num"] = row["t6Num"].ToString();
|
||||
newRows["t7Num"] = row["t7Num"].ToString();
|
||||
newRows["t8Num"] = row["t8Num"].ToString();
|
||||
newRows["t9Num"] = row["t9Num"].ToString();
|
||||
newRows["t10Num"] = row["t10Num"].ToString();
|
||||
newRows["t11Num"] = row["t11Num"].ToString();
|
||||
newRows["t12Num"] = row["t12Num"].ToString();
|
||||
newRows["t13Num"] = row["t13Num"].ToString();
|
||||
newRows["t14Num"] = row["t14Num"].ToString();
|
||||
newRows["t15Num"] = row["t15Num"].ToString();
|
||||
newRows["t16Num"] = row["t16Num"].ToString();
|
||||
newRows["t17Num"] = row["t17Num"].ToString();
|
||||
newRows["t18Num"] = row["t18Num"].ToString();
|
||||
newRows["t19Num"] = row["t19Num"].ToString();
|
||||
newRows["t20Num"] = row["t20Num"].ToString();
|
||||
newRows["t21Num"] = row["t21Num"].ToString();
|
||||
|
||||
dt.Rows.Add(newRows);
|
||||
}
|
||||
BLL.Common.FastReportService.AddFastreportTable(dt);
|
||||
|
||||
//传参
|
||||
Dictionary<string, string> keyValuePairs = new Dictionary<string, string>();
|
||||
keyValuePairs.Add("varValue", varValue);
|
||||
BLL.Common.FastReportService.AddFastreportParameter(keyValuePairs);
|
||||
|
||||
initTemplatePath = "File\\Fastreport\\工程无损检测重拍报表.frx";
|
||||
|
||||
if (File.Exists(rootPath + initTemplatePath))
|
||||
{
|
||||
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("../../common/ReportPrint/Fastreport.aspx?ReportPath={0}", rootPath + initTemplatePath)));
|
||||
}
|
||||
//varValue = HttpUtility.UrlEncodeUnicode(varValue);
|
||||
//PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("../../Common/ReportPrint/ExReportPrint.aspx?ispop=1&reportId={0}&replaceParameter={1}&varValue={2}&projectId=0", BLL.Const.HJGL_NDTRemakeReportId, parm, varValue, "打印 - ")));
|
||||
}
|
||||
#endregion
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
// <自动生成>
|
||||
// 此代码由工具生成。
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// 对此文件的更改可能导致不正确的行为,如果
|
||||
// 重新生成代码,则所做更改将丢失。
|
||||
// </自动生成>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@ using System.Collections.Generic;
|
|||
using System.Data.SqlClient;
|
||||
using System.Data;
|
||||
using BLL;
|
||||
using System.IO;
|
||||
|
||||
namespace FineUIPro.Web.HJGL.CheckManage
|
||||
{
|
||||
|
@ -110,7 +111,7 @@ namespace FineUIPro.Web.HJGL.CheckManage
|
|||
{
|
||||
string startDate = string.Empty;
|
||||
string endDate = string.Empty;
|
||||
string parameter = string.Empty;
|
||||
//string parameter = string.Empty;
|
||||
string varValue = string.Empty;
|
||||
|
||||
if (!string.IsNullOrEmpty(this.txtStartDate.Text))
|
||||
|
@ -131,11 +132,54 @@ namespace FineUIPro.Web.HJGL.CheckManage
|
|||
endDate = "NULL";
|
||||
}
|
||||
|
||||
parameter = startDate + "|" + endDate;
|
||||
//parameter = startDate + "|" + endDate;
|
||||
varValue = startDate + "至" + endDate;
|
||||
varValue = Microsoft.JScript.GlobalObject.escape(varValue.Replace("/", ","));
|
||||
//varValue = Microsoft.JScript.GlobalObject.escape(varValue.Replace("/", ","));
|
||||
|
||||
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("../../Common/ReportPrint/ExReportPrint.aspx?ispop=1&reportId={0}&replaceParameter={1}&varValue={2}&projectId=0", Const.HJGL_PassFileOneQueReportId, parameter, varValue)));
|
||||
string initTemplatePath = "";
|
||||
string rootPath = Server.MapPath("~/");
|
||||
BLL.Common.FastReportService.ResetData();
|
||||
|
||||
var listStr = new List<SqlParameter>();
|
||||
listStr.Add(new SqlParameter("@startDate", startDate));
|
||||
listStr.Add(new SqlParameter("@endDate", endDate));
|
||||
SqlParameter[] parameter = listStr.ToArray();
|
||||
var tb = SQLHelper.GetDataTableRunProc("HJGL_spPassFileOneQue", parameter);
|
||||
|
||||
DataTable dt = new DataTable();
|
||||
dt.TableName = "Data";
|
||||
dt.Columns.Add("Number");
|
||||
dt.Columns.Add("ProjectName");
|
||||
dt.Columns.Add("TotalFileNum");
|
||||
dt.Columns.Add("RemakeFileNum");
|
||||
dt.Columns.Add("PassRate");
|
||||
DataRow[] rows = tb.DefaultView.ToTable().Select();
|
||||
foreach (var row in rows)
|
||||
{
|
||||
var newRows = dt.NewRow();
|
||||
newRows["Number"] = row["Number"].ToString();
|
||||
newRows["ProjectName"] = row["ProjectName"].ToString();
|
||||
newRows["TotalFileNum"] = row["TotalFileNum"].ToString();
|
||||
newRows["RemakeFileNum"] = row["RemakeFileNum"].ToString();
|
||||
newRows["PassRate"] = row["PassRate"].ToString();
|
||||
|
||||
dt.Rows.Add(newRows);
|
||||
}
|
||||
BLL.Common.FastReportService.AddFastreportTable(dt);
|
||||
|
||||
//传参
|
||||
Dictionary<string, string> keyValuePairs = new Dictionary<string, string>();
|
||||
keyValuePairs.Add("varValue", varValue);
|
||||
BLL.Common.FastReportService.AddFastreportParameter(keyValuePairs);
|
||||
|
||||
initTemplatePath = "File\\Fastreport\\拍片一次合格率统计表.frx";
|
||||
|
||||
if (File.Exists(rootPath + initTemplatePath))
|
||||
{
|
||||
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("../../common/ReportPrint/Fastreport.aspx?ReportPath={0}", rootPath + initTemplatePath)));
|
||||
}
|
||||
|
||||
//PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("../../Common/ReportPrint/ExReportPrint.aspx?ispop=1&reportId={0}&replaceParameter={1}&varValue={2}&projectId=0", Const.HJGL_PassFileOneQueReportId, parameter, varValue)));
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
<FineUIPro DebugMode="false" Theme="Cupertino"/>
|
||||
<appSettings>
|
||||
<!--连接字符串-->
|
||||
<add key="ConnectionString" value="Server=.\MSSQLSERVER01;Database=HJGLDB_DS;Integrated Security=False;User ID=sa;Password=1111;MultipleActiveResultSets=true;Max Pool Size = 1000;Connect Timeout=1200"/>
|
||||
<add key="ConnectionString" value="Server=.\SQL2022;Database=HJGLDB_DS;Integrated Security=False;User ID=sa;Password=1111;MultipleActiveResultSets=true;Max Pool Size = 1000;Connect Timeout=1200"/>
|
||||
<!--系统名称-->
|
||||
<add key="SystemName" value="诺必达焊接管理系统"/>
|
||||
<add key="ChartImageHandler" value="storage=file;timeout=20;url=~/Images/;"/>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig>
|
||||
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
|
||||
<NameOfLastUsedPublishProfile>FolderProfile</NameOfLastUsedPublishProfile>
|
||||
<UseIISExpress>true</UseIISExpress>
|
||||
<Use64BitIISExpress />
|
||||
|
|
Loading…
Reference in New Issue