diff --git a/BeWo/View/Detail/ServiceRecordEditView.xaml b/BeWo/View/Detail/ServiceRecordEditView.xaml index a5da6fb06..4d5b745fa 100644 --- a/BeWo/View/Detail/ServiceRecordEditView.xaml +++ b/BeWo/View/Detail/ServiceRecordEditView.xaml @@ -67,8 +67,8 @@ - - + + @@ -104,12 +104,12 @@ - + - + - - + + @@ -160,15 +160,14 @@ - - + - + - - + + @@ -271,19 +270,20 @@ - - - + + + + - diff --git a/BeWo/View/Detail/ServiceRecordEditView.xaml.cs b/BeWo/View/Detail/ServiceRecordEditView.xaml.cs index a38d91da9..2f85ee3ce 100644 --- a/BeWo/View/Detail/ServiceRecordEditView.xaml.cs +++ b/BeWo/View/Detail/ServiceRecordEditView.xaml.cs @@ -171,6 +171,7 @@ namespace BeWo.View.Detail if (!pSCViewModel.EditAllowed) { + GridOben.IsEnabled = false; btnSave.Visibility = Visibility.Hidden; @@ -201,75 +202,54 @@ namespace BeWo.View.Detail var Settings = BeWoApp.AppSettings; - if (scv == ServiceRecordFormate.ZeiterfassungMitEndDatum) + if (scv == ServiceRecordFormate.ZeiterfassungMitMonatJahr) { - GridMitEnddatum.Visibility = Visibility.Visible; - GridOhneEnddatum.Visibility = Visibility.Collapsed; - GridMitJahrMonat.Visibility = Visibility.Collapsed; + GridMitJahrMonat.Visibility = Visibility.Visible; + GridOhneEnddatum.Visibility = Visibility.Collapsed; + GridMitEnddatum.Visibility = Visibility.Collapsed; - - numerictb_distance.SetValue(WidthProperty,(double)59); + numerictb_distance.SetValue(WidthProperty, (double) 93); numerictb_distance.SetValue(HorizontalAlignmentProperty, HorizontalAlignment.Right); - lblDistance.SetValue(HorizontalAlignmentProperty, HorizontalAlignment.Right); + lblDistance.SetValue(Grid.ColumnProperty, 0); + lblDistance.SetValue(Grid.ColumnSpanProperty, 2); + } + else + { if (Settings.IsZeiterfassungInStdMin || zsd == ZeiterfassungsDauer.Stunden) { - MinSTDMitEnd.Visibility = Visibility.Visible; - MinStdDauerlbl.SetValue(Grid.ColumnProperty, 0); - numeric_duration.SetValue(Grid.ColumnProperty, 1); + MinSTDOhneEnd.Visibility = Visibility.Visible; + MinStdDauerLabel.SetValue(Grid.ColumnProperty, 0); + numerictb_duration.SetValue(Grid.ColumnProperty, 1); + MinStdDauerLabel.Content = "Dauer"; + MinStdDauerlbl.Content = "Dauer"; - if (MinSTDMitEnd.Text == ZeiterfassungsDauer.Stunden.ToString()) + if (zsd == ZeiterfassungsDauer.Stunden) { - numeric_duration.IsFloatValue = true; - numeric_duration.Mask = "########0.00"; + numerictb_duration.IsFloatValue = true; + numerictb_duration.Mask = "########0.00"; } else { - numeric_duration.IsFloatValue = false; - numeric_duration.Mask = "########"; + numerictb_duration.IsFloatValue = false; + numerictb_duration.Mask = "########"; } } - } - else - if (scv == ServiceRecordFormate.ZeiterfassungMitMonatJahr) + + if (scv == ServiceRecordFormate.ZeiterfassungMitEndDatum)//Settings.IsEndDateVisible) { - GridMitJahrMonat.Visibility = Visibility.Visible; + GridMitEnddatum.Visibility = Visibility.Visible; GridOhneEnddatum.Visibility = Visibility.Collapsed; - GridMitEnddatum.Visibility = Visibility.Collapsed; - - numerictb_distance.SetValue(WidthProperty,(double)93); - numerictb_distance.SetValue(HorizontalAlignmentProperty, HorizontalAlignment.Right); - lblDistance.SetValue(Grid.ColumnProperty, 0); - lblDistance.SetValue(Grid.ColumnSpanProperty , 2); - - } - else - { - GridOhneEnddatum.Visibility = Visibility.Visible; - GridMitEnddatum.Visibility = Visibility.Collapsed; - GridMitJahrMonat.Visibility = Visibility.Collapsed; - - // ist STDMin gestzt abfrage - if (Settings.IsZeiterfassungInStdMin || zsd == ZeiterfassungsDauer.Stunden) - { - MinSTDOhneEnd.Visibility = Visibility.Visible; - MinStdDauerLabel.SetValue(Grid.ColumnProperty, 0); - numerictb_duration.SetValue(Grid.ColumnProperty, 1); - MinStdDauerLabel.Content = "Dauer"; - - if (zsd == ZeiterfassungsDauer.Stunden) - { - numerictb_duration.IsFloatValue = true; - numerictb_duration.Mask = "########0.00"; - } - else - { - numerictb_duration.IsFloatValue = false; - numerictb_duration.Mask = "########"; - } - } - + GridMitJahrMonat.Visibility = Visibility.Collapsed; } + else + { + GridOhneEnddatum.Visibility = Visibility.Visible; + GridMitEnddatum.Visibility = Visibility.Collapsed; + GridMitJahrMonat.Visibility = Visibility.Collapsed; + } + } + } public bool IsCustomerChangeAllowed() diff --git a/BeWo/View/Detail/ServiceRecordGroupEditView.xaml.cs b/BeWo/View/Detail/ServiceRecordGroupEditView.xaml.cs index f918fd09f..c39f968d6 100644 --- a/BeWo/View/Detail/ServiceRecordGroupEditView.xaml.cs +++ b/BeWo/View/Detail/ServiceRecordGroupEditView.xaml.cs @@ -735,48 +735,47 @@ namespace BeWo.View.Detail numeric_duration.Mask = "########"; } } + } + else if (scv == ServiceRecordFormate.ZeiterfassungMitMonatJahr /*Settings.IsOnlyYearMonthVisible*/) + { + GridMitJahrMonat.Visibility = Visibility.Visible; + GridOhneEnddatum.Visibility = Visibility.Collapsed; + GridMitEnddatum.Visibility = Visibility.Collapsed; + + numerictb_distance.SetValue(WidthProperty, (double) 64); + numerictb_distance.SetValue(HorizontalAlignmentProperty, HorizontalAlignment.Right); + lblDistance.SetValue(Grid.ColumnProperty, 0); + lblDistance.SetValue(Grid.ColumnSpanProperty, 2); + + } else - if (scv == ServiceRecordFormate.ZeiterfassungMitMonatJahr /*Settings.IsOnlyYearMonthVisible*/) + { + GridOhneEnddatum.Visibility = Visibility.Visible; + GridMitEnddatum.Visibility = Visibility.Collapsed; + GridMitJahrMonat.Visibility = Visibility.Collapsed; + + // ist STDMin gestzt abfrage + if (Settings.IsZeiterfassungInStdMin || zsd == ZeiterfassungsDauer.Stunden) { - GridMitJahrMonat.Visibility = Visibility.Visible; - GridOhneEnddatum.Visibility = Visibility.Collapsed; - GridMitEnddatum.Visibility = Visibility.Collapsed; - - numerictb_distance.SetValue(WidthProperty, (double)64); - numerictb_distance.SetValue(HorizontalAlignmentProperty, HorizontalAlignment.Right); - lblDistance.SetValue(Grid.ColumnProperty, 0); - lblDistance.SetValue(Grid.ColumnSpanProperty, 2); - - - } - else - { - GridOhneEnddatum.Visibility = Visibility.Visible; - GridMitEnddatum.Visibility = Visibility.Collapsed; - GridMitJahrMonat.Visibility = Visibility.Collapsed; - - // ist STDMin gestzt abfrage - if (Settings.IsZeiterfassungInStdMin || zsd == ZeiterfassungsDauer.Stunden) + MinSTDOhneEnd.Visibility = Visibility.Visible; + MinStdDauerLabel.SetValue(Grid.ColumnProperty, 0); + numerictb_duration.SetValue(Grid.ColumnProperty, 1); + MinStdDauerLabel.Content = "Dauer"; + MinStdDauerlbl.Content = "Dauer"; + if (MinSTDOhneEnd.Text == ZeiterfassungsDauer.Stunden.ToString()) { - MinSTDOhneEnd.Visibility = Visibility.Visible; - MinStdDauerLabel.SetValue(Grid.ColumnProperty, 0); - numerictb_duration.SetValue(Grid.ColumnProperty, 1); - MinStdDauerLabel.Content = "Dauer"; - - if (MinSTDOhneEnd.Text == ZeiterfassungsDauer.Stunden.ToString()) - { - numerictb_duration.IsFloatValue = true; - numerictb_duration.Mask = "########0.00"; - } - else - { - numerictb_duration.IsFloatValue = false; - numerictb_duration.Mask = "########"; - } + numerictb_duration.IsFloatValue = true; + numerictb_duration.Mask = "########0.00"; + } + else + { + numerictb_duration.IsFloatValue = false; + numerictb_duration.Mask = "########"; } - } + + } } private void MinSTDMitEnd_OnSelectedIndexChanged(object sender, RoutedEventArgs e) diff --git a/BeWo/View/Detail/ServiceRecordView2.xaml.cs b/BeWo/View/Detail/ServiceRecordView2.xaml.cs index 6ea853f23..9dbdd6fcc 100644 --- a/BeWo/View/Detail/ServiceRecordView2.xaml.cs +++ b/BeWo/View/Detail/ServiceRecordView2.xaml.cs @@ -341,6 +341,7 @@ namespace BeWo.View.Detail MinStdDauerLabel.SetValue(Grid.ColumnProperty, 0); numerictb_duration.SetValue(Grid.ColumnProperty, 1); MinStdDauerLabel.Content = "Dauer"; + MinStdDauerlbl.Content = "Dauer"; if (MinSTDOhneEnd.Text == ZeiterfassungsDauer.Stunden.ToString()) { diff --git a/BeWo/ViewModel/ServiceRecordVM.cs b/BeWo/ViewModel/ServiceRecordVM.cs index d3967ad72..24e52e4ec 100644 --- a/BeWo/ViewModel/ServiceRecordVM.cs +++ b/BeWo/ViewModel/ServiceRecordVM.cs @@ -2077,18 +2077,19 @@ namespace BeWo.ViewModel _StartTime = pDataContract.Start.Value; _EndTime = pDataContract.End.Value; _EditableEndDate = pDataContract.End.Value; - - if (pDataContract.DurationInStunden == ZeiterfassungsDauer.Stunden ) - { - _DurationSTD = (decimal) (pDataContract.End.Value - pDataContract.Start.Value).TotalHours; - } - else - { - _DurationSTD = (pDataContract.End.Value - pDataContract.Start.Value).GetTotalMinutes(); - } - _Duration = 0; - _DurationMonthYearGes = 0; + if (pDataContract.DurationInStunden == ZeiterfassungsDauer.Stunden) + { + _DurationSTD = (decimal) (pDataContract.End.Value - pDataContract.Start.Value).TotalHours; + _Duration = _DurationSTD; + } + else + { + _DurationSTD = (pDataContract.End.Value - pDataContract.Start.Value).GetTotalMinutes(); + } + + //_Duration = _DurationSTD; + _DurationMonthYearGes = 0; } else if (pDataContract.ServiceRecordFormat == ServiceRecordFormate.ZeiterfassungMitMonatJahr) { diff --git a/Model/neueRechte.sql b/Model/neueRechte.sql index fa82ebf62..9c550e4f8 100644 --- a/Model/neueRechte.sql +++ b/Model/neueRechte.sql @@ -1,17 +1,5 @@ -delete from rightrelation where righttype = 20800; -delete from rightrelation where righttype = 10028; -delete from rightrelation where righttype = 10029; -delete from rightrelation where righttype = 10030; +delete from rightrelation where righttype = 22011; insert into rightrelation (UserGroupOid, Tid, RightType, IsActive, Version) -select oid, 0, 20800, 1, 1 from usergroup; - -insert into rightrelation (UserGroupOid, Tid, RightType, IsActive, Version) -select oid, 0, 10028, 1, 1 from usergroup; - -insert into rightrelation (UserGroupOid, Tid, RightType, IsActive, Version) -select oid, 0, 10029, 1, 1 from usergroup; - -insert into rightrelation (UserGroupOid, Tid, RightType, IsActive, Version) -select oid, 0, 10030, 1, 1 from usergroup; \ No newline at end of file +select oid, 0, 22011, 1, 1 from usergroup; diff --git a/ReportImp/ABCBetreuungenReports/ABCBetreuungenReports.csproj b/ReportImp/ABCBetreuungenReports/ABCBetreuungenReports.csproj index 20c1256b8..e45d46d87 100644 --- a/ReportImp/ABCBetreuungenReports/ABCBetreuungenReports.csproj +++ b/ReportImp/ABCBetreuungenReports/ABCBetreuungenReports.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/ABCBetreuungenReports/Properties/licenses.licx b/ReportImp/ABCBetreuungenReports/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/ABCBetreuungenReports/Properties/licenses.licx +++ b/ReportImp/ABCBetreuungenReports/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/ABWElsebrock/ABWElsebrock.csproj b/ReportImp/ABWElsebrock/ABWElsebrock.csproj index f92316969..a37ee0b9f 100644 --- a/ReportImp/ABWElsebrock/ABWElsebrock.csproj +++ b/ReportImp/ABWElsebrock/ABWElsebrock.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/ABWElsebrock/Properties/licenses.licx b/ReportImp/ABWElsebrock/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/ABWElsebrock/Properties/licenses.licx +++ b/ReportImp/ABWElsebrock/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/ASBBergischGladbachReports/ASBBergischGladbachReports.csproj b/ReportImp/ASBBergischGladbachReports/ASBBergischGladbachReports.csproj index 666968b12..c9f48860f 100644 --- a/ReportImp/ASBBergischGladbachReports/ASBBergischGladbachReports.csproj +++ b/ReportImp/ASBBergischGladbachReports/ASBBergischGladbachReports.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/ASBBergischGladbachReports/Properties/licenses.licx b/ReportImp/ASBBergischGladbachReports/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/ASBBergischGladbachReports/Properties/licenses.licx +++ b/ReportImp/ASBBergischGladbachReports/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/ASBHammReports/ASBHammReports.csproj b/ReportImp/ASBHammReports/ASBHammReports.csproj index 9a2c44729..2d47b8b7b 100644 --- a/ReportImp/ASBHammReports/ASBHammReports.csproj +++ b/ReportImp/ASBHammReports/ASBHammReports.csproj @@ -31,19 +31,19 @@ 4 - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/ReportImp/ASBHammReports/Properties/licenses.licx b/ReportImp/ASBHammReports/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/ASBHammReports/Properties/licenses.licx +++ b/ReportImp/ASBHammReports/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/AachenerVereinReports/AachenerVereinReports.csproj b/ReportImp/AachenerVereinReports/AachenerVereinReports.csproj index 357890859..d53dacf3e 100644 --- a/ReportImp/AachenerVereinReports/AachenerVereinReports.csproj +++ b/ReportImp/AachenerVereinReports/AachenerVereinReports.csproj @@ -54,20 +54,20 @@ false - - - - - - - - - + + + + + + + + + - - - - + + + + 3.5 diff --git a/ReportImp/AachenerVereinReports/Properties/licenses.licx b/ReportImp/AachenerVereinReports/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/AachenerVereinReports/Properties/licenses.licx +++ b/ReportImp/AachenerVereinReports/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/AdikKleve/AdikKleve.csproj b/ReportImp/AdikKleve/AdikKleve.csproj index 4719bee00..17bc1a9ae 100644 --- a/ReportImp/AdikKleve/AdikKleve.csproj +++ b/ReportImp/AdikKleve/AdikKleve.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/AdikKleve/Properties/licenses.licx b/ReportImp/AdikKleve/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/AdikKleve/Properties/licenses.licx +++ b/ReportImp/AdikKleve/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/AidsHilfeGiessen/AidsHilfeGiessen.csproj b/ReportImp/AidsHilfeGiessen/AidsHilfeGiessen.csproj index df87045e5..813a5cf99 100644 --- a/ReportImp/AidsHilfeGiessen/AidsHilfeGiessen.csproj +++ b/ReportImp/AidsHilfeGiessen/AidsHilfeGiessen.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/AidsHilfeGiessen/Properties/licenses.licx b/ReportImp/AidsHilfeGiessen/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/AidsHilfeGiessen/Properties/licenses.licx +++ b/ReportImp/AidsHilfeGiessen/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/AidsInitiativeBonn/AidsInitiativeBonn.csproj b/ReportImp/AidsInitiativeBonn/AidsInitiativeBonn.csproj index 5181c7c76..98ec21c90 100644 --- a/ReportImp/AidsInitiativeBonn/AidsInitiativeBonn.csproj +++ b/ReportImp/AidsInitiativeBonn/AidsInitiativeBonn.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/AidsInitiativeBonn/Properties/licenses.licx b/ReportImp/AidsInitiativeBonn/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/AidsInitiativeBonn/Properties/licenses.licx +++ b/ReportImp/AidsInitiativeBonn/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/AidsUndDrogenberatung/AidsUndDrogenberatung.csproj b/ReportImp/AidsUndDrogenberatung/AidsUndDrogenberatung.csproj index 530083a22..0929bec13 100644 --- a/ReportImp/AidsUndDrogenberatung/AidsUndDrogenberatung.csproj +++ b/ReportImp/AidsUndDrogenberatung/AidsUndDrogenberatung.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/AidsUndDrogenberatung/Properties/licenses.licx b/ReportImp/AidsUndDrogenberatung/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/AidsUndDrogenberatung/Properties/licenses.licx +++ b/ReportImp/AidsUndDrogenberatung/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/AidshilfeDortmund/AidshilfeDortmund.csproj b/ReportImp/AidshilfeDortmund/AidshilfeDortmund.csproj index 773f97474..e179d2e31 100644 --- a/ReportImp/AidshilfeDortmund/AidshilfeDortmund.csproj +++ b/ReportImp/AidshilfeDortmund/AidshilfeDortmund.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/AidshilfeDortmund/Properties/licenses.licx b/ReportImp/AidshilfeDortmund/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/AidshilfeDortmund/Properties/licenses.licx +++ b/ReportImp/AidshilfeDortmund/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/AidshilfeKassel/AidshilfeKassel.csproj b/ReportImp/AidshilfeKassel/AidshilfeKassel.csproj index 99021296d..8ae65ffac 100644 --- a/ReportImp/AidshilfeKassel/AidshilfeKassel.csproj +++ b/ReportImp/AidshilfeKassel/AidshilfeKassel.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/AidshilfeKassel/Properties/licenses.licx b/ReportImp/AidshilfeKassel/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/AidshilfeKassel/Properties/licenses.licx +++ b/ReportImp/AidshilfeKassel/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/ApiBerlin/ApiBerlin.csproj b/ReportImp/ApiBerlin/ApiBerlin.csproj index 46a4108ff..776677009 100644 --- a/ReportImp/ApiBerlin/ApiBerlin.csproj +++ b/ReportImp/ApiBerlin/ApiBerlin.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/ApiBerlin/Properties/licenses.licx b/ReportImp/ApiBerlin/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/ApiBerlin/Properties/licenses.licx +++ b/ReportImp/ApiBerlin/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/AssistenzaReports/AssistenzaReports.csproj b/ReportImp/AssistenzaReports/AssistenzaReports.csproj index 58f375c57..333f15ec3 100644 --- a/ReportImp/AssistenzaReports/AssistenzaReports.csproj +++ b/ReportImp/AssistenzaReports/AssistenzaReports.csproj @@ -68,19 +68,19 @@ ;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules - - - - - - - - - - - - - + + + + + + + + + + + + + 3.5 diff --git a/ReportImp/AssistenzaReports/Properties/licenses.licx b/ReportImp/AssistenzaReports/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/AssistenzaReports/Properties/licenses.licx +++ b/ReportImp/AssistenzaReports/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BAPBielefelderAmbulantePflege/BAPBielefelderAmbulantePflege.csproj b/ReportImp/BAPBielefelderAmbulantePflege/BAPBielefelderAmbulantePflege.csproj index 1fc8e02f4..93c90fc32 100644 --- a/ReportImp/BAPBielefelderAmbulantePflege/BAPBielefelderAmbulantePflege.csproj +++ b/ReportImp/BAPBielefelderAmbulantePflege/BAPBielefelderAmbulantePflege.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BAPBielefelderAmbulantePflege/Properties/licenses.licx b/ReportImp/BAPBielefelderAmbulantePflege/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BAPBielefelderAmbulantePflege/Properties/licenses.licx +++ b/ReportImp/BAPBielefelderAmbulantePflege/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BUGeVReports/BUGeVReports.csproj b/ReportImp/BUGeVReports/BUGeVReports.csproj index 0b6fbeb23..eee90bebe 100644 --- a/ReportImp/BUGeVReports/BUGeVReports.csproj +++ b/ReportImp/BUGeVReports/BUGeVReports.csproj @@ -31,18 +31,18 @@ 4 - - - - - - - - - - - - + + + + + + + + + + + + @@ -61,18 +61,18 @@ ServiceInvoiceReport.cs - - Component - - - SettlementReport.cs - Component SettlementReport2.cs + + Component + + + SettlementReport.cs + @@ -80,14 +80,14 @@ ServiceInvoiceReport.cs Designer - - SettlementReport.cs - Designer - SettlementReport2.cs Designer + + SettlementReport.cs + Designer + diff --git a/ReportImp/BUGeVReports/Properties/licenses.licx b/ReportImp/BUGeVReports/Properties/licenses.licx index 75335b9fa..bfe3c59aa 100644 --- a/ReportImp/BUGeVReports/Properties/licenses.licx +++ b/ReportImp/BUGeVReports/Properties/licenses.licx @@ -1 +1 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a +DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.2, Version=13.2.13.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BUGeVReports/SettlementReport.Designer.cs b/ReportImp/BUGeVReports/SettlementReport.Designer.cs index d22c62fe1..cd54a093e 100644 --- a/ReportImp/BUGeVReports/SettlementReport.Designer.cs +++ b/ReportImp/BUGeVReports/SettlementReport.Designer.cs @@ -29,115 +29,115 @@ namespace BeWo.BUGeVReports.Alt /// private void InitializeComponent() { - this.components = new System.ComponentModel.Container(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Spitzabrechnung)); - this.Detail = new DevExpress.XtraReports.UI.DetailBand(); - this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrTable1 = new DevExpress.XtraReports.UI.XRTable(); - this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow(); - this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableRow16 = new DevExpress.XtraReports.UI.XRTableRow(); - this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow(); - this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow(); - this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableRow7 = new DevExpress.XtraReports.UI.XRTableRow(); - this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableRow12 = new DevExpress.XtraReports.UI.XRTableRow(); - this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableRow18 = new DevExpress.XtraReports.UI.XRTableRow(); - this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableRow17 = new DevExpress.XtraReports.UI.XRTableRow(); - this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell(); - this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule(); - this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel(); - this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand(); - this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand(); - this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand(); - this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel(); - this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components); - this.xrLabel18 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); - this.GroupFooter3 = new DevExpress.XtraReports.UI.GroupFooterBand(); - this.xrLabel35 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrCheckBox2 = new DevExpress.XtraReports.UI.XRCheckBox(); - this.xrCheckBox1 = new DevExpress.XtraReports.UI.XRCheckBox(); - this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrTable2 = new DevExpress.XtraReports.UI.XRTable(); - this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow(); - this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow(); - this.cellStart1 = new DevExpress.XtraReports.UI.XRTableCell(); - this.cellEnd1 = new DevExpress.XtraReports.UI.XRTableCell(); - this.cellHourlyRate1 = new DevExpress.XtraReports.UI.XRTableCell(); - this.cellFLS1 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow(); - this.cellStart2 = new DevExpress.XtraReports.UI.XRTableCell(); - this.cellEnd2 = new DevExpress.XtraReports.UI.XRTableCell(); - this.cellHourlyRate2 = new DevExpress.XtraReports.UI.XRTableCell(); - this.cellFLS2 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableRow8 = new DevExpress.XtraReports.UI.XRTableRow(); - this.cellStart3 = new DevExpress.XtraReports.UI.XRTableCell(); - this.cellEnd3 = new DevExpress.XtraReports.UI.XRTableCell(); - this.cellHourlyRate3 = new DevExpress.XtraReports.UI.XRTableCell(); - this.cellFLS3 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel16 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel(); - this.GroupFooter2 = new DevExpress.XtraReports.UI.GroupFooterBand(); - this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel(); - ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); - // - // Detail - // - this.Detail.HeightF = 0F; - this.Detail.Name = "Detail"; - this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); - this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; - // - // xrLabel8 - // - this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Spitzabrechnung)); + this.Detail = new DevExpress.XtraReports.UI.DetailBand(); + this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrTable1 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow16 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow7 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow12 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow18 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow17 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell(); + this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule(); + this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel(); + this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand(); + this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand(); + this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand(); + this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel(); + this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components); + this.xrLabel18 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); + this.GroupFooter3 = new DevExpress.XtraReports.UI.GroupFooterBand(); + this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel35 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox2 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox1 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrTable2 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow(); + this.cellStart1 = new DevExpress.XtraReports.UI.XRTableCell(); + this.cellEnd1 = new DevExpress.XtraReports.UI.XRTableCell(); + this.cellHourlyRate1 = new DevExpress.XtraReports.UI.XRTableCell(); + this.cellFLS1 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow(); + this.cellStart2 = new DevExpress.XtraReports.UI.XRTableCell(); + this.cellEnd2 = new DevExpress.XtraReports.UI.XRTableCell(); + this.cellHourlyRate2 = new DevExpress.XtraReports.UI.XRTableCell(); + this.cellFLS2 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow8 = new DevExpress.XtraReports.UI.XRTableRow(); + this.cellStart3 = new DevExpress.XtraReports.UI.XRTableCell(); + this.cellEnd3 = new DevExpress.XtraReports.UI.XRTableCell(); + this.cellHourlyRate3 = new DevExpress.XtraReports.UI.XRTableCell(); + this.cellFLS3 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel16 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel(); + this.GroupFooter2 = new DevExpress.XtraReports.UI.GroupFooterBand(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); + // + // Detail + // + this.Detail.HeightF = 0F; + this.Detail.Name = "Detail"; + this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); + this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // xrLabel8 + // + this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceDate")}); - this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(435.4167F, 210F); - this.xrLabel8.Name = "xrLabel8"; - this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel8.SizeF = new System.Drawing.SizeF(191.6667F, 16.83345F); - this.xrLabel8.StylePriority.UseTextAlignment = false; - this.xrLabel8.Text = "xrLabel8"; - this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; - // - // xrTable1 - // - this.xrTable1.BorderColor = System.Drawing.SystemColors.ControlLight; - this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 394.083F); - this.xrTable1.Name = "xrTable1"; - this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(435.4167F, 210F); + this.xrLabel8.Name = "xrLabel8"; + this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel8.SizeF = new System.Drawing.SizeF(191.6667F, 16.83345F); + this.xrLabel8.StylePriority.UseTextAlignment = false; + this.xrLabel8.Text = "xrLabel8"; + this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // xrTable1 + // + this.xrTable1.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 394.083F); + this.xrTable1.Name = "xrTable1"; + this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow1, this.xrTableRow16, this.xrTableRow3, @@ -146,309 +146,324 @@ namespace BeWo.BUGeVReports.Alt this.xrTableRow12, this.xrTableRow18, this.xrTableRow17}); - this.xrTable1.SizeF = new System.Drawing.SizeF(627.0834F, 149.0001F); - this.xrTable1.StylePriority.UseBorderColor = false; - // - // xrTableRow1 - // - this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTable1.SizeF = new System.Drawing.SizeF(627.0834F, 149.0001F); + this.xrTable1.StylePriority.UseBorderColor = false; + // + // xrTableRow1 + // + this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell1}); - this.xrTableRow1.Name = "xrTableRow1"; - this.xrTableRow1.Weight = 0.085D; - // - // xrTableCell1 - // - this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + this.xrTableRow1.Name = "xrTableRow1"; + this.xrTableRow1.Weight = 0.085D; + // + // xrTableCell1 + // + this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell1.Multiline = true; - this.xrTableCell1.Name = "xrTableCell1"; - this.xrTableCell1.StylePriority.UseBorders = false; - this.xrTableCell1.Text = "Erbrachte Leistungen:"; - this.xrTableCell1.Weight = 1D; - // - // xrTableRow16 - // - this.xrTableRow16.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell1.Multiline = true; + this.xrTableCell1.Name = "xrTableCell1"; + this.xrTableCell1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F); + this.xrTableCell1.StylePriority.UseBorders = false; + this.xrTableCell1.StylePriority.UsePadding = false; + this.xrTableCell1.Text = "Erbrachte Leistungen:"; + this.xrTableCell1.Weight = 1D; + // + // xrTableRow16 + // + this.xrTableRow16.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell6, this.xrTableCell8}); - this.xrTableRow16.Name = "xrTableRow16"; - this.xrTableRow16.Weight = 0.085D; - // - // xrTableCell6 - // - this.xrTableCell6.BackColor = System.Drawing.Color.Transparent; - this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) - | DevExpress.XtraPrinting.BorderSide.Right) + this.xrTableRow16.Name = "xrTableRow16"; + this.xrTableRow16.Weight = 0.085D; + // + // xrTableCell6 + // + this.xrTableCell6.BackColor = System.Drawing.Color.Transparent; + this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell6.CanShrink = true; - this.xrTableCell6.Name = "xrTableCell6"; - this.xrTableCell6.StylePriority.UseBackColor = false; - this.xrTableCell6.StylePriority.UseBorders = false; - this.xrTableCell6.Text = "[Abrechnungstext1]"; - this.xrTableCell6.Weight = 0.78314100999098557D; - // - // xrTableCell8 - // - this.xrTableCell8.Borders = DevExpress.XtraPrinting.BorderSide.Right; - this.xrTableCell8.CanShrink = true; - this.xrTableCell8.Name = "xrTableCell8"; - this.xrTableCell8.StylePriority.UseBorders = false; - this.xrTableCell8.StylePriority.UseTextAlignment = false; - this.xrTableCell8.Text = "[Betrag1]"; - this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; - this.xrTableCell8.Weight = 0.2168589900090144D; - // - // xrTableRow3 - // - this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell6.CanShrink = true; + this.xrTableCell6.Name = "xrTableCell6"; + this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F); + this.xrTableCell6.StylePriority.UseBackColor = false; + this.xrTableCell6.StylePriority.UseBorders = false; + this.xrTableCell6.StylePriority.UsePadding = false; + this.xrTableCell6.Text = "[Abrechnungstext1]"; + this.xrTableCell6.Weight = 0.78314100999098557D; + // + // xrTableCell8 + // + this.xrTableCell8.Borders = DevExpress.XtraPrinting.BorderSide.Right; + this.xrTableCell8.CanShrink = true; + this.xrTableCell8.Name = "xrTableCell8"; + this.xrTableCell8.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 2, 0, 0, 100F); + this.xrTableCell8.StylePriority.UseBorders = false; + this.xrTableCell8.StylePriority.UsePadding = false; + this.xrTableCell8.StylePriority.UseTextAlignment = false; + this.xrTableCell8.Text = "[Betrag1]"; + this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell8.Weight = 0.2168589900090144D; + // + // xrTableRow3 + // + this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell7, this.xrTableCell9}); - this.xrTableRow3.Name = "xrTableRow3"; - this.xrTableRow3.Weight = 0.085D; - // - // xrTableCell7 - // - this.xrTableCell7.BackColor = System.Drawing.Color.Transparent; - this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell7.CanShrink = true; - this.xrTableCell7.Name = "xrTableCell7"; - this.xrTableCell7.StylePriority.UseBackColor = false; - this.xrTableCell7.StylePriority.UseBorders = false; - this.xrTableCell7.Text = "[Abrechnungstext2]"; - this.xrTableCell7.Weight = 0.78301278921274042D; - // - // xrTableCell9 - // - this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) + this.xrTableRow3.Name = "xrTableRow3"; + this.xrTableRow3.Weight = 0.085D; + // + // xrTableCell7 + // + this.xrTableCell7.BackColor = System.Drawing.Color.Transparent; + this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell9.CanShrink = true; - this.xrTableCell9.Name = "xrTableCell9"; - this.xrTableCell9.StylePriority.UseBorders = false; - this.xrTableCell9.StylePriority.UseTextAlignment = false; - this.xrTableCell9.Text = "[Betrag2]"; - this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; - this.xrTableCell9.Weight = 0.21698721078725958D; - // - // xrTableRow4 - // - this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell7.CanShrink = true; + this.xrTableCell7.Name = "xrTableCell7"; + this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F); + this.xrTableCell7.StylePriority.UseBackColor = false; + this.xrTableCell7.StylePriority.UseBorders = false; + this.xrTableCell7.StylePriority.UsePadding = false; + this.xrTableCell7.Text = "[Abrechnungstext2]"; + this.xrTableCell7.Weight = 0.78301278921274042D; + // + // xrTableCell9 + // + this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell9.CanShrink = true; + this.xrTableCell9.Name = "xrTableCell9"; + this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 2, 0, 0, 100F); + this.xrTableCell9.StylePriority.UseBorders = false; + this.xrTableCell9.StylePriority.UsePadding = false; + this.xrTableCell9.StylePriority.UseTextAlignment = false; + this.xrTableCell9.Text = "[Betrag2]"; + this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell9.Weight = 0.21698721078725958D; + // + // xrTableRow4 + // + this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell12, this.xrTableCell11}); - this.xrTableRow4.Name = "xrTableRow4"; - this.xrTableRow4.Weight = 0.085D; - // - // xrTableCell12 - // - this.xrTableCell12.BackColor = System.Drawing.Color.Transparent; - this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell12.CanShrink = true; - this.xrTableCell12.Name = "xrTableCell12"; - this.xrTableCell12.StylePriority.UseBackColor = false; - this.xrTableCell12.StylePriority.UseBorders = false; - this.xrTableCell12.Text = "[Abrechnungstext3]"; - this.xrTableCell12.Weight = 0.78314100999098557D; - // - // xrTableCell11 - // - this.xrTableCell11.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell11.CanShrink = true; - this.xrTableCell11.Name = "xrTableCell11"; - this.xrTableCell11.StylePriority.UseBorders = false; - this.xrTableCell11.StylePriority.UseTextAlignment = false; - this.xrTableCell11.Text = "[Betrag3]"; - this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; - this.xrTableCell11.Weight = 0.2168589900090144D; - // - // xrTableRow7 - // - this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { - this.xrTableCell3}); - this.xrTableRow7.Name = "xrTableRow7"; - this.xrTableRow7.Weight = 0.085D; - // - // xrTableCell3 - // - this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + this.xrTableRow4.Name = "xrTableRow4"; + this.xrTableRow4.Weight = 0.085D; + // + // xrTableCell12 + // + this.xrTableCell12.BackColor = System.Drawing.Color.Transparent; + this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell3.Name = "xrTableCell3"; - this.xrTableCell3.StylePriority.UseBorders = false; - this.xrTableCell3.Weight = 1D; - // - // xrTableRow12 - // - this.xrTableRow12.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell12.CanShrink = true; + this.xrTableCell12.Name = "xrTableCell12"; + this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F); + this.xrTableCell12.StylePriority.UseBackColor = false; + this.xrTableCell12.StylePriority.UseBorders = false; + this.xrTableCell12.StylePriority.UsePadding = false; + this.xrTableCell12.Text = "[Abrechnungstext3]"; + this.xrTableCell12.Weight = 0.78314100999098557D; + // + // xrTableCell11 + // + this.xrTableCell11.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell11.CanShrink = true; + this.xrTableCell11.Name = "xrTableCell11"; + this.xrTableCell11.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 2, 0, 0, 100F); + this.xrTableCell11.StylePriority.UseBorders = false; + this.xrTableCell11.StylePriority.UsePadding = false; + this.xrTableCell11.StylePriority.UseTextAlignment = false; + this.xrTableCell11.Text = "[Betrag3]"; + this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell11.Weight = 0.2168589900090144D; + // + // xrTableRow7 + // + this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell3}); + this.xrTableRow7.Name = "xrTableRow7"; + this.xrTableRow7.Weight = 0.085D; + // + // xrTableCell3 + // + this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell3.Name = "xrTableCell3"; + this.xrTableCell3.StylePriority.UseBorders = false; + this.xrTableCell3.Weight = 1D; + // + // xrTableRow12 + // + this.xrTableRow12.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell24, this.xrTableCell10}); - this.xrTableRow12.Name = "xrTableRow12"; - this.xrTableRow12.Weight = 0.085D; - // - // xrTableCell24 - // - this.xrTableCell24.BorderColor = System.Drawing.SystemColors.ControlLight; - this.xrTableCell24.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell24.Name = "xrTableCell24"; - this.xrTableCell24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrTableCell24.StylePriority.UseBorderColor = false; - this.xrTableCell24.StylePriority.UseBorders = false; - this.xrTableCell24.StylePriority.UseFont = false; - this.xrTableCell24.Text = "abzüglich der geleisteten Abschlagszahlung:"; - this.xrTableCell24.Weight = 0.78314100999098568D; - // - // xrTableCell10 - // - this.xrTableCell10.BorderColor = System.Drawing.SystemColors.ControlLight; - this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + this.xrTableRow12.Name = "xrTableRow12"; + this.xrTableRow12.Weight = 0.085D; + // + // xrTableCell24 + // + this.xrTableCell24.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell24.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell24.Name = "xrTableCell24"; + this.xrTableCell24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell24.StylePriority.UseBorderColor = false; + this.xrTableCell24.StylePriority.UseBorders = false; + this.xrTableCell24.StylePriority.UseFont = false; + this.xrTableCell24.Text = "abzüglich der geleisteten Abschlagszahlung:"; + this.xrTableCell24.Weight = 0.78314100999098568D; + // + // xrTableCell10 + // + this.xrTableCell10.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell10.Name = "xrTableCell10"; - this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrTableCell10.StylePriority.UseBorderColor = false; - this.xrTableCell10.StylePriority.UseBorders = false; - this.xrTableCell10.StylePriority.UseFont = false; - this.xrTableCell10.StylePriority.UseTextAlignment = false; - this.xrTableCell10.Text = "[AmountAdvancedPayments]"; - this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; - this.xrTableCell10.Weight = 0.21685899000901443D; - // - // xrTableRow18 - // - this.xrTableRow18.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell10.Name = "xrTableCell10"; + this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell10.StylePriority.UseBorderColor = false; + this.xrTableCell10.StylePriority.UseBorders = false; + this.xrTableCell10.StylePriority.UseFont = false; + this.xrTableCell10.StylePriority.UseTextAlignment = false; + this.xrTableCell10.Text = "[AmountAdvancedPayments]"; + this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell10.Weight = 0.21685899000901443D; + // + // xrTableRow18 + // + this.xrTableRow18.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell25}); - this.xrTableRow18.Name = "xrTableRow18"; - this.xrTableRow18.Weight = 0.085D; - // - // xrTableCell25 - // - this.xrTableCell25.BorderColor = System.Drawing.SystemColors.ControlLight; - this.xrTableCell25.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + this.xrTableRow18.Name = "xrTableRow18"; + this.xrTableRow18.Weight = 0.085D; + // + // xrTableCell25 + // + this.xrTableCell25.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell25.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell25.Name = "xrTableCell25"; - this.xrTableCell25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrTableCell25.StylePriority.UseBorderColor = false; - this.xrTableCell25.StylePriority.UseBorders = false; - this.xrTableCell25.Weight = 1D; - // - // xrTableRow17 - // - this.xrTableRow17.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell25.Name = "xrTableCell25"; + this.xrTableCell25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell25.StylePriority.UseBorderColor = false; + this.xrTableCell25.StylePriority.UseBorders = false; + this.xrTableCell25.Weight = 1D; + // + // xrTableRow17 + // + this.xrTableRow17.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell28, this.xrTableCell17}); - this.xrTableRow17.Name = "xrTableRow17"; - this.xrTableRow17.Weight = 0.15D; - // - // xrTableCell28 - // - this.xrTableCell28.BorderColor = System.Drawing.SystemColors.ControlLight; - this.xrTableCell28.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell28.Name = "xrTableCell28"; - this.xrTableCell28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrTableCell28.StylePriority.UseBorderColor = false; - this.xrTableCell28.StylePriority.UseBorders = false; - this.xrTableCell28.StylePriority.UseFont = false; - this.xrTableCell28.Text = "Restforderung:"; - this.xrTableCell28.Weight = 0.78314100999098568D; - // - // xrTableCell17 - // - this.xrTableCell17.BorderColor = System.Drawing.SystemColors.ControlLight; - this.xrTableCell17.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + this.xrTableRow17.Name = "xrTableRow17"; + this.xrTableRow17.Weight = 0.15D; + // + // xrTableCell28 + // + this.xrTableCell28.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell28.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell28.Name = "xrTableCell28"; + this.xrTableCell28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell28.StylePriority.UseBorderColor = false; + this.xrTableCell28.StylePriority.UseBorders = false; + this.xrTableCell28.StylePriority.UseFont = false; + this.xrTableCell28.Text = "Restforderung:"; + this.xrTableCell28.Weight = 0.78314100999098568D; + // + // xrTableCell17 + // + this.xrTableCell17.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell17.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell17.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); - this.xrTableCell17.Name = "xrTableCell17"; - this.xrTableCell17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrTableCell17.StylePriority.UseBorderColor = false; - this.xrTableCell17.StylePriority.UseBorders = false; - this.xrTableCell17.StylePriority.UseFont = false; - this.xrTableCell17.StylePriority.UseTextAlignment = false; - this.xrTableCell17.Text = "[Claim]"; - this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; - this.xrTableCell17.Weight = 0.21685899000901443D; - // - // ruleRateFactorNull - // - this.ruleRateFactorNull.Condition = "[RateFactorText2] == ?"; - // - // - // - this.ruleRateFactorNull.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False; - this.ruleRateFactorNull.Name = "ruleRateFactorNull"; - // - // xrLabel6 - // - this.xrLabel6.BackColor = System.Drawing.Color.Transparent; - this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 319.0829F); - this.xrLabel6.Multiline = true; - this.xrLabel6.Name = "xrLabel6"; - this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel6.SizeF = new System.Drawing.SizeF(642F, 75F); - this.xrLabel6.StylePriority.UseBackColor = false; - this.xrLabel6.StylePriority.UseFont = false; - this.xrLabel6.Text = resources.GetString("xrLabel6.Text"); - // - // xrLabel5 - // - this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 286.0831F); - this.xrLabel5.Name = "xrLabel5"; - this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel5.SizeF = new System.Drawing.SizeF(317F, 17F); - this.xrLabel5.StylePriority.UseFont = false; - this.xrLabel5.Text = "Sehr geehrte Damen und Herren,"; - // - // xrLabel4 - // - this.xrLabel4.BackColor = System.Drawing.Color.Transparent; - this.xrLabel4.CanShrink = true; - this.xrLabel4.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); - this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 244.5833F); - this.xrLabel4.Multiline = true; - this.xrLabel4.Name = "xrLabel4"; - this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel4.SizeF = new System.Drawing.SizeF(650F, 17F); - this.xrLabel4.StylePriority.UseBackColor = false; - this.xrLabel4.StylePriority.UseFont = false; - this.xrLabel4.Text = "[CustomerReferenceNumberAndDate]"; - this.xrLabel4.WordWrap = false; - // - // xrLabel3 - // - this.xrLabel3.BackColor = System.Drawing.Color.Transparent; - this.xrLabel3.CanShrink = true; - this.xrLabel3.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); - this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 227.5833F); - this.xrLabel3.Name = "xrLabel3"; - this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel3.SizeF = new System.Drawing.SizeF(650F, 17F); - this.xrLabel3.StylePriority.UseBackColor = false; - this.xrLabel3.StylePriority.UseFont = false; - this.xrLabel3.Text = "Abrechnung Betreuungsleistungen für [Salutation2] [CustomerName]"; - this.xrLabel3.WordWrap = false; - // - // xrLabel2 - // - this.xrLabel2.BackColor = System.Drawing.Color.Transparent; - this.xrLabel2.CanShrink = true; - this.xrLabel2.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); - this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 210F); - this.xrLabel2.Name = "xrLabel2"; - this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel2.SizeF = new System.Drawing.SizeF(435.4167F, 16.99998F); - this.xrLabel2.StylePriority.UseBackColor = false; - this.xrLabel2.StylePriority.UseFont = false; - this.xrLabel2.Text = "Rechnung Nr. [InvoiceNumber]"; - this.xrLabel2.WordWrap = false; - // - // topMarginBand1 - // - this.topMarginBand1.HeightF = 230F; - this.topMarginBand1.Name = "topMarginBand1"; - // - // bottomMarginBand1 - // - this.bottomMarginBand1.Name = "bottomMarginBand1"; - // - // GroupHeader1 - // - this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrTableCell17.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrTableCell17.Name = "xrTableCell17"; + this.xrTableCell17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell17.StylePriority.UseBorderColor = false; + this.xrTableCell17.StylePriority.UseBorders = false; + this.xrTableCell17.StylePriority.UseFont = false; + this.xrTableCell17.StylePriority.UseTextAlignment = false; + this.xrTableCell17.Text = "[Claim]"; + this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell17.Weight = 0.21685899000901443D; + // + // ruleRateFactorNull + // + this.ruleRateFactorNull.Condition = "[RateFactorText2] == ?"; + // + // + // + this.ruleRateFactorNull.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False; + this.ruleRateFactorNull.Name = "ruleRateFactorNull"; + // + // xrLabel6 + // + this.xrLabel6.BackColor = System.Drawing.Color.Transparent; + this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 319.0829F); + this.xrLabel6.Multiline = true; + this.xrLabel6.Name = "xrLabel6"; + this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel6.SizeF = new System.Drawing.SizeF(642F, 75F); + this.xrLabel6.StylePriority.UseBackColor = false; + this.xrLabel6.StylePriority.UseFont = false; + this.xrLabel6.Text = resources.GetString("xrLabel6.Text"); + // + // xrLabel5 + // + this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 286.0831F); + this.xrLabel5.Name = "xrLabel5"; + this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel5.SizeF = new System.Drawing.SizeF(317F, 17F); + this.xrLabel5.StylePriority.UseFont = false; + this.xrLabel5.Text = "Sehr geehrte Damen und Herren,"; + // + // xrLabel4 + // + this.xrLabel4.BackColor = System.Drawing.Color.Transparent; + this.xrLabel4.CanShrink = true; + this.xrLabel4.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 244.5833F); + this.xrLabel4.Multiline = true; + this.xrLabel4.Name = "xrLabel4"; + this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel4.SizeF = new System.Drawing.SizeF(650F, 17F); + this.xrLabel4.StylePriority.UseBackColor = false; + this.xrLabel4.StylePriority.UseFont = false; + this.xrLabel4.Text = "[CustomerReferenceNumberAndDate]"; + this.xrLabel4.WordWrap = false; + // + // xrLabel3 + // + this.xrLabel3.BackColor = System.Drawing.Color.Transparent; + this.xrLabel3.CanShrink = true; + this.xrLabel3.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 227.5833F); + this.xrLabel3.Name = "xrLabel3"; + this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel3.SizeF = new System.Drawing.SizeF(650F, 17F); + this.xrLabel3.StylePriority.UseBackColor = false; + this.xrLabel3.StylePriority.UseFont = false; + this.xrLabel3.Text = "Abrechnung Betreuungsleistungen für [Salutation2] [CustomerName]"; + this.xrLabel3.WordWrap = false; + // + // xrLabel2 + // + this.xrLabel2.BackColor = System.Drawing.Color.Transparent; + this.xrLabel2.CanShrink = true; + this.xrLabel2.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 210F); + this.xrLabel2.Name = "xrLabel2"; + this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel2.SizeF = new System.Drawing.SizeF(435.4167F, 16.99998F); + this.xrLabel2.StylePriority.UseBackColor = false; + this.xrLabel2.StylePriority.UseFont = false; + this.xrLabel2.Text = "Rechnung Nr. [InvoiceNumber]"; + this.xrLabel2.WordWrap = false; + // + // topMarginBand1 + // + this.topMarginBand1.HeightF = 230F; + this.topMarginBand1.Name = "topMarginBand1"; + // + // bottomMarginBand1 + // + this.bottomMarginBand1.Name = "bottomMarginBand1"; + // + // GroupHeader1 + // + this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrLabel9, this.xrLabel2, this.xrLabel3, @@ -457,69 +472,69 @@ namespace BeWo.BUGeVReports.Alt this.xrLabel6, this.xrTable1, this.xrLabel8}); - this.GroupHeader1.Font = new System.Drawing.Font("Arial", 10F); - this.GroupHeader1.HeightF = 543.0831F; - this.GroupHeader1.Name = "GroupHeader1"; - this.GroupHeader1.StylePriority.UseFont = false; - // - // xrLabel9 - // - this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); - this.xrLabel9.Multiline = true; - this.xrLabel9.Name = "xrLabel9"; - this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel9.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; - this.xrLabel9.SizeF = new System.Drawing.SizeF(292F, 81.58334F); - this.xrLabel9.StylePriority.UseFont = false; - this.xrLabel9.Text = "[RecipientOrganisation]\r\n[RecipientStreet]\r\n[RecipientPostCodeAndTown]"; - // - // bindingSource1 - // - this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.SettlementRO); - // - // xrLabel18 - // - this.xrLabel18.Font = new System.Drawing.Font("Arial", 10F); - this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); - this.xrLabel18.Multiline = true; - this.xrLabel18.Name = "xrLabel18"; - this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel18.SizeF = new System.Drawing.SizeF(292F, 81.58334F); - this.xrLabel18.StylePriority.UseFont = false; - this.xrLabel18.Text = "[RecipientOrganisation]\r\n[RecipientStreet]\r\n[RecipientPostCodeAndTown]"; - // - // xrLabel13 - // - this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(0F, 22.14584F); - this.xrLabel13.Multiline = true; - this.xrLabel13.Name = "xrLabel13"; - this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel13.SizeF = new System.Drawing.SizeF(650.0001F, 37.5F); - this.xrLabel13.StylePriority.UseFont = false; - this.xrLabel13.Text = "Bitte überweisen Sie unsere Restforderung auf das unten angegebene Konto bei der " + + this.GroupHeader1.Font = new System.Drawing.Font("Arial", 10F); + this.GroupHeader1.HeightF = 543.0831F; + this.GroupHeader1.Name = "GroupHeader1"; + this.GroupHeader1.StylePriority.UseFont = false; + // + // xrLabel9 + // + this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrLabel9.Multiline = true; + this.xrLabel9.Name = "xrLabel9"; + this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel9.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrLabel9.SizeF = new System.Drawing.SizeF(292F, 81.58334F); + this.xrLabel9.StylePriority.UseFont = false; + this.xrLabel9.Text = "[RecipientOrganisation]\r\n[RecipientStreet]\r\n[RecipientPostCodeAndTown]"; + // + // bindingSource1 + // + this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.SettlementRO); + // + // xrLabel18 + // + this.xrLabel18.Font = new System.Drawing.Font("Arial", 10F); + this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrLabel18.Multiline = true; + this.xrLabel18.Name = "xrLabel18"; + this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel18.SizeF = new System.Drawing.SizeF(292F, 81.58334F); + this.xrLabel18.StylePriority.UseFont = false; + this.xrLabel18.Text = "[RecipientOrganisation]\r\n[RecipientStreet]\r\n[RecipientPostCodeAndTown]"; + // + // xrLabel13 + // + this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(0F, 22.14584F); + this.xrLabel13.Multiline = true; + this.xrLabel13.Name = "xrLabel13"; + this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel13.SizeF = new System.Drawing.SizeF(650.0001F, 37.5F); + this.xrLabel13.StylePriority.UseFont = false; + this.xrLabel13.Text = "Bitte überweisen Sie unsere Restforderung auf das unten angegebene Konto bei der " + "Bank für Sozialwirtschaft."; - // - // xrLabel11 - // - this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(0F, 80.47918F); - this.xrLabel11.Name = "xrLabel11"; - this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel11.SizeF = new System.Drawing.SizeF(175F, 17F); - this.xrLabel11.StylePriority.UseFont = false; - this.xrLabel11.Text = "Mit freundlichen Grüßen"; - // - // xrLabel1 - // - this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 135.8541F); - this.xrLabel1.Name = "xrLabel1"; - this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel1.SizeF = new System.Drawing.SizeF(225F, 17F); - this.xrLabel1.StylePriority.UseFont = false; - this.xrLabel1.Text = "[CreatorName]"; - // - // GroupFooter3 - // - this.GroupFooter3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + // + // xrLabel11 + // + this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(0F, 80.47918F); + this.xrLabel11.Name = "xrLabel11"; + this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel11.SizeF = new System.Drawing.SizeF(175F, 17F); + this.xrLabel11.StylePriority.UseFont = false; + this.xrLabel11.Text = "Mit freundlichen Grüßen"; + // + // xrLabel1 + // + this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 135.8541F); + this.xrLabel1.Name = "xrLabel1"; + this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel1.SizeF = new System.Drawing.SizeF(225F, 17F); + this.xrLabel1.StylePriority.UseFont = false; + this.xrLabel1.Text = "[CreatorName]"; + // + // GroupFooter3 + // + this.GroupFooter3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrLabel19, this.xrLabel35, this.xrCheckBox2, @@ -533,353 +548,353 @@ namespace BeWo.BUGeVReports.Alt this.xrLabel16, this.xrLabel15, this.xrLabel18}); - this.GroupFooter3.Font = new System.Drawing.Font("Arial", 11F); - this.GroupFooter3.HeightF = 927.0833F; - this.GroupFooter3.Level = 1; - this.GroupFooter3.Name = "GroupFooter3"; - this.GroupFooter3.PageBreak = DevExpress.XtraReports.UI.PageBreak.BeforeBand; - this.GroupFooter3.StylePriority.UseFont = false; - // - // xrLabel35 - // - this.xrLabel35.BackColor = System.Drawing.Color.Transparent; - this.xrLabel35.Borders = DevExpress.XtraPrinting.BorderSide.Top; - this.xrLabel35.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold); - this.xrLabel35.LocationFloat = new DevExpress.Utils.PointFloat(0F, 615.8333F); - this.xrLabel35.Multiline = true; - this.xrLabel35.Name = "xrLabel35"; - this.xrLabel35.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel35.SizeF = new System.Drawing.SizeF(324.9999F, 17F); - this.xrLabel35.StylePriority.UseBackColor = false; - this.xrLabel35.StylePriority.UseBorders = false; - this.xrLabel35.StylePriority.UseFont = false; - this.xrLabel35.Text = "Stempel / Unterschrift"; - this.xrLabel35.WordWrap = false; - // - // xrCheckBox2 - // - this.xrCheckBox2.LocationFloat = new DevExpress.Utils.PointFloat(347.3752F, 430.4166F); - this.xrCheckBox2.Name = "xrCheckBox2"; - this.xrCheckBox2.SizeF = new System.Drawing.SizeF(211.0832F, 21.875F); - this.xrCheckBox2.Text = " Die Betreuung dauert an."; - // - // xrCheckBox1 - // - this.xrCheckBox1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 430.4166F); - this.xrCheckBox1.Name = "xrCheckBox1"; - this.xrCheckBox1.SizeF = new System.Drawing.SizeF(324.9999F, 21.875F); - this.xrCheckBox1.Text = " Die Betreuung wurde am beendet."; - // - // xrLabel17 - // - this.xrLabel17.BackColor = System.Drawing.Color.Transparent; - this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(0F, 672.0833F); - this.xrLabel17.Multiline = true; - this.xrLabel17.Name = "xrLabel17"; - this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel17.SizeF = new System.Drawing.SizeF(642F, 27.08333F); - this.xrLabel17.StylePriority.UseBackColor = false; - this.xrLabel17.StylePriority.UseFont = false; - this.xrLabel17.Text = "*vom LWL gesondert bewilligte Leistungen zur Deckung eines einmaligen Bedarfs"; - // - // xrTable2 - // - this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + this.GroupFooter3.Font = new System.Drawing.Font("Arial", 11F); + this.GroupFooter3.HeightF = 927.0833F; + this.GroupFooter3.Level = 1; + this.GroupFooter3.Name = "GroupFooter3"; + this.GroupFooter3.PageBreak = DevExpress.XtraReports.UI.PageBreak.BeforeBand; + this.GroupFooter3.StylePriority.UseFont = false; + // + // xrLabel19 + // + this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(383.4585F, 0F); + this.xrLabel19.Name = "xrLabel19"; + this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel19.SizeF = new System.Drawing.SizeF(175F, 17F); + this.xrLabel19.StylePriority.UseFont = false; + // + // xrLabel35 + // + this.xrLabel35.BackColor = System.Drawing.Color.Transparent; + this.xrLabel35.Borders = DevExpress.XtraPrinting.BorderSide.Top; + this.xrLabel35.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel35.LocationFloat = new DevExpress.Utils.PointFloat(0F, 615.8333F); + this.xrLabel35.Multiline = true; + this.xrLabel35.Name = "xrLabel35"; + this.xrLabel35.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel35.SizeF = new System.Drawing.SizeF(324.9999F, 17F); + this.xrLabel35.StylePriority.UseBackColor = false; + this.xrLabel35.StylePriority.UseBorders = false; + this.xrLabel35.StylePriority.UseFont = false; + this.xrLabel35.Text = "Stempel / Unterschrift"; + this.xrLabel35.WordWrap = false; + // + // xrCheckBox2 + // + this.xrCheckBox2.LocationFloat = new DevExpress.Utils.PointFloat(347.3752F, 430.4166F); + this.xrCheckBox2.Name = "xrCheckBox2"; + this.xrCheckBox2.SizeF = new System.Drawing.SizeF(211.0832F, 21.875F); + this.xrCheckBox2.Text = " Die Betreuung dauert an."; + // + // xrCheckBox1 + // + this.xrCheckBox1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 430.4166F); + this.xrCheckBox1.Name = "xrCheckBox1"; + this.xrCheckBox1.SizeF = new System.Drawing.SizeF(324.9999F, 21.875F); + this.xrCheckBox1.Text = " Die Betreuung wurde am beendet."; + // + // xrLabel17 + // + this.xrLabel17.BackColor = System.Drawing.Color.Transparent; + this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(0F, 672.0833F); + this.xrLabel17.Multiline = true; + this.xrLabel17.Name = "xrLabel17"; + this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel17.SizeF = new System.Drawing.SizeF(642F, 27.08333F); + this.xrLabel17.StylePriority.UseBackColor = false; + this.xrLabel17.StylePriority.UseFont = false; + this.xrLabel17.Text = "*vom LWL gesondert bewilligte Leistungen zur Deckung eines einmaligen Bedarfs"; + // + // xrTable2 + // + this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 310.6249F); - this.xrTable2.Name = "xrTable2"; - this.xrTable2.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 0, 0, 100F); - this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 310.6249F); + this.xrTable2.Name = "xrTable2"; + this.xrTable2.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 0, 0, 100F); + this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow2, this.xrTableRow5, this.xrTableRow6, this.xrTableRow8}); - this.xrTable2.SizeF = new System.Drawing.SizeF(641.9999F, 96F); - this.xrTable2.StylePriority.UseBorders = false; - this.xrTable2.StylePriority.UsePadding = false; - // - // xrTableRow2 - // - this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTable2.SizeF = new System.Drawing.SizeF(641.9999F, 96F); + this.xrTable2.StylePriority.UseBorders = false; + this.xrTable2.StylePriority.UsePadding = false; + // + // xrTableRow2 + // + this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell2, this.xrTableCell4, this.xrTableCell13, this.xrTableCell5, this.xrTableCell14}); - this.xrTableRow2.Name = "xrTableRow2"; - this.xrTableRow2.Weight = 0.93538531804786507D; - // - // xrTableCell2 - // - this.xrTableCell2.Multiline = true; - this.xrTableCell2.Name = "xrTableCell2"; - this.xrTableCell2.StylePriority.UseTextAlignment = false; - this.xrTableCell2.Text = "Zeitraum\r\nvon"; - this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; - this.xrTableCell2.Weight = 0.654205681555982D; - // - // xrTableCell4 - // - this.xrTableCell4.Name = "xrTableCell4"; - this.xrTableCell4.StylePriority.UseTextAlignment = false; - this.xrTableCell4.Text = "bis"; - this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomCenter; - this.xrTableCell4.Weight = 0.65420565778839579D; - // - // xrTableCell13 - // - this.xrTableCell13.Name = "xrTableCell13"; - this.xrTableCell13.StylePriority.UseTextAlignment = false; - this.xrTableCell13.Text = "Vergütung pro Stunde"; - this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; - this.xrTableCell13.Weight = 0.51401872857292652D; - // - // xrTableCell5 - // - this.xrTableCell5.Name = "xrTableCell5"; - this.xrTableCell5.StylePriority.UseTextAlignment = false; - this.xrTableCell5.Text = "Anzahl FLS"; - this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; - this.xrTableCell5.Weight = 0.51401872857292652D; - // - // xrTableCell14 - // - this.xrTableCell14.Name = "xrTableCell14"; - this.xrTableCell14.Text = "davon gesondert bewilligt*"; - this.xrTableCell14.Weight = 0.663551203509769D; - // - // xrTableRow5 - // - this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableRow2.Name = "xrTableRow2"; + this.xrTableRow2.Weight = 0.93538531804786507D; + // + // xrTableCell2 + // + this.xrTableCell2.Multiline = true; + this.xrTableCell2.Name = "xrTableCell2"; + this.xrTableCell2.StylePriority.UseTextAlignment = false; + this.xrTableCell2.Text = "Zeitraum\r\nvon"; + this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell2.Weight = 0.654205681555982D; + // + // xrTableCell4 + // + this.xrTableCell4.Name = "xrTableCell4"; + this.xrTableCell4.StylePriority.UseTextAlignment = false; + this.xrTableCell4.Text = "bis"; + this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomCenter; + this.xrTableCell4.Weight = 0.65420565778839579D; + // + // xrTableCell13 + // + this.xrTableCell13.Name = "xrTableCell13"; + this.xrTableCell13.StylePriority.UseTextAlignment = false; + this.xrTableCell13.Text = "Vergütung pro Stunde"; + this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell13.Weight = 0.51401872857292652D; + // + // xrTableCell5 + // + this.xrTableCell5.Name = "xrTableCell5"; + this.xrTableCell5.StylePriority.UseTextAlignment = false; + this.xrTableCell5.Text = "Anzahl FLS"; + this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell5.Weight = 0.51401872857292652D; + // + // xrTableCell14 + // + this.xrTableCell14.Name = "xrTableCell14"; + this.xrTableCell14.Text = "davon gesondert bewilligt*"; + this.xrTableCell14.Weight = 0.663551203509769D; + // + // xrTableRow5 + // + this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.cellStart1, this.cellEnd1, this.cellHourlyRate1, this.cellFLS1, this.xrTableCell20}); - this.xrTableRow5.Name = "xrTableRow5"; - this.xrTableRow5.Weight = 0.44307725591740971D; - // - // cellStart1 - // - this.cellStart1.Name = "cellStart1"; - this.cellStart1.Weight = 0.654205681555982D; - // - // cellEnd1 - // - this.cellEnd1.Name = "cellEnd1"; - this.cellEnd1.Weight = 0.65420565778839579D; - // - // cellHourlyRate1 - // - this.cellHourlyRate1.Name = "cellHourlyRate1"; - this.cellHourlyRate1.Weight = 0.51401872857292652D; - // - // cellFLS1 - // - this.cellFLS1.Name = "cellFLS1"; - this.cellFLS1.Weight = 0.51401872857292652D; - // - // xrTableCell20 - // - this.xrTableCell20.Name = "xrTableCell20"; - this.xrTableCell20.Weight = 0.663551203509769D; - // - // xrTableRow6 - // - this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableRow5.Name = "xrTableRow5"; + this.xrTableRow5.Weight = 0.44307725591740971D; + // + // cellStart1 + // + this.cellStart1.Name = "cellStart1"; + this.cellStart1.Weight = 0.654205681555982D; + // + // cellEnd1 + // + this.cellEnd1.Name = "cellEnd1"; + this.cellEnd1.Weight = 0.65420565778839579D; + // + // cellHourlyRate1 + // + this.cellHourlyRate1.Name = "cellHourlyRate1"; + this.cellHourlyRate1.Weight = 0.51401872857292652D; + // + // cellFLS1 + // + this.cellFLS1.Name = "cellFLS1"; + this.cellFLS1.Weight = 0.51401872857292652D; + // + // xrTableCell20 + // + this.xrTableCell20.Name = "xrTableCell20"; + this.xrTableCell20.Weight = 0.663551203509769D; + // + // xrTableRow6 + // + this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.cellStart2, this.cellEnd2, this.cellHourlyRate2, this.cellFLS2, this.xrTableCell21}); - this.xrTableRow6.Name = "xrTableRow6"; - this.xrTableRow6.Weight = 0.49230806213045525D; - // - // cellStart2 - // - this.cellStart2.Name = "cellStart2"; - this.cellStart2.Weight = 0.654205681555982D; - // - // cellEnd2 - // - this.cellEnd2.Name = "cellEnd2"; - this.cellEnd2.Weight = 0.65420565778839579D; - // - // cellHourlyRate2 - // - this.cellHourlyRate2.Name = "cellHourlyRate2"; - this.cellHourlyRate2.Weight = 0.51401872857292652D; - // - // cellFLS2 - // - this.cellFLS2.Name = "cellFLS2"; - this.cellFLS2.Weight = 0.51401872857292652D; - // - // xrTableCell21 - // - this.xrTableCell21.Name = "xrTableCell21"; - this.xrTableCell21.Weight = 0.663551203509769D; - // - // xrTableRow8 - // - this.xrTableRow8.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableRow6.Name = "xrTableRow6"; + this.xrTableRow6.Weight = 0.49230806213045525D; + // + // cellStart2 + // + this.cellStart2.Name = "cellStart2"; + this.cellStart2.Weight = 0.654205681555982D; + // + // cellEnd2 + // + this.cellEnd2.Name = "cellEnd2"; + this.cellEnd2.Weight = 0.65420565778839579D; + // + // cellHourlyRate2 + // + this.cellHourlyRate2.Name = "cellHourlyRate2"; + this.cellHourlyRate2.Weight = 0.51401872857292652D; + // + // cellFLS2 + // + this.cellFLS2.Name = "cellFLS2"; + this.cellFLS2.Weight = 0.51401872857292652D; + // + // xrTableCell21 + // + this.xrTableCell21.Name = "xrTableCell21"; + this.xrTableCell21.Weight = 0.663551203509769D; + // + // xrTableRow8 + // + this.xrTableRow8.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.cellStart3, this.cellEnd3, this.cellHourlyRate3, this.cellFLS3, this.xrTableCell29}); - this.xrTableRow8.Name = "xrTableRow8"; - this.xrTableRow8.Weight = 0.49230806213045525D; - // - // cellStart3 - // - this.cellStart3.Name = "cellStart3"; - this.cellStart3.Weight = 0.654205681555982D; - // - // cellEnd3 - // - this.cellEnd3.Name = "cellEnd3"; - this.cellEnd3.Weight = 0.65420565778839579D; - // - // cellHourlyRate3 - // - this.cellHourlyRate3.Name = "cellHourlyRate3"; - this.cellHourlyRate3.Weight = 0.51401872857292652D; - // - // cellFLS3 - // - this.cellFLS3.Name = "cellFLS3"; - this.cellFLS3.Weight = 0.51401872857292652D; - // - // xrTableCell29 - // - this.xrTableCell29.Name = "xrTableCell29"; - this.xrTableCell29.Weight = 0.663551203509769D; - // - // xrLabel12 - // - this.xrLabel12.BackColor = System.Drawing.Color.Transparent; - this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(0F, 468.3332F); - this.xrLabel12.Multiline = true; - this.xrLabel12.Name = "xrLabel12"; - this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel12.SizeF = new System.Drawing.SizeF(642F, 109.375F); - this.xrLabel12.StylePriority.UseBackColor = false; - this.xrLabel12.StylePriority.UseFont = false; - this.xrLabel12.Text = resources.GetString("xrLabel12.Text"); - // - // xrLabel7 - // - this.xrLabel7.BackColor = System.Drawing.Color.Transparent; - this.xrLabel7.CanShrink = true; - this.xrLabel7.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold); - this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(0.0002543131F, 220.2915F); - this.xrLabel7.Multiline = true; - this.xrLabel7.Name = "xrLabel7"; - this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel7.SizeF = new System.Drawing.SizeF(650F, 20F); - this.xrLabel7.StylePriority.UseBackColor = false; - this.xrLabel7.StylePriority.UseFont = false; - this.xrLabel7.Text = "Bewilligungszeitraum: von [AccountingPeriod]"; - this.xrLabel7.WordWrap = false; - // - // xrLabel14 - // - this.xrLabel14.BackColor = System.Drawing.Color.Transparent; - this.xrLabel14.CanShrink = true; - this.xrLabel14.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold); - this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(0F, 200.2916F); - this.xrLabel14.Multiline = true; - this.xrLabel14.Name = "xrLabel14"; - this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel14.SizeF = new System.Drawing.SizeF(650F, 20F); - this.xrLabel14.StylePriority.UseBackColor = false; - this.xrLabel14.StylePriority.UseFont = false; - this.xrLabel14.Text = "Aktenzeichen LWL: [CustomerReferenceNumber]"; - this.xrLabel14.WordWrap = false; - // - // xrLabel10 - // - this.xrLabel10.BackColor = System.Drawing.Color.Transparent; - this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(0F, 271.7911F); - this.xrLabel10.Multiline = true; - this.xrLabel10.Name = "xrLabel10"; - this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel10.SizeF = new System.Drawing.SizeF(642F, 27.08333F); - this.xrLabel10.StylePriority.UseBackColor = false; - this.xrLabel10.StylePriority.UseFont = false; - this.xrLabel10.Text = "Im Bewilligungszeitraum tatsächlich geleistete Fachleistungsstunden (FLS)"; - // - // xrLabel16 - // - this.xrLabel16.BackColor = System.Drawing.Color.Transparent; - this.xrLabel16.CanShrink = true; - this.xrLabel16.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold); - this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(0F, 143.9583F); - this.xrLabel16.Name = "xrLabel16"; - this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel16.SizeF = new System.Drawing.SizeF(435.4167F, 23.24998F); - this.xrLabel16.StylePriority.UseBackColor = false; - this.xrLabel16.StylePriority.UseFont = false; - this.xrLabel16.Text = "Ambulant Betreutes Wohnen - Budgetnachweis"; - this.xrLabel16.WordWrap = false; - // - // xrLabel15 - // - this.xrLabel15.BackColor = System.Drawing.Color.Transparent; - this.xrLabel15.CanShrink = true; - this.xrLabel15.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold); - this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(0F, 180.2915F); - this.xrLabel15.Name = "xrLabel15"; - this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel15.SizeF = new System.Drawing.SizeF(650F, 20F); - this.xrLabel15.StylePriority.UseBackColor = false; - this.xrLabel15.StylePriority.UseFont = false; - this.xrLabel15.Text = "für [Salutation2] [CustomerName], geb. [CustomerBirthdayString]"; - this.xrLabel15.WordWrap = false; - // - // GroupFooter2 - // - this.GroupFooter2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrTableRow8.Name = "xrTableRow8"; + this.xrTableRow8.Weight = 0.49230806213045525D; + // + // cellStart3 + // + this.cellStart3.Name = "cellStart3"; + this.cellStart3.Weight = 0.654205681555982D; + // + // cellEnd3 + // + this.cellEnd3.Name = "cellEnd3"; + this.cellEnd3.Weight = 0.65420565778839579D; + // + // cellHourlyRate3 + // + this.cellHourlyRate3.Name = "cellHourlyRate3"; + this.cellHourlyRate3.Weight = 0.51401872857292652D; + // + // cellFLS3 + // + this.cellFLS3.Name = "cellFLS3"; + this.cellFLS3.Weight = 0.51401872857292652D; + // + // xrTableCell29 + // + this.xrTableCell29.Name = "xrTableCell29"; + this.xrTableCell29.Weight = 0.663551203509769D; + // + // xrLabel12 + // + this.xrLabel12.BackColor = System.Drawing.Color.Transparent; + this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(0F, 468.3332F); + this.xrLabel12.Multiline = true; + this.xrLabel12.Name = "xrLabel12"; + this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel12.SizeF = new System.Drawing.SizeF(642F, 109.375F); + this.xrLabel12.StylePriority.UseBackColor = false; + this.xrLabel12.StylePriority.UseFont = false; + this.xrLabel12.Text = resources.GetString("xrLabel12.Text"); + // + // xrLabel7 + // + this.xrLabel7.BackColor = System.Drawing.Color.Transparent; + this.xrLabel7.CanShrink = true; + this.xrLabel7.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(0.0002543131F, 220.2915F); + this.xrLabel7.Multiline = true; + this.xrLabel7.Name = "xrLabel7"; + this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel7.SizeF = new System.Drawing.SizeF(650F, 20F); + this.xrLabel7.StylePriority.UseBackColor = false; + this.xrLabel7.StylePriority.UseFont = false; + this.xrLabel7.Text = "Bewilligungszeitraum: von [AccountingPeriod]"; + this.xrLabel7.WordWrap = false; + // + // xrLabel14 + // + this.xrLabel14.BackColor = System.Drawing.Color.Transparent; + this.xrLabel14.CanShrink = true; + this.xrLabel14.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(0F, 200.2916F); + this.xrLabel14.Multiline = true; + this.xrLabel14.Name = "xrLabel14"; + this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel14.SizeF = new System.Drawing.SizeF(650F, 20F); + this.xrLabel14.StylePriority.UseBackColor = false; + this.xrLabel14.StylePriority.UseFont = false; + this.xrLabel14.Text = "Aktenzeichen LWL: [CustomerReferenceNumber]"; + this.xrLabel14.WordWrap = false; + // + // xrLabel10 + // + this.xrLabel10.BackColor = System.Drawing.Color.Transparent; + this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(0F, 271.7911F); + this.xrLabel10.Multiline = true; + this.xrLabel10.Name = "xrLabel10"; + this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel10.SizeF = new System.Drawing.SizeF(642F, 27.08333F); + this.xrLabel10.StylePriority.UseBackColor = false; + this.xrLabel10.StylePriority.UseFont = false; + this.xrLabel10.Text = "Im Bewilligungszeitraum tatsächlich geleistete Fachleistungsstunden (FLS)"; + // + // xrLabel16 + // + this.xrLabel16.BackColor = System.Drawing.Color.Transparent; + this.xrLabel16.CanShrink = true; + this.xrLabel16.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold); + this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(0F, 143.9583F); + this.xrLabel16.Name = "xrLabel16"; + this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel16.SizeF = new System.Drawing.SizeF(435.4167F, 23.24998F); + this.xrLabel16.StylePriority.UseBackColor = false; + this.xrLabel16.StylePriority.UseFont = false; + this.xrLabel16.Text = "Ambulant Betreutes Wohnen - Budgetnachweis"; + this.xrLabel16.WordWrap = false; + // + // xrLabel15 + // + this.xrLabel15.BackColor = System.Drawing.Color.Transparent; + this.xrLabel15.CanShrink = true; + this.xrLabel15.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(0F, 180.2915F); + this.xrLabel15.Name = "xrLabel15"; + this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel15.SizeF = new System.Drawing.SizeF(650F, 20F); + this.xrLabel15.StylePriority.UseBackColor = false; + this.xrLabel15.StylePriority.UseFont = false; + this.xrLabel15.Text = "für [Salutation2] [CustomerName], geb. [CustomerBirthdayString]"; + this.xrLabel15.WordWrap = false; + // + // GroupFooter2 + // + this.GroupFooter2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrLabel13, this.xrLabel11, this.xrLabel1}); - this.GroupFooter2.Font = new System.Drawing.Font("Arial", 10F); - this.GroupFooter2.HeightF = 185.4167F; - this.GroupFooter2.Name = "GroupFooter2"; - this.GroupFooter2.StylePriority.UseFont = false; - // - // xrLabel19 - // - this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(383.4585F, 0F); - this.xrLabel19.Name = "xrLabel19"; - this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel19.SizeF = new System.Drawing.SizeF(175F, 17F); - this.xrLabel19.StylePriority.UseFont = false; - // - // Spitzabrechnung - // - this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { + this.GroupFooter2.Font = new System.Drawing.Font("Arial", 10F); + this.GroupFooter2.HeightF = 185.4167F; + this.GroupFooter2.Name = "GroupFooter2"; + this.GroupFooter2.StylePriority.UseFont = false; + // + // Spitzabrechnung + // + this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { this.Detail, this.topMarginBand1, this.bottomMarginBand1, this.GroupHeader1, this.GroupFooter3, this.GroupFooter2}); - this.DataSource = this.bindingSource1; - this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung"; - this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] { + this.DataSource = this.bindingSource1; + this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung"; + this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] { this.ruleRateFactorNull}); - this.Margins = new System.Drawing.Printing.Margins(100, 50, 230, 100); - this.PageHeight = 1169; - this.PageWidth = 827; - this.PaperKind = System.Drawing.Printing.PaperKind.A4; - this.Version = "12.1"; - ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); + this.Margins = new System.Drawing.Printing.Margins(100, 50, 230, 100); + this.PageHeight = 1169; + this.PageWidth = 827; + this.PaperKind = System.Drawing.Printing.PaperKind.A4; + this.Version = "13.2"; + ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); } diff --git a/ReportImp/BUGeVReports/SettlementReport2.Designer.cs b/ReportImp/BUGeVReports/SettlementReport2.Designer.cs index 664208109..5fc5c68a3 100644 --- a/ReportImp/BUGeVReports/SettlementReport2.Designer.cs +++ b/ReportImp/BUGeVReports/SettlementReport2.Designer.cs @@ -29,348 +29,233 @@ namespace BeWo.BUGeVReports /// private void InitializeComponent() { - this.components = new System.ComponentModel.Container(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Spitzabrechnung)); - this.Detail = new DevExpress.XtraReports.UI.DetailBand(); - this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrTable1 = new DevExpress.XtraReports.UI.XRTable(); - this.rowErbrachteLeistung = new DevExpress.XtraReports.UI.XRTableRow(); - this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell(); - this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule(); - this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel(); - this.RecipientPostCodeAndTown = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel_RecipientStreet = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel_RecipientDivision = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel_RecipientContactPerson = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); - this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand(); - this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrTable3 = new DevExpress.XtraReports.UI.XRTable(); - this.xrTableRow21 = new DevExpress.XtraReports.UI.XRTableRow(); - this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableRow23 = new DevExpress.XtraReports.UI.XRTableRow(); - this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableRow24 = new DevExpress.XtraReports.UI.XRTableRow(); - this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel(); - this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand(); - this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand(); - this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand(); - this.fieldApprovedFLSWithFactor = new DevExpress.XtraReports.UI.CalculatedField(); - this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand(); - this.Detail1 = new DevExpress.XtraReports.UI.DetailBand(); - this.xrTable4 = new DevExpress.XtraReports.UI.XRTable(); - this.xrTableRow33 = new DevExpress.XtraReports.UI.XRTableRow(); - this.xrTableCell52 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableCell53 = new DevExpress.XtraReports.UI.XRTableCell(); - this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components); - this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand(); - this.xrTable5 = new DevExpress.XtraReports.UI.XRTable(); - this.xrTableRow30 = new DevExpress.XtraReports.UI.XRTableRow(); - this.xrTableCell48 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableRow31 = new DevExpress.XtraReports.UI.XRTableRow(); - this.xrTableCell49 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableCell50 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableRow32 = new DevExpress.XtraReports.UI.XRTableRow(); - this.xrTableCell51 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableRow34 = new DevExpress.XtraReports.UI.XRTableRow(); - this.xrTableCell54 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableCell55 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableRow36 = new DevExpress.XtraReports.UI.XRTableRow(); - this.xrTableCell58 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableRow37 = new DevExpress.XtraReports.UI.XRTableRow(); - this.xrTableCell59 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableCell60 = new DevExpress.XtraReports.UI.XRTableCell(); - ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); - // - // Detail - // - this.Detail.HeightF = 0F; - this.Detail.Name = "Detail"; - this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); - this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; - // - // xrLabel8 - // - this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceDate", "{0:dd.MM.yyyy}")}); - this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(367.0001F, 169F); - this.xrLabel8.Name = "xrLabel8"; - this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel8.SizeF = new System.Drawing.SizeF(283F, 23F); - this.xrLabel8.StylePriority.UseTextAlignment = false; - this.xrLabel8.Text = "xrLabel8"; - this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; - // - // xrTable1 - // - this.xrTable1.BorderColor = System.Drawing.SystemColors.ControlLight; - this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 375.3333F); - this.xrTable1.Name = "xrTable1"; - this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { - this.rowErbrachteLeistung}); - this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 35.75006F); - this.xrTable1.StylePriority.UseBorderColor = false; - // - // rowErbrachteLeistung - // - this.rowErbrachteLeistung.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { - this.xrTableCell22}); - this.rowErbrachteLeistung.Name = "rowErbrachteLeistung"; - this.rowErbrachteLeistung.Weight = 0.085D; - // - // xrTableCell22 - // - this.xrTableCell22.BorderColor = System.Drawing.SystemColors.ControlLight; - this.xrTableCell22.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Spitzabrechnung)); + this.Detail = new DevExpress.XtraReports.UI.DetailBand(); + this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrTable1 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell(); + this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule(); + this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel(); + this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand(); + this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand(); + this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand(); + this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel(); + this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components); + this.xrLabel18 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); + this.GroupFooter3 = new DevExpress.XtraReports.UI.GroupFooterBand(); + this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel35 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox2 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox1 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrTable2 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow(); + this.cellStart1 = new DevExpress.XtraReports.UI.XRTableCell(); + this.cellEnd1 = new DevExpress.XtraReports.UI.XRTableCell(); + this.cellHourlyRate1 = new DevExpress.XtraReports.UI.XRTableCell(); + this.cellFLS1 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow(); + this.cellStart2 = new DevExpress.XtraReports.UI.XRTableCell(); + this.cellEnd2 = new DevExpress.XtraReports.UI.XRTableCell(); + this.cellHourlyRate2 = new DevExpress.XtraReports.UI.XRTableCell(); + this.cellFLS2 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow8 = new DevExpress.XtraReports.UI.XRTableRow(); + this.cellStart3 = new DevExpress.XtraReports.UI.XRTableCell(); + this.cellEnd3 = new DevExpress.XtraReports.UI.XRTableCell(); + this.cellHourlyRate3 = new DevExpress.XtraReports.UI.XRTableCell(); + this.cellFLS3 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow(); + this.cellStart4 = new DevExpress.XtraReports.UI.XRTableCell(); + this.cellEnd4 = new DevExpress.XtraReports.UI.XRTableCell(); + this.cellHourlyRate4 = new DevExpress.XtraReports.UI.XRTableCell(); + this.cellFLS4 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel16 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel(); + this.GroupFooter2 = new DevExpress.XtraReports.UI.GroupFooterBand(); + this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand(); + this.Detail1 = new DevExpress.XtraReports.UI.DetailBand(); + this.xrTable3 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell(); + this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand(); + this.xrTable4 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow25 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell42 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow26 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell43 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell44 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow27 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell45 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow28 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell46 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell47 = new DevExpress.XtraReports.UI.XRTableCell(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); + // + // Detail + // + this.Detail.HeightF = 0F; + this.Detail.Name = "Detail"; + this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); + this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // xrLabel8 + // + this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceDate")}); + this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(435.4167F, 210F); + this.xrLabel8.Name = "xrLabel8"; + this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel8.SizeF = new System.Drawing.SizeF(191.6667F, 16.83345F); + this.xrLabel8.StylePriority.UseTextAlignment = false; + this.xrLabel8.Text = "xrLabel8"; + this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // xrTable1 + // + this.xrTable1.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 394.083F); + this.xrTable1.Name = "xrTable1"; + this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow1}); + this.xrTable1.SizeF = new System.Drawing.SizeF(627.0834F, 17.00001F); + this.xrTable1.StylePriority.UseBorderColor = false; + // + // xrTableRow1 + // + this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell1}); + this.xrTableRow1.Name = "xrTableRow1"; + this.xrTableRow1.Weight = 0.085D; + // + // xrTableCell1 + // + this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell22.Multiline = true; - this.xrTableCell22.Name = "xrTableCell22"; - this.xrTableCell22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrTableCell22.StylePriority.UseBorderColor = false; - this.xrTableCell22.StylePriority.UseBorders = false; - this.xrTableCell22.StylePriority.UseFont = false; - this.xrTableCell22.Text = " Betreuungszeitraum [AccountingPeriod]:\r\n"; - this.xrTableCell22.Weight = 1D; - // - // ruleRateFactorNull - // - this.ruleRateFactorNull.Condition = "[RateFactorText2] == ?"; - // - // - // - this.ruleRateFactorNull.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False; - this.ruleRateFactorNull.Name = "ruleRateFactorNull"; - // - // xrLabel6 - // - this.xrLabel6.BackColor = System.Drawing.Color.Transparent; - this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 300.3333F); - this.xrLabel6.Multiline = true; - this.xrLabel6.Name = "xrLabel6"; - this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel6.SizeF = new System.Drawing.SizeF(650.0001F, 67F); - this.xrLabel6.StylePriority.UseBackColor = false; - this.xrLabel6.StylePriority.UseFont = false; - this.xrLabel6.Text = resources.GetString("xrLabel6.Text"); - // - // xrLabel5 - // - this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 267.3333F); - this.xrLabel5.Name = "xrLabel5"; - this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel5.SizeF = new System.Drawing.SizeF(317F, 17F); - this.xrLabel5.StylePriority.UseFont = false; - this.xrLabel5.Text = "Sehr geehrte Damen und Herren,"; - // - // xrLabel4 - // - this.xrLabel4.BackColor = System.Drawing.Color.Transparent; - this.xrLabel4.CanShrink = true; - this.xrLabel4.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); - this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 225F); - this.xrLabel4.Multiline = true; - this.xrLabel4.Name = "xrLabel4"; - this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel4.SizeF = new System.Drawing.SizeF(650F, 17F); - this.xrLabel4.StylePriority.UseBackColor = false; - this.xrLabel4.StylePriority.UseFont = false; - this.xrLabel4.Text = "[CustomerReferenceNumberAndDate]"; - this.xrLabel4.WordWrap = false; - // - // xrLabel3 - // - this.xrLabel3.BackColor = System.Drawing.Color.Transparent; - this.xrLabel3.CanShrink = true; - this.xrLabel3.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold); - this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 209F); - this.xrLabel3.Name = "xrLabel3"; - this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel3.SizeF = new System.Drawing.SizeF(650F, 16F); - this.xrLabel3.StylePriority.UseBackColor = false; - this.xrLabel3.StylePriority.UseFont = false; - this.xrLabel3.Text = "Abrechnung Betreuungsleistungen für [Salutation2] [CustomerFirstName] [CustomerLa" + + this.xrTableCell1.Multiline = true; + this.xrTableCell1.Name = "xrTableCell1"; + this.xrTableCell1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F); + this.xrTableCell1.StylePriority.UseBorders = false; + this.xrTableCell1.StylePriority.UsePadding = false; + this.xrTableCell1.Text = "Erbrachte Leistungen:"; + this.xrTableCell1.Weight = 1D; + // + // ruleRateFactorNull + // + this.ruleRateFactorNull.Condition = "[RateFactorText2] == ?"; + // + // + // + this.ruleRateFactorNull.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False; + this.ruleRateFactorNull.Name = "ruleRateFactorNull"; + // + // xrLabel6 + // + this.xrLabel6.BackColor = System.Drawing.Color.Transparent; + this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 319.0829F); + this.xrLabel6.Multiline = true; + this.xrLabel6.Name = "xrLabel6"; + this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel6.SizeF = new System.Drawing.SizeF(642F, 75F); + this.xrLabel6.StylePriority.UseBackColor = false; + this.xrLabel6.StylePriority.UseFont = false; + this.xrLabel6.Text = resources.GetString("xrLabel6.Text"); + // + // xrLabel5 + // + this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 286.0831F); + this.xrLabel5.Name = "xrLabel5"; + this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel5.SizeF = new System.Drawing.SizeF(317F, 17F); + this.xrLabel5.StylePriority.UseFont = false; + this.xrLabel5.Text = "Sehr geehrte Damen und Herren,"; + // + // xrLabel4 + // + this.xrLabel4.BackColor = System.Drawing.Color.Transparent; + this.xrLabel4.CanShrink = true; + this.xrLabel4.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 244.5833F); + this.xrLabel4.Multiline = true; + this.xrLabel4.Name = "xrLabel4"; + this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel4.SizeF = new System.Drawing.SizeF(650F, 17F); + this.xrLabel4.StylePriority.UseBackColor = false; + this.xrLabel4.StylePriority.UseFont = false; + this.xrLabel4.Text = "[CustomerReferenceNumberAndDate]"; + this.xrLabel4.WordWrap = false; + // + // xrLabel3 + // + this.xrLabel3.BackColor = System.Drawing.Color.Transparent; + this.xrLabel3.CanShrink = true; + this.xrLabel3.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 227.5833F); + this.xrLabel3.Name = "xrLabel3"; + this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel3.SizeF = new System.Drawing.SizeF(650F, 17F); + this.xrLabel3.StylePriority.UseBackColor = false; + this.xrLabel3.StylePriority.UseFont = false; + this.xrLabel3.Text = "Abrechnung Betreuungsleistungen für [Salutation2] [CustomerFirstName] [CustomerLa" + "stName]"; - this.xrLabel3.WordWrap = false; - // - // xrLabel2 - // - this.xrLabel2.BackColor = System.Drawing.Color.Transparent; - this.xrLabel2.CanShrink = true; - this.xrLabel2.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); - this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 192F); - this.xrLabel2.Name = "xrLabel2"; - this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel2.SizeF = new System.Drawing.SizeF(650F, 17F); - this.xrLabel2.StylePriority.UseBackColor = false; - this.xrLabel2.StylePriority.UseFont = false; - this.xrLabel2.Text = "Rechnung Nr. [InvoiceNumber] "; - this.xrLabel2.WordWrap = false; - // - // RecipientPostCodeAndTown - // - this.RecipientPostCodeAndTown.CanShrink = true; - this.RecipientPostCodeAndTown.LocationFloat = new DevExpress.Utils.PointFloat(0F, 68.00003F); - this.RecipientPostCodeAndTown.Name = "RecipientPostCodeAndTown"; - this.RecipientPostCodeAndTown.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.RecipientPostCodeAndTown.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; - this.RecipientPostCodeAndTown.SizeF = new System.Drawing.SizeF(292F, 17F); - this.RecipientPostCodeAndTown.StylePriority.UseFont = false; - this.RecipientPostCodeAndTown.Text = "[RecipientPostCodeAndTown]"; - // - // xrLabel_RecipientStreet - // - this.xrLabel_RecipientStreet.CanShrink = true; - this.xrLabel_RecipientStreet.LocationFloat = new DevExpress.Utils.PointFloat(0F, 51.00002F); - this.xrLabel_RecipientStreet.Name = "xrLabel_RecipientStreet"; - this.xrLabel_RecipientStreet.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel_RecipientStreet.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; - this.xrLabel_RecipientStreet.SizeF = new System.Drawing.SizeF(292F, 17F); - this.xrLabel_RecipientStreet.StylePriority.UseFont = false; - this.xrLabel_RecipientStreet.Text = "[RecipientStreet]"; - // - // xrLabel_RecipientDivision - // - this.xrLabel_RecipientDivision.CanShrink = true; - this.xrLabel_RecipientDivision.LocationFloat = new DevExpress.Utils.PointFloat(0F, 34.00002F); - this.xrLabel_RecipientDivision.Name = "xrLabel_RecipientDivision"; - this.xrLabel_RecipientDivision.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel_RecipientDivision.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; - this.xrLabel_RecipientDivision.SizeF = new System.Drawing.SizeF(292F, 17F); - this.xrLabel_RecipientDivision.StylePriority.UseFont = false; - this.xrLabel_RecipientDivision.Text = "[RecipientDivision]"; - // - // xrLabel_RecipientContactPerson - // - this.xrLabel_RecipientContactPerson.CanShrink = true; - this.xrLabel_RecipientContactPerson.LocationFloat = new DevExpress.Utils.PointFloat(0F, 17.00001F); - this.xrLabel_RecipientContactPerson.Name = "xrLabel_RecipientContactPerson"; - this.xrLabel_RecipientContactPerson.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel_RecipientContactPerson.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; - this.xrLabel_RecipientContactPerson.SizeF = new System.Drawing.SizeF(292F, 17F); - this.xrLabel_RecipientContactPerson.StylePriority.UseFont = false; - this.xrLabel_RecipientContactPerson.Text = "[RecipientContactPerson]"; - // - // xrLabel1 - // - this.xrLabel1.CanShrink = true; - this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); - this.xrLabel1.Name = "xrLabel1"; - this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel1.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; - this.xrLabel1.SizeF = new System.Drawing.SizeF(292F, 17F); - this.xrLabel1.StylePriority.UseFont = false; - this.xrLabel1.Text = "[RecipientOrganisation]"; - // - // ReportFooter - // - this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { - this.xrLabel10, - this.xrTable3, - this.xrLabel12}); - this.ReportFooter.Font = new System.Drawing.Font("Arial", 10F); - this.ReportFooter.HeightF = 209F; - this.ReportFooter.KeepTogether = true; - this.ReportFooter.Name = "ReportFooter"; - this.ReportFooter.StylePriority.UseFont = false; - // - // xrLabel10 - // - this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(0F, 117F); - this.xrLabel10.Name = "xrLabel10"; - this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel10.SizeF = new System.Drawing.SizeF(175F, 17F); - this.xrLabel10.StylePriority.UseFont = false; - this.xrLabel10.Text = "Mit freundlichen Grüßen"; - // - // xrTable3 - // - this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 33F); - this.xrTable3.Name = "xrTable3"; - this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { - this.xrTableRow21, - this.xrTableRow23, - this.xrTableRow24}); - this.xrTable3.SizeF = new System.Drawing.SizeF(650F, 36F); - this.xrTable3.StylePriority.UseFont = false; - // - // xrTableRow21 - // - this.xrTableRow21.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { - this.xrTableCell18}); - this.xrTableRow21.Name = "xrTableRow21"; - this.xrTableRow21.Weight = 0.23809523809523808D; - // - // xrTableCell18 - // - this.xrTableCell18.Name = "xrTableCell18"; - this.xrTableCell18.Weight = 3D; - // - // xrTableRow23 - // - this.xrTableRow23.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { - this.xrTableCell30}); - this.xrTableRow23.Name = "xrTableRow23"; - this.xrTableRow23.Weight = 0.23809523809523803D; - // - // xrTableCell30 - // - this.xrTableCell30.Name = "xrTableCell30"; - this.xrTableCell30.Weight = 3D; - // - // xrTableRow24 - // - this.xrTableRow24.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { - this.xrTableCell31}); - this.xrTableRow24.Name = "xrTableRow24"; - this.xrTableRow24.Weight = 0.38095238095238093D; - // - // xrTableCell31 - // - this.xrTableCell31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "FinalSentence")}); - this.xrTableCell31.Name = "xrTableCell31"; - this.xrTableCell31.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrTableCell31.StylePriority.UsePadding = false; - this.xrTableCell31.Text = "xrTableCell8"; - this.xrTableCell31.Weight = 3D; - // - // xrLabel12 - // - this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(0F, 192F); - this.xrLabel12.Name = "xrLabel12"; - this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel12.SizeF = new System.Drawing.SizeF(225F, 17F); - this.xrLabel12.StylePriority.UseFont = false; - this.xrLabel12.Text = "[CreatorName]"; - // - // topMarginBand1 - // - this.topMarginBand1.HeightF = 202.0833F; - this.topMarginBand1.Name = "topMarginBand1"; - // - // bottomMarginBand1 - // - this.bottomMarginBand1.Name = "bottomMarginBand1"; - // - // GroupHeader1 - // - this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { - this.xrLabel1, - this.xrLabel_RecipientContactPerson, - this.xrLabel_RecipientDivision, - this.xrLabel_RecipientStreet, - this.RecipientPostCodeAndTown, + this.xrLabel3.WordWrap = false; + // + // xrLabel2 + // + this.xrLabel2.BackColor = System.Drawing.Color.Transparent; + this.xrLabel2.CanShrink = true; + this.xrLabel2.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 210F); + this.xrLabel2.Name = "xrLabel2"; + this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel2.SizeF = new System.Drawing.SizeF(435.4167F, 16.99998F); + this.xrLabel2.StylePriority.UseBackColor = false; + this.xrLabel2.StylePriority.UseFont = false; + this.xrLabel2.Text = "Rechnung Nr. [InvoiceNumber]"; + this.xrLabel2.WordWrap = false; + // + // topMarginBand1 + // + this.topMarginBand1.HeightF = 230F; + this.topMarginBand1.Name = "topMarginBand1"; + // + // bottomMarginBand1 + // + this.bottomMarginBand1.Name = "bottomMarginBand1"; + // + // GroupHeader1 + // + this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrLabel9, this.xrLabel2, this.xrLabel3, this.xrLabel4, @@ -378,300 +263,665 @@ namespace BeWo.BUGeVReports this.xrLabel6, this.xrTable1, this.xrLabel8}); - this.GroupHeader1.Font = new System.Drawing.Font("Arial", 10F); - this.GroupHeader1.HeightF = 411.0834F; - this.GroupHeader1.Name = "GroupHeader1"; - this.GroupHeader1.StylePriority.UseFont = false; - // - // fieldApprovedFLSWithFactor - // - this.fieldApprovedFLSWithFactor.Expression = "[ApprovedFLSTotal] * [RateFactor]"; - this.fieldApprovedFLSWithFactor.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal; - this.fieldApprovedFLSWithFactor.Name = "fieldApprovedFLSWithFactor"; - // - // DetailReport - // - this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { - this.Detail1}); - this.DetailReport.DataMember = "InvoiceItems"; - this.DetailReport.DataSource = this.bindingSource1; - this.DetailReport.Level = 0; - this.DetailReport.Name = "DetailReport"; - // - // Detail1 - // - this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { - this.xrTable4}); - this.Detail1.Font = new System.Drawing.Font("Arial", 10F); - this.Detail1.HeightF = 17F; - this.Detail1.Name = "Detail1"; - this.Detail1.StylePriority.UseFont = false; - // - // xrTable4 - // - this.xrTable4.BorderColor = System.Drawing.SystemColors.ControlLight; - this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); - this.xrTable4.Name = "xrTable4"; - this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { - this.xrTableRow33}); - this.xrTable4.SizeF = new System.Drawing.SizeF(650F, 17F); - this.xrTable4.StylePriority.UseBorderColor = false; - // - // xrTableRow33 - // - this.xrTableRow33.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { - this.xrTableCell52, - this.xrTableCell53}); - this.xrTableRow33.Name = "xrTableRow33"; - this.xrTableRow33.Weight = 0.085D; - // - // xrTableCell52 - // - this.xrTableCell52.BackColor = System.Drawing.Color.Transparent; - this.xrTableCell52.BorderColor = System.Drawing.SystemColors.ControlLight; - this.xrTableCell52.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell52.Multiline = true; - this.xrTableCell52.Name = "xrTableCell52"; - this.xrTableCell52.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrTableCell52.StylePriority.UseBackColor = false; - this.xrTableCell52.StylePriority.UseBorderColor = false; - this.xrTableCell52.StylePriority.UseBorders = false; - this.xrTableCell52.StylePriority.UseFont = false; - this.xrTableCell52.Text = "[UnitCount] [UnitDescription] x [RateFactor] x [AmountPerUnit]"; - this.xrTableCell52.Weight = 0.78314100999098568D; - // - // xrTableCell53 - // - this.xrTableCell53.BorderColor = System.Drawing.SystemColors.ControlLight; - this.xrTableCell53.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + this.GroupHeader1.Font = new System.Drawing.Font("Arial", 10F); + this.GroupHeader1.HeightF = 411.083F; + this.GroupHeader1.Name = "GroupHeader1"; + this.GroupHeader1.StylePriority.UseFont = false; + // + // xrLabel9 + // + this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrLabel9.Multiline = true; + this.xrLabel9.Name = "xrLabel9"; + this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel9.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrLabel9.SizeF = new System.Drawing.SizeF(292F, 81.58334F); + this.xrLabel9.StylePriority.UseFont = false; + this.xrLabel9.Text = "[RecipientOrganisation]\r\n[RecipientStreet]\r\n[RecipientPostCodeAndTown]"; + // + // bindingSource1 + // + this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.Settlement2RO); + // + // xrLabel18 + // + this.xrLabel18.Font = new System.Drawing.Font("Arial", 10F); + this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrLabel18.Multiline = true; + this.xrLabel18.Name = "xrLabel18"; + this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel18.SizeF = new System.Drawing.SizeF(292F, 81.58334F); + this.xrLabel18.StylePriority.UseFont = false; + this.xrLabel18.Text = "[RecipientOrganisation]\r\n[RecipientStreet]\r\n[RecipientPostCodeAndTown]"; + // + // xrLabel13 + // + this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(0F, 22.14584F); + this.xrLabel13.Multiline = true; + this.xrLabel13.Name = "xrLabel13"; + this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel13.SizeF = new System.Drawing.SizeF(650.0001F, 37.5F); + this.xrLabel13.StylePriority.UseFont = false; + this.xrLabel13.Text = "Bitte überweisen Sie unsere Restforderung auf das unten angegebene Konto bei der " + + "Bank für Sozialwirtschaft."; + // + // xrLabel11 + // + this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(0F, 80.47918F); + this.xrLabel11.Name = "xrLabel11"; + this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel11.SizeF = new System.Drawing.SizeF(175F, 17F); + this.xrLabel11.StylePriority.UseFont = false; + this.xrLabel11.Text = "Mit freundlichen Grüßen"; + // + // xrLabel1 + // + this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 135.8541F); + this.xrLabel1.Name = "xrLabel1"; + this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel1.SizeF = new System.Drawing.SizeF(225F, 17F); + this.xrLabel1.StylePriority.UseFont = false; + this.xrLabel1.Text = "[CreatorName]"; + // + // GroupFooter3 + // + this.GroupFooter3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrLabel19, + this.xrLabel35, + this.xrCheckBox2, + this.xrCheckBox1, + this.xrLabel17, + this.xrTable2, + this.xrLabel12, + this.xrLabel7, + this.xrLabel14, + this.xrLabel10, + this.xrLabel16, + this.xrLabel15, + this.xrLabel18}); + this.GroupFooter3.Font = new System.Drawing.Font("Arial", 11F); + this.GroupFooter3.HeightF = 927.0833F; + this.GroupFooter3.Level = 1; + this.GroupFooter3.Name = "GroupFooter3"; + this.GroupFooter3.PageBreak = DevExpress.XtraReports.UI.PageBreak.BeforeBand; + this.GroupFooter3.StylePriority.UseFont = false; + // + // xrLabel19 + // + this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(383.4585F, 0F); + this.xrLabel19.Name = "xrLabel19"; + this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel19.SizeF = new System.Drawing.SizeF(175F, 17F); + this.xrLabel19.StylePriority.UseFont = false; + // + // xrLabel35 + // + this.xrLabel35.BackColor = System.Drawing.Color.Transparent; + this.xrLabel35.Borders = DevExpress.XtraPrinting.BorderSide.Top; + this.xrLabel35.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel35.LocationFloat = new DevExpress.Utils.PointFloat(0.0002543131F, 637.7083F); + this.xrLabel35.Multiline = true; + this.xrLabel35.Name = "xrLabel35"; + this.xrLabel35.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel35.SizeF = new System.Drawing.SizeF(324.9999F, 17F); + this.xrLabel35.StylePriority.UseBackColor = false; + this.xrLabel35.StylePriority.UseBorders = false; + this.xrLabel35.StylePriority.UseFont = false; + this.xrLabel35.Text = "Stempel / Unterschrift"; + this.xrLabel35.WordWrap = false; + // + // xrCheckBox2 + // + this.xrCheckBox2.LocationFloat = new DevExpress.Utils.PointFloat(347.3755F, 452.2916F); + this.xrCheckBox2.Name = "xrCheckBox2"; + this.xrCheckBox2.SizeF = new System.Drawing.SizeF(211.0832F, 21.875F); + this.xrCheckBox2.Text = " Die Betreuung dauert an."; + // + // xrCheckBox1 + // + this.xrCheckBox1.LocationFloat = new DevExpress.Utils.PointFloat(0.0002543131F, 452.2916F); + this.xrCheckBox1.Name = "xrCheckBox1"; + this.xrCheckBox1.SizeF = new System.Drawing.SizeF(324.9999F, 21.875F); + this.xrCheckBox1.Text = " Die Betreuung wurde am beendet."; + // + // xrLabel17 + // + this.xrLabel17.BackColor = System.Drawing.Color.Transparent; + this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(0.0002543131F, 693.9583F); + this.xrLabel17.Multiline = true; + this.xrLabel17.Name = "xrLabel17"; + this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel17.SizeF = new System.Drawing.SizeF(642F, 27.08333F); + this.xrLabel17.StylePriority.UseBackColor = false; + this.xrLabel17.StylePriority.UseFont = false; + this.xrLabel17.Text = "*vom LWL gesondert bewilligte Leistungen zur Deckung eines einmaligen Bedarfs"; + // + // xrTable2 + // + this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell53.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 310.6249F); + this.xrTable2.Name = "xrTable2"; + this.xrTable2.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 0, 0, 100F); + this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow2, + this.xrTableRow5, + this.xrTableRow6, + this.xrTableRow8, + this.xrTableRow3}); + this.xrTable2.SizeF = new System.Drawing.SizeF(641.9999F, 116F); + this.xrTable2.StylePriority.UseBorders = false; + this.xrTable2.StylePriority.UsePadding = false; + // + // xrTableRow2 + // + this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell2, + this.xrTableCell4, + this.xrTableCell13, + this.xrTableCell5, + this.xrTableCell14}); + this.xrTableRow2.Name = "xrTableRow2"; + this.xrTableRow2.Weight = 0.93538531804786507D; + // + // xrTableCell2 + // + this.xrTableCell2.Multiline = true; + this.xrTableCell2.Name = "xrTableCell2"; + this.xrTableCell2.StylePriority.UseTextAlignment = false; + this.xrTableCell2.Text = "Zeitraum\r\nvon"; + this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell2.Weight = 0.654205681555982D; + // + // xrTableCell4 + // + this.xrTableCell4.Name = "xrTableCell4"; + this.xrTableCell4.StylePriority.UseTextAlignment = false; + this.xrTableCell4.Text = "bis"; + this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomCenter; + this.xrTableCell4.Weight = 0.65420565778839579D; + // + // xrTableCell13 + // + this.xrTableCell13.Name = "xrTableCell13"; + this.xrTableCell13.StylePriority.UseTextAlignment = false; + this.xrTableCell13.Text = "Vergütung pro Stunde"; + this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell13.Weight = 0.51401872857292652D; + // + // xrTableCell5 + // + this.xrTableCell5.Name = "xrTableCell5"; + this.xrTableCell5.StylePriority.UseTextAlignment = false; + this.xrTableCell5.Text = "Anzahl FLS"; + this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell5.Weight = 0.51401872857292652D; + // + // xrTableCell14 + // + this.xrTableCell14.Name = "xrTableCell14"; + this.xrTableCell14.Text = "davon gesondert bewilligt*"; + this.xrTableCell14.Weight = 0.663551203509769D; + // + // xrTableRow5 + // + this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.cellStart1, + this.cellEnd1, + this.cellHourlyRate1, + this.cellFLS1, + this.xrTableCell20}); + this.xrTableRow5.Name = "xrTableRow5"; + this.xrTableRow5.Weight = 0.44307725591740971D; + // + // cellStart1 + // + this.cellStart1.Name = "cellStart1"; + this.cellStart1.Weight = 0.654205681555982D; + // + // cellEnd1 + // + this.cellEnd1.Name = "cellEnd1"; + this.cellEnd1.Weight = 0.65420565778839579D; + // + // cellHourlyRate1 + // + this.cellHourlyRate1.Name = "cellHourlyRate1"; + this.cellHourlyRate1.Weight = 0.51401872857292652D; + // + // cellFLS1 + // + this.cellFLS1.Name = "cellFLS1"; + this.cellFLS1.Weight = 0.51401872857292652D; + // + // xrTableCell20 + // + this.xrTableCell20.Name = "xrTableCell20"; + this.xrTableCell20.Weight = 0.663551203509769D; + // + // xrTableRow6 + // + this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.cellStart2, + this.cellEnd2, + this.cellHourlyRate2, + this.cellFLS2, + this.xrTableCell21}); + this.xrTableRow6.Name = "xrTableRow6"; + this.xrTableRow6.Weight = 0.49230806213045525D; + // + // cellStart2 + // + this.cellStart2.Name = "cellStart2"; + this.cellStart2.Weight = 0.654205681555982D; + // + // cellEnd2 + // + this.cellEnd2.Name = "cellEnd2"; + this.cellEnd2.Weight = 0.65420565778839579D; + // + // cellHourlyRate2 + // + this.cellHourlyRate2.Name = "cellHourlyRate2"; + this.cellHourlyRate2.Weight = 0.51401872857292652D; + // + // cellFLS2 + // + this.cellFLS2.Name = "cellFLS2"; + this.cellFLS2.Weight = 0.51401872857292652D; + // + // xrTableCell21 + // + this.xrTableCell21.Name = "xrTableCell21"; + this.xrTableCell21.Weight = 0.663551203509769D; + // + // xrTableRow8 + // + this.xrTableRow8.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.cellStart3, + this.cellEnd3, + this.cellHourlyRate3, + this.cellFLS3, + this.xrTableCell29}); + this.xrTableRow8.Name = "xrTableRow8"; + this.xrTableRow8.Weight = 0.49230806213045525D; + // + // cellStart3 + // + this.cellStart3.Name = "cellStart3"; + this.cellStart3.Weight = 0.654205681555982D; + // + // cellEnd3 + // + this.cellEnd3.Name = "cellEnd3"; + this.cellEnd3.Weight = 0.65420565778839579D; + // + // cellHourlyRate3 + // + this.cellHourlyRate3.Name = "cellHourlyRate3"; + this.cellHourlyRate3.Weight = 0.51401872857292652D; + // + // cellFLS3 + // + this.cellFLS3.Name = "cellFLS3"; + this.cellFLS3.Weight = 0.51401872857292652D; + // + // xrTableCell29 + // + this.xrTableCell29.Name = "xrTableCell29"; + this.xrTableCell29.Weight = 0.663551203509769D; + // + // xrTableRow3 + // + this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.cellStart4, + this.cellEnd4, + this.cellHourlyRate4, + this.cellFLS4, + this.xrTableCell9}); + this.xrTableRow3.Name = "xrTableRow3"; + this.xrTableRow3.Weight = 0.49230806213045525D; + // + // cellStart4 + // + this.cellStart4.Name = "cellStart4"; + this.cellStart4.Weight = 0.654205681555982D; + // + // cellEnd4 + // + this.cellEnd4.Name = "cellEnd4"; + this.cellEnd4.Weight = 0.65420565778839579D; + // + // cellHourlyRate4 + // + this.cellHourlyRate4.Name = "cellHourlyRate4"; + this.cellHourlyRate4.Weight = 0.51401872857292652D; + // + // cellFLS4 + // + this.cellFLS4.Name = "cellFLS4"; + this.cellFLS4.Weight = 0.51401872857292652D; + // + // xrTableCell9 + // + this.xrTableCell9.Name = "xrTableCell9"; + this.xrTableCell9.Weight = 0.663551203509769D; + // + // xrLabel12 + // + this.xrLabel12.BackColor = System.Drawing.Color.Transparent; + this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(0.0002543131F, 490.2082F); + this.xrLabel12.Multiline = true; + this.xrLabel12.Name = "xrLabel12"; + this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel12.SizeF = new System.Drawing.SizeF(642F, 109.375F); + this.xrLabel12.StylePriority.UseBackColor = false; + this.xrLabel12.StylePriority.UseFont = false; + this.xrLabel12.Text = resources.GetString("xrLabel12.Text"); + // + // xrLabel7 + // + this.xrLabel7.BackColor = System.Drawing.Color.Transparent; + this.xrLabel7.CanShrink = true; + this.xrLabel7.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(0.0002543131F, 220.2915F); + this.xrLabel7.Multiline = true; + this.xrLabel7.Name = "xrLabel7"; + this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel7.SizeF = new System.Drawing.SizeF(650F, 20F); + this.xrLabel7.StylePriority.UseBackColor = false; + this.xrLabel7.StylePriority.UseFont = false; + this.xrLabel7.Text = "Bewilligungszeitraum: von [AccountingPeriod]"; + this.xrLabel7.WordWrap = false; + // + // xrLabel14 + // + this.xrLabel14.BackColor = System.Drawing.Color.Transparent; + this.xrLabel14.CanShrink = true; + this.xrLabel14.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(0F, 200.2916F); + this.xrLabel14.Multiline = true; + this.xrLabel14.Name = "xrLabel14"; + this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel14.SizeF = new System.Drawing.SizeF(650F, 20F); + this.xrLabel14.StylePriority.UseBackColor = false; + this.xrLabel14.StylePriority.UseFont = false; + this.xrLabel14.Text = "Aktenzeichen LWL: [CustomerReferenceNumber]"; + this.xrLabel14.WordWrap = false; + // + // xrLabel10 + // + this.xrLabel10.BackColor = System.Drawing.Color.Transparent; + this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(0F, 271.7911F); + this.xrLabel10.Multiline = true; + this.xrLabel10.Name = "xrLabel10"; + this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel10.SizeF = new System.Drawing.SizeF(642F, 27.08333F); + this.xrLabel10.StylePriority.UseBackColor = false; + this.xrLabel10.StylePriority.UseFont = false; + this.xrLabel10.Text = "Im Bewilligungszeitraum tatsächlich geleistete Fachleistungsstunden (FLS)"; + // + // xrLabel16 + // + this.xrLabel16.BackColor = System.Drawing.Color.Transparent; + this.xrLabel16.CanShrink = true; + this.xrLabel16.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold); + this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(0F, 143.9583F); + this.xrLabel16.Name = "xrLabel16"; + this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel16.SizeF = new System.Drawing.SizeF(435.4167F, 23.24998F); + this.xrLabel16.StylePriority.UseBackColor = false; + this.xrLabel16.StylePriority.UseFont = false; + this.xrLabel16.Text = "Ambulant Betreutes Wohnen - Budgetnachweis"; + this.xrLabel16.WordWrap = false; + // + // xrLabel15 + // + this.xrLabel15.BackColor = System.Drawing.Color.Transparent; + this.xrLabel15.CanShrink = true; + this.xrLabel15.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(0F, 180.2915F); + this.xrLabel15.Name = "xrLabel15"; + this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel15.SizeF = new System.Drawing.SizeF(650F, 20F); + this.xrLabel15.StylePriority.UseBackColor = false; + this.xrLabel15.StylePriority.UseFont = false; + this.xrLabel15.Text = "für [Salutation2] [CustomerFirstName] [CustomerLastName], geb. [CustomerBirthday!" + + " #dd.MM.yyyy]"; + this.xrLabel15.WordWrap = false; + // + // GroupFooter2 + // + this.GroupFooter2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrLabel13, + this.xrLabel11, + this.xrLabel1}); + this.GroupFooter2.Font = new System.Drawing.Font("Arial", 10F); + this.GroupFooter2.HeightF = 185.4167F; + this.GroupFooter2.Name = "GroupFooter2"; + this.GroupFooter2.StylePriority.UseFont = false; + // + // DetailReport + // + this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { + this.Detail1, + this.GroupFooter1}); + this.DetailReport.DataMember = "InvoiceItems"; + this.DetailReport.DataSource = this.bindingSource1; + this.DetailReport.Level = 0; + this.DetailReport.Name = "DetailReport"; + // + // Detail1 + // + this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrTable3}); + this.Detail1.Font = new System.Drawing.Font("Arial", 10F); + this.Detail1.HeightF = 17.00001F; + this.Detail1.Name = "Detail1"; + this.Detail1.StylePriority.UseFont = false; + // + // xrTable3 + // + this.xrTable3.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrTable3.Name = "xrTable3"; + this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow10}); + this.xrTable3.SizeF = new System.Drawing.SizeF(627.0834F, 17.00001F); + this.xrTable3.StylePriority.UseBorderColor = false; + // + // xrTableRow10 + // + this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell16, + this.xrTableCell18}); + this.xrTableRow10.Name = "xrTableRow10"; + this.xrTableRow10.Weight = 0.085D; + // + // xrTableCell16 + // + this.xrTableCell16.BackColor = System.Drawing.Color.Transparent; + this.xrTableCell16.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell16.CanShrink = true; + this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceItems.DetailDescription")}); + this.xrTableCell16.Name = "xrTableCell16"; + this.xrTableCell16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F); + this.xrTableCell16.StylePriority.UseBackColor = false; + this.xrTableCell16.StylePriority.UseBorders = false; + this.xrTableCell16.StylePriority.UsePadding = false; + this.xrTableCell16.Text = "[Abrechnungstext1]"; + this.xrTableCell16.Weight = 0.78314100999098557D; + // + // xrTableCell18 + // + this.xrTableCell18.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell18.CanShrink = true; + this.xrTableCell18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceItems.GrossAmountTotal", "{0:c}")}); - this.xrTableCell53.Name = "xrTableCell53"; - this.xrTableCell53.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrTableCell53.StylePriority.UseBorderColor = false; - this.xrTableCell53.StylePriority.UseBorders = false; - this.xrTableCell53.StylePriority.UseFont = false; - this.xrTableCell53.StylePriority.UseTextAlignment = false; - this.xrTableCell53.Text = "xrTableCell10"; - this.xrTableCell53.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; - this.xrTableCell53.Weight = 0.21685899000901443D; - // - // bindingSource1 - // - this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.Settlement2RO); - // - // GroupFooter1 - // - this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { - this.xrTable5}); - this.GroupFooter1.Font = new System.Drawing.Font("Arial", 10F); - this.GroupFooter1.HeightF = 132F; - this.GroupFooter1.Name = "GroupFooter1"; - this.GroupFooter1.StylePriority.UseFont = false; - // - // xrTable5 - // - this.xrTable5.BorderColor = System.Drawing.SystemColors.ControlLight; - this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); - this.xrTable5.Name = "xrTable5"; - this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { - this.xrTableRow30, - this.xrTableRow31, - this.xrTableRow32, - this.xrTableRow34, - this.xrTableRow36, - this.xrTableRow37}); - this.xrTable5.SizeF = new System.Drawing.SizeF(650F, 115F); - this.xrTable5.StylePriority.UseBorderColor = false; - // - // xrTableRow30 - // - this.xrTableRow30.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { - this.xrTableCell48}); - this.xrTableRow30.Name = "xrTableRow30"; - this.xrTableRow30.Weight = 0.085D; - // - // xrTableCell48 - // - this.xrTableCell48.BorderColor = System.Drawing.SystemColors.ControlLight; - this.xrTableCell48.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + this.xrTableCell18.Name = "xrTableCell18"; + this.xrTableCell18.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 2, 0, 0, 100F); + this.xrTableCell18.StylePriority.UseBorders = false; + this.xrTableCell18.StylePriority.UsePadding = false; + this.xrTableCell18.StylePriority.UseTextAlignment = false; + this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell18.Weight = 0.2168589900090144D; + // + // GroupFooter1 + // + this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrTable4}); + this.GroupFooter1.Font = new System.Drawing.Font("Arial", 10F); + this.GroupFooter1.HeightF = 81.00005F; + this.GroupFooter1.Name = "GroupFooter1"; + this.GroupFooter1.StylePriority.UseFont = false; + // + // xrTable4 + // + this.xrTable4.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrTable4.Name = "xrTable4"; + this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow25, + this.xrTableRow26, + this.xrTableRow27, + this.xrTableRow28}); + this.xrTable4.SizeF = new System.Drawing.SizeF(627.0834F, 81.00005F); + this.xrTable4.StylePriority.UseBorderColor = false; + // + // xrTableRow25 + // + this.xrTableRow25.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell42}); + this.xrTableRow25.Name = "xrTableRow25"; + this.xrTableRow25.Weight = 0.085D; + // + // xrTableCell42 + // + this.xrTableCell42.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell48.Name = "xrTableCell48"; - this.xrTableCell48.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrTableCell48.StylePriority.UseBorderColor = false; - this.xrTableCell48.StylePriority.UseBorders = false; - this.xrTableCell48.Weight = 1D; - // - // xrTableRow31 - // - this.xrTableRow31.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { - this.xrTableCell49, - this.xrTableCell50}); - this.xrTableRow31.Name = "xrTableRow31"; - this.xrTableRow31.Weight = 0.085D; - // - // xrTableCell49 - // - this.xrTableCell49.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell49.Name = "xrTableCell49"; - this.xrTableCell49.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrTableCell49.StylePriority.UseBorders = false; - this.xrTableCell49.StylePriority.UseFont = false; - this.xrTableCell49.StylePriority.UsePadding = false; - this.xrTableCell49.Text = "Gesamtforderung:"; - this.xrTableCell49.Weight = 0.78314100999098546D; - // - // xrTableCell50 - // - this.xrTableCell50.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + this.xrTableCell42.Name = "xrTableCell42"; + this.xrTableCell42.StylePriority.UseBorders = false; + this.xrTableCell42.Weight = 1D; + // + // xrTableRow26 + // + this.xrTableRow26.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell43, + this.xrTableCell44}); + this.xrTableRow26.Name = "xrTableRow26"; + this.xrTableRow26.Weight = 0.085D; + // + // xrTableCell43 + // + this.xrTableCell43.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell43.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell43.Name = "xrTableCell43"; + this.xrTableCell43.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell43.StylePriority.UseBorderColor = false; + this.xrTableCell43.StylePriority.UseBorders = false; + this.xrTableCell43.StylePriority.UseFont = false; + this.xrTableCell43.Text = "abzüglich der geleisteten Abschlagszahlung:"; + this.xrTableCell43.Weight = 0.78314100999098568D; + // + // xrTableCell44 + // + this.xrTableCell44.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell44.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell50.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountBillableTotal", "{0:c}")}); - this.xrTableCell50.Name = "xrTableCell50"; - this.xrTableCell50.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrTableCell50.StylePriority.UseBorders = false; - this.xrTableCell50.StylePriority.UseFont = false; - this.xrTableCell50.StylePriority.UsePadding = false; - this.xrTableCell50.StylePriority.UseTextAlignment = false; - this.xrTableCell50.Text = "xrTableCell9"; - this.xrTableCell50.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; - this.xrTableCell50.Weight = 0.21685899000901443D; - // - // xrTableRow32 - // - this.xrTableRow32.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { - this.xrTableCell51}); - this.xrTableRow32.Name = "xrTableRow32"; - this.xrTableRow32.Weight = 0.085D; - // - // xrTableCell51 - // - this.xrTableCell51.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) - | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell51.Name = "xrTableCell51"; - this.xrTableCell51.StylePriority.UseBorders = false; - this.xrTableCell51.Weight = 1D; - // - // xrTableRow34 - // - this.xrTableRow34.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { - this.xrTableCell54, - this.xrTableCell55}); - this.xrTableRow34.Name = "xrTableRow34"; - this.xrTableRow34.Weight = 0.085D; - // - // xrTableCell54 - // - this.xrTableCell54.BorderColor = System.Drawing.SystemColors.ControlLight; - this.xrTableCell54.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell54.Name = "xrTableCell54"; - this.xrTableCell54.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrTableCell54.StylePriority.UseBorderColor = false; - this.xrTableCell54.StylePriority.UseBorders = false; - this.xrTableCell54.StylePriority.UseFont = false; - this.xrTableCell54.Text = "abzüglich der geleisteten Abschlagszahlung:"; - this.xrTableCell54.Weight = 0.78314100999098568D; - // - // xrTableCell55 - // - this.xrTableCell55.BorderColor = System.Drawing.SystemColors.ControlLight; - this.xrTableCell55.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) - | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell55.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + this.xrTableCell44.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountAdvancedPayments", "{0:c}")}); - this.xrTableCell55.Name = "xrTableCell55"; - this.xrTableCell55.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrTableCell55.StylePriority.UseBorderColor = false; - this.xrTableCell55.StylePriority.UseBorders = false; - this.xrTableCell55.StylePriority.UseFont = false; - this.xrTableCell55.StylePriority.UseTextAlignment = false; - this.xrTableCell55.Text = "xrTableCell10"; - this.xrTableCell55.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; - this.xrTableCell55.Weight = 0.21685899000901443D; - // - // xrTableRow36 - // - this.xrTableRow36.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { - this.xrTableCell58}); - this.xrTableRow36.Name = "xrTableRow36"; - this.xrTableRow36.Weight = 0.085D; - // - // xrTableCell58 - // - this.xrTableCell58.BorderColor = System.Drawing.SystemColors.ControlLight; - this.xrTableCell58.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + this.xrTableCell44.Name = "xrTableCell44"; + this.xrTableCell44.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell44.StylePriority.UseBorderColor = false; + this.xrTableCell44.StylePriority.UseBorders = false; + this.xrTableCell44.StylePriority.UseFont = false; + this.xrTableCell44.StylePriority.UseTextAlignment = false; + this.xrTableCell44.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell44.Weight = 0.21685899000901443D; + // + // xrTableRow27 + // + this.xrTableRow27.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell45}); + this.xrTableRow27.Name = "xrTableRow27"; + this.xrTableRow27.Weight = 0.085D; + // + // xrTableCell45 + // + this.xrTableCell45.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell45.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell58.Name = "xrTableCell58"; - this.xrTableCell58.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrTableCell58.StylePriority.UseBorderColor = false; - this.xrTableCell58.StylePriority.UseBorders = false; - this.xrTableCell58.Weight = 1D; - // - // xrTableRow37 - // - this.xrTableRow37.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { - this.xrTableCell59, - this.xrTableCell60}); - this.xrTableRow37.Name = "xrTableRow37"; - this.xrTableRow37.Weight = 0.15D; - // - // xrTableCell59 - // - this.xrTableCell59.BorderColor = System.Drawing.SystemColors.ControlLight; - this.xrTableCell59.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell59.Name = "xrTableCell59"; - this.xrTableCell59.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrTableCell59.StylePriority.UseBorderColor = false; - this.xrTableCell59.StylePriority.UseBorders = false; - this.xrTableCell59.StylePriority.UseFont = false; - this.xrTableCell59.Text = "Restforderung:"; - this.xrTableCell59.Weight = 0.78314100999098568D; - // - // xrTableCell60 - // - this.xrTableCell60.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + this.xrTableCell45.Name = "xrTableCell45"; + this.xrTableCell45.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell45.StylePriority.UseBorderColor = false; + this.xrTableCell45.StylePriority.UseBorders = false; + this.xrTableCell45.Weight = 1D; + // + // xrTableRow28 + // + this.xrTableRow28.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell46, + this.xrTableCell47}); + this.xrTableRow28.Name = "xrTableRow28"; + this.xrTableRow28.Weight = 0.15D; + // + // xrTableCell46 + // + this.xrTableCell46.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell46.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell46.Name = "xrTableCell46"; + this.xrTableCell46.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell46.StylePriority.UseBorderColor = false; + this.xrTableCell46.StylePriority.UseBorders = false; + this.xrTableCell46.StylePriority.UseFont = false; + this.xrTableCell46.Text = "Restforderung:"; + this.xrTableCell46.Weight = 0.78314100999098568D; + // + // xrTableCell47 + // + this.xrTableCell47.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell47.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell60.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + this.xrTableCell47.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "Claim", "{0:c}")}); - this.xrTableCell60.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); - this.xrTableCell60.Name = "xrTableCell60"; - this.xrTableCell60.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrTableCell60.StylePriority.UseBorderColor = false; - this.xrTableCell60.StylePriority.UseBorders = false; - this.xrTableCell60.StylePriority.UseFont = false; - this.xrTableCell60.StylePriority.UseTextAlignment = false; - this.xrTableCell60.Text = "xrTableCell17"; - this.xrTableCell60.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; - this.xrTableCell60.Weight = 0.21685899000901443D; - // - // Spitzabrechnung - // - this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { + this.xrTableCell47.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrTableCell47.Name = "xrTableCell47"; + this.xrTableCell47.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell47.StylePriority.UseBorderColor = false; + this.xrTableCell47.StylePriority.UseBorders = false; + this.xrTableCell47.StylePriority.UseFont = false; + this.xrTableCell47.StylePriority.UseTextAlignment = false; + this.xrTableCell47.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell47.Weight = 0.21685899000901443D; + // + // Spitzabrechnung + // + this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { this.Detail, - this.ReportFooter, this.topMarginBand1, this.bottomMarginBand1, this.GroupHeader1, - this.DetailReport, - this.GroupFooter1}); - this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] { - this.fieldApprovedFLSWithFactor}); - this.DataSource = this.bindingSource1; - this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung"; - this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] { + this.GroupFooter3, + this.GroupFooter2, + this.DetailReport}); + this.DataSource = this.bindingSource1; + this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung"; + this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] { this.ruleRateFactorNull}); - this.Margins = new System.Drawing.Printing.Margins(75, 74, 202, 100); - this.PageHeight = 1169; - this.PageWidth = 827; - this.PaperKind = System.Drawing.Printing.PaperKind.A4; - this.Version = "12.1"; - ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); + this.Margins = new System.Drawing.Printing.Margins(100, 50, 230, 100); + this.PageHeight = 1169; + this.PageWidth = 827; + this.PaperKind = System.Drawing.Printing.PaperKind.A4; + this.Version = "13.2"; + ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); } @@ -684,52 +934,80 @@ namespace BeWo.BUGeVReports private DevExpress.XtraReports.UI.XRLabel xrLabel4; private DevExpress.XtraReports.UI.XRLabel xrLabel3; private DevExpress.XtraReports.UI.XRLabel xrLabel2; - private DevExpress.XtraReports.UI.XRLabel RecipientPostCodeAndTown; - private DevExpress.XtraReports.UI.XRLabel xrLabel_RecipientStreet; - private DevExpress.XtraReports.UI.XRLabel xrLabel_RecipientDivision; - private DevExpress.XtraReports.UI.XRLabel xrLabel_RecipientContactPerson; - private DevExpress.XtraReports.UI.XRLabel xrLabel1; - private DevExpress.XtraReports.UI.ReportFooterBand ReportFooter; - private DevExpress.XtraReports.UI.XRLabel xrLabel12; private DevExpress.XtraReports.UI.XRTable xrTable1; - private DevExpress.XtraReports.UI.XRTableRow rowErbrachteLeistung; - private DevExpress.XtraReports.UI.XRTableCell xrTableCell22; - private DevExpress.XtraReports.UI.XRTable xrTable3; - private DevExpress.XtraReports.UI.XRTableRow xrTableRow21; - private DevExpress.XtraReports.UI.XRTableCell xrTableCell18; - private DevExpress.XtraReports.UI.XRTableRow xrTableRow23; - private DevExpress.XtraReports.UI.XRTableCell xrTableCell30; - private DevExpress.XtraReports.UI.XRTableRow xrTableRow24; - private DevExpress.XtraReports.UI.XRTableCell xrTableCell31; - private DevExpress.XtraReports.UI.XRLabel xrLabel10; private DevExpress.XtraReports.UI.FormattingRule ruleRateFactorNull; private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1; private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1; private DevExpress.XtraReports.UI.XRLabel xrLabel8; private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader1; - private DevExpress.XtraReports.UI.CalculatedField fieldApprovedFLSWithFactor; + private DevExpress.XtraReports.UI.XRLabel xrLabel9; + private DevExpress.XtraReports.UI.XRLabel xrLabel13; + private DevExpress.XtraReports.UI.XRLabel xrLabel11; + private DevExpress.XtraReports.UI.XRLabel xrLabel1; + private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter3; + private DevExpress.XtraReports.UI.XRLabel xrLabel7; + private DevExpress.XtraReports.UI.XRLabel xrLabel14; + private DevExpress.XtraReports.UI.XRLabel xrLabel10; + private DevExpress.XtraReports.UI.XRLabel xrLabel16; + private DevExpress.XtraReports.UI.XRLabel xrLabel15; + private DevExpress.XtraReports.UI.XRLabel xrLabel12; + private DevExpress.XtraReports.UI.XRLabel xrLabel17; + private DevExpress.XtraReports.UI.XRTable xrTable2; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow2; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell2; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell4; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell13; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell5; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell14; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow5; + private DevExpress.XtraReports.UI.XRTableCell cellStart1; + private DevExpress.XtraReports.UI.XRTableCell cellEnd1; + private DevExpress.XtraReports.UI.XRTableCell cellHourlyRate1; + private DevExpress.XtraReports.UI.XRTableCell cellFLS1; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell20; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow6; + private DevExpress.XtraReports.UI.XRTableCell cellStart2; + private DevExpress.XtraReports.UI.XRTableCell cellEnd2; + private DevExpress.XtraReports.UI.XRTableCell cellHourlyRate2; + private DevExpress.XtraReports.UI.XRTableCell cellFLS2; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell21; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow8; + private DevExpress.XtraReports.UI.XRTableCell cellStart3; + private DevExpress.XtraReports.UI.XRTableCell cellEnd3; + private DevExpress.XtraReports.UI.XRTableCell cellHourlyRate3; + private DevExpress.XtraReports.UI.XRTableCell cellFLS3; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell29; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox2; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox1; + private DevExpress.XtraReports.UI.XRLabel xrLabel35; + private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter2; + private DevExpress.XtraReports.UI.XRLabel xrLabel18; + private DevExpress.XtraReports.UI.XRLabel xrLabel19; private DevExpress.XtraReports.UI.DetailReportBand DetailReport; private DevExpress.XtraReports.UI.DetailBand Detail1; - private DevExpress.XtraReports.UI.XRTable xrTable4; - private DevExpress.XtraReports.UI.XRTableRow xrTableRow33; - private DevExpress.XtraReports.UI.XRTableCell xrTableCell52; - private DevExpress.XtraReports.UI.XRTableCell xrTableCell53; private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1; - private DevExpress.XtraReports.UI.XRTable xrTable5; - private DevExpress.XtraReports.UI.XRTableRow xrTableRow30; - private DevExpress.XtraReports.UI.XRTableCell xrTableCell48; - private DevExpress.XtraReports.UI.XRTableRow xrTableRow31; - private DevExpress.XtraReports.UI.XRTableCell xrTableCell49; - private DevExpress.XtraReports.UI.XRTableCell xrTableCell50; - private DevExpress.XtraReports.UI.XRTableRow xrTableRow32; - private DevExpress.XtraReports.UI.XRTableCell xrTableCell51; - private DevExpress.XtraReports.UI.XRTableRow xrTableRow34; - private DevExpress.XtraReports.UI.XRTableCell xrTableCell54; - private DevExpress.XtraReports.UI.XRTableCell xrTableCell55; - private DevExpress.XtraReports.UI.XRTableRow xrTableRow36; - private DevExpress.XtraReports.UI.XRTableCell xrTableCell58; - private DevExpress.XtraReports.UI.XRTableRow xrTableRow37; - private DevExpress.XtraReports.UI.XRTableCell xrTableCell59; - private DevExpress.XtraReports.UI.XRTableCell xrTableCell60; + private DevExpress.XtraReports.UI.XRTable xrTable3; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow10; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell16; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell18; + private DevExpress.XtraReports.UI.XRTable xrTable4; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow25; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell42; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow26; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell43; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell44; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow27; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell45; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow28; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell46; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell47; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow1; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell1; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow3; + private DevExpress.XtraReports.UI.XRTableCell cellStart4; + private DevExpress.XtraReports.UI.XRTableCell cellEnd4; + private DevExpress.XtraReports.UI.XRTableCell cellHourlyRate4; + private DevExpress.XtraReports.UI.XRTableCell cellFLS4; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell9; } } diff --git a/ReportImp/BUGeVReports/SettlementReport2.cs b/ReportImp/BUGeVReports/SettlementReport2.cs index d19997a83..aaf28b23e 100644 --- a/ReportImp/BUGeVReports/SettlementReport2.cs +++ b/ReportImp/BUGeVReports/SettlementReport2.cs @@ -1,5 +1,10 @@ -using BeWo.Report; +using System; +using System.Drawing; +using System.Collections; +using System.ComponentModel; +using DevExpress.XtraReports.UI; using BeWo.Report.ReportObjects; +using BeWo.Report; namespace BeWo.BUGeVReports { @@ -12,7 +17,137 @@ namespace BeWo.BUGeVReports public void SetReportDataSource(Settlement2RO pRO) { - + int idx = 0; + + foreach (var ii in pRO.InvoiceItems) + { + ii.DetailDescription = String.Format("{0:dd.MM.yyyy} bis {1:dd.MM.yyyy}", ii.PeriodStartDate, ii.PeriodEndDate); + ii.DetailDescription += String.Format(": {0:0.##} FLS {1}x {2:c}", ii.UnitCount, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", ii.AmountPerUnit); + + if (idx == 0) + { + cellStart1.Text = String.Format("{0:dd.MM.yyyy}", ii.PeriodStartDate); + cellEnd1.Text = String.Format("{0:dd.MM.yyyy}", ii.PeriodEndDate); + cellHourlyRate1.Text = String.Format("{0:0.00}", ii.AmountPerUnit); + cellFLS1.Text = String.Format("{0:0.00}", ii.UnitCount); + } + else if (idx == 1) + { + cellStart2.Text = String.Format("{0:dd.MM.yyyy}", ii.PeriodStartDate); + cellEnd2.Text = String.Format("{0:dd.MM.yyyy}", ii.PeriodEndDate); + cellHourlyRate2.Text = String.Format("{0:0.00}", ii.AmountPerUnit); + cellFLS2.Text = String.Format("{0:0.00}", ii.UnitCount); + } + else if (idx == 2) + { + cellStart3.Text = String.Format("{0:dd.MM.yyyy}", ii.PeriodStartDate); + cellEnd3.Text = String.Format("{0:dd.MM.yyyy}", ii.PeriodEndDate); + cellHourlyRate3.Text = String.Format("{0:0.00}", ii.AmountPerUnit); + cellFLS3.Text = String.Format("{0:0.00}", ii.UnitCount); + } + else if (idx == 3) + { + cellStart4.Text = String.Format("{0:dd.MM.yyyy}", ii.PeriodStartDate); + cellEnd4.Text = String.Format("{0:dd.MM.yyyy}", ii.PeriodEndDate); + cellHourlyRate4.Text = String.Format("{0:0.00}", ii.AmountPerUnit); + cellFLS4.Text = String.Format("{0:0.00}", ii.UnitCount); + } + idx++; + + } + + // if (pRO.DifferentHourlyRateCount == 3) + // { + // //Erbrachte Leistungen (FLS) - bis [HourlyRateOldEndDateString] à [HourlyRateOldString] € + + // pRO.Abrechnungstext1 = String.Format("{0} bis {1}", + // pRO.AccountingStartDateString, pRO.HourlyRate3EndDateString); + + // pRO.Abrechnungstext1 += String.Format(": {0:0.##} FLS {1}x {2:c}", + // pRO.GeleisteteFLSMitStundensatz3, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRate3); + + // //[AccountingStartDateString] - [HourlyRate3EndDateString] sind [RecordedFLSWithHourlyRate3String] Std. x [HourlyRate3String] € ="; + + // pRO.Betrag1 = String.Format("{0:c}", pRO.GeleisteteFLSMitStundensatz3 * (decimal)pRO.RateFactor * pRO.HourlyRate3); + + + // pRO.Abrechnungstext2 = String.Format("{0} bis {1}", + // pRO.HourlyRateOldStartDateString, pRO.HourlyRateOldEndDateString); + // pRO.Abrechnungstext2 += String.Format(": {0:0.##} FLS {1}x {2:c}", + // pRO.GeleisteteFLSMitStundensatzAlt, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRateOld); + + // pRO.Betrag2 = String.Format("{0:c}", pRO.GeleisteteFLSMitStundensatzAlt * (decimal)pRO.RateFactor * pRO.HourlyRateOld); + + + // pRO.Abrechnungstext3 = String.Format("{0} bis {1}", + // pRO.HourlyRateNewStartDateString, pRO.AccountingEndDateString); + // pRO.Abrechnungstext3 += String.Format(": {0:0.##} FLS {1}x {2:c}", + // pRO.GeleisteteFLSMitStundensatzAktuell, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRateNew); + + // pRO.Betrag3 = String.Format("{0:c}", pRO.GeleisteteFLSMitStundensatzAktuell * (decimal)pRO.RateFactor * pRO.HourlyRateNew); + + + + //cellStart1.Text = pRO.AccountingStartDateString; + //cellEnd1.Text = pRO.HourlyRate3EndDateString; + //cellHourlyRate1.Text = pRO.HourlyRate3String; + //cellFLS1.Text = pRO.RecordedFLSWithHourlyRate3String; + + //cellStart2.Text = pRO.HourlyRateOldStartDateString; + //cellEnd2.Text = pRO.HourlyRateOldEndDateString; + //cellHourlyRate2.Text = pRO.HourlyRateOldString; + //cellFLS2.Text = pRO.RecordedFLSWithOldHourlyRateString; + + //cellStart3.Text = pRO.HourlyRateNewStartDateString; + //cellEnd3.Text = pRO.AccountingEndDateString; + //cellHourlyRate3.Text = pRO.HourlyRateNewString; + //cellFLS3.Text = pRO.RecordedFLSWithNewHourlyRateString; + // } + // else if (pRO.DifferentHourlyRateCount == 2) + // { + + // pRO.Abrechnungstext2 = String.Format("{0} bis {1}", + // pRO.AccountingStartDateString, pRO.HourlyRateOldEndDateString); + // pRO.Abrechnungstext2 += String.Format(": {0:0.##} FLS {1}x {2:c}", + // pRO.GeleisteteFLSMitStundensatzAlt, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRateOld); + + // pRO.Betrag2 = String.Format("{0:c}", pRO.GeleisteteFLSMitStundensatzAlt * (decimal)pRO.RateFactor * pRO.HourlyRateOld); + + + // pRO.Abrechnungstext3 = String.Format("{0} bis {1}", + // pRO.HourlyRateNewStartDateString, pRO.AccountingEndDateString); + // pRO.Abrechnungstext3 += String.Format(": {0:0.##} FLS {1}x {2:c}", + // pRO.GeleisteteFLSMitStundensatzAktuell, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRateNew); + + // pRO.Betrag3 = String.Format("{0:c}", pRO.GeleisteteFLSMitStundensatzAktuell * (decimal)pRO.RateFactor * pRO.HourlyRateNew); + + + //cellStart1.Text = pRO.AccountingStartDateString; + //cellEnd1.Text = pRO.HourlyRateOldEndDateString; + //cellHourlyRate1.Text = pRO.HourlyRateOldString; + //cellFLS1.Text = pRO.RecordedFLSWithOldHourlyRateString; + + //cellStart2.Text = pRO.HourlyRateNewStartDateString; + //cellEnd2.Text = pRO.AccountingEndDateString; + //cellHourlyRate2.Text = pRO.HourlyRateNewString; + //cellFLS2.Text = pRO.RecordedFLSWithNewHourlyRateString; + // } + // else + // { + //cellStart1.Text = pRO.AccountingStartDateString; + //cellEnd1.Text = pRO.AccountingEndDateString; + //cellHourlyRate1.Text = pRO.HourlyRateNewString; + //cellFLS1.Text = pRO.RecordedFLSWithNewHourlyRateString; + + // pRO.Abrechnungstext3 = String.Format("{0} bis {1}", + // pRO.AccountingStartDateString, pRO.AccountingEndDateString); + // pRO.Abrechnungstext3 += String.Format(": {0:0.##} FLS {1}x {2:c}", + // pRO.GeleisteteFLSMitStundensatzAktuell, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRateNew); + + // pRO.Betrag3 = String.Format("{0:c}", pRO.GeleisteteFLSMitStundensatzAktuell * (decimal)pRO.RateFactor * pRO.HourlyRateNew); + // } + + this.bindingSource1.DataSource = pRO; } } diff --git a/ReportImp/BUGeVReports/SettlementReport2.resx b/ReportImp/BUGeVReports/SettlementReport2.resx index 4b3abebb1..eb5806489 100644 --- a/ReportImp/BUGeVReports/SettlementReport2.resx +++ b/ReportImp/BUGeVReports/SettlementReport2.resx @@ -118,10 +118,12 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Hiermit übersende ich Ihnen die Rechnung über die im Rahmen des Betreuten Wohnens für [Salutation2] [CustomerFirstName] [CustomerLastName] erbrachten Leistungen. Nach unserer Berechnung ergeben sich für den: - + anbei sende ich Ihnen die Nachweise über die im Rahmen des Betreuten Wohnens für [Salutation2] [CustomerFirstName] [CustomerLastName] erbrachten Leistungen zu. Nach unserer Berechnung ergeben sich für den [AccountingPeriod] hieraus: 17, 17 + + Hiermit wird erklärt, dass die Verpflichtungen aus der Leistungs-, Prüfungs- und Vergütungsvereinbarung nach §§ 75 ff. SGB XII eingehalten wurden und alle hier gemachten Angaben anhand der vorgehaltenen Quittierungsbelege sowie der Betreuungsdokumentation jederzeit nachgewiesen werden können. + \ No newline at end of file diff --git a/ReportImp/BWKGbR/BWKGbR.csproj b/ReportImp/BWKGbR/BWKGbR.csproj index 649e59a39..ecd812574 100644 --- a/ReportImp/BWKGbR/BWKGbR.csproj +++ b/ReportImp/BWKGbR/BWKGbR.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BWKGbR/Properties/licenses.licx b/ReportImp/BWKGbR/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BWKGbR/Properties/licenses.licx +++ b/ReportImp/BWKGbR/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BeWoAlsdorf/BeWoAlsdorf.csproj b/ReportImp/BeWoAlsdorf/BeWoAlsdorf.csproj index 6a226125c..954b2116d 100644 --- a/ReportImp/BeWoAlsdorf/BeWoAlsdorf.csproj +++ b/ReportImp/BeWoAlsdorf/BeWoAlsdorf.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BeWoAlsdorf/Properties/licenses.licx b/ReportImp/BeWoAlsdorf/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BeWoAlsdorf/Properties/licenses.licx +++ b/ReportImp/BeWoAlsdorf/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BeWoAmrath/BeWoAmrath.csproj b/ReportImp/BeWoAmrath/BeWoAmrath.csproj index 8fa91ba23..6af35f21e 100644 --- a/ReportImp/BeWoAmrath/BeWoAmrath.csproj +++ b/ReportImp/BeWoAmrath/BeWoAmrath.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BeWoAmrath/Properties/licenses.licx b/ReportImp/BeWoAmrath/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BeWoAmrath/Properties/licenses.licx +++ b/ReportImp/BeWoAmrath/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BeWoAuxilio/BeWoAuxilio.csproj b/ReportImp/BeWoAuxilio/BeWoAuxilio.csproj index 9f85b6fd1..2d7afa93d 100644 --- a/ReportImp/BeWoAuxilio/BeWoAuxilio.csproj +++ b/ReportImp/BeWoAuxilio/BeWoAuxilio.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BeWoAuxilio/Properties/licenses.licx b/ReportImp/BeWoAuxilio/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BeWoAuxilio/Properties/licenses.licx +++ b/ReportImp/BeWoAuxilio/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BeWoBiallas/BeWoBiallas.csproj b/ReportImp/BeWoBiallas/BeWoBiallas.csproj index cd83ed822..d82531c49 100644 --- a/ReportImp/BeWoBiallas/BeWoBiallas.csproj +++ b/ReportImp/BeWoBiallas/BeWoBiallas.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BeWoBiallas/Properties/licenses.licx b/ReportImp/BeWoBiallas/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BeWoBiallas/Properties/licenses.licx +++ b/ReportImp/BeWoBiallas/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BeWoColonia5Reports/BeWoColonia5Reports.csproj b/ReportImp/BeWoColonia5Reports/BeWoColonia5Reports.csproj index 8a5cf58ab..6beb86149 100644 --- a/ReportImp/BeWoColonia5Reports/BeWoColonia5Reports.csproj +++ b/ReportImp/BeWoColonia5Reports/BeWoColonia5Reports.csproj @@ -31,18 +31,18 @@ 4 - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BeWoColonia5Reports/Properties/licenses.licx b/ReportImp/BeWoColonia5Reports/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BeWoColonia5Reports/Properties/licenses.licx +++ b/ReportImp/BeWoColonia5Reports/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BeWoColoniaKalayci/BeWoColoniaKalayci.csproj b/ReportImp/BeWoColoniaKalayci/BeWoColoniaKalayci.csproj index 3c7de69ff..e791ea2aa 100644 --- a/ReportImp/BeWoColoniaKalayci/BeWoColoniaKalayci.csproj +++ b/ReportImp/BeWoColoniaKalayci/BeWoColoniaKalayci.csproj @@ -31,18 +31,18 @@ 4 - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BeWoColoniaMitarbeiter/BeWoColoniaMitarbeiter.csproj b/ReportImp/BeWoColoniaMitarbeiter/BeWoColoniaMitarbeiter.csproj index 78a9a11b1..f1f4543b0 100644 --- a/ReportImp/BeWoColoniaMitarbeiter/BeWoColoniaMitarbeiter.csproj +++ b/ReportImp/BeWoColoniaMitarbeiter/BeWoColoniaMitarbeiter.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BeWoColoniaMitarbeiter/Properties/licenses.licx b/ReportImp/BeWoColoniaMitarbeiter/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BeWoColoniaMitarbeiter/Properties/licenses.licx +++ b/ReportImp/BeWoColoniaMitarbeiter/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BeWoDellbrueck/BeWoDellbrueck.csproj b/ReportImp/BeWoDellbrueck/BeWoDellbrueck.csproj index 49a195cae..1af8b6da6 100644 --- a/ReportImp/BeWoDellbrueck/BeWoDellbrueck.csproj +++ b/ReportImp/BeWoDellbrueck/BeWoDellbrueck.csproj @@ -69,20 +69,20 @@ false - - - - - - - - - + + + + + + + + + - - - - + + + + 3.5 diff --git a/ReportImp/BeWoDellbrueck/Properties/licenses.licx b/ReportImp/BeWoDellbrueck/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BeWoDellbrueck/Properties/licenses.licx +++ b/ReportImp/BeWoDellbrueck/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BeWoDirekt/BeWoDirekt.csproj b/ReportImp/BeWoDirekt/BeWoDirekt.csproj index 4dfee6942..b03e3be34 100644 --- a/ReportImp/BeWoDirekt/BeWoDirekt.csproj +++ b/ReportImp/BeWoDirekt/BeWoDirekt.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BeWoDirekt/Properties/licenses.licx b/ReportImp/BeWoDirekt/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BeWoDirekt/Properties/licenses.licx +++ b/ReportImp/BeWoDirekt/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BeWoHeinsberg/BeWoHeinsberg.csproj b/ReportImp/BeWoHeinsberg/BeWoHeinsberg.csproj index a6f70c849..d2b08015c 100644 --- a/ReportImp/BeWoHeinsberg/BeWoHeinsberg.csproj +++ b/ReportImp/BeWoHeinsberg/BeWoHeinsberg.csproj @@ -70,19 +70,19 @@ false - - - - - - - - - - - - - + + + + + + + + + + + + + 3.5 diff --git a/ReportImp/BeWoHeinsberg/Properties/licenses.licx b/ReportImp/BeWoHeinsberg/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BeWoHeinsberg/Properties/licenses.licx +++ b/ReportImp/BeWoHeinsberg/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BeWoKerpen/BeWoKerpen.csproj b/ReportImp/BeWoKerpen/BeWoKerpen.csproj index e3a6e1dd1..f2993b31d 100644 --- a/ReportImp/BeWoKerpen/BeWoKerpen.csproj +++ b/ReportImp/BeWoKerpen/BeWoKerpen.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BeWoKerpen/Properties/licenses.licx b/ReportImp/BeWoKerpen/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BeWoKerpen/Properties/licenses.licx +++ b/ReportImp/BeWoKerpen/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BeWoLeverkusen/BeWoLeverkusen.csproj b/ReportImp/BeWoLeverkusen/BeWoLeverkusen.csproj index 9ab8d80e2..7bf1f56cb 100644 --- a/ReportImp/BeWoLeverkusen/BeWoLeverkusen.csproj +++ b/ReportImp/BeWoLeverkusen/BeWoLeverkusen.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BeWoLeverkusen/Properties/licenses.licx b/ReportImp/BeWoLeverkusen/Properties/licenses.licx index e68f0ba0d..e69de29bb 100644 --- a/ReportImp/BeWoLeverkusen/Properties/licenses.licx +++ b/ReportImp/BeWoLeverkusen/Properties/licenses.licx @@ -1,2 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.2, Version=13.2.13.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BeWoMarinReports/BeWoMarinReports.csproj b/ReportImp/BeWoMarinReports/BeWoMarinReports.csproj index 5f539509f..db9f3d45b 100644 --- a/ReportImp/BeWoMarinReports/BeWoMarinReports.csproj +++ b/ReportImp/BeWoMarinReports/BeWoMarinReports.csproj @@ -31,18 +31,18 @@ 4 - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BeWoMobilReports/BeWoMobilReports.csproj b/ReportImp/BeWoMobilReports/BeWoMobilReports.csproj index 423f561ba..936aec372 100644 --- a/ReportImp/BeWoMobilReports/BeWoMobilReports.csproj +++ b/ReportImp/BeWoMobilReports/BeWoMobilReports.csproj @@ -70,19 +70,19 @@ false - - - - - - - - - - - - - + + + + + + + + + + + + + 3.5 diff --git a/ReportImp/BeWoMobilReports/Properties/licenses.licx b/ReportImp/BeWoMobilReports/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BeWoMobilReports/Properties/licenses.licx +++ b/ReportImp/BeWoMobilReports/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BeWoNeuss/BeWoNeuss.csproj b/ReportImp/BeWoNeuss/BeWoNeuss.csproj index 3479908d4..1c95f8446 100644 --- a/ReportImp/BeWoNeuss/BeWoNeuss.csproj +++ b/ReportImp/BeWoNeuss/BeWoNeuss.csproj @@ -70,19 +70,19 @@ false - - - - - - - - - - - - - + + + + + + + + + + + + + 3.5 diff --git a/ReportImp/BeWoNeuss/Properties/licenses.licx b/ReportImp/BeWoNeuss/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BeWoNeuss/Properties/licenses.licx +++ b/ReportImp/BeWoNeuss/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BeWoPlusReports/BeWoPlusReports.csproj b/ReportImp/BeWoPlusReports/BeWoPlusReports.csproj index 5ce10217b..ee823003c 100644 --- a/ReportImp/BeWoPlusReports/BeWoPlusReports.csproj +++ b/ReportImp/BeWoPlusReports/BeWoPlusReports.csproj @@ -31,18 +31,18 @@ 4 - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BeWoPlusReports/Properties/licenses.licx b/ReportImp/BeWoPlusReports/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BeWoPlusReports/Properties/licenses.licx +++ b/ReportImp/BeWoPlusReports/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BeWoRichartz/BeWoRichartz.csproj b/ReportImp/BeWoRichartz/BeWoRichartz.csproj index 98782193c..9e42baef2 100644 --- a/ReportImp/BeWoRichartz/BeWoRichartz.csproj +++ b/ReportImp/BeWoRichartz/BeWoRichartz.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BeWoRichartz/Properties/licenses.licx b/ReportImp/BeWoRichartz/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BeWoRichartz/Properties/licenses.licx +++ b/ReportImp/BeWoRichartz/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BeWoRueckenwind/BeWoRueckenwind.csproj b/ReportImp/BeWoRueckenwind/BeWoRueckenwind.csproj index 5ba6627cb..c6ccec338 100644 --- a/ReportImp/BeWoRueckenwind/BeWoRueckenwind.csproj +++ b/ReportImp/BeWoRueckenwind/BeWoRueckenwind.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BeWoRueckenwind/Properties/licenses.licx b/ReportImp/BeWoRueckenwind/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BeWoRueckenwind/Properties/licenses.licx +++ b/ReportImp/BeWoRueckenwind/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BeWoSchillingReports/BeWoSchillingReports.csproj b/ReportImp/BeWoSchillingReports/BeWoSchillingReports.csproj index 5d71d6fec..7d5197f9d 100644 --- a/ReportImp/BeWoSchillingReports/BeWoSchillingReports.csproj +++ b/ReportImp/BeWoSchillingReports/BeWoSchillingReports.csproj @@ -31,18 +31,18 @@ 4 - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BeWoSchillingReports/Properties/licenses.licx b/ReportImp/BeWoSchillingReports/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BeWoSchillingReports/Properties/licenses.licx +++ b/ReportImp/BeWoSchillingReports/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BeWoViersen/BeWoViersen.csproj b/ReportImp/BeWoViersen/BeWoViersen.csproj index b05d26e60..d08837afe 100644 --- a/ReportImp/BeWoViersen/BeWoViersen.csproj +++ b/ReportImp/BeWoViersen/BeWoViersen.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BeWoViersen/Properties/licenses.licx b/ReportImp/BeWoViersen/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BeWoViersen/Properties/licenses.licx +++ b/ReportImp/BeWoViersen/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BetreuWoReports/BetreuWoReports.csproj b/ReportImp/BetreuWoReports/BetreuWoReports.csproj index df2047794..9f3d99787 100644 --- a/ReportImp/BetreuWoReports/BetreuWoReports.csproj +++ b/ReportImp/BetreuWoReports/BetreuWoReports.csproj @@ -69,19 +69,19 @@ false - - - - - - - - - - - - - + + + + + + + + + + + + + 3.5 diff --git a/ReportImp/BetreuWoReports/Kostenstellenauswertung2.cs b/ReportImp/BetreuWoReports/Kostenstellenauswertung2.cs index e5d805bd4..99178d405 100644 --- a/ReportImp/BetreuWoReports/Kostenstellenauswertung2.cs +++ b/ReportImp/BetreuWoReports/Kostenstellenauswertung2.cs @@ -10,7 +10,6 @@ using BS.Shared.Extensions; using BS.Shared.Services; using BS.Shared.DataContracts; using BeWo.Service.DCEntityMapper; -using DevExpress.XtraPivotGrid.Data.Wrappers; namespace BeWo.BetreuWoReports { diff --git a/ReportImp/BetreuWoReports/Kostenstellenauswertung3.cs b/ReportImp/BetreuWoReports/Kostenstellenauswertung3.cs index 793512ec1..1cce66dc0 100644 --- a/ReportImp/BetreuWoReports/Kostenstellenauswertung3.cs +++ b/ReportImp/BetreuWoReports/Kostenstellenauswertung3.cs @@ -10,7 +10,6 @@ using BS.Shared.Extensions; using BS.Shared.Services; using BS.Shared.DataContracts; using BeWo.Service.DCEntityMapper; -using DevExpress.XtraPivotGrid.Data.Wrappers; namespace BeWo.BetreuWoReports.Kostenstellenauswertung3 { diff --git a/ReportImp/BetreuWoReports/Properties/licenses.licx b/ReportImp/BetreuWoReports/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BetreuWoReports/Properties/licenses.licx +++ b/ReportImp/BetreuWoReports/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BetreutesWohnenAmRheinReports/BetreutesWohnenAmRheinReports.csproj b/ReportImp/BetreutesWohnenAmRheinReports/BetreutesWohnenAmRheinReports.csproj index 10bcdc4f0..73b1f79e4 100644 --- a/ReportImp/BetreutesWohnenAmRheinReports/BetreutesWohnenAmRheinReports.csproj +++ b/ReportImp/BetreutesWohnenAmRheinReports/BetreutesWohnenAmRheinReports.csproj @@ -67,19 +67,19 @@ ;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules - - - - - - - - - - - - - + + + + + + + + + + + + + 3.5 diff --git a/ReportImp/BetreutesWohnenAmRheinReports/Properties/licenses.licx b/ReportImp/BetreutesWohnenAmRheinReports/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BetreutesWohnenAmRheinReports/Properties/licenses.licx +++ b/ReportImp/BetreutesWohnenAmRheinReports/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BetreutesWohnenStLudgerus/BetreutesWohnenStLudgerus.csproj b/ReportImp/BetreutesWohnenStLudgerus/BetreutesWohnenStLudgerus.csproj index a408847a3..41f19d2f5 100644 --- a/ReportImp/BetreutesWohnenStLudgerus/BetreutesWohnenStLudgerus.csproj +++ b/ReportImp/BetreutesWohnenStLudgerus/BetreutesWohnenStLudgerus.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BetreutesWohnenStLudgerus/Properties/licenses.licx b/ReportImp/BetreutesWohnenStLudgerus/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BetreutesWohnenStLudgerus/Properties/licenses.licx +++ b/ReportImp/BetreutesWohnenStLudgerus/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BetreutesWohnenStelzel/BetreutesWohnenStelzel.csproj b/ReportImp/BetreutesWohnenStelzel/BetreutesWohnenStelzel.csproj index 329dd6dc7..abff4ecd7 100644 --- a/ReportImp/BetreutesWohnenStelzel/BetreutesWohnenStelzel.csproj +++ b/ReportImp/BetreutesWohnenStelzel/BetreutesWohnenStelzel.csproj @@ -69,20 +69,20 @@ false - - - - - - - - - + + + + + + + + + - - - - + + + + 3.5 diff --git a/ReportImp/BetreutesWohnenStelzel/Properties/licenses.licx b/ReportImp/BetreutesWohnenStelzel/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BetreutesWohnenStelzel/Properties/licenses.licx +++ b/ReportImp/BetreutesWohnenStelzel/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BetreutesWohnenWoellReports/BetreutesWohnenWoellReports.csproj b/ReportImp/BetreutesWohnenWoellReports/BetreutesWohnenWoellReports.csproj index 04c92cfc8..4379c93c7 100644 --- a/ReportImp/BetreutesWohnenWoellReports/BetreutesWohnenWoellReports.csproj +++ b/ReportImp/BetreutesWohnenWoellReports/BetreutesWohnenWoellReports.csproj @@ -31,19 +31,19 @@ 4 - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/ReportImp/BetreutesWohnenWoellReports/Properties/licenses.licx b/ReportImp/BetreutesWohnenWoellReports/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BetreutesWohnenWoellReports/Properties/licenses.licx +++ b/ReportImp/BetreutesWohnenWoellReports/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BetreuungsBueroScholzReport/BetreuungsBueroScholzReport.csproj b/ReportImp/BetreuungsBueroScholzReport/BetreuungsBueroScholzReport.csproj index 7f06bd2dd..ca07eea99 100644 --- a/ReportImp/BetreuungsBueroScholzReport/BetreuungsBueroScholzReport.csproj +++ b/ReportImp/BetreuungsBueroScholzReport/BetreuungsBueroScholzReport.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BetreuungsBueroScholzReport/Properties/licenses.licx b/ReportImp/BetreuungsBueroScholzReport/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BetreuungsBueroScholzReport/Properties/licenses.licx +++ b/ReportImp/BetreuungsBueroScholzReport/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BetreuungsbueroBaak/BetreuungsbueroBaak.csproj b/ReportImp/BetreuungsbueroBaak/BetreuungsbueroBaak.csproj index 2d7c8836e..b8e0c58e9 100644 --- a/ReportImp/BetreuungsbueroBaak/BetreuungsbueroBaak.csproj +++ b/ReportImp/BetreuungsbueroBaak/BetreuungsbueroBaak.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BetreuungsbueroBaak/Properties/licenses.licx b/ReportImp/BetreuungsbueroBaak/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BetreuungsbueroBaak/Properties/licenses.licx +++ b/ReportImp/BetreuungsbueroBaak/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BetreuwoWesel/BetreuwoWesel.csproj b/ReportImp/BetreuwoWesel/BetreuwoWesel.csproj index f6cdbb68c..085ad4649 100644 --- a/ReportImp/BetreuwoWesel/BetreuwoWesel.csproj +++ b/ReportImp/BetreuwoWesel/BetreuwoWesel.csproj @@ -34,11 +34,18 @@ ..\..\Host\Bin\BS.Shared.dll - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BetreuwoWesel/Properties/licenses.licx b/ReportImp/BetreuwoWesel/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BetreuwoWesel/Properties/licenses.licx +++ b/ReportImp/BetreuwoWesel/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BleibImLeben/BleibImLeben.csproj b/ReportImp/BleibImLeben/BleibImLeben.csproj index aa60dfe0e..ebc2e6b4d 100644 --- a/ReportImp/BleibImLeben/BleibImLeben.csproj +++ b/ReportImp/BleibImLeben/BleibImLeben.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BleibImLeben/Properties/licenses.licx b/ReportImp/BleibImLeben/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BleibImLeben/Properties/licenses.licx +++ b/ReportImp/BleibImLeben/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BloemelingUndTeckhaus/BloemelingUndTeckhaus.csproj b/ReportImp/BloemelingUndTeckhaus/BloemelingUndTeckhaus.csproj index 6ce17e3c9..8ab84eda3 100644 --- a/ReportImp/BloemelingUndTeckhaus/BloemelingUndTeckhaus.csproj +++ b/ReportImp/BloemelingUndTeckhaus/BloemelingUndTeckhaus.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BloemelingUndTeckhaus/Properties/licenses.licx b/ReportImp/BloemelingUndTeckhaus/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BloemelingUndTeckhaus/Properties/licenses.licx +++ b/ReportImp/BloemelingUndTeckhaus/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BrueckeABW/BrueckeABW.csproj b/ReportImp/BrueckeABW/BrueckeABW.csproj index d9d79f4bf..7397fd252 100644 --- a/ReportImp/BrueckeABW/BrueckeABW.csproj +++ b/ReportImp/BrueckeABW/BrueckeABW.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BrueckeABW/Properties/licenses.licx b/ReportImp/BrueckeABW/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BrueckeABW/Properties/licenses.licx +++ b/ReportImp/BrueckeABW/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BundBBetreutesWohnen/BundBBetreutesWohnen.csproj b/ReportImp/BundBBetreutesWohnen/BundBBetreutesWohnen.csproj index 41ec2d444..4bd5015a1 100644 --- a/ReportImp/BundBBetreutesWohnen/BundBBetreutesWohnen.csproj +++ b/ReportImp/BundBBetreutesWohnen/BundBBetreutesWohnen.csproj @@ -35,11 +35,18 @@ False ..\..\Host\Bin\BS.Shared.dll - - - - - + + + + + + + + + + + + diff --git a/ReportImp/BundBBetreutesWohnen/Properties/licenses.licx b/ReportImp/BundBBetreutesWohnen/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/BundBBetreutesWohnen/Properties/licenses.licx +++ b/ReportImp/BundBBetreutesWohnen/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/CaritasAachen/CaritasAachen.csproj b/ReportImp/CaritasAachen/CaritasAachen.csproj index 04d290d55..cb7b61032 100644 --- a/ReportImp/CaritasAachen/CaritasAachen.csproj +++ b/ReportImp/CaritasAachen/CaritasAachen.csproj @@ -70,20 +70,20 @@ false - - - - - - - - - + + + + + + + + + - - - - + + + + 3.5 diff --git a/ReportImp/CaritasAachen/Properties/licenses.licx b/ReportImp/CaritasAachen/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/CaritasAachen/Properties/licenses.licx +++ b/ReportImp/CaritasAachen/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/CaritasBottrop/CaritasBottrop.csproj b/ReportImp/CaritasBottrop/CaritasBottrop.csproj index cce0f065e..f6aabdcfa 100644 --- a/ReportImp/CaritasBottrop/CaritasBottrop.csproj +++ b/ReportImp/CaritasBottrop/CaritasBottrop.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/CaritasBottrop/Properties/licenses.licx b/ReportImp/CaritasBottrop/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/CaritasBottrop/Properties/licenses.licx +++ b/ReportImp/CaritasBottrop/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/CaritasFrankfurt2Reports/CaritasFrankfurt2Reports.csproj b/ReportImp/CaritasFrankfurt2Reports/CaritasFrankfurt2Reports.csproj index b3cc392ec..73b68bc35 100644 --- a/ReportImp/CaritasFrankfurt2Reports/CaritasFrankfurt2Reports.csproj +++ b/ReportImp/CaritasFrankfurt2Reports/CaritasFrankfurt2Reports.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/CaritasFrankfurt2Reports/Properties/licenses.licx b/ReportImp/CaritasFrankfurt2Reports/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/CaritasFrankfurt2Reports/Properties/licenses.licx +++ b/ReportImp/CaritasFrankfurt2Reports/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/CaritasFrankfurtReports/CaritasFrankfurtReports.csproj b/ReportImp/CaritasFrankfurtReports/CaritasFrankfurtReports.csproj index 113867a71..e2b38cea7 100644 --- a/ReportImp/CaritasFrankfurtReports/CaritasFrankfurtReports.csproj +++ b/ReportImp/CaritasFrankfurtReports/CaritasFrankfurtReports.csproj @@ -31,20 +31,20 @@ 4 - - - - - - - - - + + + + + + + + + - - - - + + + + diff --git a/ReportImp/CaritasFrankfurtReports/Properties/licenses.licx b/ReportImp/CaritasFrankfurtReports/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/CaritasFrankfurtReports/Properties/licenses.licx +++ b/ReportImp/CaritasFrankfurtReports/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/CaritasLeverkusen/CaritasLeverkusen.csproj b/ReportImp/CaritasLeverkusen/CaritasLeverkusen.csproj index 866ab40c5..a135ddb2b 100644 --- a/ReportImp/CaritasLeverkusen/CaritasLeverkusen.csproj +++ b/ReportImp/CaritasLeverkusen/CaritasLeverkusen.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/CaritasLeverkusen/Properties/licenses.licx b/ReportImp/CaritasLeverkusen/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/CaritasLeverkusen/Properties/licenses.licx +++ b/ReportImp/CaritasLeverkusen/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/CaritasUnna/CaritasUnna.csproj b/ReportImp/CaritasUnna/CaritasUnna.csproj index 23c3cc8ba..f36c89092 100644 --- a/ReportImp/CaritasUnna/CaritasUnna.csproj +++ b/ReportImp/CaritasUnna/CaritasUnna.csproj @@ -32,18 +32,18 @@ 4 - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/ReportImp/CaritasUnna/Properties/licenses.licx b/ReportImp/CaritasUnna/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/CaritasUnna/Properties/licenses.licx +++ b/ReportImp/CaritasUnna/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/CaritasUnnaWohnungslosenhilfe/CaritasUnnaWohnungslosenhilfe.csproj b/ReportImp/CaritasUnnaWohnungslosenhilfe/CaritasUnnaWohnungslosenhilfe.csproj index 85baf07d3..0212ac67f 100644 --- a/ReportImp/CaritasUnnaWohnungslosenhilfe/CaritasUnnaWohnungslosenhilfe.csproj +++ b/ReportImp/CaritasUnnaWohnungslosenhilfe/CaritasUnnaWohnungslosenhilfe.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/CaritasUnnaWohnungslosenhilfe/Properties/licenses.licx b/ReportImp/CaritasUnnaWohnungslosenhilfe/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/CaritasUnnaWohnungslosenhilfe/Properties/licenses.licx +++ b/ReportImp/CaritasUnnaWohnungslosenhilfe/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/CaritasWuppertalSolingen/CaritasWuppertalSolingen.csproj b/ReportImp/CaritasWuppertalSolingen/CaritasWuppertalSolingen.csproj index da3c13a75..d869799c8 100644 --- a/ReportImp/CaritasWuppertalSolingen/CaritasWuppertalSolingen.csproj +++ b/ReportImp/CaritasWuppertalSolingen/CaritasWuppertalSolingen.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/CaritasWuppertalSolingen/Properties/licenses.licx b/ReportImp/CaritasWuppertalSolingen/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/CaritasWuppertalSolingen/Properties/licenses.licx +++ b/ReportImp/CaritasWuppertalSolingen/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/ChristopherusHaus/ChristopherusHaus.csproj b/ReportImp/ChristopherusHaus/ChristopherusHaus.csproj index 3e34bb31c..46262860c 100644 --- a/ReportImp/ChristopherusHaus/ChristopherusHaus.csproj +++ b/ReportImp/ChristopherusHaus/ChristopherusHaus.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/ChristopherusHaus/Properties/licenses.licx b/ReportImp/ChristopherusHaus/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/ChristopherusHaus/Properties/licenses.licx +++ b/ReportImp/ChristopherusHaus/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/Club74/Club74.csproj b/ReportImp/Club74/Club74.csproj index 53e13295b..4d20d3618 100644 --- a/ReportImp/Club74/Club74.csproj +++ b/ReportImp/Club74/Club74.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/Club74/Properties/licenses.licx b/ReportImp/Club74/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/Club74/Properties/licenses.licx +++ b/ReportImp/Club74/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/Convoi/Convoi.csproj b/ReportImp/Convoi/Convoi.csproj index b1bfd9101..beb5e41ed 100644 --- a/ReportImp/Convoi/Convoi.csproj +++ b/ReportImp/Convoi/Convoi.csproj @@ -30,11 +30,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/Convoi/Properties/licenses.licx b/ReportImp/Convoi/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/Convoi/Properties/licenses.licx +++ b/ReportImp/Convoi/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/DerKarren/DerKarren.csproj b/ReportImp/DerKarren/DerKarren.csproj index 33b1a3178..3355c030c 100644 --- a/ReportImp/DerKarren/DerKarren.csproj +++ b/ReportImp/DerKarren/DerKarren.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/DerKarren/Properties/licenses.licx b/ReportImp/DerKarren/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/DerKarren/Properties/licenses.licx +++ b/ReportImp/DerKarren/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/DiakonieKKKleve/DiakonieKKKleve.csproj b/ReportImp/DiakonieKKKleve/DiakonieKKKleve.csproj index 7a35f8037..6f147965e 100644 --- a/ReportImp/DiakonieKKKleve/DiakonieKKKleve.csproj +++ b/ReportImp/DiakonieKKKleve/DiakonieKKKleve.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/DiakonieKKKleve/Properties/licenses.licx b/ReportImp/DiakonieKKKleve/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/DiakonieKKKleve/Properties/licenses.licx +++ b/ReportImp/DiakonieKKKleve/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/DiakonieLennepReports/DiakonieLennepReports.csproj b/ReportImp/DiakonieLennepReports/DiakonieLennepReports.csproj index 43f96a14a..e1fbe44e5 100644 --- a/ReportImp/DiakonieLennepReports/DiakonieLennepReports.csproj +++ b/ReportImp/DiakonieLennepReports/DiakonieLennepReports.csproj @@ -31,18 +31,18 @@ 4 - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/ReportImp/DiakonieLennepReports/Properties/licenses.licx b/ReportImp/DiakonieLennepReports/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/DiakonieLennepReports/Properties/licenses.licx +++ b/ReportImp/DiakonieLennepReports/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/DieDueneReports/DieDueneReports.csproj b/ReportImp/DieDueneReports/DieDueneReports.csproj index a3d7caaf2..38fab5d99 100644 --- a/ReportImp/DieDueneReports/DieDueneReports.csproj +++ b/ReportImp/DieDueneReports/DieDueneReports.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/DieDueneReports/Properties/licenses.licx b/ReportImp/DieDueneReports/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/DieDueneReports/Properties/licenses.licx +++ b/ReportImp/DieDueneReports/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/DieWohnhelferReports/DieWohnhelferReports.csproj b/ReportImp/DieWohnhelferReports/DieWohnhelferReports.csproj index da9c896d0..975470db5 100644 --- a/ReportImp/DieWohnhelferReports/DieWohnhelferReports.csproj +++ b/ReportImp/DieWohnhelferReports/DieWohnhelferReports.csproj @@ -70,11 +70,18 @@ false - - - - - + + + + + + + + + + + + 3.5 diff --git a/ReportImp/DieWohnhelferReports/Properties/licenses.licx b/ReportImp/DieWohnhelferReports/Properties/licenses.licx index 75335b9fa..bfe3c59aa 100644 --- a/ReportImp/DieWohnhelferReports/Properties/licenses.licx +++ b/ReportImp/DieWohnhelferReports/Properties/licenses.licx @@ -1 +1 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a +DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.2, Version=13.2.13.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/EigentstaendigHennef/EigentstaendigHennef.csproj b/ReportImp/EigentstaendigHennef/EigentstaendigHennef.csproj index 917c7e36b..5abc3e04e 100644 --- a/ReportImp/EigentstaendigHennef/EigentstaendigHennef.csproj +++ b/ReportImp/EigentstaendigHennef/EigentstaendigHennef.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/EigentstaendigHennef/Properties/licenses.licx b/ReportImp/EigentstaendigHennef/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/EigentstaendigHennef/Properties/licenses.licx +++ b/ReportImp/EigentstaendigHennef/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/FaerberReports/FaerberReports.csproj b/ReportImp/FaerberReports/FaerberReports.csproj index 0d713af72..8de036937 100644 --- a/ReportImp/FaerberReports/FaerberReports.csproj +++ b/ReportImp/FaerberReports/FaerberReports.csproj @@ -67,19 +67,19 @@ ;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules - - - - - - - - - - - - - + + + + + + + + + + + + + 3.5 diff --git a/ReportImp/FaerberReports/Properties/licenses.licx b/ReportImp/FaerberReports/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/FaerberReports/Properties/licenses.licx +++ b/ReportImp/FaerberReports/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/FeidPartnerReports/FeidPartnerReports.csproj b/ReportImp/FeidPartnerReports/FeidPartnerReports.csproj index 85646f572..3a5971c46 100644 --- a/ReportImp/FeidPartnerReports/FeidPartnerReports.csproj +++ b/ReportImp/FeidPartnerReports/FeidPartnerReports.csproj @@ -67,19 +67,19 @@ ;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules - - - - - - - - - - - - - + + + + + + + + + + + + + 3.5 diff --git a/ReportImp/FeidPartnerReports/Properties/licenses.licx b/ReportImp/FeidPartnerReports/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/FeidPartnerReports/Properties/licenses.licx +++ b/ReportImp/FeidPartnerReports/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/FibMarburg/FibMarburg.csproj b/ReportImp/FibMarburg/FibMarburg.csproj index 6bba9cfa3..1ba12f5a5 100644 --- a/ReportImp/FibMarburg/FibMarburg.csproj +++ b/ReportImp/FibMarburg/FibMarburg.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/FibMarburg/Properties/licenses.licx b/ReportImp/FibMarburg/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/FibMarburg/Properties/licenses.licx +++ b/ReportImp/FibMarburg/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/Findus/Findus.csproj b/ReportImp/Findus/Findus.csproj index 222252231..85231739f 100644 --- a/ReportImp/Findus/Findus.csproj +++ b/ReportImp/Findus/Findus.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/Findus/Properties/licenses.licx b/ReportImp/Findus/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/Findus/Properties/licenses.licx +++ b/ReportImp/Findus/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/FlingernMobilReports/FlingernMobilReports.csproj b/ReportImp/FlingernMobilReports/FlingernMobilReports.csproj index efecd5a9e..12d614e38 100644 --- a/ReportImp/FlingernMobilReports/FlingernMobilReports.csproj +++ b/ReportImp/FlingernMobilReports/FlingernMobilReports.csproj @@ -35,18 +35,18 @@ False ..\..\Host\Bin\BS.Shared.dll - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/ReportImp/FlingernMobilReports/Properties/licenses.licx b/ReportImp/FlingernMobilReports/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/FlingernMobilReports/Properties/licenses.licx +++ b/ReportImp/FlingernMobilReports/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/Fortis/Fortis.csproj b/ReportImp/Fortis/Fortis.csproj index 5eaa6af3a..4771a2773 100644 --- a/ReportImp/Fortis/Fortis.csproj +++ b/ReportImp/Fortis/Fortis.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/Fortis/Properties/licenses.licx b/ReportImp/Fortis/Properties/licenses.licx index 75335b9fa..e69de29bb 100644 --- a/ReportImp/Fortis/Properties/licenses.licx +++ b/ReportImp/Fortis/Properties/licenses.licx @@ -1 +0,0 @@ -DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/FortschritteEV/FortschritteEV.csproj b/ReportImp/FortschritteEV/FortschritteEV.csproj index 7e6641908..811093db1 100644 --- a/ReportImp/FortschritteEV/FortschritteEV.csproj +++ b/ReportImp/FortschritteEV/FortschritteEV.csproj @@ -31,11 +31,18 @@ 4 - - - - - + + + + + + + + + + + + diff --git a/ReportImp/FortschritteEV/FortschritteEV.csproj.bak b/ReportImp/FortschritteEV/FortschritteEV.csproj.bak index 3b71ff102..7e6641908 100644 --- a/ReportImp/FortschritteEV/FortschritteEV.csproj.bak +++ b/ReportImp/FortschritteEV/FortschritteEV.csproj.bak @@ -8,7 +8,7 @@ Library Properties FortschritteEV - FortschritteEV + 2038847559_Reports v4.0 512 @@ -57,7 +57,9 @@ Component - + + VerhinderungspflegeReport.cs + @@ -83,7 +85,10 @@ RechnungPrivatReport.cs Designer - + + VerhinderungspflegeReport.cs + Designer +