Logic to call the function to create the RO Summary Report

Added functions to for use in generating the RO Summary Report
Enabled the RO Summary Report and added logic to support the gathering of information for the report
Added logic to generate the RO Summary Report
This commit is contained in:
2014-12-19 19:46:27 +00:00
parent eec2b3cbae
commit 174bac97f7
4 changed files with 319 additions and 51 deletions

View File

@@ -725,11 +725,17 @@ namespace VEPROMS
Volian.Print.Library.PDFReport myReport = new Volian.Print.Library.PDFReport(args.ReportTitle, args.MyItemInfoList, Volian.Base.Library.VlnSettings.TemporaryFolder + @"\ROUsageReport.pdf", args.SortUsageByProcedure);
myReport.Build();
}
else if (args.TypesSelected == "RO Report")
else if (args.TypesSelected == "Complete RO Report")
{
Volian.Print.Library.PDFReport myReport = new Volian.Print.Library.PDFReport(args.ReportTitle, args.RODataFile, Volian.Base.Library.VlnSettings.TemporaryFolder + @"\ROCompleteReport.pdf", args.CompleteROReport);
Volian.Print.Library.PDFReport myReport = new Volian.Print.Library.PDFReport(args.ReportTitle, args.RODataFile, Volian.Base.Library.VlnSettings.TemporaryFolder + @"\CompleteROReport.pdf", args.CompleteROReport);
myReport.Build();
}
else if (args.TypesSelected == "RO Summary Report")
{
Volian.Print.Library.PDFReport myReport = new Volian.Print.Library.PDFReport(args.ReportTitle, Volian.Base.Library.VlnSettings.TemporaryFolder + @"\ROSummaryReport.pdf", args.RofstLookup, args.ROListForReport);
myReport.Build();
}
}