FrmSaleBill.cs 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. using CrystalDecisions.CrystalReports.Engine;
  2. using CrystalDecisions.Shared;
  3. using System.ComponentModel;
  4. namespace SunRoxm.BizPeri.Report.Reports
  5. {
  6. public class FrmSaleBill : ReportClass
  7. {
  8. public override string ResourceName
  9. {
  10. get
  11. {
  12. return "FrmSaleBill.rpt";
  13. }
  14. set
  15. {
  16. }
  17. }
  18. [Browsable(false)]
  19. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  20. public Section Section1 => ((ReportDocument)this).ReportDefinition.Sections[0];
  21. [Browsable(false)]
  22. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  23. public Section Section2 => ((ReportDocument)this).ReportDefinition.Sections[1];
  24. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  25. [Browsable(false)]
  26. public Section Section4 => ((ReportDocument)this).ReportDefinition.Sections[2];
  27. [Browsable(false)]
  28. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  29. public Section Section6 => ((ReportDocument)this).ReportDefinition.Sections[3];
  30. [Browsable(false)]
  31. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  32. public Section Section3 => ((ReportDocument)this).ReportDefinition.Sections[4];
  33. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  34. [Browsable(false)]
  35. public Section Section7 => ((ReportDocument)this).ReportDefinition.Sections[5];
  36. [Browsable(false)]
  37. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  38. public Section Section9 => ((ReportDocument)this).ReportDefinition.Sections[6];
  39. [Browsable(false)]
  40. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  41. public Section Section13 => ((ReportDocument)this).ReportDefinition.Sections[7];
  42. [Browsable(false)]
  43. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  44. public Section Section11 => ((ReportDocument)this).ReportDefinition.Sections[8];
  45. [Browsable(false)]
  46. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  47. public Section Section10 => ((ReportDocument)this).ReportDefinition.Sections[9];
  48. [Browsable(false)]
  49. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  50. public IParameterField Parameter_Comment_Pm_SaleBillNo_SaleBill => (IParameterField)(object)((ReportDocument)this).DataDefinition.ParameterFields[0];
  51. public FrmSaleBill()
  52. : base()
  53. {
  54. }
  55. }
  56. }