예제 #1
0
        private void PrintPricingChanges(DateTime startDate, DateTime endDate)
        {
            PosDialogWindow window = ShowPreparingReportWindow();

            ReportManager.PrintPricingChanges(startDate, endDate, ReportClosed_EventHandler);
            window.Close();
        }
예제 #2
0
        private void PrintItemDiscontinuation(DateTime startDate, DateTime endDate)
        {
            PosDialogWindow window = ShowPreparingReportWindow();

            ReportManager.PrintItemAdjustments(startDate, endDate, ReportClosed_EventHandler);
            window.Close();
        }
예제 #3
0
        private void PrintUsageByIngredient(DateTime startDate, DateTime endDate)
        {
            PosDialogWindow window = ShowPreparingReportWindow();

            ReportManager.PrintUsageByIngredient(startDate, endDate, ReportClosed_EventHandler);
            window.Close();
        }
예제 #4
0
        private void PrintWasteByCategory(DateTime startDate, DateTime endDate)
        {
            PosDialogWindow window = ShowPreparingReportWindow();

            ReportManager.PrintWasteByCategory(startDate, endDate, ReportClosed_EventHandler);
            window.Close();
        }
예제 #5
0
        private void PrintSalesByEmployeeReport(DateTime startDate, DateTime endDate)
        {
            PosDialogWindow window = ShowPreparingReportWindow();

            ReportManager.PrintSalesByEmployee(startDate, endDate, ReportClosed_EventHandler);
            window.Close();
        }
예제 #6
0
        private void PrintLaborHourlyTotalsReport(DateTime startDate, DateTime endDate)
        {
            PosDialogWindow window = ShowPreparingReportWindow();

            ReportManager.PrintLaborHourlyTotals(startDate, endDate,
                                                 ReportClosed_EventHandler);
            window.Close();
        }
예제 #7
0
        private void PrintAdminisrtrativeVoidReport(DateTime startDate, DateTime endDate)
        {
            PosDialogWindow window = ShowPreparingReportWindow();

            ReportManager.PrintAdministrativeVoids(startDate, endDate,
                                                   ReportClosed_EventHandler);
            window.Close();
        }