From b41ebc8feb9fcc0288503dbe886a34e0eee1dff3 Mon Sep 17 00:00:00 2001 From: Marcel Hirschle Date: Mon, 15 Feb 2021 15:06:17 +0100 Subject: [PATCH] =?UTF-8?q?MH:=20Farbliche=20Hinterlegung=20f=C3=BCr=20mar?= =?UTF-8?q?kierte=20Zeilen=20in=20Zeiterfassung=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BeWo/ServiceProxy/Generated.cs | 10 ++++ BeWo/View/Detail/ServiceRecordView2.xaml | 18 ++++-- BeWo/View/Detail/ServiceRecordView2.xaml.cs | 57 ++++++++++++++++++- .../ServiceContracts/IOperationsService.cs | 5 ++ .../OperationsServiceImp.cs | 12 ++++ 5 files changed, 97 insertions(+), 5 deletions(-) diff --git a/BeWo/ServiceProxy/Generated.cs b/BeWo/ServiceProxy/Generated.cs index 636e743f5..4f4b1f703 100644 --- a/BeWo/ServiceProxy/Generated.cs +++ b/BeWo/ServiceProxy/Generated.cs @@ -5087,6 +5087,11 @@ namespace BeWo.ServiceProxy [System.ServiceModel.FaultContractAttribute(typeof(BeWo.ServiceProxy.BeWoFault), Action="http://tempuri.org/IOperationsService/GetColorForStatusBeWoFaultFault", Name="BeWoFault", Namespace="http://schemas.datacontract.org/2004/07/BeWo.Service.ServiceContracts")] string GetColorForStatus(bool status); + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IOperationsService/GetColorForServiceRecordView2", ReplyAction="http://tempuri.org/IOperationsService/GetColorForServiceRecordView2Response")] + [System.ServiceModel.FaultContractAttribute(typeof(BeWo.ServiceProxy.BeWoFault), Action="http://tempuri.org/IOperationsService/GetColorForServiceRecordView2BeWoFaultFault" + + "", Name="BeWoFault", Namespace="http://schemas.datacontract.org/2004/07/BeWo.Service.ServiceContracts")] + string GetColorForServiceRecordView2(); + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IOperationsService/UpdateIsChatActiveCustomerAPPCodeDC", ReplyAction="http://tempuri.org/IOperationsService/UpdateIsChatActiveCustomerAPPCodeDCResponse" + "")] [System.ServiceModel.FaultContractAttribute(typeof(BeWo.ServiceProxy.BeWoFault), Action="http://tempuri.org/IOperationsService/UpdateIsChatActiveCustomerAPPCodeDCBeWoFaul" + @@ -6292,6 +6297,11 @@ namespace BeWo.ServiceProxy return base.Channel.GetColorForStatus(status); } + public string GetColorForServiceRecordView2() + { + return base.Channel.GetColorForServiceRecordView2(); + } + public void UpdateIsChatActiveCustomerAPPCodeDC(long customerOid, int activeType) { base.Channel.UpdateIsChatActiveCustomerAPPCodeDC(customerOid, activeType); diff --git a/BeWo/View/Detail/ServiceRecordView2.xaml b/BeWo/View/Detail/ServiceRecordView2.xaml index 5e3e9c862..2389fb694 100644 --- a/BeWo/View/Detail/ServiceRecordView2.xaml +++ b/BeWo/View/Detail/ServiceRecordView2.xaml @@ -1,6 +1,7 @@