From 6c92c8eaccbe703e4b58abfd882eccee285e6e75 Mon Sep 17 00:00:00 2001 From: Christian Date: Thu, 29 Aug 2019 15:43:23 +0200 Subject: [PATCH] cb --- BeWo/MainControl.xaml | 2 +- BeWo/MainControl.xaml.cs | 2 +- BeWo/ServiceProxy/ServiceFacade.cs | 17 +- BeWo/View/Detail/BudgetView.xaml | 2 +- .../Detail/Report/FlexibleReportView.xaml.cs | 7 +- BeWo/View/HomeView.xaml.cs | 242 ++++++++++++------ Host/Multitenancy/demo.config | 2 +- ...ViewPanel ReportName zu Value geändert.txt | 2 +- Report/DefaultReportCreator.cs | 6 + Report/ReportObjects/FLSReportRO.cs | 4 +- Service/Plugins/PluginLoader.cs | 8 +- .../Plugins/StundenuebersichtAuswertung.cs | 3 +- .../AnalysisServiceImp.cs | 3 +- Shared/BeWoEntityEnums.cs | 16 +- .../ServiceRecordFLSOverviewDC.cs | 5 +- 15 files changed, 219 insertions(+), 102 deletions(-) diff --git a/BeWo/MainControl.xaml b/BeWo/MainControl.xaml index 6f343c337..384a0998d 100644 --- a/BeWo/MainControl.xaml +++ b/BeWo/MainControl.xaml @@ -231,7 +231,7 @@ (pFunc, pCallBack, true); } - - public static void DoAccountingServiceSync(Action pAction) + + public static void DoAnalysisServiceAsync(Func pFunc, Action pCallBack, bool showWaitDialog) + { + DoAsync(pFunc, pCallBack, showWaitDialog); + + } + + public static void DoAccountingServiceSync(Action pAction) { pAction.Invoke(GetInstance()); } @@ -483,7 +489,12 @@ namespace BeWo.ServiceProxy DoAsync(pFunc, pCallBack, true); } - public static void DoReportServiceSync(Action pAction) + public static void DoReportServiceAsync(Func pFunc, Action pCallBack, bool showWaitDialog) + { + DoAsync(pFunc, pCallBack, showWaitDialog); + } + + public static void DoReportServiceSync(Action pAction) { try { diff --git a/BeWo/View/Detail/BudgetView.xaml b/BeWo/View/Detail/BudgetView.xaml index 9c13d1568..488e8835f 100644 --- a/BeWo/View/Detail/BudgetView.xaml +++ b/BeWo/View/Detail/BudgetView.xaml @@ -24,7 +24,7 @@ - +