Esempio n. 1
0
        private void PrintPricingChanges(DateTime startDate, DateTime endDate)
        {
            PosDialogWindow window = ShowPreparingReportWindow();

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

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

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

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

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

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

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