You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
169 lines
5.6 KiB
169 lines
5.6 KiB
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// 此代码由工具生成。
|
|
// 运行时版本:4.0.30319.269
|
|
//
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
|
// 重新生成代码,这些更改将会丢失。
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace QMAPP.WinForm.Forms.DisPatch {
|
|
using System;
|
|
using System.ComponentModel;
|
|
using CrystalDecisions.Shared;
|
|
using CrystalDecisions.ReportSource;
|
|
using CrystalDecisions.CrystalReports.Engine;
|
|
|
|
|
|
public class PastCard : ReportClass {
|
|
|
|
public PastCard() {
|
|
}
|
|
|
|
public override string ResourceName {
|
|
get {
|
|
return "PastCard.rpt";
|
|
}
|
|
set {
|
|
// Do nothing
|
|
}
|
|
}
|
|
|
|
public override bool NewGenerator {
|
|
get {
|
|
return true;
|
|
}
|
|
set {
|
|
// Do nothing
|
|
}
|
|
}
|
|
|
|
public override string FullResourceName {
|
|
get {
|
|
return "QMAPP.WinForm.Forms.DisPatch.PastCard.rpt";
|
|
}
|
|
set {
|
|
// Do nothing
|
|
}
|
|
}
|
|
|
|
[Browsable(false)]
|
|
[DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
|
public CrystalDecisions.CrystalReports.Engine.Section Section1 {
|
|
get {
|
|
return this.ReportDefinition.Sections[0];
|
|
}
|
|
}
|
|
|
|
[Browsable(false)]
|
|
[DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
|
public CrystalDecisions.CrystalReports.Engine.Section Section2 {
|
|
get {
|
|
return this.ReportDefinition.Sections[1];
|
|
}
|
|
}
|
|
|
|
[Browsable(false)]
|
|
[DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
|
public CrystalDecisions.CrystalReports.Engine.Section GroupHeaderSection1 {
|
|
get {
|
|
return this.ReportDefinition.Sections[2];
|
|
}
|
|
}
|
|
|
|
[Browsable(false)]
|
|
[DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
|
public CrystalDecisions.CrystalReports.Engine.Section Section3 {
|
|
get {
|
|
return this.ReportDefinition.Sections[3];
|
|
}
|
|
}
|
|
|
|
[Browsable(false)]
|
|
[DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
|
public CrystalDecisions.CrystalReports.Engine.Section GroupFooterSection1 {
|
|
get {
|
|
return this.ReportDefinition.Sections[4];
|
|
}
|
|
}
|
|
|
|
[Browsable(false)]
|
|
[DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
|
public CrystalDecisions.CrystalReports.Engine.Section Section4 {
|
|
get {
|
|
return this.ReportDefinition.Sections[5];
|
|
}
|
|
}
|
|
|
|
[Browsable(false)]
|
|
[DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
|
public CrystalDecisions.CrystalReports.Engine.Section Section5 {
|
|
get {
|
|
return this.ReportDefinition.Sections[6];
|
|
}
|
|
}
|
|
}
|
|
|
|
[System.Drawing.ToolboxBitmapAttribute(typeof(CrystalDecisions.Shared.ExportOptions), "report.bmp")]
|
|
public class CachedPastCard : Component, ICachedReport {
|
|
|
|
public CachedPastCard() {
|
|
}
|
|
|
|
[Browsable(false)]
|
|
[DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
|
public virtual bool IsCacheable {
|
|
get {
|
|
return true;
|
|
}
|
|
set {
|
|
//
|
|
}
|
|
}
|
|
|
|
[Browsable(false)]
|
|
[DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
|
public virtual bool ShareDBLogonInfo {
|
|
get {
|
|
return false;
|
|
}
|
|
set {
|
|
//
|
|
}
|
|
}
|
|
|
|
[Browsable(false)]
|
|
[DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
|
|
public virtual System.TimeSpan CacheTimeOut {
|
|
get {
|
|
return CachedReportConstants.DEFAULT_TIMEOUT;
|
|
}
|
|
set {
|
|
//
|
|
}
|
|
}
|
|
|
|
public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() {
|
|
PastCard rpt = new PastCard();
|
|
rpt.Site = this.Site;
|
|
return rpt;
|
|
}
|
|
|
|
public virtual string GetCustomizedCacheKey(RequestContext request) {
|
|
String key = null;
|
|
// // The following is the code used to generate the default
|
|
// // cache key for caching report jobs in the ASP.NET Cache.
|
|
// // Feel free to modify this code to suit your needs.
|
|
// // Returning key == null causes the default cache key to
|
|
// // be generated.
|
|
//
|
|
// key = RequestContext.BuildCompleteCacheKey(
|
|
// request,
|
|
// null, // sReportFilename
|
|
// this.GetType(),
|
|
// this.ShareDBLogonInfo );
|
|
return key;
|
|
}
|
|
}
|
|
}
|
|
|