From f5c055c211e06e03888463db331817f2549e96c3 Mon Sep 17 00:00:00 2001 From: Lyndon Jetten Date: Tue, 5 Mar 2024 09:48:22 +0100 Subject: [PATCH 1/3] MoK: Bugs in der Bargeldverwaltung behoben. --- .../Controllers/LoginController.cs | 2 +- .../CustomerBargeldkassenFormPartial.cshtml | 35 +++++++++++++++++-- ...omerBargeldtransaktionenFormPartial.cshtml | 1 - .../OperationsServiceImp.cs | 2 +- 4 files changed, 35 insertions(+), 5 deletions(-) diff --git a/BeWoPlanerMobil/Controllers/LoginController.cs b/BeWoPlanerMobil/Controllers/LoginController.cs index ed9b48f70..5ecc82baa 100644 --- a/BeWoPlanerMobil/Controllers/LoginController.cs +++ b/BeWoPlanerMobil/Controllers/LoginController.cs @@ -17,7 +17,7 @@ namespace BeWoPlanerMobil.Controllers { public class LoginController : AbstractBaseController { - private String GETSERVER_URL = "https://support.bewoplaner.de/api/getserver.php?k={0}&type=1"; + private String GETSERVER_URL = "https://support.bewoplaner.de/api/getserver.php?k={0}&type=1"; public static string LoginErrorIndex => "LoginErrorIndex"; diff --git a/BeWoPlanerMobil/Views/Customer/CustomerBargeldkassenFormPartial.cshtml b/BeWoPlanerMobil/Views/Customer/CustomerBargeldkassenFormPartial.cshtml index a88bbae23..c7a8e3986 100644 --- a/BeWoPlanerMobil/Views/Customer/CustomerBargeldkassenFormPartial.cshtml +++ b/BeWoPlanerMobil/Views/Customer/CustomerBargeldkassenFormPartial.cshtml @@ -41,7 +41,14 @@ try { showSpinner(); - $("#bargeldkassenname").val($("#bargeldkassennamensinput").val()); + var kassenname = $("#bargeldkassennamensinput").val(); + + if(false === validateBargeldkassenformular()) { + hideSpinner(); + return; + } + + $("#bargeldkassenname").val(kassenname); $("#bargeldkassenanfangsbestand").val($("#bargeldkassenanfangsbestandsinput").val()); if($("#auszahlungsintervall-select-input").length) { @@ -54,6 +61,26 @@ } } + function validateBargeldkassenformular() { + try { + var kassenname = $("#bargeldkassennamensinput").val(); + + if(kassenname === undefined || kassenname === null || kassenname.length === 0) { + $("#bargeldkassen-validation-error-message-paragraph").html("Der Kassenname darf nicht leer sein."); + $("#bargeldkassenform-validation-alert").removeClass("d-none"); + + return false; + } else { + $("#bargeldkassen-validation-error-message-paragraph").empty(); + $("#bargeldkassenform-validation-alert").addClass("d-none"); + + return true; + } + } catch(error) { + showErrorPopup(error); + } + } + $("#create-bargeldkasse-form").ready(function () { try { calcBargeldkassenFormPrependWidth(); @@ -116,6 +143,10 @@ var anfangsbestand = Model.SelectedBargeldkasse?.Anfangsbestand?.ToString("0.00") ?? "0.00"; } + + @*----- Name -----*@
@@ -126,7 +157,7 @@ Name
- + diff --git a/BeWoPlanerMobil/Views/Customer/CustomerBargeldtransaktionenFormPartial.cshtml b/BeWoPlanerMobil/Views/Customer/CustomerBargeldtransaktionenFormPartial.cshtml index a3e8bf86f..d96b85995 100644 --- a/BeWoPlanerMobil/Views/Customer/CustomerBargeldtransaktionenFormPartial.cshtml +++ b/BeWoPlanerMobil/Views/Customer/CustomerBargeldtransaktionenFormPartial.cshtml @@ -71,7 +71,6 @@ $.get("@Url.Action("CheckForExistingSignature")").success(function(hasSignature) { if(hasSignature === "1") { - //showMessagePopupWithCallback("Warnung", "Für diese Transaktion existiert bereits eine Unterschrift. Eine Änderung löscht die Unterschrift. Möchten Sie die Transaktion ändern?", doSubmitForm, false); $("#transaction-signature-warning-popup").modal("show"); } else { doSubmitForm(); diff --git a/Service/ServiceImplementations/OperationsServiceImp.cs b/Service/ServiceImplementations/OperationsServiceImp.cs index 8433c3e47..b457aca0b 100644 --- a/Service/ServiceImplementations/OperationsServiceImp.cs +++ b/Service/ServiceImplementations/OperationsServiceImp.cs @@ -4234,7 +4234,7 @@ namespace BeWo.Service.ServiceImplementations { var bargeldkasse = DAOFactory.GenericDAO.LoadByID(pOid); - var signatures2Delete = DAOFactory.SearchDAO.LoadSignaturesByTransactionOids(bargeldkasse.Bargeldtransaktionen.Where(transaction => transaction.SignatureOid.HasValue).Select(transaction => transaction.SignatureOid.Value).ToList()); + var signatures2Delete = DAOFactory.SearchDAO.LoadSignaturesByTransactionOids(bargeldkasse.Bargeldtransaktionen.Where(transaction => transaction.SignatureOid.HasValue && transaction.Oid.HasValue).Select(transaction => transaction.Oid.Value).ToList()); var historyEntries = new List(); From 144875337d37827b962c2d07676640ee23bed3f9 Mon Sep 17 00:00:00 2001 From: Kojo Date: Tue, 5 Mar 2024 10:40:34 +0100 Subject: [PATCH 2/3] =?UTF-8?q?BeWoNordeifel:=20QB=20Monatsunterschriften?= =?UTF-8?q?=20verkn=C3=BCpft?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Quittierungsbeleg.Designer.cs | 157 ++++++++++++------ 1 file changed, 106 insertions(+), 51 deletions(-) diff --git a/ReportImp/BeWoNordeifel/Quittierungsbeleg.Designer.cs b/ReportImp/BeWoNordeifel/Quittierungsbeleg.Designer.cs index 44b12cf0f..5725290c6 100644 --- a/ReportImp/BeWoNordeifel/Quittierungsbeleg.Designer.cs +++ b/ReportImp/BeWoNordeifel/Quittierungsbeleg.Designer.cs @@ -79,6 +79,9 @@ namespace BeWoNordeifel this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel(); this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand(); this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand(); + this.xrLabel21 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel22 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel20 = new DevExpress.XtraReports.UI.XRLabel(); this.lblUnterschriftKlient = new DevExpress.XtraReports.UI.XRLabel(); this.lblUnterschriftMitarbeiter = new DevExpress.XtraReports.UI.XRLabel(); this.xrTableAbwesenheiten = new DevExpress.XtraReports.UI.XRTable(); @@ -113,9 +116,10 @@ namespace BeWoNordeifel this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); this.fieldKontaktArt = new DevExpress.XtraReports.UI.CalculatedField(); - this.xrLabel20 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel21 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel22 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrPictureBox2 = new DevExpress.XtraReports.UI.XRPictureBox(); + this.xrPictureBox3 = new DevExpress.XtraReports.UI.XRPictureBox(); + this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel23 = new DevExpress.XtraReports.UI.XRLabel(); this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components); ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTableServiceRecords1)).BeginInit(); @@ -736,6 +740,10 @@ namespace BeWoNordeifel // GroupFooter1 // this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrPictureBox2, + this.xrPictureBox3, + this.xrLabel9, + this.xrLabel23, this.xrLabel21, this.xrLabel22, this.xrLabel20, @@ -756,6 +764,57 @@ namespace BeWoNordeifel this.GroupFooter1.KeepTogether = true; this.GroupFooter1.Name = "GroupFooter1"; // + // xrLabel21 + // + this.xrLabel21.BackColor = System.Drawing.Color.Gainsboro; + this.xrLabel21.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrLabel21.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "TotalFLMFehlkontakte", "{0:0.##}")}); + this.xrLabel21.Font = new System.Drawing.Font("Arial", 10F); + this.xrLabel21.LocationFloat = new DevExpress.Utils.PointFloat(330F, 39.99998F); + this.xrLabel21.Name = "xrLabel21"; + this.xrLabel21.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F); + this.xrLabel21.SizeF = new System.Drawing.SizeF(100.0001F, 20.00001F); + this.xrLabel21.StylePriority.UseBackColor = false; + this.xrLabel21.StylePriority.UseBorders = false; + this.xrLabel21.StylePriority.UseFont = false; + this.xrLabel21.StylePriority.UsePadding = false; + this.xrLabel21.StylePriority.UseTextAlignment = false; + this.xrLabel21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel22 + // + this.xrLabel22.BackColor = System.Drawing.Color.Gainsboro; + this.xrLabel22.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrLabel22.Font = new System.Drawing.Font("Arial", 10F); + this.xrLabel22.LocationFloat = new DevExpress.Utils.PointFloat(430.0001F, 39.99998F); + this.xrLabel22.Name = "xrLabel22"; + this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F); + this.xrLabel22.SizeF = new System.Drawing.SizeF(205.0001F, 20.00001F); + this.xrLabel22.StylePriority.UseBackColor = false; + this.xrLabel22.StylePriority.UseBorders = false; + this.xrLabel22.StylePriority.UseFont = false; + this.xrLabel22.StylePriority.UsePadding = false; + this.xrLabel22.StylePriority.UseTextAlignment = false; + this.xrLabel22.Text = "Fehlkontakte in Minuten"; + this.xrLabel22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + // + // xrLabel20 + // + this.xrLabel20.Borders = DevExpress.XtraPrinting.BorderSide.Right; + this.xrLabel20.Font = new System.Drawing.Font("Arial", 10F); + this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(0F, 39.99994F); + this.xrLabel20.Name = "xrLabel20"; + this.xrLabel20.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F); + this.xrLabel20.SizeF = new System.Drawing.SizeF(330.0001F, 20.00001F); + this.xrLabel20.StylePriority.UseBackColor = false; + this.xrLabel20.StylePriority.UseBorders = false; + this.xrLabel20.StylePriority.UseFont = false; + this.xrLabel20.StylePriority.UsePadding = false; + this.xrLabel20.StylePriority.UseTextAlignment = false; + this.xrLabel20.Text = "F = Fehlkontakt"; + this.xrLabel20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + // // lblUnterschriftKlient // this.lblUnterschriftKlient.Borders = DevExpress.XtraPrinting.BorderSide.Top; @@ -763,7 +822,7 @@ namespace BeWoNordeifel this.lblUnterschriftKlient.LocationFloat = new DevExpress.Utils.PointFloat(0F, 256F); this.lblUnterschriftKlient.Name = "lblUnterschriftKlient"; this.lblUnterschriftKlient.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F); - this.lblUnterschriftKlient.SizeF = new System.Drawing.SizeF(271.8472F, 20F); + this.lblUnterschriftKlient.SizeF = new System.Drawing.SizeF(319.3611F, 20.00003F); this.lblUnterschriftKlient.StylePriority.UseBackColor = false; this.lblUnterschriftKlient.StylePriority.UseBorders = false; this.lblUnterschriftKlient.StylePriority.UseFont = false; @@ -776,10 +835,10 @@ namespace BeWoNordeifel // this.lblUnterschriftMitarbeiter.Borders = DevExpress.XtraPrinting.BorderSide.Top; this.lblUnterschriftMitarbeiter.Font = new System.Drawing.Font("Arial", 10F); - this.lblUnterschriftMitarbeiter.LocationFloat = new DevExpress.Utils.PointFloat(298.3058F, 256F); + this.lblUnterschriftMitarbeiter.LocationFloat = new DevExpress.Utils.PointFloat(331F, 256F); this.lblUnterschriftMitarbeiter.Name = "lblUnterschriftMitarbeiter"; this.lblUnterschriftMitarbeiter.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F); - this.lblUnterschriftMitarbeiter.SizeF = new System.Drawing.SizeF(336.6944F, 19.99998F); + this.lblUnterschriftMitarbeiter.SizeF = new System.Drawing.SizeF(319.3611F, 19.99997F); this.lblUnterschriftMitarbeiter.StylePriority.UseBackColor = false; this.lblUnterschriftMitarbeiter.StylePriority.UseBorders = false; this.lblUnterschriftMitarbeiter.StylePriority.UseFont = false; @@ -1157,56 +1216,48 @@ namespace BeWoNordeifel this.fieldKontaktArt.FieldType = DevExpress.XtraReports.UI.FieldType.String; this.fieldKontaktArt.Name = "fieldKontaktArt"; // - // xrLabel20 + // xrPictureBox2 // - this.xrLabel20.Borders = DevExpress.XtraPrinting.BorderSide.Right; - this.xrLabel20.Font = new System.Drawing.Font("Arial", 10F); - this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(0F, 39.99994F); - this.xrLabel20.Name = "xrLabel20"; - this.xrLabel20.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F); - this.xrLabel20.SizeF = new System.Drawing.SizeF(330.0001F, 20.00001F); - this.xrLabel20.StylePriority.UseBackColor = false; - this.xrLabel20.StylePriority.UseBorders = false; - this.xrLabel20.StylePriority.UseFont = false; - this.xrLabel20.StylePriority.UsePadding = false; - this.xrLabel20.StylePriority.UseTextAlignment = false; - this.xrLabel20.Text = "F = Fehlkontakt"; - this.xrLabel20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrPictureBox2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Image", null, "EmployeeSignature")}); + this.xrPictureBox2.LocationFloat = new DevExpress.Utils.PointFloat(451F, 220.5F); + this.xrPictureBox2.Name = "xrPictureBox2"; + this.xrPictureBox2.Scripts.OnBeforePrint = "xrPictureBox1_BeforePrint"; + this.xrPictureBox2.SizeF = new System.Drawing.SizeF(199.3611F, 35.50002F); + this.xrPictureBox2.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage; // - // xrLabel21 + // xrPictureBox3 // - this.xrLabel21.BackColor = System.Drawing.Color.Gainsboro; - this.xrLabel21.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrLabel21.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "TotalFLMFehlkontakte", "{0:0.##}")}); - this.xrLabel21.Font = new System.Drawing.Font("Arial", 10F); - this.xrLabel21.LocationFloat = new DevExpress.Utils.PointFloat(330F, 39.99998F); - this.xrLabel21.Name = "xrLabel21"; - this.xrLabel21.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F); - this.xrLabel21.SizeF = new System.Drawing.SizeF(100.0001F, 20.00001F); - this.xrLabel21.StylePriority.UseBackColor = false; - this.xrLabel21.StylePriority.UseBorders = false; - this.xrLabel21.StylePriority.UseFont = false; - this.xrLabel21.StylePriority.UsePadding = false; - this.xrLabel21.StylePriority.UseTextAlignment = false; - this.xrLabel21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrPictureBox3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Image", null, "CustomerSignature")}); + this.xrPictureBox3.LocationFloat = new DevExpress.Utils.PointFloat(119.9999F, 220.5F); + this.xrPictureBox3.Name = "xrPictureBox3"; + this.xrPictureBox3.SizeF = new System.Drawing.SizeF(199.3611F, 35.50002F); + this.xrPictureBox3.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage; // - // xrLabel22 + // xrLabel9 // - this.xrLabel22.BackColor = System.Drawing.Color.Gainsboro; - this.xrLabel22.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrLabel22.Font = new System.Drawing.Font("Arial", 10F); - this.xrLabel22.LocationFloat = new DevExpress.Utils.PointFloat(430.0001F, 39.99998F); - this.xrLabel22.Name = "xrLabel22"; - this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F); - this.xrLabel22.SizeF = new System.Drawing.SizeF(205.0001F, 20.00001F); - this.xrLabel22.StylePriority.UseBackColor = false; - this.xrLabel22.StylePriority.UseBorders = false; - this.xrLabel22.StylePriority.UseFont = false; - this.xrLabel22.StylePriority.UsePadding = false; - this.xrLabel22.StylePriority.UseTextAlignment = false; - this.xrLabel22.Text = "Fehlkontakte in Minuten"; - this.xrLabel22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrLabel9.BackColor = System.Drawing.Color.Transparent; + this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeSignatureDate", "{0:dd.MM.yyyy}")}); + this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(331F, 220.5F); + this.xrLabel9.Name = "xrLabel9"; + this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel9.SizeF = new System.Drawing.SizeF(120F, 35.5F); + this.xrLabel9.StylePriority.UseBackColor = false; + this.xrLabel9.StylePriority.UseTextAlignment = false; + this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomCenter; + // + // xrLabel23 + // + this.xrLabel23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomerSignatureDate", "{0:dd.MM.yyyy}")}); + this.xrLabel23.LocationFloat = new DevExpress.Utils.PointFloat(0F, 220.5F); + this.xrLabel23.Name = "xrLabel23"; + this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel23.SizeF = new System.Drawing.SizeF(120F, 35.5F); + this.xrLabel23.StylePriority.UseTextAlignment = false; + this.xrLabel23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomCenter; // // bindingSource1 // @@ -1333,5 +1384,9 @@ namespace BeWoNordeifel private DevExpress.XtraReports.UI.XRLabel xrLabel20; private DevExpress.XtraReports.UI.XRLabel xrLabel21; private DevExpress.XtraReports.UI.XRLabel xrLabel22; + private DevExpress.XtraReports.UI.XRPictureBox xrPictureBox2; + private DevExpress.XtraReports.UI.XRPictureBox xrPictureBox3; + private DevExpress.XtraReports.UI.XRLabel xrLabel9; + private DevExpress.XtraReports.UI.XRLabel xrLabel23; } } From 7325598a82dec256c3f76a91df54befd67866de9 Mon Sep 17 00:00:00 2001 From: Lyndon Jetten Date: Tue, 5 Mar 2024 12:12:29 +0100 Subject: [PATCH 3/3] Fehler behoben in Kundenprojekt --- .../InvoiceCustomerReport.Designer.cs | 2 +- Service/Plugins/PluginLoader.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ReportImp/AWOMuensterlandRecklinghausen/InvoiceCustomerReport.Designer.cs b/ReportImp/AWOMuensterlandRecklinghausen/InvoiceCustomerReport.Designer.cs index 46b7c045f..5a15db03e 100644 --- a/ReportImp/AWOMuensterlandRecklinghausen/InvoiceCustomerReport.Designer.cs +++ b/ReportImp/AWOMuensterlandRecklinghausen/InvoiceCustomerReport.Designer.cs @@ -677,7 +677,7 @@ namespace AWOMuensterlandRecklinghausen this.Margins = new System.Drawing.Printing.Margins(75, 75, 100, 100); this.PageHeight = 1169; this.PageWidth = 827; - this.PaperKind = System.Drawing.Printing.PaperKind.A4; + this.PaperKind = DevExpress.Drawing.Printing.DXPaperKind.A4; this.Version = "17.1"; ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit(); diff --git a/Service/Plugins/PluginLoader.cs b/Service/Plugins/PluginLoader.cs index 83190c257..3b1d0a842 100644 --- a/Service/Plugins/PluginLoader.cs +++ b/Service/Plugins/PluginLoader.cs @@ -70,7 +70,7 @@ namespace BeWo.Service.Plugins //t = "5351926758"; // Viva a Vida //t = "2215396183"; // Diakonie Remscheid Lennep //t = "5157599087"; // SHG Schwerte - t = "4526293996"; // Fortis + //t = "4526293996"; // Fortis //t = "3647969417"; // Caritas Bottrop //t = "3057313346"; // SSB Mainz //t = "6246287823"; // BeWo Alsdorf @@ -115,7 +115,7 @@ namespace BeWo.Service.Plugins //t = "4982295287"; // ASB Hamm //t = "3890031575"; // Die Wohnhelfer Kuhrau //t = "3536719736"; // BeWo Stefanie Schäfer (BeWoKerpen) - //t = "7739670213"; // SPZ Leverkusen + t = "7739670213"; // SPZ Leverkusen //t = "3341456098"; // Hilfe Daheim (früher BeWo Schillinger) //t = "4271389563"; // Komm Mit //t = "5430005891"; // Marienhospital Eickel