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:
@@ -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();
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user