/Reports/InventoryLogIn.cs
http://github.com/khaneh/Orders · C# · 143 lines · 101 code · 18 blank · 24 comment · 0 complexity · 08ad706b43b907c9d1bb8c1eab8a2f84 MD5 · raw file
- //------------------------------------------------------------------------------
- // <autogenerated>
- // This code was generated by a tool.
- // Runtime Version: 1.0.3705.0
- //
- // Changes to this file may cause incorrect behavior and will be lost if
- // the code is regenerated.
- // </autogenerated>
- //------------------------------------------------------------------------------
-
- namespace Reports {
- using System;
- using System.ComponentModel;
- using CrystalDecisions.Shared;
- using CrystalDecisions.ReportSource;
- using CrystalDecisions.CrystalReports.Engine;
-
-
- public class InventoryLogIn : ReportClass {
-
- public InventoryLogIn() {
- }
-
- public override string ResourceName {
- get {
- return "InventoryLogIn.rpt";
- }
- set {
- // Do nothing
- }
- }
-
- [Browsable(false)]
- [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
- public CrystalDecisions.CrystalReports.Engine.Section ReportHeaderSection1 {
- get {
- return this.ReportDefinition.Sections[0];
- }
- }
-
- [Browsable(false)]
- [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
- public CrystalDecisions.CrystalReports.Engine.Section PageHeaderSection1 {
- get {
- return this.ReportDefinition.Sections[1];
- }
- }
-
- [Browsable(false)]
- [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
- public CrystalDecisions.CrystalReports.Engine.Section DetailSection1 {
- get {
- return this.ReportDefinition.Sections[2];
- }
- }
-
- [Browsable(false)]
- [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
- public CrystalDecisions.CrystalReports.Engine.Section ReportFooterSection1 {
- get {
- return this.ReportDefinition.Sections[3];
- }
- }
-
- [Browsable(false)]
- [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
- public CrystalDecisions.CrystalReports.Engine.Section PageFooterSection1 {
- get {
- return this.ReportDefinition.Sections[4];
- }
- }
-
- [Browsable(false)]
- [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
- public CrystalDecisions.Shared.IParameterField Parameter_LogItem_ID {
- get {
- return this.DataDefinition.ParameterFields[0];
- }
- }
- }
-
- [System.Drawing.ToolboxBitmapAttribute(typeof(CrystalDecisions.Shared.ExportOptions), "report.bmp")]
- public class CachedInventoryLogIn : Component, ICachedReport {
-
- public CachedInventoryLogIn() {
- }
-
- [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() {
- InventoryLogIn rpt = new InventoryLogIn();
- 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;
- }
- }
- }