Merge branch 'master' of ssh://float.ownsoft.de/git/beyondSoft/BeWo

This commit is contained in:
2024-01-24 12:05:52 +01:00
44 changed files with 2432 additions and 8748 deletions

View File

@@ -325,6 +325,10 @@
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="View\Detail\Accounting\NewGkvAbrechnungPopUpView .xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="View\Detail\DebugMessageLogView.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
@@ -1080,6 +1084,9 @@
<Compile Include="View\Detail\Accounting\GkvAbrechnungOverview.xaml.cs">
<DependentUpon>GkvAbrechnungOverview.xaml</DependentUpon>
</Compile>
<Compile Include="View\Detail\Accounting\NewGkvAbrechnungPopUpView .xaml.cs">
<DependentUpon>NewGkvAbrechnungPopUpView .xaml</DependentUpon>
</Compile>
<Compile Include="View\Detail\DebugMessageLogView.xaml.cs">
<DependentUpon>DebugMessageLogView.xaml</DependentUpon>
</Compile>

View File

@@ -22,9 +22,9 @@
</StackPanel>
<Button x:Name="button_reload" Grid.Column="2" Content="Aktualisieren" Margin="12,0,0,0" Click="ReloadButton_OnClick" Height="24" HorizontalAlignment="Left" VerticalAlignment="Bottom" Width="80" />
<dxg:GridControl Margin="3" Grid.ColumnSpan="3" Grid.Row="1" DataSource="{Binding VMList}" x:Name="datagrid_gkvAbrechnungen" VerticalAlignment="Stretch" HorizontalAlignment="Stretch">
<Button x:Name="button_new" Grid.Column="2" Content="Neue Abrechnung" Margin="100,0,0,0" Click="NewButton_OnClick" Height="24" HorizontalAlignment="Left" VerticalAlignment="Bottom" />
<dxg:GridControl Margin="3" Grid.ColumnSpan="3" Grid.Row="1" DataSource="{Binding VMList}" x:Name="datagrid_gkvAbrechnungen" VerticalAlignment="Stretch" HorizontalAlignment="Stretch">
<dxg:GridControl.Columns>
<dxg:GridColumn x:Name="ColumnChecked" FieldName="IsChecked" Header=" " MinWidth="30"></dxg:GridColumn>
<dxg:GridColumn x:Name="ColumnButtons" AllowEditing="False" MinWidth="90" FieldName="ReportLink" Header=" ">

View File

@@ -26,6 +26,8 @@ namespace BeWo.View.Detail.Accounting
{
public partial class GkvAbrechnungOverview : BeWoView
{
private readonly NewGkvAbrechnungPopUpView _NewGkvAbrechnungPopUpView;
private readonly EquityInvoiceItemEditView _EquityInvoiceItemEditView;
private readonly GeneralInvoiceItemEditView _GeneralInvoiceItemEditView;
@@ -47,6 +49,16 @@ namespace BeWo.View.Detail.Accounting
this.DownloadLinkEngine = new DownloadLinkEngine();
this.gridView.ShownEditor += this.gridView_ShownEditor;
this._NewGkvAbrechnungPopUpView = new NewGkvAbrechnungPopUpView();
this._NewGkvAbrechnungPopUpView.Closed += (s, e) =>
{
this.MainControl.CloseCurrentPopUp();
//ServiceFacade.DoAccountingServiceAsync(svc => svc.InsertNewServiceInvoices(e.Data),
// this.RefreshGkvAbrechnungenList);
};
this._EquityInvoiceItemEditView = new EquityInvoiceItemEditView();
this._GeneralInvoiceItemEditView = new GeneralInvoiceItemEditView();
this._SettlementInvoiceItemEditView = new SettlementInvoiceItemEditView();
@@ -54,7 +66,7 @@ namespace BeWo.View.Detail.Accounting
this._ServiceInvoiceItemEditView = new ServiceInvoiceItemEditView();
//this.ViewModel.DateTimeSpanFilter = this.yearMonthFilter.FilterSpan;
RefreshInvoiceList();
RefreshGkvAbrechnungenList();
CheckRights();
@@ -99,7 +111,7 @@ namespace BeWo.View.Detail.Accounting
}
}
private void RefreshInvoiceList()
private void RefreshGkvAbrechnungenList()
{
DateTime? start = null;
DateTime? end = null;
@@ -173,7 +185,7 @@ namespace BeWo.View.Detail.Accounting
{
mIgnoreCheckChanges = true;
//this.ViewModel.DateTimeSpanFilter = e.Data;
RefreshInvoiceList();
RefreshGkvAbrechnungenList();
mIgnoreCheckChanges = false;
}
@@ -282,7 +294,7 @@ namespace BeWo.View.Detail.Accounting
private void ReloadButton_OnClick(object sender, RoutedEventArgs e)
{
RefreshInvoiceList();
RefreshGkvAbrechnungenList();
}
private void btn_storno_Initialized(object sender, EventArgs e)
@@ -361,6 +373,11 @@ namespace BeWo.View.Detail.Accounting
// PrintInvoices(list);
}
private void NewButton_OnClick(object sender, RoutedEventArgs e)
{
this.MainControl.ShowControlAsModalPopup(this._NewGkvAbrechnungPopUpView);
}
private void PrintInvoices(List<InvoiceBaseVM> list)
{
var oidList = list.Select(i => i.DataContract.InvoiceBaseOid.Value).ToList();
@@ -391,6 +408,7 @@ namespace BeWo.View.Detail.Accounting
return list;
}
}
}

View File

@@ -0,0 +1,89 @@
<localView:BeWoView x:Class="BeWo.View.Detail.Accounting.NewGkvAbrechnungPopUpView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:localView="clr-namespace:BeWo.View"
xmlns:localViewModel="clr-namespace:BeWo.ViewModel" xmlns:localViewDetail="clr-namespace:BeWo.View.Detail.Accounting"
xmlns:val="clr-namespace:BeWo.Validation" xmlns:uc="clr-namespace:BeWo.Controls;assembly=BeWo.Controls"
xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid"
xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
xmlns:markup="clr-namespace:BeWo.MultiLanguage.Markup"
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" Height="Auto" Width="Auto"
HorizontalAlignment="Stretch" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:r="clr-namespace:BeWo.Security"
VerticalAlignment="Stretch" Focusable="True"
xmlns:Microsoft_Windows_Themes="clr-namespace:Microsoft.Windows.Themes;assembly=PresentationFramework.Classic">
<GroupBox Width="1100" Style="{StaticResource PopUpWindowStyle}">
<GroupBox.Header>
<StackPanel Orientation="Horizontal" VerticalAlignment="Center" Margin="0,0,0,0">
<Image Source="..\..\Ressources\Icons\CoinsDisabled.png" Height="28" />
<TextBox Margin="10,4,0,0" Background="{x:Null}" Foreground="{DynamicResource MainGroupBoxForegroundBrush}"
FontSize="20" BorderBrush="{x:Null}" VerticalAlignment="Stretch" BorderThickness="0,0,0,0"
Padding="0,0,0,0" />
</StackPanel>
</GroupBox.Header>
<Grid Background="{StaticResource ObjectEditBackgroundBrush}">
<GroupBox Margin="10" Header="GKV-Abrechnung erstellen" Style="{StaticResource ObjectEditGroupBox}">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Label>
<StackPanel Orientation="Vertical">
<AccessText Margin="2">Es wird eine GKV-Abrechnung für folgende Rechnungen erstellt.</AccessText>
<AccessText Margin="2">Entfernen Sie gegebenenfalls Rechnungen, die nicht enthalten sein sollen.</AccessText>
<AccessText Margin="2">Klicken Sie anschließend auf "Erstellen".</AccessText>
</StackPanel>
</Label>
<TextBlock x:Name="txtWarnhinweis" Foreground="Red" Grid.Column="1" ><InlineUIContainer>
<Label Content="Monat" Height="25" Width="35" />
</InlineUIContainer><InlineUIContainer>
<ComboBox Height="23" x:Name="combobox_year" VerticalAlignment="Top" Width="60" HorizontalAlignment="Right" />
</InlineUIContainer><InlineUIContainer>
<TextBlock Text="Jahr" Foreground="Black" Height="25" Width="43"/>
</InlineUIContainer><InlineUIContainer>
<ComboBox Height="23" x:Name="combobox_month" VerticalAlignment="Top" Width="90" />
</InlineUIContainer></TextBlock>
<dxg:GridControl x:Name="grid_newInvoices" Margin="3" Grid.Row="1" Grid.ColumnSpan="2" MinHeight="200">
<dxg:GridControl.Columns>
<dxg:GridColumn FieldName="Notice" Header="" FixedWidth="True" Width="24" ReadOnly="True">
<dxg:GridColumn.CellTemplate>
<DataTemplate>
<Button Content="r" Click="btn_delete_Click" FontFamily="Webdings" Width="18" Height="18"
VerticalAlignment="Center" />
</DataTemplate>
</dxg:GridColumn.CellTemplate>
</dxg:GridColumn>
<dxg:GridColumn FieldName="InvoiceBase.InvoiceTitle" Header="Über"></dxg:GridColumn>
<dxg:GridColumn FieldName="InvoiceBase.RecipientOrganisation" Header="{markup:Translate EmpfängerSingular}"></dxg:GridColumn>
<dxg:GridColumn FieldName="InvoiceBase.PeriodString" Header="Abrechnungszeitraum"></dxg:GridColumn>
<dxg:GridColumn FieldName="EndClaim" Header="Betrag">
<dxg:GridColumn.EditSettings>
<dxe:TextEditSettings DisplayFormat="c" Mask="c" MaskType="Numeric"></dxe:TextEditSettings>
</dxg:GridColumn.EditSettings>
</dxg:GridColumn>
<dxg:GridColumn FieldName="InvoiceBase.Details" Header="Details"></dxg:GridColumn>
<dxg:GridColumn FieldName="InvoiceBase.NeuErstellen" Header="Neu erstellen" ></dxg:GridColumn>
<dxg:GridColumn FieldName="InvoiceBase.DiffErstellen" Header="{markup:Translate Diff.-Rg erstellen}"></dxg:GridColumn>
<dxg:GridColumn FieldName="InvoiceBase.Hinweise" Header="Hinweise"></dxg:GridColumn>
</dxg:GridControl.Columns>
<dxg:GridControl.View>
<dxg:TableView ShowGroupPanel="False" CellValueChanging="TableView_CellValueChanging"/>
</dxg:GridControl.View>
</dxg:GridControl>
<StackPanel HorizontalAlignment="Right" Orientation="Horizontal" Grid.Row="2" Grid.ColumnSpan="2">
<Button Content="Erstellen" x:Name="btn_create" Click="btn_create_Click" Padding="5 0" Margin="3" />
<Button Content="Abbrechen" x:Name="btn_cancel" Click="btn_cancel_Click" Margin="3" Padding="5 0" />
</StackPanel>
</Grid>
</GroupBox>
</Grid>
</GroupBox>
</localView:BeWoView>

View File

@@ -0,0 +1,108 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Windows;
using System.Windows.Input;
using BS.Shared.Core;
using BS.Shared.DataContracts;
using BS.Shared.Extensions;
using BS.Shared.Translation;
using DevExpress.Xpf.Grid;
namespace BeWo.View.Detail.Accounting
{
public partial class NewGkvAbrechnungPopUpView : BeWoView
{
private BindingList<ServiceInvoiceDC> _Dcs;
private List<string> _InvoiceNumbers;
public NewGkvAbrechnungPopUpView()
{
this.InitializeComponent();
this.CommandBindings.Add(new CommandBinding(ApplicationCommands.Close,
(s, e) =>
{
this._Dcs.Clear();
this.Fire();
}));
this.grid_newInvoices.View.Loaded += (s, e) => ((TableView)this.grid_newInvoices.View).BestFitColumns();
}
public event EventHandler<EventArgs<List<ServiceInvoiceDC>>> Closed;
public List<ServiceInvoiceDC> ServiceInvoiceDcs
{
set
{
this._InvoiceNumbers = value.Select(i => i.InvoiceBase.InvoiceNumber).ToList();
this._Dcs = new BindingList<ServiceInvoiceDC>(value);
this.grid_newInvoices.ItemsSource = this._Dcs;
SetzeWarnhinweis();
}
}
private void SetzeWarnhinweis()
{
if (_Dcs.Any(s => s.InvoiceBase.DiffErstellen))
{
txtWarnhinweis.Text = Translator.Translate("Es wurden bereits Rechnungen im gewählten Zeitraum erstellt.\nWenn Sie keine Differenzrechnungen erstellen möchten,\nentfernen Sie bitte die entsprechenden Häkchen.");
}
}
private void Fire()
{
if (this.Closed != null)
{
for (int i = 0; i < this._Dcs.Count; i++)
{
this._Dcs[i].InvoiceBase.InvoiceNumber = this._InvoiceNumbers[i];
}
this.Closed(this, new EventArgs<List<ServiceInvoiceDC>>(new List<ServiceInvoiceDC>(this._Dcs)));
}
}
private void btn_cancel_Click(object sender, RoutedEventArgs e)
{
this._Dcs.Clear();
this.Fire();
}
private void btn_create_Click(object sender, RoutedEventArgs e)
{
this.Fire();
}
private void btn_delete_Click(object sender, RoutedEventArgs e)
{
this._Dcs.Remove(this.grid_newInvoices.GetCurrentValue<ServiceInvoiceDC>());
}
private void TableView_CellValueChanging(object sender, CellValueChangedEventArgs e)
{
var si = e.Row as ServiceInvoiceDC;
if (e.Column.FieldName.Contains("NeuErstellen") && ((bool)e.Value))
{
if (si.InvoiceBase.DiffErstellen)
{
si.InvoiceBase.DiffErstellen = false;
grid_newInvoices.RefreshData();
}
}
else if (e.Column.FieldName.Contains("DiffErstellen") && ((bool)e.Value))
{
if (si.InvoiceBase.NeuErstellen)
{
si.InvoiceBase.NeuErstellen = false;
grid_newInvoices.RefreshData();
}
}
}
}
}

View File

@@ -824,7 +824,9 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PSM", "ReportImp\PSM\PSM.cs
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dakota", "Dakota\Dakota.csproj", "{47331732-DD96-4075-869F-83AA9F3F9937}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PROgymnasiumBensberg", "ReportImp\PROgymnasiumBensberg\PROgymnasiumBensberg.csproj", "{9D31D02A-5F56-46BE-B8C8-6310663B443D}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SkfmSozialdienstKatholischerFrauenMaenner", "ReportImp\SkfmSozialdienstKatholischerFrauenMaenner\SkfmSozialdienstKatholischerFrauenMaenner.csproj", "{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LebenshilfeBadKreuznachWohnstaette", "ReportImp\LebenshilfeBadKreuznachWohnstaette\LebenshilfeBadKreuznachWohnstaette.csproj", "{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -10101,30 +10103,54 @@ Global
{47331732-DD96-4075-869F-83AA9F3F9937}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{47331732-DD96-4075-869F-83AA9F3F9937}.Release|x86.ActiveCfg = Release|Any CPU
{47331732-DD96-4075-869F-83AA9F3F9937}.Release|x86.Build.0 = Release|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.Debug|.NET.ActiveCfg = Debug|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.Debug|.NET.Build.0 = Debug|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.Debug|x86.ActiveCfg = Debug|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.Debug|x86.Build.0 = Debug|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.DebugRemote|.NET.ActiveCfg = Debug|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.DebugRemote|.NET.Build.0 = Debug|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.DebugRemote|Any CPU.ActiveCfg = Debug|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.DebugRemote|Any CPU.Build.0 = Debug|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.DebugRemote|Mixed Platforms.ActiveCfg = Debug|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.DebugRemote|Mixed Platforms.Build.0 = Debug|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.DebugRemote|x86.ActiveCfg = Debug|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.DebugRemote|x86.Build.0 = Debug|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.Release|.NET.ActiveCfg = Release|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.Release|.NET.Build.0 = Release|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.Release|Any CPU.Build.0 = Release|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.Release|x86.ActiveCfg = Release|Any CPU
{9D31D02A-5F56-46BE-B8C8-6310663B443D}.Release|x86.Build.0 = Release|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.Debug|.NET.ActiveCfg = Debug|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.Debug|.NET.Build.0 = Debug|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.Debug|x86.ActiveCfg = Debug|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.Debug|x86.Build.0 = Debug|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.DebugRemote|.NET.ActiveCfg = Debug|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.DebugRemote|.NET.Build.0 = Debug|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.DebugRemote|Any CPU.ActiveCfg = Debug|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.DebugRemote|Any CPU.Build.0 = Debug|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.DebugRemote|Mixed Platforms.ActiveCfg = Debug|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.DebugRemote|Mixed Platforms.Build.0 = Debug|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.DebugRemote|x86.ActiveCfg = Debug|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.DebugRemote|x86.Build.0 = Debug|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.Release|.NET.ActiveCfg = Release|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.Release|.NET.Build.0 = Release|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.Release|Any CPU.Build.0 = Release|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.Release|x86.ActiveCfg = Release|Any CPU
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94}.Release|x86.Build.0 = Release|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.Debug|.NET.ActiveCfg = Debug|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.Debug|.NET.Build.0 = Debug|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.Debug|x86.ActiveCfg = Debug|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.Debug|x86.Build.0 = Debug|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.DebugRemote|.NET.ActiveCfg = Debug|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.DebugRemote|.NET.Build.0 = Debug|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.DebugRemote|Any CPU.ActiveCfg = Debug|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.DebugRemote|Any CPU.Build.0 = Debug|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.DebugRemote|Mixed Platforms.ActiveCfg = Debug|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.DebugRemote|Mixed Platforms.Build.0 = Debug|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.DebugRemote|x86.ActiveCfg = Debug|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.DebugRemote|x86.Build.0 = Debug|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.Release|.NET.ActiveCfg = Release|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.Release|.NET.Build.0 = Release|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.Release|Any CPU.Build.0 = Release|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.Release|x86.ActiveCfg = Release|Any CPU
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
@@ -10535,7 +10561,8 @@ Global
{489A02AC-7809-4CD9-BE36-365ADA472692} = {D8A691C5-146D-4613-86CC-438F02FE9106}
{3D34C4A1-C566-43F8-AA58-467B3FF17A51} = {D8A691C5-146D-4613-86CC-438F02FE9106}
{47331732-DD96-4075-869F-83AA9F3F9937} = {FEB0336B-F053-40B6-92DD-7DE56AB9408A}
{9D31D02A-5F56-46BE-B8C8-6310663B443D} = {D8A691C5-146D-4613-86CC-438F02FE9106}
{B27D9837-A510-4CC8-BF74-CCE56E3FFB94} = {D8A691C5-146D-4613-86CC-438F02FE9106}
{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6} = {D8A691C5-146D-4613-86CC-438F02FE9106}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {FBE985BB-9F0F-4DBB-8F94-ABC37A803FF9}

View File

@@ -74,41 +74,42 @@ namespace BeWo.Report.ReportObjects
foreach (var item in c2aodList)
{
result.Rows.Add(new AdditionalServiceBookingRow
{
CustomerDC = item.Key,
Customer = item.Key.LastNameFirstName,
AttendanceOnDay1 = item.Value[0] ?? "",
AttendanceOnDay2 = item.Value[1] ?? "",
AttendanceOnDay3 = item.Value[2] ?? "",
AttendanceOnDay4 = item.Value[3] ?? "",
AttendanceOnDay5 = item.Value[4] ?? "",
AttendanceOnDay6 = item.Value[5] ?? "",
AttendanceOnDay7 = item.Value[6] ?? "",
AttendanceOnDay8 = item.Value[7] ?? "",
AttendanceOnDay9 = item.Value[8] ?? "",
AttendanceOnDay10 = item.Value[9] ?? "",
AttendanceOnDay11 = item.Value[10] ?? "",
AttendanceOnDay12 = item.Value[11] ?? "",
AttendanceOnDay13 = item.Value[12] ?? "",
AttendanceOnDay14 = item.Value[13] ?? "",
AttendanceOnDay15 = item.Value[14] ?? "",
AttendanceOnDay16 = item.Value[15] ?? "",
AttendanceOnDay17 = item.Value[16] ?? "",
AttendanceOnDay18 = item.Value[17] ?? "",
AttendanceOnDay19 = item.Value[18] ?? "",
AttendanceOnDay20 = item.Value[19] ?? "",
AttendanceOnDay21 = item.Value[20] ?? "",
AttendanceOnDay22 = item.Value[21] ?? "",
AttendanceOnDay23 = item.Value[22] ?? "",
AttendanceOnDay24 = item.Value[23] ?? "",
AttendanceOnDay25 = item.Value[24] ?? "",
AttendanceOnDay26 = item.Value[25] ?? "",
AttendanceOnDay27 = item.Value[26] ?? "",
AttendanceOnDay28 = item.Value[27] ?? "",
AttendanceOnDay29 = item.Value[28] ?? "",
AttendanceOnDay30 = item.Value[29] ?? "",
AttendanceOnDay31 = item.Value[30] ?? ""
});
{
CustomerDC = item.Key,
Customer = item.Key.LastNameFirstName,
AttendanceOnDay1 = item.Value[0] ?? "",
AttendanceOnDay2 = item.Value[1] ?? "",
AttendanceOnDay3 = item.Value[2] ?? "",
AttendanceOnDay4 = item.Value[3] ?? "",
AttendanceOnDay5 = item.Value[4] ?? "",
AttendanceOnDay6 = item.Value[5] ?? "",
AttendanceOnDay7 = item.Value[6] ?? "",
AttendanceOnDay8 = item.Value[7] ?? "",
AttendanceOnDay9 = item.Value[8] ?? "",
AttendanceOnDay10 = item.Value[9] ?? "",
AttendanceOnDay11 = item.Value[10] ?? "",
AttendanceOnDay12 = item.Value[11] ?? "",
AttendanceOnDay13 = item.Value[12] ?? "",
AttendanceOnDay14 = item.Value[13] ?? "",
AttendanceOnDay15 = item.Value[14] ?? "",
AttendanceOnDay16 = item.Value[15] ?? "",
AttendanceOnDay17 = item.Value[16] ?? "",
AttendanceOnDay18 = item.Value[17] ?? "",
AttendanceOnDay19 = item.Value[18] ?? "",
AttendanceOnDay20 = item.Value[19] ?? "",
AttendanceOnDay21 = item.Value[20] ?? "",
AttendanceOnDay22 = item.Value[21] ?? "",
AttendanceOnDay23 = item.Value[22] ?? "",
AttendanceOnDay24 = item.Value[23] ?? "",
AttendanceOnDay25 = item.Value[24] ?? "",
AttendanceOnDay26 = item.Value[25] ?? "",
AttendanceOnDay27 = item.Value[26] ?? "",
AttendanceOnDay28 = item.Value[27] ?? "",
AttendanceOnDay29 = item.Value[28] ?? "",
AttendanceOnDay30 = item.Value[29] ?? "",
AttendanceOnDay31 = item.Value[30] ?? "",
AttendanceMonthCount = item.Value.Where(s => s != null && s.ToLower() == "p").Count()
}); ;
}
result.Rows.Sort((a, b) => a.Customer.CompareTo(b.Customer));
@@ -417,10 +418,22 @@ namespace BeWo.Report.ReportObjects
public string AttendanceOnDay31 { get; set; }
public int AttendanceMonthCount { get; set; }
public int AbsenceTimeMonthCount { get; set; }
public int AbsenceTimeYearCount { get; set; }
public string Notice { get; set; }
public string Custom1 { get; set; }
public string Custom2 { get; set; }
public string Custom3 { get; set; }
public string Custom4 { get; set; }
public string Custom5 { get; set; }
}
}

View File

@@ -1,988 +0,0 @@
namespace AlphaEv.Alt
{
partial class Spitzabrechnung
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
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.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
this.lblAdresse = new DevExpress.XtraReports.UI.XRLabel();
this.xrRichText1 = new DevExpress.XtraReports.UI.XRRichText();
this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule();
this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
this.xrRichText4 = new DevExpress.XtraReports.UI.XRRichText();
this.lblNotice = 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.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow();
this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow();
this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrRichText5 = new DevExpress.XtraReports.UI.XRRichText();
this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrRichText3 = new DevExpress.XtraReports.UI.XRRichText();
this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
this.xrTable5 = new DevExpress.XtraReports.UI.XRTable();
this.xrTableRow15 = new DevExpress.XtraReports.UI.XRTableRow();
this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
this.xrTable4 = new DevExpress.XtraReports.UI.XRTable();
this.xrTableRow31 = new DevExpress.XtraReports.UI.XRTableRow();
this.xrTableCell49 = new DevExpress.XtraReports.UI.XRTableCell();
this.lblGesamtStunden = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell50 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableRow33 = new DevExpress.XtraReports.UI.XRTableRow();
this.xrTableCell52 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell53 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell5 = 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.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableRow36 = new DevExpress.XtraReports.UI.XRTableRow();
this.xrTableCell57 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell58 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
this.fieldMittelbareStunden = new DevExpress.XtraReports.UI.CalculatedField();
((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText4)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText5)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).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;
//
// ReportHeader
//
this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrLabel4,
this.xrLabel7,
this.xrLabel3,
this.xrLabel1,
this.xrLabel12,
this.xrLabel11,
this.xrLabel5,
this.lblAdresse,
this.xrRichText1,
this.xrLabel17,
this.xrLabel8});
this.ReportHeader.HeightF = 408F;
this.ReportHeader.Name = "ReportHeader";
this.ReportHeader.StylePriority.UseFont = false;
//
// xrLabel4
//
this.xrLabel4.CanGrow = false;
this.xrLabel4.CanShrink = true;
this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(561.7503F, 144.375F);
this.xrLabel4.Multiline = true;
this.xrLabel4.Name = "xrLabel4";
this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
this.xrLabel4.SizeF = new System.Drawing.SizeF(160.2498F, 137.5F);
this.xrLabel4.StylePriority.UseFont = false;
this.xrLabel4.StylePriority.UseForeColor = false;
this.xrLabel4.StylePriority.UsePadding = false;
this.xrLabel4.Text = "Ihr Ansprechpartner:\r\nFrau Howe-Jakob\r\nFon: 0 21 96 - 72 63 - 16\r\nFax: 0 21 96 - " +
"72 63 - 32\r\njakob@alphaev.de\r\nwww.alphaev.de";
//
// xrLabel7
//
this.xrLabel7.CanGrow = false;
this.xrLabel7.CanShrink = true;
this.xrLabel7.Font = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(561.7503F, 338.4165F);
this.xrLabel7.Multiline = true;
this.xrLabel7.Name = "xrLabel7";
this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
this.xrLabel7.SizeF = new System.Drawing.SizeF(93.88F, 18F);
this.xrLabel7.StylePriority.UseFont = false;
this.xrLabel7.StylePriority.UseForeColor = false;
this.xrLabel7.StylePriority.UsePadding = false;
this.xrLabel7.Text = "Rechnungs-Nr.:";
//
// xrLabel3
//
this.xrLabel3.Font = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(655.6305F, 320.4166F);
this.xrLabel3.Multiline = true;
this.xrLabel3.Name = "xrLabel3";
this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel3.SizeF = new System.Drawing.SizeF(60F, 18F);
this.xrLabel3.StylePriority.UseFont = false;
this.xrLabel3.Text = "292300";
//
// xrLabel1
//
this.xrLabel1.CanGrow = false;
this.xrLabel1.Font = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(561.7503F, 356.4258F);
this.xrLabel1.Multiline = true;
this.xrLabel1.Name = "xrLabel1";
this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel1.SizeF = new System.Drawing.SizeF(153.2499F, 19.24997F);
this.xrLabel1.StylePriority.UseFont = false;
this.xrLabel1.Text = "[InvoiceNumber]";
//
// xrLabel12
//
this.xrLabel12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(0F, 350F);
this.xrLabel12.Name = "xrLabel12";
this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel12.SizeF = new System.Drawing.SizeF(308.33F, 25.33328F);
this.xrLabel12.StylePriority.UseFont = false;
this.xrLabel12.StylePriority.UseForeColor = false;
this.xrLabel12.Text = "Abrechnung Betreutes Wohnen ";
//
// xrLabel11
//
this.xrLabel11.Font = new System.Drawing.Font("Calibri", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(561.7503F, 281.875F);
this.xrLabel11.Multiline = true;
this.xrLabel11.Name = "xrLabel11";
this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel11.SizeF = new System.Drawing.SizeF(153.2499F, 38.5416F);
this.xrLabel11.StylePriority.UseFont = false;
this.xrLabel11.StylePriority.UseForeColor = false;
this.xrLabel11.StylePriority.UseTextAlignment = false;
this.xrLabel11.Text = "(bei Zahlung bitte angeben:)";
this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
//
// xrLabel5
//
this.xrLabel5.CanGrow = false;
this.xrLabel5.CanShrink = true;
this.xrLabel5.Font = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(561.7503F, 320.4166F);
this.xrLabel5.Multiline = true;
this.xrLabel5.Name = "xrLabel5";
this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
this.xrLabel5.SizeF = new System.Drawing.SizeF(93.88F, 18F);
this.xrLabel5.StylePriority.UseFont = false;
this.xrLabel5.StylePriority.UseForeColor = false;
this.xrLabel5.StylePriority.UsePadding = false;
this.xrLabel5.Text = "Unser Zeichen:";
//
// lblAdresse
//
this.lblAdresse.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.lblAdresse.CanGrow = false;
this.lblAdresse.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblAdresse.LocationFloat = new DevExpress.Utils.PointFloat(0F, 135F);
this.lblAdresse.Multiline = true;
this.lblAdresse.Name = "lblAdresse";
this.lblAdresse.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.lblAdresse.SizeF = new System.Drawing.SizeF(413.125F, 163.0208F);
this.lblAdresse.StylePriority.UseBorders = false;
this.lblAdresse.StylePriority.UseFont = false;
//
// xrRichText1
//
this.xrRichText1.LocationFloat = new DevExpress.Utils.PointFloat(561.7503F, 48.95833F);
this.xrRichText1.Name = "xrRichText1";
this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
this.xrRichText1.SizeF = new System.Drawing.SizeF(153.2498F, 77.41667F);
//
// xrLabel17
//
this.xrLabel17.Font = new System.Drawing.Font("Calibri", 8F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(0F, 100F);
this.xrLabel17.Name = "xrLabel17";
this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel17.SizeF = new System.Drawing.SizeF(308.33F, 17F);
this.xrLabel17.StylePriority.UseFont = false;
this.xrLabel17.Text = "alpha e.V. | Telegrafenstr. 11 | 42929 Wermelskirchen";
//
// xrLabel8
//
this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceDate")});
this.xrLabel8.Font = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(561.75F, 385F);
this.xrLabel8.Name = "xrLabel8";
this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel8.SizeF = new System.Drawing.SizeF(153.2499F, 23F);
this.xrLabel8.StylePriority.UseFont = false;
this.xrLabel8.StylePriority.UseTextAlignment = false;
this.xrLabel8.Text = "xrLabel8";
this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
//
// ruleRateFactorNull
//
this.ruleRateFactorNull.Condition = "[RateFactorText2] == ?";
this.ruleRateFactorNull.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
this.ruleRateFactorNull.Name = "ruleRateFactorNull";
//
// ReportFooter
//
this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrRichText4,
this.lblNotice});
this.ReportFooter.Font = new System.Drawing.Font("Verdana", 10F);
this.ReportFooter.HeightF = 156.8542F;
this.ReportFooter.KeepTogether = true;
this.ReportFooter.Name = "ReportFooter";
this.ReportFooter.StylePriority.UseFont = false;
//
// xrRichText4
//
this.xrRichText4.LocationFloat = new DevExpress.Utils.PointFloat(561.75F, 0F);
this.xrRichText4.Name = "xrRichText4";
this.xrRichText4.SerializableRtfString = resources.GetString("xrRichText4.SerializableRtfString");
this.xrRichText4.SizeF = new System.Drawing.SizeF(170.25F, 156.8542F);
//
// lblNotice
//
this.lblNotice.CanShrink = true;
this.lblNotice.Font = new System.Drawing.Font("Verdana", 8F);
this.lblNotice.LocationFloat = new DevExpress.Utils.PointFloat(0F, 45.49999F);
this.lblNotice.Multiline = true;
this.lblNotice.Name = "lblNotice";
this.lblNotice.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.lblNotice.SizeF = new System.Drawing.SizeF(470.8333F, 65.625F);
this.lblNotice.StylePriority.UseFont = false;
this.lblNotice.Text = "Diese Leistungen sind umsatzsteuerfrei nach § 53, 54 SGB XII.";
//
// topMarginBand1
//
this.topMarginBand1.HeightF = 100F;
this.topMarginBand1.Name = "topMarginBand1";
//
// bottomMarginBand1
//
this.bottomMarginBand1.HeightF = 50F;
this.bottomMarginBand1.Name = "bottomMarginBand1";
//
// GroupHeader1
//
this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrTable2,
this.xrRichText5,
this.xrLabel6,
this.xrTable1,
this.xrRichText3,
this.xrLabel9,
this.xrLabel2});
this.GroupHeader1.HeightF = 183.7708F;
this.GroupHeader1.Name = "GroupHeader1";
this.GroupHeader1.StylePriority.UseFont = false;
//
// xrTable2
//
this.xrTable2.BorderColor = System.Drawing.SystemColors.ControlLight;
this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 63.9808F);
this.xrTable2.Name = "xrTable2";
this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
this.xrTableRow9,
this.xrTableRow10});
this.xrTable2.SizeF = new System.Drawing.SizeF(489.9999F, 34F);
this.xrTable2.StylePriority.UseBorderColor = false;
//
// xrTableRow9
//
this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell19,
this.xrTableCell13});
this.xrTableRow9.Name = "xrTableRow9";
this.xrTableRow9.Weight = 0.085D;
//
// xrTableCell19
//
this.xrTableCell19.BorderColor = System.Drawing.SystemColors.ControlLight;
this.xrTableCell19.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
| DevExpress.XtraPrinting.BorderSide.Right)));
this.xrTableCell19.Name = "xrTableCell19";
this.xrTableCell19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrTableCell19.StylePriority.UseBorderColor = false;
this.xrTableCell19.StylePriority.UseBorders = false;
this.xrTableCell19.StylePriority.UseFont = false;
this.xrTableCell19.Text = "Bewilligte Fachleistungsstunden (FLS) gesamt:";
this.xrTableCell19.Weight = 0.4769232177734376D;
//
// xrTableCell13
//
this.xrTableCell13.BorderColor = System.Drawing.SystemColors.ControlLight;
this.xrTableCell13.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
| DevExpress.XtraPrinting.BorderSide.Right)));
this.xrTableCell13.Name = "xrTableCell13";
this.xrTableCell13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrTableCell13.StylePriority.UseBorderColor = false;
this.xrTableCell13.StylePriority.UseBorders = false;
this.xrTableCell13.StylePriority.UseFont = false;
this.xrTableCell13.StylePriority.UseTextAlignment = false;
this.xrTableCell13.Text = "[ApprovedFLS]";
this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
this.xrTableCell13.Weight = 0.27692279522235574D;
//
// xrTableRow10
//
this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell20,
this.xrTableCell14});
this.xrTableRow10.FormattingRules.Add(this.ruleRateFactorNull);
this.xrTableRow10.Name = "xrTableRow10";
this.xrTableRow10.Weight = 0.085D;
//
// xrTableCell20
//
this.xrTableCell20.BorderColor = System.Drawing.SystemColors.ControlLight;
this.xrTableCell20.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
this.xrTableCell20.FormattingRules.Add(this.ruleRateFactorNull);
this.xrTableCell20.Name = "xrTableCell20";
this.xrTableCell20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrTableCell20.StylePriority.UseBorderColor = false;
this.xrTableCell20.StylePriority.UseBorders = false;
this.xrTableCell20.StylePriority.UseFont = false;
this.xrTableCell20.Text = "- zzgl. Faktor [RateFactorText2]:";
this.xrTableCell20.Weight = 0.49307720477764433D;
//
// xrTableCell14
//
this.xrTableCell14.BorderColor = System.Drawing.SystemColors.ControlLight;
this.xrTableCell14.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
this.xrTableCell14.FormattingRules.Add(this.ruleRateFactorNull);
this.xrTableCell14.Name = "xrTableCell14";
this.xrTableCell14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrTableCell14.StylePriority.UseBorderColor = false;
this.xrTableCell14.StylePriority.UseBorders = false;
this.xrTableCell14.StylePriority.UseFont = false;
this.xrTableCell14.StylePriority.UseTextAlignment = false;
this.xrTableCell14.Text = "[ApprovedFLSWithFactor]";
this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
this.xrTableCell14.Weight = 0.26076880821814907D;
//
// xrRichText5
//
this.xrRichText5.LocationFloat = new DevExpress.Utils.PointFloat(210.0001F, 35.0008F);
this.xrRichText5.Name = "xrRichText5";
this.xrRichText5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
this.xrRichText5.SerializableRtfString = resources.GetString("xrRichText5.SerializableRtfString");
this.xrRichText5.SizeF = new System.Drawing.SizeF(411.58F, 28.98F);
this.xrRichText5.StylePriority.UsePadding = false;
//
// xrLabel6
//
this.xrLabel6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 17.99997F);
this.xrLabel6.Name = "xrLabel6";
this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
this.xrLabel6.SizeF = new System.Drawing.SizeF(30F, 17F);
this.xrLabel6.StylePriority.UseFont = false;
this.xrLabel6.StylePriority.UseForeColor = false;
this.xrLabel6.StylePriority.UsePadding = false;
this.xrLabel6.Text = "AZ.:";
//
// xrTable1
//
this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 163.7708F);
this.xrTable1.Name = "xrTable1";
this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
this.xrTableRow1});
this.xrTable1.SizeF = new System.Drawing.SizeF(510.0001F, 20F);
this.xrTable1.StylePriority.UseBorderColor = false;
//
// xrTableRow1
//
this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell6,
this.xrTableCell7,
this.xrTableCell8,
this.xrTableCell10,
this.xrTableCell12});
this.xrTableRow1.Name = "xrTableRow1";
this.xrTableRow1.StylePriority.UseBorders = false;
this.xrTableRow1.Weight = 0.1D;
//
// xrTableCell6
//
this.xrTableCell6.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
this.xrTableCell6.Name = "xrTableCell6";
this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrTableCell6.StylePriority.UseBorders = false;
this.xrTableCell6.StylePriority.UsePadding = false;
this.xrTableCell6.Weight = 0.35384622333111887D;
//
// xrTableCell7
//
this.xrTableCell7.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
this.xrTableCell7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.xrTableCell7.Name = "xrTableCell7";
this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrTableCell7.StylePriority.UseBorders = false;
this.xrTableCell7.StylePriority.UseForeColor = false;
this.xrTableCell7.StylePriority.UsePadding = false;
this.xrTableCell7.StylePriority.UseTextAlignment = false;
this.xrTableCell7.Text = "gel. Std.";
this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
this.xrTableCell7.Weight = 0.12307692394590783D;
//
// xrTableCell8
//
this.xrTableCell8.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
this.xrTableCell8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.xrTableCell8.Name = "xrTableCell8";
this.xrTableCell8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrTableCell8.StylePriority.UseBorders = false;
this.xrTableCell8.StylePriority.UseForeColor = false;
this.xrTableCell8.StylePriority.UsePadding = false;
this.xrTableCell8.StylePriority.UseTextAlignment = false;
this.xrTableCell8.Text = "zzgl. mittelb.";
this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
this.xrTableCell8.Weight = 0.1538461538461538D;
//
// xrTableCell10
//
this.xrTableCell10.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
this.xrTableCell10.CanShrink = true;
this.xrTableCell10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
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.UseForeColor = false;
this.xrTableCell10.StylePriority.UsePadding = false;
this.xrTableCell10.StylePriority.UseTextAlignment = false;
this.xrTableCell10.Text = "Betrag";
this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
this.xrTableCell10.Weight = 0.12307692568209772D;
//
// xrTableCell12
//
this.xrTableCell12.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
this.xrTableCell12.Name = "xrTableCell12";
this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrTableCell12.StylePriority.UseBorders = false;
this.xrTableCell12.StylePriority.UsePadding = false;
this.xrTableCell12.StylePriority.UseTextAlignment = false;
this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
this.xrTableCell12.Weight = 0.030769235304504289D;
//
// xrRichText3
//
this.xrRichText3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.xrRichText3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 34.99997F);
this.xrRichText3.Name = "xrRichText3";
this.xrRichText3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
this.xrRichText3.SerializableRtfString = resources.GetString("xrRichText3.SerializableRtfString");
this.xrRichText3.SizeF = new System.Drawing.SizeF(210F, 28.98F);
this.xrRichText3.StylePriority.UseForeColor = false;
this.xrRichText3.StylePriority.UsePadding = false;
//
// xrLabel9
//
this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomerName")});
this.xrLabel9.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
this.xrLabel9.Name = "xrLabel9";
this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel9.SizeF = new System.Drawing.SizeF(371.88F, 18F);
this.xrLabel9.StylePriority.UseBorders = false;
this.xrLabel9.StylePriority.UseFont = false;
this.xrLabel9.Text = "Herr / Frau:";
//
// xrLabel2
//
this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(30.00005F, 17.99997F);
this.xrLabel2.Name = "xrLabel2";
this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel2.SizeF = new System.Drawing.SizeF(333.8542F, 17F);
this.xrLabel2.StylePriority.UseFont = false;
this.xrLabel2.Text = "[CustomerReferenceNumber]";
//
// 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.xrTable5});
this.Detail1.HeightF = 30F;
this.Detail1.Name = "Detail1";
this.Detail1.StylePriority.UseFont = false;
//
// xrTable5
//
this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
this.xrTable5.Name = "xrTable5";
this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
this.xrTableRow15});
this.xrTable5.SizeF = new System.Drawing.SizeF(490F, 30F);
this.xrTable5.StylePriority.UseBorderColor = false;
//
// xrTableRow15
//
this.xrTableRow15.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell3,
this.xrTableCell2,
this.xrTableCell4,
this.xrTableCell23});
this.xrTableRow15.Name = "xrTableRow15";
this.xrTableRow15.StylePriority.UseBorders = false;
this.xrTableRow15.Weight = 0.15000000000000002D;
//
// xrTableCell3
//
this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceItems.ItemDescription")});
this.xrTableCell3.Font = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.xrTableCell3.Name = "xrTableCell3";
this.xrTableCell3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrTableCell3.StylePriority.UseBorders = false;
this.xrTableCell3.StylePriority.UseFont = false;
this.xrTableCell3.StylePriority.UseForeColor = false;
this.xrTableCell3.StylePriority.UsePadding = false;
this.xrTableCell3.StylePriority.UseTextAlignment = false;
this.xrTableCell3.Text = "xrTableCell3";
this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
this.xrTableCell3.Weight = 0.35384615290594057D;
//
// xrTableCell2
//
this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceItems.UnitCount", "{0:0.00}")});
this.xrTableCell2.Name = "xrTableCell2";
this.xrTableCell2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrTableCell2.StylePriority.UseBorders = false;
this.xrTableCell2.StylePriority.UsePadding = false;
this.xrTableCell2.StylePriority.UseTextAlignment = false;
this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomRight;
this.xrTableCell2.Weight = 0.12307692394590783D;
//
// xrTableCell4
//
this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceItems.fieldMittelbareStunden", "{0:0.00}")});
this.xrTableCell4.Name = "xrTableCell4";
this.xrTableCell4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
this.xrTableCell4.StylePriority.UseBorders = false;
this.xrTableCell4.StylePriority.UsePadding = false;
this.xrTableCell4.StylePriority.UseTextAlignment = false;
this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomRight;
this.xrTableCell4.Weight = 0.13076923141028521D;
//
// xrTableCell23
//
this.xrTableCell23.CanShrink = true;
this.xrTableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceItems.GrossAmountTotal", "{0:c}")});
this.xrTableCell23.Name = "xrTableCell23";
this.xrTableCell23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
this.xrTableCell23.StylePriority.UseBorderColor = false;
this.xrTableCell23.StylePriority.UseBorders = false;
this.xrTableCell23.StylePriority.UseFont = false;
this.xrTableCell23.StylePriority.UsePadding = false;
this.xrTableCell23.StylePriority.UseTextAlignment = false;
this.xrTableCell23.Text = "xrTableCell23";
this.xrTableCell23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomRight;
this.xrTableCell23.Weight = 0.14615382464290688D;
//
// bindingSource1
//
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.SettlementRO);
//
// GroupFooter1
//
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrTable4});
this.GroupFooter1.HeightF = 120F;
this.GroupFooter1.Name = "GroupFooter1";
this.GroupFooter1.StylePriority.UseFont = false;
//
// xrTable4
//
this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
this.xrTable4.Name = "xrTable4";
this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
this.xrTableRow31,
this.xrTableRow33,
this.xrTableRow34,
this.xrTableRow36});
this.xrTable4.SizeF = new System.Drawing.SizeF(510F, 90F);
this.xrTable4.StylePriority.UseBorderColor = false;
//
// xrTableRow31
//
this.xrTableRow31.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell49,
this.lblGesamtStunden,
this.xrTableCell50,
this.xrTableCell1});
this.xrTableRow31.Name = "xrTableRow31";
this.xrTableRow31.Weight = 0.15000000000000008D;
//
// xrTableCell49
//
this.xrTableCell49.Borders = DevExpress.XtraPrinting.BorderSide.Top;
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.StylePriority.UseTextAlignment = false;
this.xrTableCell49.Text = "Gesamtleistung:";
this.xrTableCell49.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomRight;
this.xrTableCell49.Weight = 0.40846367033919834D;
//
// lblGesamtStunden
//
this.lblGesamtStunden.Borders = DevExpress.XtraPrinting.BorderSide.Top;
this.lblGesamtStunden.Name = "lblGesamtStunden";
this.lblGesamtStunden.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.lblGesamtStunden.StylePriority.UseBorderColor = false;
this.lblGesamtStunden.StylePriority.UseBorders = false;
this.lblGesamtStunden.StylePriority.UseTextAlignment = false;
this.lblGesamtStunden.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomRight;
this.lblGesamtStunden.Weight = 0.14207432612828552D;
//
// xrTableCell50
//
this.xrTableCell50.Borders = DevExpress.XtraPrinting.BorderSide.Top;
this.xrTableCell50.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountRecordedFLSString")});
this.xrTableCell50.Name = "xrTableCell50";
this.xrTableCell50.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 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 = "[AmountRecordedFLSString]";
this.xrTableCell50.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
this.xrTableCell50.Weight = 0.31966722160498984D;
//
// xrTableCell1
//
this.xrTableCell1.Borders = DevExpress.XtraPrinting.BorderSide.Top;
this.xrTableCell1.Name = "xrTableCell1";
this.xrTableCell1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrTableCell1.StylePriority.UseBorders = false;
this.xrTableCell1.StylePriority.UsePadding = false;
this.xrTableCell1.StylePriority.UseTextAlignment = false;
this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
this.xrTableCell1.Weight = 0.0355185792939538D;
//
// xrTableRow33
//
this.xrTableRow33.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell52,
this.xrTableCell53,
this.xrTableCell5});
this.xrTableRow33.Name = "xrTableRow33";
this.xrTableRow33.Weight = 0.1D;
//
// xrTableCell52
//
this.xrTableCell52.Name = "xrTableCell52";
this.xrTableCell52.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrTableCell52.StylePriority.UseBorderColor = false;
this.xrTableCell52.StylePriority.UseBorders = false;
this.xrTableCell52.StylePriority.UseFont = false;
this.xrTableCell52.StylePriority.UseTextAlignment = false;
this.xrTableCell52.Text = "abzgl. Eigenbeteiligung:";
this.xrTableCell52.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomRight;
this.xrTableCell52.Weight = 0.39609642603650413D;
//
// xrTableCell53
//
this.xrTableCell53.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Eigenbeteiligung", "{0:c}")});
this.xrTableCell53.Name = "xrTableCell53";
this.xrTableCell53.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
this.xrTableCell53.StylePriority.UseBorderColor = false;
this.xrTableCell53.StylePriority.UseBorders = false;
this.xrTableCell53.StylePriority.UseFont = false;
this.xrTableCell53.StylePriority.UsePadding = false;
this.xrTableCell53.StylePriority.UseTextAlignment = false;
this.xrTableCell53.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
this.xrTableCell53.Weight = 0.44776118889716959D;
//
// xrTableCell5
//
this.xrTableCell5.Name = "xrTableCell5";
this.xrTableCell5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrTableCell5.StylePriority.UsePadding = false;
this.xrTableCell5.StylePriority.UseTextAlignment = false;
this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
this.xrTableCell5.Weight = 0.034443171671299719D;
//
// xrTableRow34
//
this.xrTableRow34.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell54,
this.xrTableCell55,
this.xrTableCell9});
this.xrTableRow34.Name = "xrTableRow34";
this.xrTableRow34.Weight = 0.1D;
//
// xrTableCell54
//
this.xrTableCell54.Name = "xrTableCell54";
this.xrTableCell54.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrTableCell54.StylePriority.UseBorders = false;
this.xrTableCell54.StylePriority.UsePadding = false;
this.xrTableCell54.StylePriority.UseTextAlignment = false;
this.xrTableCell54.Text = "gezahlte Abschläge:";
this.xrTableCell54.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomRight;
this.xrTableCell54.Weight = 0.39609642603650413D;
//
// xrTableCell55
//
this.xrTableCell55.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountAdvancedPayments")});
this.xrTableCell55.Name = "xrTableCell55";
this.xrTableCell55.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
this.xrTableCell55.StylePriority.UseBorders = false;
this.xrTableCell55.StylePriority.UsePadding = false;
this.xrTableCell55.StylePriority.UseTextAlignment = false;
this.xrTableCell55.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
this.xrTableCell55.Weight = 0.44776118889716959D;
//
// xrTableCell9
//
this.xrTableCell9.Name = "xrTableCell9";
this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrTableCell9.StylePriority.UsePadding = false;
this.xrTableCell9.StylePriority.UseTextAlignment = false;
this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
this.xrTableCell9.Weight = 0.034443171671299719D;
//
// xrTableRow36
//
this.xrTableRow36.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell57,
this.xrTableCell58,
this.xrTableCell11});
this.xrTableRow36.Name = "xrTableRow36";
this.xrTableRow36.Weight = 0.10000000000000053D;
//
// xrTableCell57
//
this.xrTableCell57.Borders = DevExpress.XtraPrinting.BorderSide.Top;
this.xrTableCell57.Font = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell57.Name = "xrTableCell57";
this.xrTableCell57.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrTableCell57.StylePriority.UseBorderColor = false;
this.xrTableCell57.StylePriority.UseBorders = false;
this.xrTableCell57.StylePriority.UseFont = false;
this.xrTableCell57.StylePriority.UseTextAlignment = false;
this.xrTableCell57.Text = "Rechnungsbetrag:";
this.xrTableCell57.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomRight;
this.xrTableCell57.Weight = 0.39609642603650413D;
//
// xrTableCell58
//
this.xrTableCell58.Borders = DevExpress.XtraPrinting.BorderSide.Top;
this.xrTableCell58.Font = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell58.Name = "xrTableCell58";
this.xrTableCell58.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
this.xrTableCell58.StylePriority.UseBorderColor = false;
this.xrTableCell58.StylePriority.UseBorders = false;
this.xrTableCell58.StylePriority.UseFont = false;
this.xrTableCell58.StylePriority.UsePadding = false;
this.xrTableCell58.StylePriority.UseTextAlignment = false;
this.xrTableCell58.Text = "[Claim]";
this.xrTableCell58.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
this.xrTableCell58.Weight = 0.44776118889716959D;
//
// xrTableCell11
//
this.xrTableCell11.Borders = DevExpress.XtraPrinting.BorderSide.Top;
this.xrTableCell11.Font = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell11.Name = "xrTableCell11";
this.xrTableCell11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrTableCell11.StylePriority.UseBorders = false;
this.xrTableCell11.StylePriority.UseFont = false;
this.xrTableCell11.StylePriority.UsePadding = false;
this.xrTableCell11.StylePriority.UseTextAlignment = false;
this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
this.xrTableCell11.Weight = 0.034443171671299719D;
//
// fieldMittelbareStunden
//
this.fieldMittelbareStunden.DataMember = "InvoiceItems";
this.fieldMittelbareStunden.Expression = "([UnitCount] * [RateFactor]) -[UnitCount]";
this.fieldMittelbareStunden.Name = "fieldMittelbareStunden";
//
// Spitzabrechnung
//
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
this.Detail,
this.ReportHeader,
this.ReportFooter,
this.topMarginBand1,
this.bottomMarginBand1,
this.GroupHeader1,
this.DetailReport,
this.GroupFooter1});
this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
this.fieldMittelbareStunden});
this.DataSource = this.bindingSource1;
this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung";
this.Font = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
this.ruleRateFactorNull});
this.Margins = new System.Drawing.Printing.Margins(75, 20, 100, 50);
this.PageHeight = 1169;
this.PageWidth = 827;
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
this.Version = "17.1";
((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText4)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText5)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
}
#endregion
private DevExpress.XtraReports.UI.DetailBand Detail;
private System.Windows.Forms.BindingSource bindingSource1;
private DevExpress.XtraReports.UI.ReportHeaderBand ReportHeader;
private DevExpress.XtraReports.UI.ReportFooterBand ReportFooter;
private DevExpress.XtraReports.UI.XRLabel lblNotice;
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.DetailReportBand DetailReport;
private DevExpress.XtraReports.UI.DetailBand Detail1;
private DevExpress.XtraReports.UI.XRTable xrTable5;
private DevExpress.XtraReports.UI.XRTableRow xrTableRow15;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell23;
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1;
private DevExpress.XtraReports.UI.XRTable xrTable4;
private DevExpress.XtraReports.UI.XRTableCell lblGesamtStunden;
private DevExpress.XtraReports.UI.XRTableRow xrTableRow31;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell49;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell50;
private DevExpress.XtraReports.UI.XRTableRow xrTableRow33;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell52;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell53;
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 xrTableCell57;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell58;
private DevExpress.XtraReports.UI.XRLabel lblAdresse;
private DevExpress.XtraReports.UI.XRLabel xrLabel2;
private DevExpress.XtraReports.UI.XRLabel xrLabel9;
private DevExpress.XtraReports.UI.XRLabel xrLabel17;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell3;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell2;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell4;
private DevExpress.XtraReports.UI.XRRichText xrRichText1;
private DevExpress.XtraReports.UI.XRLabel xrLabel11;
private DevExpress.XtraReports.UI.XRLabel xrLabel5;
private DevExpress.XtraReports.UI.XRLabel xrLabel12;
private DevExpress.XtraReports.UI.XRRichText xrRichText4;
private DevExpress.XtraReports.UI.XRTable xrTable1;
private DevExpress.XtraReports.UI.XRTableRow xrTableRow1;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell6;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell7;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell8;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell10;
private DevExpress.XtraReports.UI.XRRichText xrRichText3;
private DevExpress.XtraReports.UI.CalculatedField fieldMittelbareStunden;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell12;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell1;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell5;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell9;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell11;
private DevExpress.XtraReports.UI.XRLabel xrLabel3;
private DevExpress.XtraReports.UI.XRLabel xrLabel1;
private DevExpress.XtraReports.UI.XRLabel xrLabel7;
private DevExpress.XtraReports.UI.XRLabel xrLabel6;
private DevExpress.XtraReports.UI.XRRichText xrRichText5;
private DevExpress.XtraReports.UI.XRTable xrTable2;
private DevExpress.XtraReports.UI.XRTableRow xrTableRow9;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell19;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell13;
private DevExpress.XtraReports.UI.XRTableRow xrTableRow10;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell20;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell14;
private DevExpress.XtraReports.UI.XRLabel xrLabel4;
}
}

View File

@@ -1,648 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="xrRichText1.SerializableRtfString" xml:space="preserve">
<value>ewBcAHIAdABmADEAXABhAG4AcwBpAFwAYQBuAHMAaQBjAHAAZwAxADIANQAyAFwAZABlAGYAZgAwAHsAXABmAG8AbgB0AHQAYgBsAHsAXABmADAAXABmAHIAbwBtAGEAbgBcAGYAcAByAHEAMgBcAGYAYwBoAGEAcgBzAGUAdAAwACAAQgBvAG8AawAgAEEAbgB0AGkAcQB1AGEAOwB9AHsAXABmADEAXABmAG4AaQBsACAAVABpAG0AZQBzACAATgBlAHcAIABSAG8AbQBhAG4AOwB9AH0ADQAKAFwAdgBpAGUAdwBrAGkAbgBkADQAXAB1AGMAMQBcAHAAYQByAGQAXABxAHIAXABsAGEAbgBnADEAMAAzADEAXABiAFwAZgAwAFwAZgBzADEAOQAgAEEAbgBkAHIAZQBhACAAQgBlAGMAawBlAHIAXABwAGEAcgANAAoAXABiADAAIABJAG4AaABhAGIAZQByAGkAbgBcAHAAYQByAA0ACgBcAHAAYQByAA0ACgBhAHMAcwBpAHMAdABlAG4AegBhACAASwBcACcAZgA2AGwAbgBcAHAAYQByAA0ACgBCAGEAYwBoAGUAbQBlAHIAIABTAHQAcgAuACAAMQA5ADEAXABwAGEAcgANAAoANQAwADkAMwA1ACAASwBcACcAZgA2AGwAbgBcAHAAYQByAA0ACgBcAHAAYQByAA0ACgBUAGUAbAAgADAAMgAyADEAIAA0ADYAIAAwADAAIAAzADcANgBcAHAAYQByAA0ACgBGAGEAeAAgADAAMgAyADEAIAA0ADcAIAAxADQAIAA1ADkAMABcAHAAYQByAA0ACgBcAHAAYQByAA0ACgBhAC4AYgBlAGMAawBlAHIAQABhAHMAcwBpAHMAdABlAG4AegBhAC0AawBvAGUAbABuAC4AZABlAFwAcABhAHIADQAKAHcAdwB3AC4AYQBzAHMAaQBzAHQAZQBuAHoAYQAtAGsAbwBlAGwAbgAuAGQAZQBcAGYAMQBcAGYAcwAyADQAXABwAGEAcgANAAoAfQANAAoA</value>
</data>
<data name="xrRichText2.SerializableRtfString" xml:space="preserve">
<value>ewBcAHIAdABmADEAXABmAGIAaQBkAGkAcwBcAGEAbgBzAGkAXABhAG4AcwBpAGMAcABnADEAMgA1ADIAXABkAGUAZgBmADAAewBcAGYAbwBuAHQAdABiAGwAewBcAGYAMABcAGYAbgBpAGwAXABmAHAAcgBxADIAXABmAGMAaABhAHIAcwBlAHQAMAAgAEIAdQBkAEgAYQBuAGQAOwB9AHsAXABmADEAXABmAHIAbwBtAGEAbgBcAGYAcAByAHEAMgBcAGYAYwBoAGEAcgBzAGUAdAAyACAAVwBpAG4AZwBkAGkAbgBnAHMAIAAzADsAfQB7AFwAZgAyAFwAZgByAG8AbQBhAG4AXABmAHAAcgBxADIAXABmAGMAaABhAHIAcwBlAHQAMAAgAEIAbwBvAGsAIABBAG4AdABpAHEAdQBhADsAfQB7AFwAZgAzAFwAZgByAG8AbQBhAG4AXABmAHAAcgBxADIAXABmAGMAaABhAHIAcwBlAHQAMAAgAFQAaQBtAGUAcwAgAE4AZQB3ACAAUgBvAG0AYQBuADsAfQB7AFwAZgA0AFwAZgBuAGkAbAAgAFQAaQBtAGUAcwAgAE4AZQB3ACAAUgBvAG0AYQBuADsAfQB9AA0ACgB7AFwAYwBvAGwAbwByAHQAYgBsACAAOwBcAHIAZQBkADIAMAA0AFwAZwByAGUAZQBuADAAXABiAGwAdQBlADAAOwBcAHIAZQBkADYANABcAGcAcgBlAGUAbgA2ADQAXABiAGwAdQBlADYANAA7AH0ADQAKAFwAdgBpAGUAdwBrAGkAbgBkADQAXAB1AGMAMQBcAHAAYQByAGQAXABsAHQAcgBwAGEAcgBcAGMAZgAxAFwAbABhAG4AZwAxADAAMwAxAFwAYgBcAGYAMABcAGYAcwAxADgAIABhAHMAcwBpAHMAdABlAG4AegBhAFwAZgBzADEANAAgACAAXABmADEAXABmAHMAMQA2AFwAJwBlAGEAXABmADAAXABmAHMAMQA0ACAAIABcAGMAZgAyAFwAYgAwAFwAZgAyACAAQQBuAGQAcgBlAGEAIABCAGUAYwBrAGUAcgBcAGYAcwAxADIAIAAgACAAXABmAHMAMQA0ACAAIABcAGMAZgAxAFwAYgBcAGYAMQBcAGYAcwAxADYAXAAnAGUAYQBcAGMAZgAwAFwAYgAwAFwAZgAyAFwAZgBzADEAMgAgACAAIABcAGYAcwAxADQAIAAgAFwAYwBmADIAIABCAGEAYwBoAGUAbQBlAHIAIAAgAFMAdAByAC4AIAAxADkAMQBcAGYAcwAxADIAIAAgACAAXABmAHMAMQA0ACAAIABcAGMAZgAxAFwAYgBcAGYAMQBcAGYAcwAxADYAXAAnAGUAYQBcAGMAZgAwAFwAYgAwAFwAZgAyAFwAZgBzADEAMgAgACAAIABcAGYAcwAxADQAIAAgAFwAYwBmADIAIAA1ADAAOQAzADUAIAAgAEsAXAAnAGYANgBsAG4AXABjAGYAMABcAGYAMwBcAGYAcwAyADQAXABwAGEAcgANAAoAXABmADQAXABwAGEAcgANAAoAfQANAAoA</value>
</data>
<data name="xrLabel13.Text" xml:space="preserve">
<value>Das Saldo der bislang geleisteten Vorauszahlungen gegen die erbrachten Leistungen seitens assístenza beträgt also [ClaimWithEigenbeteiligung!#,##0.00] € zu unseren Gunsten.
Als Anlage beigefügt finden Sie eine detaillierte Aufstellung aller erbrachten Leistungen unsererseits und Abschlagszahlungen Ihrerseits.
Für Fragen stehe ich Ihnen jederzeit zu Ihrer Verfügung.
Mit freundlichen Grüßen
</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="xrPictureBox2.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
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
</value>
</data>
<data name="xrPictureBox1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
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
</value>
</data>
<data name="xrPictureBox3.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAAEwAAABMCAMAAADwSaEZAAAABGdBTUEAALGPC/xhBQAAAwBQTFRFAAAA
AQEBAgICAwMDBAQEBQUFBgYGBwcHCAgICQkJCgoKCwsLDAwMDQ0NDg4ODw8PEBAQEREREhISExMTFBQU
FRUVFhYWFxcXGBgYGRkZGhoaGxsbHBwcHR0dHh4eHx8fICAgISEhIiIiIyMjJCQkJSUlJiYmJycnKCgo
KSkpKioqKysrLCwsLS0tLi4uLy8vMDAwMTExMjIyMzMzNDQ0NTU1NjY2Nzc3ODg4OTk5Ojo6Ozs7PDw8
PT09Pj4+Pz8/QEBAQUFBQkJCQ0NDRERERUVFRkZGR0dHSEhISUlJSkpKS0tLTExMTU1NTk5OT09PUFBQ
UVFRUlJSU1NTVFRUVVVVVlZWV1dXWFhYWVlZWlpaW1tbXFxcXV1dXl5eX19fYGBgYWFhYmJiY2NjZGRk
ZWVlZmZmZ2dnaGhoaWlpampqa2trbGxsbW1tbm5ub29vcHBwcnJyc3NzdHR0dXV1dnZ2d3d3eHh4eXl5
enp6e3t7fHx8fX19fn5+f39/gICAgYGBgoKCg4ODhISEhYWFhoaGh4eHiIiIiYmJioqKi4uLjIyMjY2N
jo6Oj4+PkJCQkZGRkpKSk5OTlJSUlZWVlpaWl5eXmJiYmZmZmpqam5ubnJycnZ2dnp6en5+foKCgoaGh
oqKio6OjpKSkpaWlpqamp6enqKioqampqqqqq6urrKysra2trq6ur6+vsLCwsbGxsrKys7OztLS0tbW1
tra2t7e3uLi4ubm5urq6u7u7vLy8vb29vr6+v7+/wMDAwcHBwsLCw8PDxMTExcXFxsbGx8fHyMjIycnJ
ysrKy8vLzMzMzc3Nzs7Oz8/P0NDQ0dHR0tLS09PT1NTU1dXV1tbW19fX2NjY2dnZ2tra29vb3Nzc3d3d
3t7e39/f4ODg4eHh4uLi4+Pj5OTk5eXl5ubm5+fn6Ojo6enp6urq6+vr7Ozs7e3t7u7u7+/v8PDw8fHx
8vLy8/Pz9PT09fX19vb29/f3+Pj4+fn5+vr6+/v7/Pz8/f39/v7+////AAAAdVkFGwAAAAlwSFlzAAAO
wwAADsMBx2+oZAAAABh0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC42/Ixj3wAADapJREFUWEftmHlc
VdUWx5cKikqoeBEc4KJgCgUpg4ATOaCCkaJRmgPiVPisjAxySi6mkNYzRRxARQIR82kOFxQDUUQzHBBI
UTMZLpZXREEUuCC/z1v7nAPae70/3ufT++/9Pnw45+zhe8/ee+211zqEv1D/h/33+l/AFro7yBrs3XjY
QQfM8EW4G1cMc3D4VW4CxHh57cFYZy+vUCx2cDja6D1Y6eS+UG6gwBzJ1dWN5WpONVq3pMysKeOz5g09
mZk20s2tBLhwAYWZmROIArN8rYkcM2e6uaXXkLncx5UcZYoCG+guX7GGyoA+RJfLSQsipbpnLzBJUtNh
8f80F5bRGrkW7gPlq9LawQ1RAQEBwdBQzamA1NWUe5ucRtG7R6e/4fPm5MkpKZNjjx88dOjQsZP4jmjA
wfnjA87UkAbB3CkKbg4y5TnMh3/QBJHUEEf64lfyb1CX3q+koi314vKME7S5UrRrqihaQ3aLMNecdjVQ
JEy40udPYAFcbsWw+kTiWcJ52sb/H9FsOHAFSxrKcnF3m28uU5yAWfFjwJ/AJnJ5NwHbQ/6bgHux0irG
noO10674+F0uZiEhS5uL4mKm01shwTeexN6oZFg37jTxT2BzraysnHnOnh60Mhn3Wz3w9HfU/A78Zj6h
kTVVvNONR41I47cxSnogFkADZ+40919hAz3kK6KpHKg72Pkk8HY7HhUSBaRDB/Gf2hB15Skwd4SXpYBF
K508/riaTharIiIjIzWrhtGDgsiGLMqs0qxcsUr8hXWyC+vWLUzdPsKdwrn6emSEJnLZZ5qCKhq2SsOd
IlZZOMkUBTbKSPppVjfDTirONPnpOu0D/zQtguVkuLjgbWt82AZbTR7sJN1lulRNOwxiwiQZjZIpCqyh
XqhSp6tqQFO9+0QdblJnD114b50B7YbDpi9Q1LtzdzTdsXuvfug4Xf1lSkCFruIp96rW1TbKFAWWnijE
61eUiNJkU28ci57XpxuW0ZY8LNmIzxfu2LOeqPPmqzB1Te7qBegWaHZzv4NJiYlnkH5YpiiwAdLrbgA+
psY9RP5wtERQZ3xOFCzVX5LqiUJhy//Hi6K36Skei4UZhb4WUqMW2K38/Nt38p8CD2/68NK3fY1exgx6
zYzy19kI06/NH2ZeWppPq9GXu7/0mp2NTaeewGN6o7TwDm4WyxQFxvr5Aq5pUZbRwWKi32DyWKD9dDzZ
vo107/gLonpSl+zTR2iqtkcfvy5EDt7eVt0P3ax745PsZqm3pOewEWZ4h8R+YeeURQU6OgbaKCpI8iiT
xSiF3oMnUS6wgGg5sJEui1pZCuxDH5+O5Pnlj6g8l7He50kOXblLth5k5+Pl6XngFnDbJz73xCjKWCgm
0Vqd8b6Pz2YtrQL0J/CTp+d8maLAXiVSu9hvvJVXeBsJdDjVbX+6m4MNW7zazj77el7eNvqqHOvdsJlo
DibNx1iiVNDnuHgXhTH29oEyRYE5EmUD88Uw6nYRDYObDXDXmOgh0F8aHalEu5VE74rrKKK9dewcaSq6
jxMFkhSYdim9PmfahmSasB/lCXvPwqU3Ow6acshwYprpkJQ+vRKS44NOANcTEqKCpr8TuD2GdjQlLA/a
eBa9zYODFZfbsgBFaiLTuEdqTU3JYzQ8KPEbWlLyo3p9TfNW07YBj191wbM8ikJJHZBMxqamGTfVycCn
xM5lXFc+FGRICwwG104IIvYa7ZbAnozPFhtTV8Ni0j8zqHiMI+DHAxM7FUl0hv1EFwP3kWDNyURDZYYC
i/4GqctXrtaEaaKMHcL/voAu62jSJpyN4l23Y11U90E4Eko+K5dlNH0evvZh+cplm3A4/OPVG5aFh1f+
srbHKzJFgdk5VqOc9y6bjkMbKs+lH67QAVQ3oaa6mquHulfjV7Z89gg0GfWplIVqNrxo8BLlA2PECctS
YM2nVafKKQb6ULq7UXjBruaUhp4dqbtKVXlS9fM1lcqMVlY2M2wKJnSh7HIVdWje0J1noEImCCmwgx9Q
+l3awu4jBFeXvDde2MKc9eQewtdKLa1gkzD54Cw3bAoL/7sln5slNHbljnG0aAyFHcWBFJmiwPgEOllB
m+UH4KyAsbaiB5E+TbpXVgx7xcPpUjrEZ7SpOEXHwN5KrlJgD/V6QyEZvYpYC2gtihr0rtbFfp31n1lc
KNEP8C9+2UGvfyQ1bBwUoh9E9MMdau+s01diNxUctjhSJdW1wM6naX8vD3xzyncr/FLX+t7Wpw1wRFBH
7TLfRp3WXwN3W23asf28R9HYwUNr3yPwemWg/9TD2mP7g+nbeL8tIlpgKTDem//gSy07LOKN9j2RE+YS
n2V8kPKpNkIa6FrRsiff+IgbPqBl+aO/uVTQChuQM8vJ+Tg69nAWLiiDoq9gEmXdZ/+cM2YpBtvleHbN
qajycvM+dTEnJ87ZadDwYw1nc3LyrxZYGjkn35ApCmzgEHzi5LzhdEdL5/ZvcOvhRbypx6Eih422ozec
BuPNHjyzXt0ojc/lq07O/ShW9LteUBDo8a+w3v3F/w/FUGz4zZXtgcXEu8Z4LAY7wZdhHO8RTZdqdPLS
875kkP0fh3niFFAe2K9r2jq/jqP3H5W9Z61vhNY/HkfXT+0yFG+Sr6+vXz/iSIa1bPJ3fJQl+rRny7kZ
uJXdl5ACA4prC4l66NdZUAiqK4qFsi2i9DSxGEeJ3Irn9bdgWb/clmG1xaNdRZ91qrZEOdtpv2w2rbAf
KeeJWJrVMJkpjZSl5oOPJRvtfrldA00AcihTfgK/mdAfA5c1H8WGL9nkRrFfhNBMJPFhwbJG3jpTonvH
xMPxZ0uWrOCW29KxbFHsJ6tFryPzd7xDaxfThwfFUyusZ38M6YywHlhHqiXSdjJSmVjzHlaZqCp/ULFz
2PczE3/Rs7HAzhOD2IE80y9ug+9Vv2WrTivHnQLzbGfGYePTmy9p8JiPYoYNrp7ZhqKb+T1ZI4navSTe
j+gxH71Hzdo584JRaA1Q3X9i9XAlvFZgXkRvxQijHr6BnefOICIXzG6z5AzCP4t6cjvK1nolr+OY8NCl
YWE8pGyiV3kZwk5hTTrMX4ezrUx5DsuAwVDGU1T2zMChvpGHYTpbjwFb6B4H669jtrFxgmhJfgZDGhm5
oqkJqKJ3DDbjDR5/jM/4qDMxNbXqQx/U4oApL3jWdXVMGb5S86CAkpfJdF91yTPgG/W13Wq1Jf3jCcLU
phYDH+1RX9prmqI4SAUWOY6GBgb2pqAvUnZHTmO71nxNSUgYRd8kpiTkIDpoWvQh/LQLq6nxgJi58BMc
10wbSCnz6G5xoHAnQgoMecRR7PtGWEsUBDdpqvfVSBciX9HAm/CuOLwep0plasw0wdfirkDqL6kFdo6z
G8wxQt2tS1/amwzPYz1oulh061ZRnq2pnb29/aYrKMnjuKZmH30fJ9ZnEdl34vP9VoNCYCmw3K0+m05j
ftsj2ReQ4dl+olyK38+fr4B9F0/WeakgyacumcpKfbr3y/Dr4D5ydPsp59mSWqTAzPvidTM51igF+o6Q
S/nXOYIyeR5MCO0hdk9juGEffuDVb80gW2HZ5zC+F258S9PP1B/zptFYPE0U/5qtXT0yLd7b91Os8/Pj
yHW/t1+o9q2luLRJwFIn5IaRyyg/v1AJ0jpnyPewyK8ztA0pa0qxcQrKHz0CJQV4WIq9NldTbdhGOTzY
gPzlNjQDfWzzUcou5upM+mUD9eEInk1YqAV2XIxwS6M8TI4cOTQcR1hFbFvthkJtw/EwbQKFgVOlIXwu
lon2kvQn/i1wqUpMSkosRWpS8pPsWfOX7pi/FKfWLxxIM+bMij6J9GPwN0u+VUPhSMyCg33iw19pdnzi
7i28YcseJu86IkMUmP6eSCru6+rq65t3d+BofIy9DjVk3JvzpvvQ1Rrgq6pvut9mIafvsBtSf+84pYB3
sVXn3qfv8VWWAnsh3aloetrJGfW5JsdBX0B46RQiD8zkWWgmMrsjQkmRsybX0UoYz3lqSyYcu0hSYC8k
YpzVxe4V2am/RqOJiIpYcb9olSZihaMq8jK+HEkPfl7x5QKa9RF9i8hcGM3H9mk0Y4dMUWAvpIhiIKh9
dpHIkqM5bKNr/HxOcc2bOlVup3vXKb+WNj/hQNWIExj26v+W8Lckr2WAe0erX+5TXDPCyHKZSLK827FT
sornu6f92nKWSFceUgcrIzNL+gRj2TT+Y1pdeSP243EUGkHBOzdH/I2Gx21Jx1q2MuKTcvv2nR95U8RS
WrItRE3BTkQjYzlGm/SVTHkOa0n4G+LoYb7oy/oaIqDl0KJAPMVLHzrkAKsv5hmDEz1JLUnKc1jLp4j6
RLbbChfrwgmdKz7rlVtYWMgDl7K6XsOvv081TYVm/Su8bFF1FxFUxl7It2K0t0x5Dmv5SFL/LX19JGOg
I2abnFzuw76ZlRkzWXze6AjtpJ2XETIvw6kfrp08FEDpoZyBnJw+V2rVAnvh8009h+KsV9gXkjIX6GeP
KVxmwYvB2wmnSMogWyW7p1bYCx+W6hJ442Zm5eFaMqncXF1dq3JdOVorysrypddcXTjBwYPMrJ/Eb72b
lZmZxbPKTlqSAnvhk1fDCS+vMKmwdsQgUfTgjMOQ98VzjIejg4NnpFQHfOHlxbYNzPLyuigVtML+Gv0f
9t/rL4QB/wTYBID56TH+XgAAAABJRU5ErkJggg==
</value>
</data>
<data name="xrRichText3.SerializableRtfString" xml:space="preserve">
<value>ewBcAHIAdABmADEAXABmAGIAaQBkAGkAcwBcAGEAbgBzAGkAXABhAG4AcwBpAGMAcABnADEAMgA1ADIAXABkAGUAZgBmADAAewBcAGYAbwBuAHQAdABiAGwAewBcAGYAMABcAGYAcgBvAG0AYQBuAFwAZgBwAHIAcQAyAFwAZgBjAGgAYQByAHMAZQB0ADAAIABCAG8AbwBrACAAQQBuAHQAaQBxAHUAYQA7AH0AewBcAGYAMQBcAGYAbgBpAGwAIABUAGkAbQBlAHMAIABOAGUAdwAgAFIAbwBtAGEAbgA7AH0AfQANAAoAewBcAGMAbwBsAG8AcgB0AGIAbAAgADsAXAByAGUAZAA2ADQAXABnAHIAZQBlAG4ANgA0AFwAYgBsAHUAZQA2ADQAOwB9AA0ACgBcAHYAaQBlAHcAawBpAG4AZAA0AFwAdQBjADEAXAB0AHIAbwB3AGQAXAB0AHIAZwBhAHAAaAAxADAAOABcAHQAcgBxAGMAXABjAGUAbABsAHgAMwA2ADgANQBcAHAAYQByAGQAXABpAG4AdABiAGwAXABsAHQAcgBwAGEAcgBcAGMAZgAxAFwAbABhAG4AZwAxADAAMwAxAFwAYgBcAGYAMABcAGYAcwAxADcAIABQAGEAeAAtAEIAYQBuAGsAIABLAFwAJwBmADYAbABuAFwAYwBlAGwAbABcAHIAbwB3AA0ACgBcAGIAMABcAHQAcgBvAHcAZABcAHQAcgBnAGEAcABoADEAMAA4AFwAdAByAHEAYwBcAGMAZQBsAGwAeAAzADYAOAA1AFwAaQBuAHQAYgBsACAASQBCAEEATgAgACAARABFADIAMgAgADMANwAwADYAIAAwADEAOQAzACAAMAAwADIANAAgADkANAAyADAAIAAxADUAIAAgACAAIAAgACAAIABcAGMAZQBsAGwAXAByAG8AdwANAAoAXAB0AHIAbwB3AGQAXAB0AHIAZwBhAHAAaAAxADAAOABcAHQAcgBxAGMAXABjAGUAbABsAHgAMwA2ADgANQBcAGkAbgB0AGIAbAAgAEIAaQBjAC0AQwBvAGQAZQAgACAARwBFAE4ATwBEAEUARAAxAFAAQQBYAFwAYwBlAGwAbABcAHIAbwB3AA0ACgBcAHAAYQByAGQAXABsAHQAcgBwAGEAcgBcAGMAZgAwAFwAZgAxAFwAZgBzADIANABcAHAAYQByAA0ACgB9AA0ACgA=</value>
</data>
<data name="xrRichText4.SerializableRtfString" xml:space="preserve">
<value>ewBcAHIAdABmADEAXABmAGIAaQBkAGkAcwBcAGEAbgBzAGkAXABhAG4AcwBpAGMAcABnADEAMgA1ADIAXABkAGUAZgBmADAAewBcAGYAbwBuAHQAdABiAGwAewBcAGYAMABcAGYAcgBvAG0AYQBuAFwAZgBwAHIAcQAyAFwAZgBjAGgAYQByAHMAZQB0ADAAIABCAG8AbwBrACAAQQBuAHQAaQBxAHUAYQA7AH0AewBcAGYAMQBcAGYAbgBpAGwAIABUAGkAbQBlAHMAIABOAGUAdwAgAFIAbwBtAGEAbgA7AH0AfQANAAoAewBcAGMAbwBsAG8AcgB0AGIAbAAgADsAXAByAGUAZAA2ADQAXABnAHIAZQBlAG4ANgA0AFwAYgBsAHUAZQA2ADQAOwB9AA0ACgBcAHYAaQBlAHcAawBpAG4AZAA0AFwAdQBjADEAXAB0AHIAbwB3AGQAXAB0AHIAZwBhAHAAaAAxADAAOABcAHQAcgBxAGMAXABjAGUAbABsAHgAMgA3ADAANwBcAHAAYQByAGQAXABpAG4AdABiAGwAXABsAHQAcgBwAGEAcgBcAGMAZgAxAFwAbABhAG4AZwAxADAAMwAxAFwAYgBcAGYAMABcAGYAcwAxADcAIABGAGkAbgBhAG4AegBhAG0AdAAgAEsAXAAnAGYANgBsAG4AXABjAGUAbABsAFwAcgBvAHcADQAKAFwAYgAwAFwAdAByAG8AdwBkAFwAdAByAGcAYQBwAGgAMQAwADgAXAB0AHIAcQBjAFwAYwBlAGwAbAB4ADIANwAwADcAXABpAG4AdABiAGwAIABVAFMAdABJAEQAIABOAHIALgBcAGwAYQBuAGcAMQAwADIANABcAGIAXABmAHMAMQA1ACAAIABcAGwAYQBuAGcAMQAwADMAMQBcAGIAMABcAGYAcwAxADcAIABEAEUAIAAyADMAIAA4ADIAIAA2ADQAIAA4ADgANwBcAGMAZQBsAGwAXAByAG8AdwANAAoAXAB0AHIAbwB3AGQAXAB0AHIAZwBhAHAAaAAxADAAOABcAHQAcgBxAGMAXABjAGUAbABsAHgAMgA3ADAANwBcAGkAbgB0AGIAbAAgAGkAbgBmAG8AQABhAHMAcwBpAHMAdABlAG4AegBhAC0AawBvAGUAbABuAC4AZABlAFwAYwBlAGwAbABcAHIAbwB3AA0ACgBcAHQAcgBvAHcAZABcAHQAcgBnAGEAcABoADEAMAA4AFwAdAByAHEAYwBcAGMAZQBsAGwAeAAyADcAMAA3AFwAaQBuAHQAYgBsACAAdwB3AHcALgBhAHMAcwBpAHMAdABlAG4AegBhAC0AawBvAGUAbABuAC4AZABlAFwAYwBlAGwAbABcAHIAbwB3AA0ACgBcAHAAYQByAGQAXABsAHQAcgBwAGEAcgBcAGMAZgAwAFwAZgAxAFwAZgBzADIANABcAHAAYQByAA0ACgB9AA0ACgA=</value>
</data>
<metadata name="bindingSource1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<data name="xrLabel22.Text" xml:space="preserve">
<value>Hiermit erklärt der Anbieter, dass die Verpflichtungen aus der mit den LVR
nach §§ 75 ff SGB XII eingehalten wurden und die vorgenannten Angaben anhand von Quittierungsbelegen und der Betreuungsdokumentation überprüft werden können.
Köln, den [InvoiceDate]
</value>
</data>
</root>

View File

@@ -1,42 +0,0 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using DevExpress.XtraReports.UI;
using BeWo.Report.ReportObjects;
using BeWo.Report;
namespace BeWo.BetreutesWohnenWoellReports
{
public partial class QuittierungsbelegFLS : DevExpress.XtraReports.UI.XtraReport, IBeWoReport<ServicesOverviewRO>
{
public QuittierungsbelegFLS()
{
InitializeComponent();
}
public void SetReportDataSource(ServicesOverviewRO pRO)
{
double total = 0;
if (pRO.Services != null)
{
List<ServicesOverviewRO.ServiceDetail> servicesBillable = new List<ServicesOverviewRO.ServiceDetail>();
foreach (ServicesOverviewRO.ServiceDetail s in pRO.Services)
{
if (s.IsBillable)
{
total += s.Minutes;
servicesBillable.Add(s);
}
}
pRO.Services = servicesBillable;
}
pRO.TotalFLMBillable = total;
this.bindingSource1.DataSource = pRO;
}
}
}

View File

@@ -1,701 +0,0 @@
using BeWo.Report.ReportObjects;
namespace BeWo.BetreutesWohnenWoellReports
{
partial class QuittierungsbelegFLS
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(QuittierungsbelegFLS));
this.Detail = new DevExpress.XtraReports.UI.DetailBand();
this.xrTableServiceRecords1 = new DevExpress.XtraReports.UI.XRTable();
this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
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.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
this.formattingRuleStartDate = new DevExpress.XtraReports.UI.FormattingRule();
this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel29 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel26 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel25 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel24 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel23 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel21 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel20 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel18 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
this.formattingRuleServiceDesc = new DevExpress.XtraReports.UI.FormattingRule();
this.formattingRuleCostBearer = new DevExpress.XtraReports.UI.FormattingRule();
this.formattingRuleEmployeeName = new DevExpress.XtraReports.UI.FormattingRule();
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
this.fieldAbrechenbareMinuten = new DevExpress.XtraReports.UI.CalculatedField();
this.fieldFLSBillable = new DevExpress.XtraReports.UI.CalculatedField();
((System.ComponentModel.ISupportInitialize)(this.xrTableServiceRecords1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
//
// Detail
//
this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrTableServiceRecords1});
this.Detail.HeightF = 22F;
this.Detail.Name = "Detail";
this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrTableServiceRecords1
//
this.xrTableServiceRecords1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
| DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
this.xrTableServiceRecords1.Font = new System.Drawing.Font("Arial", 8F);
this.xrTableServiceRecords1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
this.xrTableServiceRecords1.Name = "xrTableServiceRecords1";
this.xrTableServiceRecords1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
this.xrTableServiceRecords1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
this.xrTableRow2});
this.xrTableServiceRecords1.SizeF = new System.Drawing.SizeF(675F, 22F);
this.xrTableServiceRecords1.StylePriority.UseBackColor = false;
this.xrTableServiceRecords1.StylePriority.UseFont = false;
this.xrTableServiceRecords1.StylePriority.UseTextAlignment = false;
this.xrTableServiceRecords1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
//
// xrTableRow2
//
this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell3,
this.xrTableCell4,
this.xrTableCell9,
this.xrTableCell12});
this.xrTableRow2.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableRow2.Name = "xrTableRow2";
this.xrTableRow2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
this.xrTableRow2.StylePriority.UseFont = false;
this.xrTableRow2.StylePriority.UseTextAlignment = false;
this.xrTableRow2.Weight = 0.6875D;
//
// xrTableCell3
//
this.xrTableCell3.Name = "xrTableCell3";
this.xrTableCell3.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 2, 0, 0, 100F);
this.xrTableCell3.StylePriority.UseFont = false;
this.xrTableCell3.StylePriority.UseTextAlignment = false;
this.xrTableCell3.Text = "Datum";
this.xrTableCell3.Weight = 0.25605213908392394D;
//
// xrTableCell4
//
this.xrTableCell4.Multiline = true;
this.xrTableCell4.Name = "xrTableCell4";
this.xrTableCell4.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 2, 0, 0, 100F);
this.xrTableCell4.StylePriority.UseFont = false;
this.xrTableCell4.StylePriority.UseTextAlignment = false;
this.xrTableCell4.Text = "Uhrzeit von - bis";
this.xrTableCell4.Weight = 0.47552540183240349D;
//
// xrTableCell9
//
this.xrTableCell9.Name = "xrTableCell9";
this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 2, 0, 0, 100F);
this.xrTableCell9.StylePriority.UseFont = false;
this.xrTableCell9.StylePriority.UseTextAlignment = false;
this.xrTableCell9.Text = "Personenzahl";
this.xrTableCell9.Weight = 0.58526203379294373D;
//
// xrTableCell12
//
this.xrTableCell12.Name = "xrTableCell12";
this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 2, 0, 0, 100F);
this.xrTableCell12.StylePriority.UseBackColor = false;
this.xrTableCell12.StylePriority.UseFont = false;
this.xrTableCell12.StylePriority.UseTextAlignment = false;
this.xrTableCell12.Text = "Minuten";
this.xrTableCell12.Weight = 0.32920989590432559D;
//
// DetailReport
//
this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
this.Detail1,
this.GroupFooter1});
this.DetailReport.DataMember = "Services";
this.DetailReport.DataSource = this.bindingSource1;
this.DetailReport.Level = 0;
this.DetailReport.Name = "DetailReport";
this.DetailReport.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
this.DetailReport.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// Detail1
//
this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrTable3});
this.Detail1.HeightF = 17F;
this.Detail1.Name = "Detail1";
this.Detail1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
this.Detail1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrTable3
//
this.xrTable3.BorderColor = System.Drawing.Color.Black;
this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
this.xrTable3.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
this.xrTable3.Name = "xrTable3";
this.xrTable3.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
this.xrTableRow6});
this.xrTable3.SizeF = new System.Drawing.SizeF(674.9999F, 17F);
this.xrTable3.StylePriority.UseFont = false;
this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrTableRow6
//
this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell13,
this.xrTableCell14,
this.xrTableCell16,
this.xrTableCell17});
this.xrTableRow6.Name = "xrTableRow6";
this.xrTableRow6.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
this.xrTableRow6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
this.xrTableRow6.Weight = 0.85D;
//
// xrTableCell13
//
this.xrTableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Services.StartDate", "{0:dd.MM.yyyy}")});
this.xrTableCell13.Name = "xrTableCell13";
this.xrTableCell13.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 2, 0, 0, 100F);
this.xrTableCell13.StylePriority.UseFont = false;
this.xrTableCell13.StylePriority.UsePadding = false;
this.xrTableCell13.StylePriority.UseTextAlignment = false;
this.xrTableCell13.Text = "xrTableCell13";
this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
this.xrTableCell13.Weight = 0.13257575363470647D;
//
// xrTableCell14
//
this.xrTableCell14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Services.TimeRangeString")});
this.xrTableCell14.Name = "xrTableCell14";
this.xrTableCell14.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 2, 0, 0, 100F);
this.xrTableCell14.StylePriority.UseFont = false;
this.xrTableCell14.StylePriority.UsePadding = false;
this.xrTableCell14.StylePriority.UseTextAlignment = false;
this.xrTableCell14.Text = "xrTableCell14";
this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
this.xrTableCell14.Weight = 0.24621210235959995D;
//
// xrTableCell16
//
this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Services.CustomerCount")});
this.xrTableCell16.Name = "xrTableCell16";
this.xrTableCell16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrTableCell16.StylePriority.UseFont = false;
this.xrTableCell16.StylePriority.UseTextAlignment = false;
this.xrTableCell16.Text = "xrTableCell16";
this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
this.xrTableCell16.Weight = 0.30303017304321878D;
//
// xrTableCell17
//
this.xrTableCell17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Services.fieldAbrechenbareMinuten", "{0:0.##}")});
this.xrTableCell17.Name = "xrTableCell17";
this.xrTableCell17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 5, 0, 0, 100F);
this.xrTableCell17.StylePriority.UseFont = false;
this.xrTableCell17.StylePriority.UsePadding = false;
this.xrTableCell17.StylePriority.UseTextAlignment = false;
this.xrTableCell17.Text = "xrTableCell17";
this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
this.xrTableCell17.Weight = 0.1704545045180518D;
//
// GroupFooter1
//
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrLabel10,
this.xrLabel8,
this.xrLabel7,
this.xrLabel6,
this.xrLabel5,
this.xrLabel4,
this.xrLabel3});
this.GroupFooter1.Font = new System.Drawing.Font("Arial", 9.75F);
this.GroupFooter1.HeightF = 130F;
this.GroupFooter1.KeepTogether = true;
this.GroupFooter1.Name = "GroupFooter1";
this.GroupFooter1.StylePriority.UseFont = false;
//
// xrLabel10
//
this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "fieldFLSBillable", "{0:0.##}")});
this.xrLabel10.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(539.9999F, 36F);
this.xrLabel10.Name = "xrLabel10";
this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
this.xrLabel10.SizeF = new System.Drawing.SizeF(135.0001F, 18.00003F);
this.xrLabel10.StylePriority.UseFont = false;
this.xrLabel10.StylePriority.UsePadding = false;
this.xrLabel10.StylePriority.UseTextAlignment = false;
this.xrLabel10.Text = "xrLabel10";
this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
//
// xrLabel8
//
this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(0F, 36F);
this.xrLabel8.Name = "xrLabel8";
this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel8.SizeF = new System.Drawing.SizeF(539.9999F, 18.00003F);
this.xrLabel8.StylePriority.UseFont = false;
this.xrLabel8.Text = "Summe unmittelbarer Betreuungsleistungen in Stunden";
//
// xrLabel7
//
this.xrLabel7.Borders = DevExpress.XtraPrinting.BorderSide.Top;
this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(413.9999F, 108F);
this.xrLabel7.Name = "xrLabel7";
this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel7.SizeF = new System.Drawing.SizeF(188.9999F, 17.99997F);
this.xrLabel7.StylePriority.UseBorders = false;
this.xrLabel7.StylePriority.UseFont = false;
this.xrLabel7.Text = "Unterschrift Klient/in";
//
// xrLabel6
//
this.xrLabel6.Borders = DevExpress.XtraPrinting.BorderSide.Top;
this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(152.9999F, 108F);
this.xrLabel6.Name = "xrLabel6";
this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel6.SizeF = new System.Drawing.SizeF(198.0001F, 17.99997F);
this.xrLabel6.StylePriority.UseBorders = false;
this.xrLabel6.StylePriority.UseFont = false;
this.xrLabel6.Text = "Unterschrift Mitarbeiter/in";
//
// xrLabel5
//
this.xrLabel5.Borders = DevExpress.XtraPrinting.BorderSide.Top;
this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 108F);
this.xrLabel5.Name = "xrLabel5";
this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel5.SizeF = new System.Drawing.SizeF(107.9999F, 17.99997F);
this.xrLabel5.StylePriority.UseBorders = false;
this.xrLabel5.StylePriority.UseFont = false;
this.xrLabel5.Text = "Datum";
//
// xrLabel4
//
this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "TotalFLMBillable", "{0:0.##}")});
this.xrLabel4.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(539.9999F, 0F);
this.xrLabel4.Name = "xrLabel4";
this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
this.xrLabel4.SizeF = new System.Drawing.SizeF(135.0001F, 18.00003F);
this.xrLabel4.StylePriority.UseFont = false;
this.xrLabel4.StylePriority.UsePadding = false;
this.xrLabel4.StylePriority.UseTextAlignment = false;
this.xrLabel4.Text = "xrLabel4";
this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
//
// xrLabel3
//
this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
this.xrLabel3.Name = "xrLabel3";
this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel3.SizeF = new System.Drawing.SizeF(539.9999F, 18.00003F);
this.xrLabel3.StylePriority.UseFont = false;
this.xrLabel3.Text = "Summe unmittelbarer Betreuungsleistungen in Minuten";
//
// bindingSource1
//
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.ServicesOverviewRO);
//
// formattingRuleStartDate
//
this.formattingRuleStartDate.Condition = "[StartDate2] < [StartDate]";
this.formattingRuleStartDate.DataMember = "ServicesDouble";
this.formattingRuleStartDate.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
this.formattingRuleStartDate.Name = "formattingRuleStartDate";
//
// ReportHeader
//
this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrPictureBox1,
this.xrLabel2,
this.xrLabel29,
this.xrLabel26,
this.xrLabel25,
this.xrLabel24,
this.xrLabel23,
this.xrLabel21,
this.xrLabel9,
this.xrLabel20,
this.xrLabel19,
this.xrLabel18,
this.xrLabel15,
this.xrLabel14,
this.xrLabel13,
this.xrLabel12,
this.xrLabel1});
this.ReportHeader.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ReportHeader.HeightF = 340F;
this.ReportHeader.Name = "ReportHeader";
this.ReportHeader.StylePriority.UseFont = false;
//
// xrPictureBox1
//
this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(441.0001F, 0F);
this.xrPictureBox1.Name = "xrPictureBox1";
this.xrPictureBox1.SizeF = new System.Drawing.SizeF(233.9999F, 170F);
this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
//
// xrLabel2
//
this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 117F);
this.xrLabel2.Multiline = true;
this.xrLabel2.Name = "xrLabel2";
this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel2.SizeF = new System.Drawing.SizeF(288F, 40F);
this.xrLabel2.StylePriority.UseFont = false;
this.xrLabel2.Text = "Lisa Wöll GmbH\r\nMühlengraben 2, 50169 Kerpen";
//
// xrLabel29
//
this.xrLabel29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "MainAttendant")});
this.xrLabel29.LocationFloat = new DevExpress.Utils.PointFloat(297.0001F, 257F);
this.xrLabel29.Name = "xrLabel29";
this.xrLabel29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel29.SizeF = new System.Drawing.SizeF(377.9999F, 20F);
this.xrLabel29.StylePriority.UseBorders = false;
this.xrLabel29.StylePriority.UseFont = false;
//
// xrLabel26
//
this.xrLabel26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ApprovedFLSPerWeek", "{0:0.##}")});
this.xrLabel26.LocationFloat = new DevExpress.Utils.PointFloat(297.0001F, 237F);
this.xrLabel26.Name = "xrLabel26";
this.xrLabel26.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel26.SizeF = new System.Drawing.SizeF(377.9999F, 20F);
this.xrLabel26.StylePriority.UseBorders = false;
this.xrLabel26.StylePriority.UseFont = false;
this.xrLabel26.Text = "xrLabel26";
//
// xrLabel25
//
this.xrLabel25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ReferenceNumber")});
this.xrLabel25.LocationFloat = new DevExpress.Utils.PointFloat(297.0001F, 217F);
this.xrLabel25.Name = "xrLabel25";
this.xrLabel25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel25.SizeF = new System.Drawing.SizeF(377.9999F, 20F);
this.xrLabel25.StylePriority.UseBorders = false;
this.xrLabel25.StylePriority.UseFont = false;
//
// xrLabel24
//
this.xrLabel24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomerFirstName")});
this.xrLabel24.LocationFloat = new DevExpress.Utils.PointFloat(297.0001F, 197F);
this.xrLabel24.Name = "xrLabel24";
this.xrLabel24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel24.SizeF = new System.Drawing.SizeF(377.9999F, 20F);
this.xrLabel24.StylePriority.UseBorders = false;
this.xrLabel24.StylePriority.UseFont = false;
//
// xrLabel23
//
this.xrLabel23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomerLastName")});
this.xrLabel23.LocationFloat = new DevExpress.Utils.PointFloat(297.0001F, 177F);
this.xrLabel23.Name = "xrLabel23";
this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel23.SizeF = new System.Drawing.SizeF(377.9999F, 20F);
this.xrLabel23.StylePriority.UseBorders = false;
this.xrLabel23.StylePriority.UseFont = false;
//
// xrLabel21
//
this.xrLabel21.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Year")});
this.xrLabel21.LocationFloat = new DevExpress.Utils.PointFloat(377.9999F, 297F);
this.xrLabel21.Name = "xrLabel21";
this.xrLabel21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel21.SizeF = new System.Drawing.SizeF(116.9998F, 20F);
this.xrLabel21.StylePriority.UseBorders = false;
this.xrLabel21.StylePriority.UseFont = false;
//
// xrLabel9
//
this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Month")});
this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(72.00012F, 297F);
this.xrLabel9.Name = "xrLabel9";
this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel9.SizeF = new System.Drawing.SizeF(116.9998F, 20F);
this.xrLabel9.StylePriority.UseBorders = false;
this.xrLabel9.StylePriority.UseFont = false;
//
// xrLabel20
//
this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(297.0001F, 297F);
this.xrLabel20.Name = "xrLabel20";
this.xrLabel20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel20.SizeF = new System.Drawing.SizeF(72.00012F, 20F);
this.xrLabel20.StylePriority.UseFont = false;
this.xrLabel20.Text = "Jahr:";
//
// xrLabel19
//
this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(0F, 297F);
this.xrLabel19.Name = "xrLabel19";
this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel19.SizeF = new System.Drawing.SizeF(62.99998F, 20F);
this.xrLabel19.StylePriority.UseFont = false;
this.xrLabel19.Text = "Monat:";
//
// xrLabel18
//
this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(0F, 257F);
this.xrLabel18.Name = "xrLabel18";
this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel18.SizeF = new System.Drawing.SizeF(288F, 20F);
this.xrLabel18.StylePriority.UseFont = false;
this.xrLabel18.Text = "Verantwortliche Mitarbeiterin:";
//
// xrLabel15
//
this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(0F, 237F);
this.xrLabel15.Name = "xrLabel15";
this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel15.SizeF = new System.Drawing.SizeF(288F, 20F);
this.xrLabel15.StylePriority.UseFont = false;
this.xrLabel15.Text = "Bewilligte FLST wöchentlich:";
//
// xrLabel14
//
this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(0F, 217F);
this.xrLabel14.Name = "xrLabel14";
this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel14.SizeF = new System.Drawing.SizeF(288F, 20F);
this.xrLabel14.StylePriority.UseFont = false;
this.xrLabel14.Text = "Aktenzeichen:";
//
// xrLabel13
//
this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(0F, 197F);
this.xrLabel13.Name = "xrLabel13";
this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel13.SizeF = new System.Drawing.SizeF(288F, 20F);
this.xrLabel13.StylePriority.UseFont = false;
this.xrLabel13.Text = "Vorname Kunde/in:";
//
// xrLabel12
//
this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(0F, 177F);
this.xrLabel12.Name = "xrLabel12";
this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel12.SizeF = new System.Drawing.SizeF(288F, 20F);
this.xrLabel12.StylePriority.UseFont = false;
this.xrLabel12.Text = "Name Kunde/in:";
//
// xrLabel1
//
this.xrLabel1.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 18F);
this.xrLabel1.Multiline = true;
this.xrLabel1.Name = "xrLabel1";
this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel1.SizeF = new System.Drawing.SizeF(279.0001F, 45.00001F);
this.xrLabel1.StylePriority.UseFont = false;
this.xrLabel1.StylePriority.UseTextAlignment = false;
this.xrLabel1.Text = "Quittierungsbeleg über direkte Betreuungsleistungen";
this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// formattingRuleServiceDesc
//
this.formattingRuleServiceDesc.Condition = "[StartDate2] < [StartDate]";
this.formattingRuleServiceDesc.DataMember = "ServicesDouble";
this.formattingRuleServiceDesc.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
this.formattingRuleServiceDesc.Name = "formattingRuleServiceDesc";
//
// formattingRuleCostBearer
//
this.formattingRuleCostBearer.Condition = "[StartDate2] < [StartDate]";
this.formattingRuleCostBearer.DataMember = "ServicesDouble";
this.formattingRuleCostBearer.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
this.formattingRuleCostBearer.Name = "formattingRuleCostBearer";
//
// formattingRuleEmployeeName
//
this.formattingRuleEmployeeName.Condition = "[StartDate2] < [StartDate]";
this.formattingRuleEmployeeName.DataMember = "ServicesDouble";
this.formattingRuleEmployeeName.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
this.formattingRuleEmployeeName.Name = "formattingRuleEmployeeName";
//
// topMarginBand1
//
this.topMarginBand1.Font = new System.Drawing.Font("Times New Roman", 9.75F);
this.topMarginBand1.HeightF = 50F;
this.topMarginBand1.Name = "topMarginBand1";
this.topMarginBand1.StylePriority.UseFont = false;
//
// bottomMarginBand1
//
this.bottomMarginBand1.HeightF = 30F;
this.bottomMarginBand1.Name = "bottomMarginBand1";
//
// fieldAbrechenbareMinuten
//
this.fieldAbrechenbareMinuten.DataMember = "Services";
this.fieldAbrechenbareMinuten.Expression = "Iif([IsBillable], [Minutes], 0)";
this.fieldAbrechenbareMinuten.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
this.fieldAbrechenbareMinuten.Name = "fieldAbrechenbareMinuten";
//
// fieldFLSBillable
//
this.fieldFLSBillable.Expression = "[TotalFLMBillable] / 60";
this.fieldFLSBillable.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
this.fieldFLSBillable.Name = "fieldFLSBillable";
//
// QuittierungsbelegFLS
//
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
this.Detail,
this.DetailReport,
this.ReportHeader,
this.topMarginBand1,
this.bottomMarginBand1});
this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
this.fieldAbrechenbareMinuten,
this.fieldFLSBillable});
this.DataSource = this.bindingSource1;
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
this.formattingRuleStartDate,
this.formattingRuleServiceDesc,
this.formattingRuleCostBearer,
this.formattingRuleEmployeeName});
this.Margins = new System.Drawing.Printing.Margins(75, 75, 50, 30);
this.PageHeight = 1169;
this.PageWidth = 827;
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
this.SnapGridSize = 9F;
this.SnappingMode = DevExpress.XtraReports.UI.SnappingMode.SnapToGrid;
this.Version = "17.1";
((System.ComponentModel.ISupportInitialize)(this.xrTableServiceRecords1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
}
#endregion
private DevExpress.XtraReports.UI.DetailBand Detail;
private System.Windows.Forms.BindingSource bindingSource1;
private DevExpress.XtraReports.UI.DetailReportBand DetailReport;
private DevExpress.XtraReports.UI.DetailBand Detail1;
private DevExpress.XtraReports.UI.XRTable xrTable3;
private DevExpress.XtraReports.UI.XRTableRow xrTableRow6;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell14;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell16;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell17;
private DevExpress.XtraReports.UI.ReportHeaderBand ReportHeader;
private DevExpress.XtraReports.UI.XRLabel xrLabel1;
private DevExpress.XtraReports.UI.XRTable xrTableServiceRecords1;
private DevExpress.XtraReports.UI.XRTableRow xrTableRow2;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell3;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell4;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell9;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell12;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell13;
private DevExpress.XtraReports.UI.FormattingRule formattingRuleStartDate;
private DevExpress.XtraReports.UI.FormattingRule formattingRuleServiceDesc;
private DevExpress.XtraReports.UI.FormattingRule formattingRuleCostBearer;
private DevExpress.XtraReports.UI.FormattingRule formattingRuleEmployeeName;
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
private DevExpress.XtraReports.UI.XRLabel xrLabel12;
private DevExpress.XtraReports.UI.XRLabel xrLabel20;
private DevExpress.XtraReports.UI.XRLabel xrLabel19;
private DevExpress.XtraReports.UI.XRLabel xrLabel18;
private DevExpress.XtraReports.UI.XRLabel xrLabel15;
private DevExpress.XtraReports.UI.XRLabel xrLabel14;
private DevExpress.XtraReports.UI.XRLabel xrLabel13;
private DevExpress.XtraReports.UI.XRLabel xrLabel21;
private DevExpress.XtraReports.UI.XRLabel xrLabel9;
private DevExpress.XtraReports.UI.XRLabel xrLabel29;
private DevExpress.XtraReports.UI.XRLabel xrLabel26;
private DevExpress.XtraReports.UI.XRLabel xrLabel25;
private DevExpress.XtraReports.UI.XRLabel xrLabel24;
private DevExpress.XtraReports.UI.XRLabel xrLabel23;
private DevExpress.XtraReports.UI.CalculatedField fieldAbrechenbareMinuten;
private DevExpress.XtraReports.UI.XRLabel xrLabel4;
private DevExpress.XtraReports.UI.XRLabel xrLabel3;
private DevExpress.XtraReports.UI.XRLabel xrLabel6;
private DevExpress.XtraReports.UI.XRLabel xrLabel5;
private DevExpress.XtraReports.UI.XRLabel xrLabel7;
private DevExpress.XtraReports.UI.XRLabel xrLabel2;
private DevExpress.XtraReports.UI.XRPictureBox xrPictureBox1;
private DevExpress.XtraReports.UI.XRLabel xrLabel10;
private DevExpress.XtraReports.UI.XRLabel xrLabel8;
private DevExpress.XtraReports.UI.CalculatedField fieldFLSBillable;
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1;
}
}

View File

@@ -1,567 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="bindingSource1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>21, 17</value>
</metadata>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="xrPictureBox1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
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
AABJRU5ErkJggg==
</value>
</data>
</root>

View File

@@ -103,6 +103,7 @@
<Compile Include="ServicesOverviewReport.Designer.cs">
<DependentUpon>ServicesOverviewReport.cs</DependentUpon>
</Compile>
<Compile Include="Service\CustomVacationService.cs" />
<Compile Include="Teamstundenkonto.cs">
<SubType>Component</SubType>
</Compile>

View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using BeWo.Service.Core;
using BeWo.Service.Plugins;
using BS.Shared.Core;
using BS.Shared.DataContracts;
using Utils = BS.Shared.Core.Utils;
namespace CaritasGuenzburgNeuUlm.Service
{
public class CustomVacationService : VacationService
{
public override string Bundesland { get => "Bayern"; }
public override List<FeiertagDC> GetFeiertage(int year, String bundesland)
{
List<FeiertagDC> list = base.GetFeiertage(year, bundesland);
list.Add(new FeiertagDC { Datum = new DateTime(year, 12, 31), Name = "Silvester" });
return list;
}
}
}

View File

@@ -17,10 +17,8 @@ namespace DomizielAnsbach.Invoicing
{
public static IList<InvoiceItem> BerechneRechnungsPositionenFuerStationaer(DateTimeSpan invoicePeriod, SupportConceptApprovalPeriod scap)
{
IList<InvoiceItem> ergebnis = new List<InvoiceItem>();
var customer = scap.CostBearer2SupportConcept.SupportConcept.Customer;
DateTime start;
DateTime ende;
if (scap.StartDate <= invoicePeriod.StartDate)
@@ -33,11 +31,9 @@ namespace DomizielAnsbach.Invoicing
ende = (DateTime)scap.EndDate.Value.AddDays(-1); //Auszugstag wird NICHT abgerechnet
var preise = DAOFactory.GenericDAO.GetAllActive<Preis>();
var tagessatz = GetPreis(preise, "Tagessatz stationär", start);
var freihalte = GetPreis(preise, "Platzfreihaltegebühr", start);
while (start <= ende)
{
DateTime monatStart = start; //new DateTime(start.Year, start.Month, 1);
@@ -57,30 +53,30 @@ namespace DomizielAnsbach.Invoicing
DateTime? startAbw = at.Start;
DateTime? endAbw = at.End;
//18.04.2023: Frau Sachsenhauser sagt, jeder Tag Abwesenheit muss mit Platzfreihaltepauschale bezahlt werden
//if (at.Start.HasValue && at.End.HasValue && at.End.Value.Date.Subtract(at.Start.Value.Date).TotalDays > 0)
//{
// endAbw = at.End.Value.AddDays(-1);
//}
if (startAbw.HasValue && startAbw.Value < monatEnde && (!endAbw.HasValue || endAbw.Value >= monatStart))
if (at.Start.HasValue && at.End.HasValue && at.End.Value.Date.Subtract(at.Start.Value.Date).TotalDays > 2)
{
DateTime abwStart = at.Start.Value;
if (start > abwStart)
{
abwStart = start;
}
endAbw = at.End.Value.AddDays(-1);
DateTime abwEnd = monatEnde.AddDays(-1);
if (endAbw.HasValue && endAbw < monatEnde)
if (startAbw.HasValue && startAbw.Value < monatEnde && (!endAbw.HasValue || endAbw.Value >= monatStart)
&& !at.AbsenceReason.Description.Contains("ZV") && !at.AbsenceReason.Description.Contains("Urlaub stationär im Haus"))
{
abwEnd = endAbw.Value;
}
DateTime abwStart = at.Start.Value;
if (start > abwStart)
{
abwStart = start;
}
DateTime dt = abwStart;
while (dt <= abwEnd)
{
tageAbwesendImMonat++;
dt = dt.AddDays(1);
DateTime abwEnd = monatEnde.AddDays(-1);
if (endAbw.HasValue && endAbw < monatEnde)
{
abwEnd = endAbw.Value;
}
DateTime dt = abwStart;
while (dt <= abwEnd)
{
tageAbwesendImMonat++;
dt = dt.AddDays(1);
}
}
}
}
@@ -127,12 +123,10 @@ namespace DomizielAnsbach.Invoicing
private static decimal GetPreis(IList<Preis> allePreise, String name, DateTime datum)
{
var tagessatz = allePreise.Where(p => p.Name.Contains(name)).FirstOrDefault();
if (tagessatz != null)
{
var crlist = MapperFactory.CostRatePeriodDC_CostRatePeriod.MapToNewDCs(tagessatz.CostRatePeriods);
var cr = crlist.GetCostRatePeriodForDate(CostRatePeriodType.AmountOfMoney, datum);
if (cr != null && cr.CostRateValue.HasValue)
{
@@ -146,12 +140,12 @@ namespace DomizielAnsbach.Invoicing
private static string GetAbwesenheiten(Customer c, DateTime start, DateTime end)
{
StringBuilder sb = new StringBuilder();
if (c.AbsenceTimes != null)
{
foreach (var at in c.AbsenceTimes)
{
if ((!at.Start.HasValue || at.Start.Value <= end) && (!at.End.HasValue || at.End.Value >= start))
if ((!at.Start.HasValue || at.Start.Value <= end) && (!at.End.HasValue || at.End.Value >= start)
&& !at.AbsenceReason.Description.Contains("ZV") && !at.AbsenceReason.Description.Contains("Urlaub stationär im Haus"))
{
if (sb.Length > 0)
{

View File

@@ -19,8 +19,6 @@ namespace DomizielAnsbach.Invoicing
{
//private const decimal TAGESPAUSCHALE = 129.55m;
//private const decimal FREIHALTEGEBUEHR = 103.64m;
private DateTime? accountingPeriodStart = null;
private DateTime? accountingPeriodEnd = null;
@@ -95,10 +93,7 @@ namespace DomizielAnsbach.Invoicing
public override IList<InvoiceItem> CreateInvoiceItems(List<ServiceRecordDC> serviceRecordsInPeriod, DateTimeSpan invoicePeriod, SupportConceptApprovalPeriod scap,
Calculations calc)
{
return InvoiceHelper.BerechneRechnungsPositionenFuerStationaer(invoicePeriod, scap);
}
}
}
}

View File

@@ -85,8 +85,7 @@ namespace DomizielAnsbach.Invoicing
stundensatz = 0;
tagessatz = 0;
var reason = at.AbsenceReason.Description.Substring(5);
if (reason.Contains("Urlaub") || reason.Contains("Feiertag") || reason.Contains("Krank")
|| reason.Contains("entschuldigt") || reason.Contains("unentschuldigt"))
if (reason.Contains("Urlaub") || reason.Contains("Feiertag") || reason.Contains("Krank"))
{
var std = GetFeiertagsstunden(customer.Arbeitszeiten, customer, tag);
if (std > 0)
@@ -107,8 +106,7 @@ namespace DomizielAnsbach.Invoicing
uCount += 1;
}
else if ((reason.Contains("Krank") || reason.Contains("entschuldigt") || reason.Contains("unentschuldigt"))
&& (pausch.krank != 0 || pausch.krankMot))
else if (reason.Contains("Krank") && (pausch.krank != 0 || pausch.krankMot))
{
decimal kranktage = 0;
if (pausch.anzKrank != 0)

View File

@@ -100,7 +100,8 @@ namespace DomizielAnsbach
{
foreach (var at in c.AbsenceTimes)
{
if ((!at.Start.HasValue || at.Start.Value <= end) && (!at.End.HasValue || at.End.Value >= start))
if ((!at.Start.HasValue || at.Start.Value <= end) && (!at.End.HasValue || at.End.Value >= start)
&& !at.AbsenceReason.Description.Contains("ZV") && !at.AbsenceReason.Description.Contains("Urlaub stationär im Haus"))
{
if (sb.Length > 0)
{

View File

@@ -80,6 +80,10 @@ namespace DomizielAnsbach
var ro = new FinanceRO.SupportConceptFinanceRO();
ro.CustomerName = sc.CustomerName;
if (ro.CustomerName.Contains("Dauer"))
{
int tuao = 1;
}
ro.CostBearerName = sc.CostBearerName;
rowOrder += 1;
ro.RateFactor = rowOrder;
@@ -92,6 +96,11 @@ namespace DomizielAnsbach
ro.ApprovedHours = GetVertraglicheZeit(c, periodEnd, monthStart);
}
if (ro.ApprovedHours == 0 && sc.Costbearer2Supportconcept.EndDate < monthEnd)
{
break;
}
ro.Custom1 = String.Format("{0:dd.MM.yyyy}", monthStart);
if (periodEnd != DateTime.MinValue && periodEnd != monthEnd || monthStart != new DateTime(monthEnd.Year, monthEnd.Month, 1))
@@ -124,6 +133,11 @@ namespace DomizielAnsbach
{
monthStart = krankEnd.AddDays(1);
periodEnd = monthEnd;
if (monthStart == monthEnd.AddDays(1))
{
periodEnd = monthEnd.AddMonths(1);
m++;
}
}
else if ((periodEnd == DateTime.MinValue || periodEnd == monthEnd) && monthEnd == end)
{

View File

@@ -1,197 +0,0 @@
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Text.RegularExpressions;
using BeWo.Report;
using BeWo.Report.ReportObjects;
using BS.Shared.Core;
using DevExpress.XtraReports.UI;
namespace BeWo.Report.DefaultReports
{
public partial class Quittierungsbeleg : XtraReport, IBeWoReport<ServicesOverviewRO>
{
public Quittierungsbeleg()
{
InitializeComponent();
}
public void SetReportDataSource(ServicesOverviewRO pRO)
{
// Get calling method name
//StackTrace stackTrace = new StackTrace();
//Debug.WriteLine(stackTrace.GetFrame(1).GetMethod().Name);
bool hatGruppen = false;
//if (pRO == null)
// return;
if (pRO.Services != null)
{
List<ServicesOverviewRO.ServiceDetail> servicesBillable = new List<ServicesOverviewRO.ServiceDetail>();
foreach (var sd in pRO.Services)
{
if (sd.IsBillable)
{
ServicesOverviewRO.CreateSignatureString(sd);
if (sd.IsGroup)
{
//sd.Notice5 = String.Format("{0} Teilnehmer", sd.CustomerCount);
hatGruppen = true;
}
servicesBillable.Add(sd);
}
}
pRO.Services = servicesBillable;
}
if (String.IsNullOrWhiteSpace(pRO.AbsenceTimes))
{
lblHatAbwesenheiten.Text = "X";
}
if (!hatGruppen)
{
lblHatGruppen.Text = "X";
}
ErstelleAbwesenheitenTabelle(pRO);
if (pRO.Services.Count > 0)
{
if (pRO.Services[0].ServiceCategory.ToLower().Contains("assistenz"))
{
lblUeberschrift.Text = "Quittierungsbeleg für Assistenzleistungen";
lblTabellenspalte.Text = "AssL in";
}
}
bindingSource1.DataSource = pRO;
}
private void ErstelleAbwesenheitenTabelle(ServicesOverviewRO pRo)
{
if (pRo.Abwesenheiten != null)
{
int newRows = 0;
int index = 1;
foreach (var at in pRo.Abwesenheiten)
{
DevExpress.XtraReports.UI.XRTableRow row = null;
if (index < xrTableAbwesenheiten.Rows.Count)
{
row = xrTableAbwesenheiten.Rows[index];
}
else
{
row = xrTableAbwesenheiten.InsertRowBelow(xrTableAbwesenheiten.Rows[xrTableAbwesenheiten.Rows.Count - 1]);
newRows++;
}
row.Cells[0].Text = String.Format("{0:dd.MM.yyyy}", at.Start);
int? days = null;
if (at.End.HasValue)
{
row.Cells[1].Text = String.Format("{0:dd.MM.yyyy}", at.End);
days = (int)at.End.Value.Subtract(at.Start.Value).TotalDays + 1;
}
else
{
row.Cells[1].Text = "unbekannt";
}
row.Cells[2].Text = String.Format("{0:0}", days);
index++;
}
if (newRows > 0)
{
lblUnterschriftKlient.Top += newRows * 20;
lblUnterschriftMitarbeiter.Top += newRows * 20;
}
}
}
// TODO: Wie anzeigen? Alle?
private void EmployeeSignature_BeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e)
{
return;
if(sender is XRPictureBox pictureBox)
{
var base64String = pictureBox.Tag as string;
if(!string.IsNullOrWhiteSpace(base64String))
{
var base64Data = Regex.Match(base64String, @"data:image/(?<type>.+?),(?<data>.+)").Groups["data"].Value;
var binaryData = Convert.FromBase64String(base64Data);
var image = ByteArrayToImage(binaryData);
pictureBox.Image = image;
}
else
{
pictureBox.Image = null;
}
}
}
// TODO: Wie anzeigen? Alle?
// TODO: Visibile der Datumstextboxen auf true setzen!
private void CustomerSignature_BeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e)
{
return;
if(sender is XRPictureBox pictureBox)
{
var base64String = pictureBox.Tag as string;
if(!string.IsNullOrWhiteSpace(base64String))
{
var base64Data = Regex.Match(base64String, @"data:image/(?<type>.+?),(?<data>.+)").Groups["data"].Value;
var binaryData = Convert.FromBase64String(base64Data);
var image = ByteArrayToImage(binaryData);
pictureBox.Image = image;
}
else
{
pictureBox.Image = null;
}
}
}
private void picSignature_BeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e)
{
XRPictureBox xrBox = sender as XRPictureBox;
//var test = this.GetCurrent
string base64String = xrBox.Tag as string;
if (!String.IsNullOrWhiteSpace(base64String))
{
var base64Data = Regex.Match(base64String, @"data:image/(?<type>.+?),(?<data>.+)").Groups["data"].Value;
var binData = Convert.FromBase64String(base64Data);
Image img = ByteArrayToImage(binData);
xrBox.Image = Utils.CropImage(img);
}
else
{
xrBox.Image = null;
}
}
public Image ByteArrayToImage(byte[] byteArrayIn)
{
using(var memoryStream = new MemoryStream(byteArrayIn))
{
return Image.FromStream(memoryStream);
}
}
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,217 +0,0 @@
using System;
using System.Collections.Generic;
using BeWo.Data.Access;
using BeWo.Data.Entities;
using BeWo.Report;
using BeWo.Report.ReportObjects;
using BS.Shared.DataContracts;
namespace ProBeWoDueren
{
public partial class Spitzabrechnung : DevExpress.XtraReports.UI.XtraReport, IBeWoReport<SettlementRO>
{
public Spitzabrechnung()
{
InitializeComponent();
}
public void SetReportDataSource(SettlementRO pRO)
{
bool isDefaultSpitzabrechnung = false;
if (pRO.InvoiceItems != null && pRO.InvoiceItems.Count == 1)
{
var ii = pRO.InvoiceItems[0];
if ((ii.ItemDescription == "Spitzabrechung" || ii.ItemDescription == "Spitzabrechnung") && ii.GrossAmountTotal == null && ii.RateFactor == null)
{
isDefaultSpitzabrechnung = true;
}
}
if (!isDefaultSpitzabrechnung)
{
if (pRO.DifferentHourlyRateCount > 0 && pRO.HourlyRateNew.HasValue)
{
isDefaultSpitzabrechnung = true;
}
}
if (isDefaultSpitzabrechnung)
{
//UpdateAbrechnungsFelder(pRO);
pRO.InvoiceItems = CreateDefaultSpitzabrechnungInvoiceItems(pRO);
}
else
{
var id = GetCustomerId(pRO);
if (id == "LWLNEU")
{
pRO.RateFactorText = null;
pRO.RateFactorText2 = null;
if (pRO.InvoiceItems != null)
{
foreach (var ii in pRO.InvoiceItems)
{
ii.ItemDescription = String.Format("{0:dd.MM.yyyy} bis {1:dd.MM.yyyy}: {2:0.##} FLS x {3:c}",
ii.ItemPeriodStart, ii.ItemPeriodEnd, ii.UnitCount, ii.AmountPerUnit);
}
}
}
else
{
if (pRO.InvoiceItems != null)
{
foreach (var ii in pRO.InvoiceItems)
{
ii.ItemDescription = String.Format("{0:dd.MM.yyyy} bis {1:dd.MM.yyyy}: {2:0.##} FLS {3}x {4:c}",
ii.ItemPeriodStart, ii.ItemPeriodEnd,
ii.UnitCount, ii.RateFactor == 0 ? "" : " x " + pRO.RateFactorText2 + " ",
ii.AmountPerUnit);
}
}
}
}
// Wenn kein TerminationDate gesetzt ist, das dazugehörige Label entfernen
if (pRO.TerminationDate == null)
{
lblStammdaten.Text = lblStammdaten.Text.Remove(lblStammdaten.Text.Length - 32, 32);
}
this.bindingSource1.DataSource = pRO;
}
private String GetCustomerId(SettlementRO pRO)
{
var cb2sc = DAOFactory.GenericDAO.LoadByID<CostBearer2SupportConcept>(pRO.CostBearer2SupportConceptOid);
return cb2sc.CostBearer.ID;
}
private IList<InvoiceItemDC> CreateDefaultSpitzabrechnungInvoiceItems(SettlementRO pRO)
{
IList<InvoiceItemDC> itemList = new List<InvoiceItemDC>();
if (pRO.DifferentHourlyRateCount == 3)
{
itemList.Add(new InvoiceItemDC
{
ItemDescription = String.Format("{0:0.##} FLS x {1:c} x {2:0.00}",
pRO.GeleisteteFLSMitStundensatz3, pRO.HourlyRate3, pRO.RateFactor),
GrossAmountTotal = pRO.GeleisteteFLSMitStundensatz3 * pRO.RateFactor * pRO.HourlyRate3
});
itemList.Add(new InvoiceItemDC
{
ItemDescription = String.Format("{0:0.##} FLS x {1:c} x {2:0.00}",
pRO.GeleisteteFLSMitStundensatzAlt, pRO.HourlyRateOld, pRO.RateFactor),
GrossAmountTotal = pRO.GeleisteteFLSMitStundensatzAlt * pRO.RateFactor * pRO.HourlyRateOld
});
itemList.Add(new InvoiceItemDC
{
ItemDescription = String.Format("{0:0.##} FLS x {1:c} x {2:0.00}",
pRO.GeleisteteFLSMitStundensatzAktuell, pRO.HourlyRateNew, pRO.RateFactor),
GrossAmountTotal = pRO.GeleisteteFLSMitStundensatzAktuell * pRO.RateFactor * pRO.HourlyRateNew
});
}
else if (pRO.DifferentHourlyRateCount == 2)
{
itemList.Add(new InvoiceItemDC
{
ItemDescription = String.Format("{0:0.##} FLS x {1:c} x {2:0.00}",
pRO.GeleisteteFLSMitStundensatzAlt, pRO.HourlyRateOld, pRO.RateFactor),
GrossAmountTotal = pRO.GeleisteteFLSMitStundensatzAlt * (decimal)pRO.RateFactor * pRO.HourlyRateOld
});
itemList.Add(new InvoiceItemDC
{
ItemDescription = String.Format("{0:0.##} FLS x {1:c} x {2:0.00}",
pRO.GeleisteteFLSMitStundensatzAktuell, pRO.HourlyRateNew, pRO.RateFactor),
GrossAmountTotal = pRO.GeleisteteFLSMitStundensatzAktuell * pRO.RateFactor * pRO.HourlyRateNew
});
}
else
{
itemList.Add(new InvoiceItemDC
{
ItemDescription = String.Format("{0:0.##} FLS x {1:c} x {2:0.00}",
pRO.GeleisteteFLSMitStundensatzAktuell, pRO.HourlyRateNew, pRO.RateFactor),
GrossAmountTotal = pRO.GeleisteteFLSMitStundensatzAktuell * pRO.RateFactor * pRO.HourlyRateNew
});
}
return itemList;
}
private void UpdateAbrechnungsFelder(SettlementRO pRO)
{
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);
}
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);
}
else
{
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);
}
}
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -112,6 +112,11 @@ namespace KontaktUndKrisenhilfeReports.Neu
// pRO.RecordedFlsTotal = pRO.ApprovedFLSTotal;
//}
}
else
{
if (pRO.RateFactor != 0)
pRO.RecordedFlsTotal *= Convert.ToDecimal(pRO.RateFactor);
}
bindingSource1.DataSource = pRO;
}

View File

@@ -0,0 +1,979 @@
namespace LebenshilfeBadKreuznachWohnstaette
{
partial class AdditionalServiceBookingReport
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.Detail = new DevExpress.XtraReports.UI.DetailBand();
this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell65 = new DevExpress.XtraReports.UI.XRTableCell();
this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand();
this.xrPageInfo2 = new DevExpress.XtraReports.UI.XRPageInfo();
this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell38 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell39 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell40 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell41 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell42 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell43 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell44 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell45 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell46 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell47 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell48 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell49 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell50 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell51 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell52 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell53 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell54 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell55 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell56 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell57 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell58 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell59 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell60 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell61 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell62 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell63 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell64 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell66 = new DevExpress.XtraReports.UI.XRTableCell();
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).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;
//
// TopMargin
//
this.TopMargin.HeightF = 49F;
this.TopMargin.Name = "TopMargin";
this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// BottomMargin
//
this.BottomMargin.HeightF = 20F;
this.BottomMargin.Name = "BottomMargin";
this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// ReportHeader
//
this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrLabel2,
this.xrLabel1});
this.ReportHeader.HeightF = 79.00002F;
this.ReportHeader.Name = "ReportHeader";
//
// xrLabel2
//
this.xrLabel2.Font = new System.Drawing.Font("Arial", 10F);
this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 33.00001F);
this.xrLabel2.Name = "xrLabel2";
this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel2.SizeF = new System.Drawing.SizeF(1005.208F, 23F);
this.xrLabel2.StylePriority.UseFont = false;
this.xrLabel2.Text = "[Month] [Year]";
//
// xrLabel1
//
this.xrLabel1.Font = new System.Drawing.Font("Arial", 14F);
this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 10.00001F);
this.xrLabel1.Name = "xrLabel1";
this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel1.SizeF = new System.Drawing.SizeF(1005.208F, 23F);
this.xrLabel1.StylePriority.UseFont = false;
this.xrLabel1.Text = "[AdditionalService] [AdditionalServiceRegion]";
//
// PageHeader
//
this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrTable1});
this.PageHeader.HeightF = 20.9665F;
this.PageHeader.Name = "PageHeader";
//
// xrTable1
//
this.xrTable1.BackColor = System.Drawing.Color.LightSteelBlue;
this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
| DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
this.xrTable1.Font = new System.Drawing.Font("Arial", 7F, System.Drawing.FontStyle.Bold);
this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
this.xrTable1.Name = "xrTable1";
this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
this.xrTableRow1});
this.xrTable1.SizeF = new System.Drawing.SizeF(1117.15F, 20.9665F);
this.xrTable1.StylePriority.UseBackColor = false;
this.xrTable1.StylePriority.UseBorders = false;
this.xrTable1.StylePriority.UseFont = false;
this.xrTable1.StylePriority.UseTextAlignment = false;
this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
//
// xrTableRow1
//
this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell1,
this.xrTableCell2,
this.xrTableCell3,
this.xrTableCell4,
this.xrTableCell5,
this.xrTableCell6,
this.xrTableCell7,
this.xrTableCell8,
this.xrTableCell9,
this.xrTableCell10,
this.xrTableCell11,
this.xrTableCell12,
this.xrTableCell13,
this.xrTableCell14,
this.xrTableCell15,
this.xrTableCell16,
this.xrTableCell17,
this.xrTableCell18,
this.xrTableCell19,
this.xrTableCell20,
this.xrTableCell21,
this.xrTableCell22,
this.xrTableCell23,
this.xrTableCell24,
this.xrTableCell25,
this.xrTableCell26,
this.xrTableCell27,
this.xrTableCell28,
this.xrTableCell29,
this.xrTableCell30,
this.xrTableCell31,
this.xrTableCell32,
this.xrTableCell65});
this.xrTableRow1.Name = "xrTableRow1";
this.xrTableRow1.Weight = 1D;
//
// xrTableCell1
//
this.xrTableCell1.BackColor = System.Drawing.Color.LightSteelBlue;
this.xrTableCell1.Name = "xrTableCell1";
this.xrTableCell1.StylePriority.UseBackColor = false;
this.xrTableCell1.StylePriority.UseTextAlignment = false;
this.xrTableCell1.Text = "Klient";
this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
this.xrTableCell1.Weight = 0.11467955556899898D;
//
// xrTableCell2
//
this.xrTableCell2.Name = "xrTableCell2";
this.xrTableCell2.StylePriority.UseTextAlignment = false;
this.xrTableCell2.Text = "1.";
this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
this.xrTableCell2.Weight = 0.021892359698853128D;
//
// xrTableCell3
//
this.xrTableCell3.Name = "xrTableCell3";
this.xrTableCell3.Text = "2.";
this.xrTableCell3.Weight = 0.021892358306974478D;
//
// xrTableCell4
//
this.xrTableCell4.Name = "xrTableCell4";
this.xrTableCell4.Text = "3.";
this.xrTableCell4.Weight = 0.021892360098188249D;
//
// xrTableCell5
//
this.xrTableCell5.Name = "xrTableCell5";
this.xrTableCell5.Text = "4.";
this.xrTableCell5.Weight = 0.021892358706309969D;
//
// xrTableCell6
//
this.xrTableCell6.Name = "xrTableCell6";
this.xrTableCell6.Text = "5.";
this.xrTableCell6.Weight = 0.021892361762711116D;
//
// xrTableCell7
//
this.xrTableCell7.Name = "xrTableCell7";
this.xrTableCell7.Text = "6.";
this.xrTableCell7.Weight = 0.021892353928541525D;
//
// xrTableCell8
//
this.xrTableCell8.Name = "xrTableCell8";
this.xrTableCell8.Text = "7.";
this.xrTableCell8.Weight = 0.021892358859000233D;
//
// xrTableCell9
//
this.xrTableCell9.Name = "xrTableCell9";
this.xrTableCell9.Text = "8.";
this.xrTableCell9.Weight = 0.021892354364836414D;
//
// xrTableCell10
//
this.xrTableCell10.Name = "xrTableCell10";
this.xrTableCell10.Text = "9.";
this.xrTableCell10.Weight = 0.021892357685269148D;
//
// xrTableCell11
//
this.xrTableCell11.Name = "xrTableCell11";
this.xrTableCell11.Text = "10.";
this.xrTableCell11.Weight = 0.021892357953606834D;
//
// xrTableCell12
//
this.xrTableCell12.Name = "xrTableCell12";
this.xrTableCell12.Text = "11.";
this.xrTableCell12.Weight = 0.021892358087775565D;
//
// xrTableCell13
//
this.xrTableCell13.Name = "xrTableCell13";
this.xrTableCell13.Text = "12.";
this.xrTableCell13.Weight = 0.021892358154860028D;
//
// xrTableCell14
//
this.xrTableCell14.Name = "xrTableCell14";
this.xrTableCell14.Text = "13.";
this.xrTableCell14.Weight = 0.021892363755916897D;
//
// xrTableCell15
//
this.xrTableCell15.Name = "xrTableCell15";
this.xrTableCell15.Text = "14.";
this.xrTableCell15.Weight = 0.021892355421416057D;
//
// xrTableCell16
//
this.xrTableCell16.Name = "xrTableCell16";
this.xrTableCell16.Text = "15.";
this.xrTableCell16.Weight = 0.021892356821680295D;
//
// xrTableCell17
//
this.xrTableCell17.Name = "xrTableCell17";
this.xrTableCell17.Text = "16.";
this.xrTableCell17.Weight = 0.021892357521812386D;
//
// xrTableCell18
//
this.xrTableCell18.Name = "xrTableCell18";
this.xrTableCell18.Text = "17.";
this.xrTableCell18.Weight = 0.021892363439393006D;
//
// xrTableCell19
//
this.xrTableCell19.Name = "xrTableCell19";
this.xrTableCell19.Text = "18.";
this.xrTableCell19.Weight = 0.021892360830668742D;
//
// xrTableCell20
//
this.xrTableCell20.Name = "xrTableCell20";
this.xrTableCell20.Text = "19.";
this.xrTableCell20.Weight = 0.021892353958792007D;
//
// xrTableCell21
//
this.xrTableCell21.Name = "xrTableCell21";
this.xrTableCell21.Text = "20.";
this.xrTableCell21.Weight = 0.021892356090368242D;
//
// xrTableCell22
//
this.xrTableCell22.Name = "xrTableCell22";
this.xrTableCell22.Text = "21.";
this.xrTableCell22.Weight = 0.021892354372399059D;
//
// xrTableCell23
//
this.xrTableCell23.Name = "xrTableCell23";
this.xrTableCell23.Text = "22.";
this.xrTableCell23.Weight = 0.021892359080929041D;
//
// xrTableCell24
//
this.xrTableCell24.Name = "xrTableCell24";
this.xrTableCell24.Text = "23.";
this.xrTableCell24.Weight = 0.02189235865143678D;
//
// xrTableCell25
//
this.xrTableCell25.Name = "xrTableCell25";
this.xrTableCell25.Text = "24.";
this.xrTableCell25.Weight = 0.0218923584366906D;
//
// xrTableCell26
//
this.xrTableCell26.Name = "xrTableCell26";
this.xrTableCell26.Text = "25.";
this.xrTableCell26.Weight = 0.021892356937438892D;
//
// xrTableCell27
//
this.xrTableCell27.Name = "xrTableCell27";
this.xrTableCell27.Text = "26.";
this.xrTableCell27.Weight = 0.021892358971570304D;
//
// xrTableCell28
//
this.xrTableCell28.Name = "xrTableCell28";
this.xrTableCell28.Text = "27.";
this.xrTableCell28.Weight = 0.021892358596757394D;
//
// xrTableCell29
//
this.xrTableCell29.Name = "xrTableCell29";
this.xrTableCell29.Text = "28.";
this.xrTableCell29.Weight = 0.021892355625593621D;
//
// xrTableCell30
//
this.xrTableCell30.Name = "xrTableCell30";
this.xrTableCell30.Text = "29.";
this.xrTableCell30.Weight = 0.021892359707526336D;
//
// xrTableCell31
//
this.xrTableCell31.Name = "xrTableCell31";
this.xrTableCell31.Text = "30.";
this.xrTableCell31.Weight = 0.021892358964735403D;
//
// xrTableCell32
//
this.xrTableCell32.Name = "xrTableCell32";
this.xrTableCell32.Text = "31.";
this.xrTableCell32.Weight = 0.021892381234793805D;
//
// xrTableCell65
//
this.xrTableCell65.Name = "xrTableCell65";
this.xrTableCell65.Text = "Anw";
this.xrTableCell65.Weight = 0.021892381234793805D;
//
// PageFooter
//
this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrPageInfo2});
this.PageFooter.HeightF = 40.83331F;
this.PageFooter.Name = "PageFooter";
//
// xrPageInfo2
//
this.xrPageInfo2.Font = new System.Drawing.Font("Arial", 8F);
this.xrPageInfo2.Format = "Seite {0} von {1}";
this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(620.15F, 22.83331F);
this.xrPageInfo2.Name = "xrPageInfo2";
this.xrPageInfo2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 2, 0, 0, 100F);
this.xrPageInfo2.SizeF = new System.Drawing.SizeF(497F, 18F);
this.xrPageInfo2.StylePriority.UseFont = false;
this.xrPageInfo2.StylePriority.UsePadding = false;
this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
//
// DetailReport
//
this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
this.Detail1});
this.DetailReport.DataMember = "Rows";
this.DetailReport.DataSource = this.bindingSource1;
this.DetailReport.Level = 0;
this.DetailReport.Name = "DetailReport";
//
// Detail1
//
this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrTable2});
this.Detail1.HeightF = 20.9665F;
this.Detail1.Name = "Detail1";
//
// xrTable2
//
this.xrTable2.BackColor = System.Drawing.Color.Transparent;
this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
this.xrTable2.Font = new System.Drawing.Font("Arial", 7F, System.Drawing.FontStyle.Bold);
this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(3.973643E-05F, 0F);
this.xrTable2.Name = "xrTable2";
this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
this.xrTableRow2});
this.xrTable2.SizeF = new System.Drawing.SizeF(1117.15F, 20.9665F);
this.xrTable2.StylePriority.UseBackColor = false;
this.xrTable2.StylePriority.UseBorders = false;
this.xrTable2.StylePriority.UseFont = false;
this.xrTable2.StylePriority.UseTextAlignment = false;
this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
//
// xrTableRow2
//
this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell33,
this.xrTableCell34,
this.xrTableCell35,
this.xrTableCell36,
this.xrTableCell37,
this.xrTableCell38,
this.xrTableCell39,
this.xrTableCell40,
this.xrTableCell41,
this.xrTableCell42,
this.xrTableCell43,
this.xrTableCell44,
this.xrTableCell45,
this.xrTableCell46,
this.xrTableCell47,
this.xrTableCell48,
this.xrTableCell49,
this.xrTableCell50,
this.xrTableCell51,
this.xrTableCell52,
this.xrTableCell53,
this.xrTableCell54,
this.xrTableCell55,
this.xrTableCell56,
this.xrTableCell57,
this.xrTableCell58,
this.xrTableCell59,
this.xrTableCell60,
this.xrTableCell61,
this.xrTableCell62,
this.xrTableCell63,
this.xrTableCell64,
this.xrTableCell66});
this.xrTableRow2.Name = "xrTableRow2";
this.xrTableRow2.Weight = 1D;
//
// xrTableCell33
//
this.xrTableCell33.BackColor = System.Drawing.Color.Transparent;
this.xrTableCell33.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.Customer")});
this.xrTableCell33.Font = new System.Drawing.Font("Arial", 10F);
this.xrTableCell33.Name = "xrTableCell33";
this.xrTableCell33.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
this.xrTableCell33.StylePriority.UseBackColor = false;
this.xrTableCell33.StylePriority.UseFont = false;
this.xrTableCell33.StylePriority.UsePadding = false;
this.xrTableCell33.StylePriority.UseTextAlignment = false;
this.xrTableCell33.Text = "xrTableCell33";
this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
this.xrTableCell33.Weight = 0.11467955556899898D;
//
// xrTableCell34
//
this.xrTableCell34.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay1")});
this.xrTableCell34.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell34.Name = "xrTableCell34";
this.xrTableCell34.StylePriority.UseFont = false;
this.xrTableCell34.StylePriority.UseTextAlignment = false;
this.xrTableCell34.Text = "xrTableCell34";
this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
this.xrTableCell34.Weight = 0.021892359698853128D;
//
// xrTableCell35
//
this.xrTableCell35.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay2")});
this.xrTableCell35.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell35.Name = "xrTableCell35";
this.xrTableCell35.StylePriority.UseFont = false;
this.xrTableCell35.Text = "xrTableCell35";
this.xrTableCell35.Weight = 0.021892358306974478D;
//
// xrTableCell36
//
this.xrTableCell36.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay3")});
this.xrTableCell36.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell36.Name = "xrTableCell36";
this.xrTableCell36.StylePriority.UseFont = false;
this.xrTableCell36.Text = "xrTableCell36";
this.xrTableCell36.Weight = 0.021892360098188249D;
//
// xrTableCell37
//
this.xrTableCell37.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay4")});
this.xrTableCell37.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell37.Name = "xrTableCell37";
this.xrTableCell37.StylePriority.UseFont = false;
this.xrTableCell37.Text = "xrTableCell37";
this.xrTableCell37.Weight = 0.021892358706309969D;
//
// xrTableCell38
//
this.xrTableCell38.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay5")});
this.xrTableCell38.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell38.Name = "xrTableCell38";
this.xrTableCell38.StylePriority.UseFont = false;
this.xrTableCell38.Text = "xrTableCell38";
this.xrTableCell38.Weight = 0.021892361762711116D;
//
// xrTableCell39
//
this.xrTableCell39.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay6")});
this.xrTableCell39.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell39.Name = "xrTableCell39";
this.xrTableCell39.StylePriority.UseFont = false;
this.xrTableCell39.Text = "xrTableCell39";
this.xrTableCell39.Weight = 0.021892353928541525D;
//
// xrTableCell40
//
this.xrTableCell40.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay7")});
this.xrTableCell40.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell40.Name = "xrTableCell40";
this.xrTableCell40.StylePriority.UseFont = false;
this.xrTableCell40.Text = "xrTableCell40";
this.xrTableCell40.Weight = 0.021892358859000233D;
//
// xrTableCell41
//
this.xrTableCell41.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay8")});
this.xrTableCell41.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell41.Name = "xrTableCell41";
this.xrTableCell41.StylePriority.UseFont = false;
this.xrTableCell41.Text = "xrTableCell41";
this.xrTableCell41.Weight = 0.021892354364836414D;
//
// xrTableCell42
//
this.xrTableCell42.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay9")});
this.xrTableCell42.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell42.Name = "xrTableCell42";
this.xrTableCell42.StylePriority.UseFont = false;
this.xrTableCell42.Text = "xrTableCell42";
this.xrTableCell42.Weight = 0.021892357685269148D;
//
// xrTableCell43
//
this.xrTableCell43.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay10")});
this.xrTableCell43.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell43.Name = "xrTableCell43";
this.xrTableCell43.StylePriority.UseFont = false;
this.xrTableCell43.Text = "xrTableCell43";
this.xrTableCell43.Weight = 0.021892357953606834D;
//
// xrTableCell44
//
this.xrTableCell44.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay11")});
this.xrTableCell44.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell44.Name = "xrTableCell44";
this.xrTableCell44.StylePriority.UseFont = false;
this.xrTableCell44.Text = "xrTableCell44";
this.xrTableCell44.Weight = 0.021892358087775565D;
//
// xrTableCell45
//
this.xrTableCell45.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay12")});
this.xrTableCell45.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell45.Name = "xrTableCell45";
this.xrTableCell45.StylePriority.UseFont = false;
this.xrTableCell45.Text = "xrTableCell45";
this.xrTableCell45.Weight = 0.021892358154860028D;
//
// xrTableCell46
//
this.xrTableCell46.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay13")});
this.xrTableCell46.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell46.Name = "xrTableCell46";
this.xrTableCell46.StylePriority.UseFont = false;
this.xrTableCell46.Text = "xrTableCell46";
this.xrTableCell46.Weight = 0.021892363755916897D;
//
// xrTableCell47
//
this.xrTableCell47.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay14")});
this.xrTableCell47.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell47.Name = "xrTableCell47";
this.xrTableCell47.StylePriority.UseFont = false;
this.xrTableCell47.Text = "xrTableCell47";
this.xrTableCell47.Weight = 0.021892355421416057D;
//
// xrTableCell48
//
this.xrTableCell48.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay15")});
this.xrTableCell48.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell48.Name = "xrTableCell48";
this.xrTableCell48.StylePriority.UseFont = false;
this.xrTableCell48.Text = "xrTableCell48";
this.xrTableCell48.Weight = 0.021892356821680295D;
//
// xrTableCell49
//
this.xrTableCell49.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay16")});
this.xrTableCell49.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell49.Name = "xrTableCell49";
this.xrTableCell49.StylePriority.UseFont = false;
this.xrTableCell49.Text = "xrTableCell49";
this.xrTableCell49.Weight = 0.021892357521812386D;
//
// xrTableCell50
//
this.xrTableCell50.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay17")});
this.xrTableCell50.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell50.Name = "xrTableCell50";
this.xrTableCell50.StylePriority.UseFont = false;
this.xrTableCell50.Text = "xrTableCell50";
this.xrTableCell50.Weight = 0.021892363439393006D;
//
// xrTableCell51
//
this.xrTableCell51.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay18")});
this.xrTableCell51.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell51.Name = "xrTableCell51";
this.xrTableCell51.StylePriority.UseFont = false;
this.xrTableCell51.Text = "xrTableCell51";
this.xrTableCell51.Weight = 0.021892360830668742D;
//
// xrTableCell52
//
this.xrTableCell52.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay19")});
this.xrTableCell52.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell52.Name = "xrTableCell52";
this.xrTableCell52.StylePriority.UseFont = false;
this.xrTableCell52.Text = "xrTableCell52";
this.xrTableCell52.Weight = 0.021892353958792007D;
//
// xrTableCell53
//
this.xrTableCell53.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay20")});
this.xrTableCell53.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell53.Name = "xrTableCell53";
this.xrTableCell53.StylePriority.UseFont = false;
this.xrTableCell53.Text = "xrTableCell53";
this.xrTableCell53.Weight = 0.021892356090368242D;
//
// xrTableCell54
//
this.xrTableCell54.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay21")});
this.xrTableCell54.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell54.Name = "xrTableCell54";
this.xrTableCell54.StylePriority.UseFont = false;
this.xrTableCell54.Text = "xrTableCell54";
this.xrTableCell54.Weight = 0.021892354372399059D;
//
// xrTableCell55
//
this.xrTableCell55.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay22")});
this.xrTableCell55.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell55.Name = "xrTableCell55";
this.xrTableCell55.StylePriority.UseFont = false;
this.xrTableCell55.Text = "xrTableCell55";
this.xrTableCell55.Weight = 0.021892359080929041D;
//
// xrTableCell56
//
this.xrTableCell56.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay23")});
this.xrTableCell56.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell56.Name = "xrTableCell56";
this.xrTableCell56.StylePriority.UseFont = false;
this.xrTableCell56.Text = "xrTableCell56";
this.xrTableCell56.Weight = 0.02189235865143678D;
//
// xrTableCell57
//
this.xrTableCell57.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay24")});
this.xrTableCell57.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell57.Name = "xrTableCell57";
this.xrTableCell57.StylePriority.UseFont = false;
this.xrTableCell57.Text = "xrTableCell57";
this.xrTableCell57.Weight = 0.0218923584366906D;
//
// xrTableCell58
//
this.xrTableCell58.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay25")});
this.xrTableCell58.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell58.Name = "xrTableCell58";
this.xrTableCell58.StylePriority.UseFont = false;
this.xrTableCell58.Text = "xrTableCell58";
this.xrTableCell58.Weight = 0.021892356937438892D;
//
// xrTableCell59
//
this.xrTableCell59.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay26")});
this.xrTableCell59.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell59.Name = "xrTableCell59";
this.xrTableCell59.StylePriority.UseFont = false;
this.xrTableCell59.Text = "xrTableCell59";
this.xrTableCell59.Weight = 0.021892358971570304D;
//
// xrTableCell60
//
this.xrTableCell60.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay27")});
this.xrTableCell60.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell60.Name = "xrTableCell60";
this.xrTableCell60.StylePriority.UseFont = false;
this.xrTableCell60.Text = "xrTableCell60";
this.xrTableCell60.Weight = 0.021892358596757394D;
//
// xrTableCell61
//
this.xrTableCell61.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay28")});
this.xrTableCell61.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell61.Name = "xrTableCell61";
this.xrTableCell61.StylePriority.UseFont = false;
this.xrTableCell61.Text = "xrTableCell61";
this.xrTableCell61.Weight = 0.021892355625593621D;
//
// xrTableCell62
//
this.xrTableCell62.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay29")});
this.xrTableCell62.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell62.Name = "xrTableCell62";
this.xrTableCell62.StylePriority.UseFont = false;
this.xrTableCell62.Text = "xrTableCell62";
this.xrTableCell62.Weight = 0.021892359707526336D;
//
// xrTableCell63
//
this.xrTableCell63.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay30")});
this.xrTableCell63.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell63.Name = "xrTableCell63";
this.xrTableCell63.StylePriority.UseFont = false;
this.xrTableCell63.Text = "xrTableCell63";
this.xrTableCell63.Weight = 0.021892358964735403D;
//
// xrTableCell64
//
this.xrTableCell64.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceOnDay31")});
this.xrTableCell64.Font = new System.Drawing.Font("Wingdings 2", 12F);
this.xrTableCell64.Name = "xrTableCell64";
this.xrTableCell64.StylePriority.UseFont = false;
this.xrTableCell64.Text = "xrTableCell64";
this.xrTableCell64.Weight = 0.021892381234793805D;
//
// xrTableCell66
//
this.xrTableCell66.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rows.AttendanceMonthCount", "{0:0}")});
this.xrTableCell66.Font = new System.Drawing.Font("Arial", 10F);
this.xrTableCell66.Name = "xrTableCell66";
this.xrTableCell66.StylePriority.UseFont = false;
this.xrTableCell66.Text = "xrTableCell66";
this.xrTableCell66.Weight = 0.021892381234793805D;
//
// bindingSource1
//
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.AdditionalServiceBookingRO);
//
// AdditionalServiceBookingReport
//
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
this.Detail,
this.TopMargin,
this.BottomMargin,
this.ReportHeader,
this.PageHeader,
this.PageFooter,
this.DetailReport});
this.DataSource = this.bindingSource1;
this.Font = new System.Drawing.Font("Arial", 9.75F);
this.Landscape = true;
this.Margins = new System.Drawing.Printing.Margins(30, 20, 49, 20);
this.PageHeight = 827;
this.PageWidth = 1169;
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
this.Version = "17.1";
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
}
#endregion
private DevExpress.XtraReports.UI.DetailBand Detail;
private DevExpress.XtraReports.UI.TopMarginBand TopMargin;
private DevExpress.XtraReports.UI.BottomMarginBand BottomMargin;
private DevExpress.XtraReports.UI.ReportHeaderBand ReportHeader;
private DevExpress.XtraReports.UI.PageHeaderBand PageHeader;
private DevExpress.XtraReports.UI.PageFooterBand PageFooter;
private DevExpress.XtraReports.UI.DetailReportBand DetailReport;
private DevExpress.XtraReports.UI.DetailBand Detail1;
private System.Windows.Forms.BindingSource bindingSource1;
private DevExpress.XtraReports.UI.XRLabel xrLabel1;
private DevExpress.XtraReports.UI.XRLabel xrLabel2;
private DevExpress.XtraReports.UI.XRTable xrTable1;
private DevExpress.XtraReports.UI.XRTableRow xrTableRow1;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell1;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell2;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell3;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell4;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell5;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell6;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell7;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell8;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell9;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell10;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell11;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell12;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell13;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell14;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell15;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell16;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell17;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell18;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell19;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell20;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell21;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell22;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell23;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell24;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell25;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell26;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell27;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell28;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell29;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell30;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell31;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell32;
private DevExpress.XtraReports.UI.XRTable xrTable2;
private DevExpress.XtraReports.UI.XRTableRow xrTableRow2;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell33;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell34;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell35;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell36;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell37;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell38;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell39;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell40;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell41;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell42;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell43;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell44;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell45;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell46;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell47;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell48;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell49;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell50;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell51;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell52;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell53;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell54;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell55;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell56;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell57;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell58;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell59;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell60;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell61;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell62;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell63;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell64;
private DevExpress.XtraReports.UI.XRPageInfo xrPageInfo2;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell65;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell66;
}
}

View File

@@ -0,0 +1,32 @@
using System;
using BS.Shared;
using BeWo.Report.ReportObjects;
using BeWo.Report;
namespace LebenshilfeBadKreuznachWohnstaette
{
public partial class AdditionalServiceBookingReport : DevExpress.XtraReports.UI.XtraReport, IBeWoReport<AdditionalServiceBookingRO>
{
public AdditionalServiceBookingReport()
{
InitializeComponent();
}
public void SetReportDataSource(AdditionalServiceBookingRO pRO)
{
bindingSource1.DataSource = pRO;
Monat monat;
Enum.TryParse(pRO.Month, out monat);
var monatInt = (int) monat;
var daysInMonth = DateTime.DaysInMonth(pRO.Year, monatInt);
xrTableCell30.Visible = daysInMonth >= 29;
xrTableCell31.Visible = daysInMonth >= 30;
xrTableCell32.Visible = daysInMonth == 31;
xrTableCell62.Visible = xrTableCell30.Visible;
xrTableCell63.Visible = xrTableCell31.Visible;
xrTableCell64.Visible = xrTableCell32.Visible;
}
}
}

View File

@@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="bindingSource1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
</root>

View File

@@ -0,0 +1,94 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{5BAD3D93-716D-4AF6-B115-F1E886AD4AF6}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>LebenshilfeBadKreuznachWohnstaette</RootNamespace>
<AssemblyName>9696466498_Reports</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\CustomerDlls\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\CustomerDlls\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="DevExpress.Data.v17.1, Version=17.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
<Reference Include="DevExpress.Printing.v17.1.Core, Version=17.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
<Reference Include="DevExpress.Utils.v17.1, Version=17.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
<Reference Include="DevExpress.XtraPrinting.v17.1, Version=17.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
<Reference Include="DevExpress.XtraReports.v17.1, Version=17.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="AdditionalServiceBookingReport.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="AdditionalServiceBookingReport.Designer.cs">
<DependentUpon>AdditionalServiceBookingReport.cs</DependentUpon>
</Compile>
<Compile Include="NotizenReport.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="NotizenReport.Designer.cs">
<DependentUpon>NotizenReport.cs</DependentUpon>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Data\Data.csproj">
<Project>{B0D73E3D-4AE7-4024-93A6-DB1F46D7CCEE}</Project>
<Name>Data</Name>
</ProjectReference>
<ProjectReference Include="..\..\Report\Report.csproj">
<Project>{40d8b312-ea64-49e3-a31a-5e57ed4d5654}</Project>
<Name>Report</Name>
</ProjectReference>
<ProjectReference Include="..\..\Service\Service.csproj">
<Project>{094331c3-ecee-4c89-bbfd-4c9ded89f0ef}</Project>
<Name>Service</Name>
</ProjectReference>
<ProjectReference Include="..\..\Shared\Shared.csproj">
<Project>{2f50b83d-a3f0-4ec4-979a-3f9b7e3d8ed4}</Project>
<Name>Shared</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="AdditionalServiceBookingReport.resx">
<DependentUpon>AdditionalServiceBookingReport.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="NotizenReport.resx">
<DependentUpon>NotizenReport.cs</DependentUpon>
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Include="Properties\licenses.licx" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

View File

@@ -0,0 +1,280 @@
namespace LebenshilfeBadKreuznachWohnstaette
{
partial class NotizenReport
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.Detail = new DevExpress.XtraReports.UI.DetailBand();
this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
this.lblHeader = new DevExpress.XtraReports.UI.XRLabel();
this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
this.Einzahlungstextsichtbarkeitsformatierungsregel = new DevExpress.XtraReports.UI.FormattingRule();
this.Auszahlungstextsichtbarkeitsformatierungsregel = new DevExpress.XtraReports.UI.FormattingRule();
this.lblName = new DevExpress.XtraReports.UI.XRLabel();
this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand();
this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).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;
//
// TopMargin
//
this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.lblName,
this.lblHeader});
this.TopMargin.HeightF = 68.75F;
this.TopMargin.Name = "TopMargin";
this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// lblHeader
//
this.lblHeader.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblHeader.LocationFloat = new DevExpress.Utils.PointFloat(0F, 10.00001F);
this.lblHeader.Name = "lblHeader";
this.lblHeader.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.lblHeader.SizeF = new System.Drawing.SizeF(617.0001F, 23.375F);
this.lblHeader.StylePriority.UseFont = false;
this.lblHeader.Text = "Vitalwerte - [Start!dd.MM.yyyy] bis [End!dd.MM.yyyy]";
//
// BottomMargin
//
this.BottomMargin.HeightF = 73.95834F;
this.BottomMargin.Name = "BottomMargin";
this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// DetailReport
//
this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
this.Detail1,
this.GroupHeader1,
this.GroupHeader2});
this.DetailReport.DataMember = "Eintraege";
this.DetailReport.DataSource = this.bindingSource1;
this.DetailReport.Level = 0;
this.DetailReport.Name = "DetailReport";
//
// Detail1
//
this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrLabel6,
this.xrLabel1,
this.xrLabel3});
this.Detail1.HeightF = 22.29163F;
this.Detail1.Name = "Detail1";
//
// xrLabel7
//
this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Eintraege.EintragKategorieDC.DisplayName")});
this.xrLabel7.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
this.xrLabel7.Name = "xrLabel7";
this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel7.SizeF = new System.Drawing.SizeF(378.375F, 33.74996F);
this.xrLabel7.StylePriority.UseFont = false;
this.xrLabel7.StylePriority.UseTextAlignment = false;
this.xrLabel7.Text = "Kategorie:";
this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
//
// xrLabel1
//
this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Eintraege.Datum", "{0:dd.MM.yyyy}")});
this.xrLabel1.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
this.xrLabel1.Multiline = true;
this.xrLabel1.Name = "xrLabel1";
this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel1.SizeF = new System.Drawing.SizeF(85.93763F, 22.29163F);
this.xrLabel1.StylePriority.UseFont = false;
//
// xrLabel3
//
this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Eintraege.Notice")});
this.xrLabel3.Font = new System.Drawing.Font("Arial", 10F);
this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(171.8753F, 0F);
this.xrLabel3.Multiline = true;
this.xrLabel3.Name = "xrLabel3";
this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel3.SizeF = new System.Drawing.SizeF(455.1247F, 22.29F);
this.xrLabel3.StylePriority.UseFont = false;
this.xrLabel3.Text = "Notizen";
//
// Einzahlungstextsichtbarkeitsformatierungsregel
//
this.Einzahlungstextsichtbarkeitsformatierungsregel.Condition = "[Einzahlung] == 0";
this.Einzahlungstextsichtbarkeitsformatierungsregel.DataMember = "Transaktionen";
this.Einzahlungstextsichtbarkeitsformatierungsregel.Formatting.ForeColor = System.Drawing.Color.Transparent;
this.Einzahlungstextsichtbarkeitsformatierungsregel.Name = "Einzahlungstextsichtbarkeitsformatierungsregel";
//
// Auszahlungstextsichtbarkeitsformatierungsregel
//
this.Auszahlungstextsichtbarkeitsformatierungsregel.Condition = "[Auszahlung] == 0";
this.Auszahlungstextsichtbarkeitsformatierungsregel.DataMember = "Transaktionen";
this.Auszahlungstextsichtbarkeitsformatierungsregel.Formatting.ForeColor = System.Drawing.Color.Transparent;
this.Auszahlungstextsichtbarkeitsformatierungsregel.Name = "Auszahlungstextsichtbarkeitsformatierungsregel";
//
// lblName
//
this.lblName.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblName.LocationFloat = new DevExpress.Utils.PointFloat(0F, 33.37501F);
this.lblName.Name = "lblName";
this.lblName.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.lblName.SizeF = new System.Drawing.SizeF(617.0001F, 23.375F);
this.lblName.StylePriority.UseFont = false;
this.lblName.Text = "[CustomerName]";
//
// GroupHeader1
//
this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrLabel10,
this.xrLabel2,
this.xrLabel4});
this.GroupHeader1.HeightF = 21.24996F;
this.GroupHeader1.Name = "GroupHeader1";
//
// GroupHeader2
//
this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrLabel7});
this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
new DevExpress.XtraReports.UI.GroupField("EintragKategorieDC.DisplayName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
this.GroupHeader2.HeightF = 37.91663F;
this.GroupHeader2.Level = 1;
this.GroupHeader2.Name = "GroupHeader2";
//
// xrLabel2
//
this.xrLabel2.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
this.xrLabel2.Name = "xrLabel2";
this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel2.SizeF = new System.Drawing.SizeF(85.93763F, 21.24996F);
this.xrLabel2.StylePriority.UseFont = false;
this.xrLabel2.Text = "Datum:";
//
// xrLabel4
//
this.xrLabel4.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(85.93756F, 0F);
this.xrLabel4.Name = "xrLabel4";
this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel4.SizeF = new System.Drawing.SizeF(85.93763F, 21.24996F);
this.xrLabel4.StylePriority.UseFont = false;
this.xrLabel4.Text = "Uhrzeit";
//
// xrLabel6
//
this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Eintraege.InsTs", "{0:HH:mm}")});
this.xrLabel6.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(85.93763F, 0F);
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(85.93763F, 22.29163F);
this.xrLabel6.StylePriority.UseFont = false;
//
// xrLabel10
//
this.xrLabel10.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(171.8752F, 0F);
this.xrLabel10.Name = "xrLabel10";
this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel10.SizeF = new System.Drawing.SizeF(455.1248F, 21.24996F);
this.xrLabel10.StylePriority.UseFont = false;
this.xrLabel10.Text = "Wert";
//
// bindingSource1
//
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.NotizenRO);
//
// NotizenReport
//
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
this.Detail,
this.TopMargin,
this.BottomMargin,
this.DetailReport});
this.DataSource = this.bindingSource1;
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
this.Einzahlungstextsichtbarkeitsformatierungsregel,
this.Auszahlungstextsichtbarkeitsformatierungsregel});
this.Margins = new System.Drawing.Printing.Margins(100, 100, 69, 74);
this.PageHeight = 1169;
this.PageWidth = 827;
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
this.Version = "17.1";
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
}
#endregion
private DevExpress.XtraReports.UI.DetailBand Detail;
private DevExpress.XtraReports.UI.TopMarginBand TopMargin;
private DevExpress.XtraReports.UI.BottomMarginBand BottomMargin;
private DevExpress.XtraReports.UI.DetailReportBand DetailReport;
private DevExpress.XtraReports.UI.DetailBand Detail1;
private System.Windows.Forms.BindingSource bindingSource1;
private DevExpress.XtraReports.UI.XRLabel lblHeader;
private DevExpress.XtraReports.UI.FormattingRule Einzahlungstextsichtbarkeitsformatierungsregel;
private DevExpress.XtraReports.UI.FormattingRule Auszahlungstextsichtbarkeitsformatierungsregel;
private DevExpress.XtraReports.UI.XRLabel xrLabel3;
private DevExpress.XtraReports.UI.XRLabel xrLabel7;
private DevExpress.XtraReports.UI.XRLabel xrLabel1;
private DevExpress.XtraReports.UI.XRLabel lblName;
private DevExpress.XtraReports.UI.XRLabel xrLabel6;
private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader1;
private DevExpress.XtraReports.UI.XRLabel xrLabel10;
private DevExpress.XtraReports.UI.XRLabel xrLabel2;
private DevExpress.XtraReports.UI.XRLabel xrLabel4;
private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader2;
}
}

View File

@@ -0,0 +1,24 @@
using System.Linq;
using BeWo.Report;
using BeWo.Report.ReportObjects;
namespace LebenshilfeBadKreuznachWohnstaette
{
public partial class NotizenReport : DevExpress.XtraReports.UI.XtraReport, IBeWoReport<NotizenRO>
{
public NotizenReport()
{
InitializeComponent();
}
public void SetReportDataSource(NotizenRO pRO)
{
//if (pRO.Eintraege.Count > 0)
// {
// pRO.Eintraege[0].NotizenEintragOid;
// }
bindingSource1.DataSource = pRO;
}
}
}

View File

@@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="bindingSource1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
</root>

View File

@@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// Allgemeine Informationen über eine Assembly werden über die folgenden
// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
// die einer Assembly zugeordnet sind.
[assembly: AssemblyTitle("KundeXyz")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("KundeXyz")]
[assembly: AssemblyCopyright("Copyright © 2020")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly
// für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von
// COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen.
[assembly: ComVisible(false)]
// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird
[assembly: Guid("c1fed668-adb9-47e0-b589-1389618e1b6e")]
// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
//
// Hauptversion
// Nebenversion
// Buildnummer
// Revision
//
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

View File

@@ -0,0 +1 @@
DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v17.1, Version=17.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a

View File

@@ -81,6 +81,13 @@ namespace LebenshilfeCoburg
this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell45 = new DevExpress.XtraReports.UI.XRTableCell();
this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand();
this.DetailReport2 = new DevExpress.XtraReports.UI.DetailReportBand();
this.Detail3 = new DevExpress.XtraReports.UI.DetailBand();
this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
@@ -105,20 +112,13 @@ namespace LebenshilfeCoburg
this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
this.xrLabel21 = new DevExpress.XtraReports.UI.XRLabel();
this.DetailReport2 = new DevExpress.XtraReports.UI.DetailReportBand();
this.Detail3 = new DevExpress.XtraReports.UI.DetailBand();
this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable6)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
//
// Detail
@@ -589,7 +589,7 @@ namespace LebenshilfeCoburg
this.xrLabel13.SizeF = new System.Drawing.SizeF(389.5833F, 17F);
this.xrLabel13.StylePriority.UseFont = false;
this.xrLabel13.StylePriority.UseTextAlignment = false;
this.xrLabel13.Text = "Leben & Wohnen der Lebenshilfe Coburg - Schlesierstr. 20 - 96472 Rödental";
this.xrLabel13.Text = "Leben & Wohnen der Lebenshilfe Coburg - Schlesierstr. 16 - 96472 Rödental";
this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
//
// xrPictureBox1
@@ -803,6 +803,98 @@ namespace LebenshilfeCoburg
this.GroupHeader2.Name = "GroupHeader2";
this.GroupHeader2.RepeatEveryPage = true;
//
// DetailReport2
//
this.DetailReport2.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
this.Detail3});
this.DetailReport2.DataMember = "ServiceInvoicePeriods.ServiceInvoiceItems";
this.DetailReport2.DataSource = this.bindingSource1;
this.DetailReport2.Level = 0;
this.DetailReport2.Name = "DetailReport2";
//
// Detail3
//
this.Detail3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrTable3});
this.Detail3.HeightF = 15F;
this.Detail3.Name = "Detail3";
//
// xrTable3
//
this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
| DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
this.xrTable3.FormattingRules.Add(this.ruleIsS);
this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(1.589457E-05F, 0F);
this.xrTable3.Name = "xrTable3";
this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
this.xrTableRow6});
this.xrTable3.SizeF = new System.Drawing.SizeF(680.0001F, 15F);
this.xrTable3.StylePriority.UseBorders = false;
this.xrTable3.StylePriority.UseFont = false;
//
// xrTableRow6
//
this.xrTableRow6.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell31,
this.xrTableCell32,
this.xrTableCell13});
this.xrTableRow6.Name = "xrTableRow6";
this.xrTableRow6.StylePriority.UseBorders = false;
this.xrTableRow6.Weight = 0.6D;
//
// xrTableCell31
//
this.xrTableCell31.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
this.xrTableCell31.BorderWidth = 1F;
this.xrTableCell31.CanGrow = false;
this.xrTableCell31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.ServiceDescription")});
this.xrTableCell31.Name = "xrTableCell31";
this.xrTableCell31.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
this.xrTableCell31.StylePriority.UseBorderColor = false;
this.xrTableCell31.StylePriority.UseBorderDashStyle = false;
this.xrTableCell31.StylePriority.UseBorderWidth = false;
this.xrTableCell31.StylePriority.UsePadding = false;
this.xrTableCell31.StylePriority.UseTextAlignment = false;
this.xrTableCell31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
this.xrTableCell31.Weight = 0.39155523710411932D;
//
// xrTableCell32
//
this.xrTableCell32.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
this.xrTableCell32.Borders = DevExpress.XtraPrinting.BorderSide.Left;
this.xrTableCell32.BorderWidth = 1F;
this.xrTableCell32.CanGrow = false;
this.xrTableCell32.Name = "xrTableCell32";
this.xrTableCell32.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
this.xrTableCell32.StylePriority.UseBorderColor = false;
this.xrTableCell32.StylePriority.UseBorderDashStyle = false;
this.xrTableCell32.StylePriority.UseBorders = false;
this.xrTableCell32.StylePriority.UseBorderWidth = false;
this.xrTableCell32.StylePriority.UsePadding = false;
this.xrTableCell32.StylePriority.UseTextAlignment = false;
this.xrTableCell32.Text = "[HourlyRateString] x [Hours!0.00] ";
this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
this.xrTableCell32.Weight = 0.6644116386775788D;
//
// xrTableCell13
//
this.xrTableCell13.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
this.xrTableCell13.Borders = DevExpress.XtraPrinting.BorderSide.Right;
this.xrTableCell13.BorderWidth = 1F;
this.xrTableCell13.Name = "xrTableCell13";
this.xrTableCell13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
this.xrTableCell13.StylePriority.UseBorderDashStyle = false;
this.xrTableCell13.StylePriority.UseBorders = false;
this.xrTableCell13.StylePriority.UseBorderWidth = false;
this.xrTableCell13.StylePriority.UsePadding = false;
this.xrTableCell13.StylePriority.UseTextAlignment = false;
this.xrTableCell13.Text = "= [GrossAmount]";
this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
this.xrTableCell13.Weight = 0.23783066953793192D;
//
// bindingSource1
//
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.ServiceInvoiceRO);
@@ -1065,98 +1157,6 @@ namespace LebenshilfeCoburg
this.xrLabel21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
this.xrLabel21.WordWrap = false;
//
// DetailReport2
//
this.DetailReport2.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
this.Detail3});
this.DetailReport2.DataMember = "ServiceInvoicePeriods.ServiceInvoiceItems";
this.DetailReport2.DataSource = this.bindingSource1;
this.DetailReport2.Level = 0;
this.DetailReport2.Name = "DetailReport2";
//
// Detail3
//
this.Detail3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrTable3});
this.Detail3.HeightF = 15F;
this.Detail3.Name = "Detail3";
//
// xrTable3
//
this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
| DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
this.xrTable3.FormattingRules.Add(this.ruleIsS);
this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(1.589457E-05F, 0F);
this.xrTable3.Name = "xrTable3";
this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
this.xrTableRow6});
this.xrTable3.SizeF = new System.Drawing.SizeF(680.0001F, 15F);
this.xrTable3.StylePriority.UseBorders = false;
this.xrTable3.StylePriority.UseFont = false;
//
// xrTableRow6
//
this.xrTableRow6.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell31,
this.xrTableCell32,
this.xrTableCell13});
this.xrTableRow6.Name = "xrTableRow6";
this.xrTableRow6.StylePriority.UseBorders = false;
this.xrTableRow6.Weight = 0.6D;
//
// xrTableCell31
//
this.xrTableCell31.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
this.xrTableCell31.BorderWidth = 1F;
this.xrTableCell31.CanGrow = false;
this.xrTableCell31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.ServiceDescription")});
this.xrTableCell31.Name = "xrTableCell31";
this.xrTableCell31.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
this.xrTableCell31.StylePriority.UseBorderColor = false;
this.xrTableCell31.StylePriority.UseBorderDashStyle = false;
this.xrTableCell31.StylePriority.UseBorderWidth = false;
this.xrTableCell31.StylePriority.UsePadding = false;
this.xrTableCell31.StylePriority.UseTextAlignment = false;
this.xrTableCell31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
this.xrTableCell31.Weight = 0.39155523710411932D;
//
// xrTableCell32
//
this.xrTableCell32.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
this.xrTableCell32.Borders = DevExpress.XtraPrinting.BorderSide.Left;
this.xrTableCell32.BorderWidth = 1F;
this.xrTableCell32.CanGrow = false;
this.xrTableCell32.Name = "xrTableCell32";
this.xrTableCell32.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
this.xrTableCell32.StylePriority.UseBorderColor = false;
this.xrTableCell32.StylePriority.UseBorderDashStyle = false;
this.xrTableCell32.StylePriority.UseBorders = false;
this.xrTableCell32.StylePriority.UseBorderWidth = false;
this.xrTableCell32.StylePriority.UsePadding = false;
this.xrTableCell32.StylePriority.UseTextAlignment = false;
this.xrTableCell32.Text = "[HourlyRateString] x [Hours!0.00] ";
this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
this.xrTableCell32.Weight = 0.6644116386775788D;
//
// xrTableCell13
//
this.xrTableCell13.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
this.xrTableCell13.Borders = DevExpress.XtraPrinting.BorderSide.Right;
this.xrTableCell13.BorderWidth = 1F;
this.xrTableCell13.Name = "xrTableCell13";
this.xrTableCell13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
this.xrTableCell13.StylePriority.UseBorderDashStyle = false;
this.xrTableCell13.StylePriority.UseBorders = false;
this.xrTableCell13.StylePriority.UseBorderWidth = false;
this.xrTableCell13.StylePriority.UsePadding = false;
this.xrTableCell13.StylePriority.UseTextAlignment = false;
this.xrTableCell13.Text = "= [GrossAmount]";
this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
this.xrTableCell13.Weight = 0.23783066953793192D;
//
// Sammelrechnung
//
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
@@ -1188,9 +1188,9 @@ namespace LebenshilfeCoburg
((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable6)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
}

View File

@@ -85,9 +85,6 @@ namespace PerspektivenEV
this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell50 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
this.fieldMonatskontingent = new DevExpress.XtraReports.UI.CalculatedField();
this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand();
this.xrPageInfo2 = new DevExpress.XtraReports.UI.XRPageInfo();
this.GroupHeader3 = new DevExpress.XtraReports.UI.GroupHeaderBand();
this.GroupFooter2 = new DevExpress.XtraReports.UI.GroupFooterBand();
this.xrTable5 = new DevExpress.XtraReports.UI.XRTable();
@@ -95,6 +92,9 @@ namespace PerspektivenEV
this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
this.fieldMonatskontingent = new DevExpress.XtraReports.UI.CalculatedField();
this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand();
this.xrPageInfo2 = new DevExpress.XtraReports.UI.XRPageInfo();
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
@@ -689,31 +689,6 @@ namespace PerspektivenEV
this.xrPictureBox1.SizeF = new System.Drawing.SizeF(231.4583F, 57.22917F);
this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
//
// fieldMonatskontingent
//
this.fieldMonatskontingent.DataMember = "ServiceInvoicePeriods";
this.fieldMonatskontingent.Expression = "[SupportConceptApprovalPeriod.ApprovedBEPerInterval]/12";
this.fieldMonatskontingent.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
this.fieldMonatskontingent.Name = "fieldMonatskontingent";
//
// PageFooter
//
this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrPageInfo2});
this.PageFooter.HeightF = 32.99997F;
this.PageFooter.Name = "PageFooter";
//
// xrPageInfo2
//
this.xrPageInfo2.Font = new System.Drawing.Font("Arial", 8.25F);
this.xrPageInfo2.Format = "Seite {0} von {1}";
this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(863.0001F, 9.999974F);
this.xrPageInfo2.Name = "xrPageInfo2";
this.xrPageInfo2.RunningBand = this.DetailReport;
this.xrPageInfo2.SizeF = new System.Drawing.SizeF(219.9999F, 23F);
this.xrPageInfo2.StylePriority.UseFont = false;
this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
//
// GroupHeader3
//
this.GroupHeader3.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
@@ -794,6 +769,31 @@ namespace PerspektivenEV
this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
this.xrTableCell18.Weight = 0.23571046330983655D;
//
// fieldMonatskontingent
//
this.fieldMonatskontingent.DataMember = "ServiceInvoicePeriods";
this.fieldMonatskontingent.Expression = "[SupportConceptApprovalPeriod.ApprovedBEPerInterval]/12";
this.fieldMonatskontingent.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
this.fieldMonatskontingent.Name = "fieldMonatskontingent";
//
// PageFooter
//
this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrPageInfo2});
this.PageFooter.HeightF = 32.99997F;
this.PageFooter.Name = "PageFooter";
//
// xrPageInfo2
//
this.xrPageInfo2.Font = new System.Drawing.Font("Arial", 8.25F);
this.xrPageInfo2.Format = "Seite {0} von {1}";
this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(863.0001F, 9.999974F);
this.xrPageInfo2.Name = "xrPageInfo2";
this.xrPageInfo2.RunningBand = this.DetailReport;
this.xrPageInfo2.SizeF = new System.Drawing.SizeF(219.9999F, 23F);
this.xrPageInfo2.StylePriority.UseFont = false;
this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
//
// bindingSource1
//
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.ServiceInvoiceRO);

View File

@@ -217,9 +217,16 @@ namespace PerspektivenEV.Invoicing
{
LG = (decimal)GetLeistungsgruppe(supportConceptApprovalPeriod.ApprovedBEPerInterval, cat);
ii.Notice = LG.ToString();
ii.AmountPerUnit = LG * (decimal)Math.Round((double)data[0].AmountTotal / 60, 4, MidpointRounding.AwayFromZero);
if (cat.Abbreviation.ToLower().Substring(cat.Abbreviation.Length - 3) == "alt")
{
ii.AmountPerUnit = LG * (decimal)Math.Round((double)data[0].AmountTotal / 60, 4, MidpointRounding.AwayFromZero);
}
else
{
ii.AmountPerUnit = (decimal)Math.Round((double)data[0].AmountTotal * Math.Round((double)LG / 60, 2, MidpointRounding.AwayFromZero), 2, MidpointRounding.AwayFromZero);
}
// Leistung
if (cat.Abbreviation.Substring(cat.Abbreviation.Length - 2) == "QA" || cat.Abbreviation.Substring(cat.Abbreviation.Length - 5) == "QAAlt" || cat.Abbreviation.Substring(cat.Abbreviation.Length - 5) == "KAAlt")
if (cat.Abbreviation.Substring(cat.Abbreviation.Length - 2) == "QA" || cat.Abbreviation.Substring(cat.Abbreviation.Length - 5) == "QAAlt")
{
ii.ItemDescription = "Qualifizierte Assistenz";
}
@@ -328,6 +335,7 @@ namespace PerspektivenEV.Invoicing
if (catQA.Abbreviation.ToLower().Substring(catQA.Abbreviation.Length - 5) == "qaalt")
{
preisQa = lgQA * (decimal)Math.Round((double)stdPreis / 60, 4, MidpointRounding.AwayFromZero);
preisQa =(decimal)Math.Round((double)preisQa, 2, MidpointRounding.AwayFromZero);
}
else
{
@@ -382,6 +390,33 @@ namespace PerspektivenEV.Invoicing
lg = 18;
}
}
else if (cat.Abbreviation.ToLower().Substring(cat.Abbreviation.Length - 2) == "ka")
{
if (approvedBEPerInterval == null || approvedBEPerInterval.Value < 16)
{
lg = 0;
}
else if (approvedBEPerInterval.Value < 45)
{
lg = 30;
}
else if (approvedBEPerInterval.Value < 75)
{
lg = 60;
}
else if (approvedBEPerInterval.Value < 105)
{
lg = 90;
}
else if (approvedBEPerInterval.Value < 135)
{
lg = 120;
}
else if (approvedBEPerInterval.Value < 165)
{
lg = 150;
}
}
else if (cat.Abbreviation.StartsWith("TS"))
{
if (approvedBEPerInterval == null || approvedBEPerInterval.Value < 91)

View File

@@ -59,12 +59,6 @@ namespace SKFLeverkusen
this.subBand4 = new DevExpress.XtraReports.UI.SubBand();
this.xrRichText2 = new DevExpress.XtraReports.UI.XRRichText();
this.subBand5 = new DevExpress.XtraReports.UI.SubBand();
this.xrLabel38 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel39 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel40 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel41 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel42 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel43 = new DevExpress.XtraReports.UI.XRLabel();
this.xrRichText5 = new DevExpress.XtraReports.UI.XRRichText();
this.subBand7 = new DevExpress.XtraReports.UI.SubBand();
this.xrRichText7 = new DevExpress.XtraReports.UI.XRRichText();
@@ -110,6 +104,14 @@ namespace SKFLeverkusen
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
this.SubBand6 = new DevExpress.XtraReports.UI.SubBand();
this.xrRichText6 = new DevExpress.XtraReports.UI.XRRichText();
this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel18 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel20 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel21 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel22 = new DevExpress.XtraReports.UI.XRLabel();
((System.ComponentModel.ISupportInitialize)(this.xrRichText10)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText4)).BeginInit();
@@ -130,6 +132,7 @@ namespace SKFLeverkusen
((System.ComponentModel.ISupportInitialize)(this.xrRichText18)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText20)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText6)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
//
// Detail
@@ -146,6 +149,7 @@ namespace SKFLeverkusen
this.subBand3,
this.subBand4,
this.subBand5,
this.SubBand6,
this.subBand7,
this.subBand8,
this.subBand9,
@@ -387,7 +391,7 @@ namespace SKFLeverkusen
this.xrLabel1.StylePriority.UseBorders = false;
this.xrLabel1.StylePriority.UseFont = false;
this.xrLabel1.StylePriority.UseTextAlignment = false;
this.xrLabel1.Text = "Zwischen dem";
this.xrLabel1.Text = "zwischen dem";
this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrRichText10
@@ -449,14 +453,16 @@ namespace SKFLeverkusen
this.xrRichText1});
this.subBand3.HeightF = 1052.5F;
this.subBand3.Name = "subBand3";
this.subBand3.PageBreak = DevExpress.XtraReports.UI.PageBreak.BeforeBand;
//
// xrRichText1
//
this.xrRichText1.Font = new System.Drawing.Font("Arial", 10F);
this.xrRichText1.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrRichText1.LocationFloat = new DevExpress.Utils.PointFloat(0.4376729F, 0F);
this.xrRichText1.Name = "xrRichText1";
this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
this.xrRichText1.SizeF = new System.Drawing.SizeF(686.1247F, 1052.5F);
this.xrRichText1.StylePriority.UseFont = false;
//
// subBand4
//
@@ -464,103 +470,24 @@ namespace SKFLeverkusen
this.xrRichText2});
this.subBand4.HeightF = 1040F;
this.subBand4.Name = "subBand4";
this.subBand4.PageBreak = DevExpress.XtraReports.UI.PageBreak.BeforeBand;
//
// xrRichText2
//
this.xrRichText2.Font = new System.Drawing.Font("Arial", 10F);
this.xrRichText2.LocationFloat = new DevExpress.Utils.PointFloat(0.4376729F, 0F);
this.xrRichText2.LocationFloat = new DevExpress.Utils.PointFloat(0.8754413F, 0F);
this.xrRichText2.Name = "xrRichText2";
this.xrRichText2.SerializableRtfString = resources.GetString("xrRichText2.SerializableRtfString");
this.xrRichText2.SizeF = new System.Drawing.SizeF(686.1247F, 1040F);
this.xrRichText2.StylePriority.UseForeColor = false;
//
// subBand5
//
this.subBand5.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrLabel38,
this.xrLabel39,
this.xrLabel40,
this.xrLabel41,
this.xrLabel42,
this.xrLabel43,
this.xrRichText5});
this.subBand5.HeightF = 1055.625F;
this.subBand5.HeightF = 929.5834F;
this.subBand5.Name = "subBand5";
//
// xrLabel38
//
this.xrLabel38.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.xrLabel38.LocationFloat = new DevExpress.Utils.PointFloat(0F, 945.2084F);
this.xrLabel38.Name = "xrLabel38";
this.xrLabel38.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel38.SizeF = new System.Drawing.SizeF(127.4167F, 16.74994F);
this.xrLabel38.StylePriority.UseBorders = false;
this.xrLabel38.StylePriority.UseFont = false;
this.xrLabel38.StylePriority.UseTextAlignment = false;
this.xrLabel38.Text = "Datum, Ort";
this.xrLabel38.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel39
//
this.xrLabel39.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.xrLabel39.LocationFloat = new DevExpress.Utils.PointFloat(0F, 1037.5F);
this.xrLabel39.Name = "xrLabel39";
this.xrLabel39.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel39.SizeF = new System.Drawing.SizeF(127.4167F, 16.74994F);
this.xrLabel39.StylePriority.UseBorders = false;
this.xrLabel39.StylePriority.UseFont = false;
this.xrLabel39.StylePriority.UseTextAlignment = false;
this.xrLabel39.Text = "Datum, Ort";
this.xrLabel39.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel40
//
this.xrLabel40.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.xrLabel40.LocationFloat = new DevExpress.Utils.PointFloat(233.7077F, 945.2083F);
this.xrLabel40.Name = "xrLabel40";
this.xrLabel40.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel40.SizeF = new System.Drawing.SizeF(451.5415F, 16.74994F);
this.xrLabel40.StylePriority.UseBorders = false;
this.xrLabel40.StylePriority.UseFont = false;
this.xrLabel40.StylePriority.UseTextAlignment = false;
this.xrLabel40.Text = "Klientin/Klient/ggf. vertretungsberechtigte Person";
this.xrLabel40.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel41
//
this.xrLabel41.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.xrLabel41.LocationFloat = new DevExpress.Utils.PointFloat(233.7077F, 1037.5F);
this.xrLabel41.Name = "xrLabel41";
this.xrLabel41.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel41.SizeF = new System.Drawing.SizeF(451.5415F, 16.75F);
this.xrLabel41.StylePriority.UseBorders = false;
this.xrLabel41.StylePriority.UseFont = false;
this.xrLabel41.StylePriority.UseTextAlignment = false;
this.xrLabel41.Text = "Leistungserbringer";
this.xrLabel41.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel42
//
this.xrLabel42.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
this.xrLabel42.LocationFloat = new DevExpress.Utils.PointFloat(0F, 927.4584F);
this.xrLabel42.Name = "xrLabel42";
this.xrLabel42.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel42.SizeF = new System.Drawing.SizeF(685.2493F, 16.74994F);
this.xrLabel42.StylePriority.UseBorders = false;
this.xrLabel42.StylePriority.UseFont = false;
this.xrLabel42.StylePriority.UseTextAlignment = false;
this.xrLabel42.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel43
//
this.xrLabel43.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
this.xrLabel43.LocationFloat = new DevExpress.Utils.PointFloat(0F, 1020.75F);
this.xrLabel43.Name = "xrLabel43";
this.xrLabel43.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel43.SizeF = new System.Drawing.SizeF(685.2493F, 16.74994F);
this.xrLabel43.StylePriority.UseBorders = false;
this.xrLabel43.StylePriority.UseFont = false;
this.xrLabel43.StylePriority.UseTextAlignment = false;
this.xrLabel43.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
this.subBand5.PageBreak = DevExpress.XtraReports.UI.PageBreak.BeforeBand;
//
// xrRichText5
//
@@ -576,6 +503,7 @@ namespace SKFLeverkusen
this.xrRichText7});
this.subBand7.HeightF = 988.9584F;
this.subBand7.Name = "subBand7";
this.subBand7.PageBreak = DevExpress.XtraReports.UI.PageBreak.BeforeBand;
//
// xrRichText7
//
@@ -591,6 +519,7 @@ namespace SKFLeverkusen
this.xrRichText8});
this.subBand8.HeightF = 1008.75F;
this.subBand8.Name = "subBand8";
this.subBand8.PageBreak = DevExpress.XtraReports.UI.PageBreak.BeforeBand;
//
// xrRichText8
//
@@ -606,6 +535,7 @@ namespace SKFLeverkusen
this.xrRichText9});
this.subBand9.HeightF = 991.0417F;
this.subBand9.Name = "subBand9";
this.subBand9.PageBreak = DevExpress.XtraReports.UI.PageBreak.BeforeBand;
//
// xrRichText9
//
@@ -621,6 +551,7 @@ namespace SKFLeverkusen
this.xrRichText11});
this.subBand10.HeightF = 1025.417F;
this.subBand10.Name = "subBand10";
this.subBand10.PageBreak = DevExpress.XtraReports.UI.PageBreak.BeforeBand;
//
// xrRichText11
//
@@ -636,14 +567,16 @@ namespace SKFLeverkusen
this.xrRichText12});
this.subBand11.HeightF = 980.625F;
this.subBand11.Name = "subBand11";
this.subBand11.PageBreak = DevExpress.XtraReports.UI.PageBreak.BeforeBand;
//
// xrRichText12
//
this.xrRichText12.Font = new System.Drawing.Font("Arial", 10F);
this.xrRichText12.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrRichText12.LocationFloat = new DevExpress.Utils.PointFloat(0.4376729F, 0F);
this.xrRichText12.Name = "xrRichText12";
this.xrRichText12.SerializableRtfString = resources.GetString("xrRichText12.SerializableRtfString");
this.xrRichText12.SizeF = new System.Drawing.SizeF(686.1247F, 980.625F);
this.xrRichText12.StylePriority.UseFont = false;
//
// subBand12
//
@@ -654,11 +587,12 @@ namespace SKFLeverkusen
this.xrRichText13});
this.subBand12.HeightF = 980.625F;
this.subBand12.Name = "subBand12";
this.subBand12.PageBreak = DevExpress.XtraReports.UI.PageBreak.BeforeBand;
//
// xrLabel23
//
this.xrLabel23.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
this.xrLabel23.LocationFloat = new DevExpress.Utils.PointFloat(0F, 341.8121F);
this.xrLabel23.LocationFloat = new DevExpress.Utils.PointFloat(0F, 218.8955F);
this.xrLabel23.Name = "xrLabel23";
this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel23.SizeF = new System.Drawing.SizeF(685.2493F, 16.74994F);
@@ -671,7 +605,7 @@ namespace SKFLeverkusen
//
this.xrLabel24.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.xrLabel24.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel24.LocationFloat = new DevExpress.Utils.PointFloat(0F, 359.5622F);
this.xrLabel24.LocationFloat = new DevExpress.Utils.PointFloat(0F, 236.6455F);
this.xrLabel24.Name = "xrLabel24";
this.xrLabel24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel24.SizeF = new System.Drawing.SizeF(127.4167F, 16.74994F);
@@ -685,7 +619,7 @@ namespace SKFLeverkusen
//
this.xrLabel25.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.xrLabel25.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel25.LocationFloat = new DevExpress.Utils.PointFloat(289.9578F, 359.5622F);
this.xrLabel25.LocationFloat = new DevExpress.Utils.PointFloat(289.9577F, 236.6455F);
this.xrLabel25.Name = "xrLabel25";
this.xrLabel25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel25.SizeF = new System.Drawing.SizeF(395.2914F, 16.74994F);
@@ -701,7 +635,7 @@ namespace SKFLeverkusen
this.xrRichText13.LocationFloat = new DevExpress.Utils.PointFloat(0.4376729F, 0F);
this.xrRichText13.Name = "xrRichText13";
this.xrRichText13.SerializableRtfString = resources.GetString("xrRichText13.SerializableRtfString");
this.xrRichText13.SizeF = new System.Drawing.SizeF(686.1247F, 315F);
this.xrRichText13.SizeF = new System.Drawing.SizeF(686.1247F, 176.4583F);
//
// subBand13
//
@@ -712,6 +646,7 @@ namespace SKFLeverkusen
this.xrRichText14});
this.subBand13.HeightF = 980.625F;
this.subBand13.Name = "subBand13";
this.subBand13.PageBreak = DevExpress.XtraReports.UI.PageBreak.BeforeBand;
//
// xrLabel26
//
@@ -768,6 +703,7 @@ namespace SKFLeverkusen
this.xrRichText15});
this.subBand14.HeightF = 980.625F;
this.subBand14.Name = "subBand14";
this.subBand14.PageBreak = DevExpress.XtraReports.UI.PageBreak.BeforeBand;
//
// xrRichText15
//
@@ -1001,6 +937,104 @@ namespace SKFLeverkusen
//
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.CustomerDataRO);
//
// SubBand6
//
this.SubBand6.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrLabel17,
this.xrLabel18,
this.xrLabel19,
this.xrLabel20,
this.xrLabel21,
this.xrLabel22,
this.xrRichText6});
this.SubBand6.HeightF = 726.0417F;
this.SubBand6.Name = "SubBand6";
this.SubBand6.PageBreak = DevExpress.XtraReports.UI.PageBreak.BeforeBand;
//
// xrRichText6
//
this.xrRichText6.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrRichText6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
this.xrRichText6.Name = "xrRichText6";
this.xrRichText6.SerializableRtfString = resources.GetString("xrRichText6.SerializableRtfString");
this.xrRichText6.SizeF = new System.Drawing.SizeF(685.468F, 566.7499F);
//
// xrLabel17
//
this.xrLabel17.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(0F, 690.8752F);
this.xrLabel17.Name = "xrLabel17";
this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel17.SizeF = new System.Drawing.SizeF(685.2493F, 16.74994F);
this.xrLabel17.StylePriority.UseBorders = false;
this.xrLabel17.StylePriority.UseFont = false;
this.xrLabel17.StylePriority.UseTextAlignment = false;
this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel18
//
this.xrLabel18.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(0F, 598.584F);
this.xrLabel18.Name = "xrLabel18";
this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel18.SizeF = new System.Drawing.SizeF(685.2493F, 16.74994F);
this.xrLabel18.StylePriority.UseBorders = false;
this.xrLabel18.StylePriority.UseFont = false;
this.xrLabel18.StylePriority.UseTextAlignment = false;
this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel19
//
this.xrLabel19.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(234.3641F, 707.6253F);
this.xrLabel19.Name = "xrLabel19";
this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel19.SizeF = new System.Drawing.SizeF(451.5415F, 16.75F);
this.xrLabel19.StylePriority.UseBorders = false;
this.xrLabel19.StylePriority.UseFont = false;
this.xrLabel19.StylePriority.UseTextAlignment = false;
this.xrLabel19.Text = "Leistungserbringer";
this.xrLabel19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel20
//
this.xrLabel20.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(234.3641F, 615.334F);
this.xrLabel20.Name = "xrLabel20";
this.xrLabel20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel20.SizeF = new System.Drawing.SizeF(451.5415F, 16.74994F);
this.xrLabel20.StylePriority.UseBorders = false;
this.xrLabel20.StylePriority.UseFont = false;
this.xrLabel20.StylePriority.UseTextAlignment = false;
this.xrLabel20.Text = "Klientin/Klient/ggf. vertretungsberechtigte Person";
this.xrLabel20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel21
//
this.xrLabel21.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.xrLabel21.LocationFloat = new DevExpress.Utils.PointFloat(0.6563823F, 707.6253F);
this.xrLabel21.Name = "xrLabel21";
this.xrLabel21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel21.SizeF = new System.Drawing.SizeF(127.4167F, 16.74994F);
this.xrLabel21.StylePriority.UseBorders = false;
this.xrLabel21.StylePriority.UseFont = false;
this.xrLabel21.StylePriority.UseTextAlignment = false;
this.xrLabel21.Text = "Datum, Ort";
this.xrLabel21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel22
//
this.xrLabel22.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.xrLabel22.LocationFloat = new DevExpress.Utils.PointFloat(0.6563823F, 615.334F);
this.xrLabel22.Name = "xrLabel22";
this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel22.SizeF = new System.Drawing.SizeF(127.4167F, 16.74994F);
this.xrLabel22.StylePriority.UseBorders = false;
this.xrLabel22.StylePriority.UseFont = false;
this.xrLabel22.StylePriority.UseTextAlignment = false;
this.xrLabel22.Text = "Datum, Ort";
this.xrLabel22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// Betreuungsvertrag
//
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
@@ -1035,6 +1069,7 @@ namespace SKFLeverkusen
((System.ComponentModel.ISupportInitialize)(this.xrRichText18)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText20)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText6)).EndInit();
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
}
@@ -1114,11 +1149,13 @@ namespace SKFLeverkusen
private DevExpress.XtraReports.UI.XRLabel xrLabel35;
private DevExpress.XtraReports.UI.XRLabel xrLabel36;
private DevExpress.XtraReports.UI.XRLabel xrLabel37;
private DevExpress.XtraReports.UI.XRLabel xrLabel38;
private DevExpress.XtraReports.UI.XRLabel xrLabel39;
private DevExpress.XtraReports.UI.XRLabel xrLabel40;
private DevExpress.XtraReports.UI.XRLabel xrLabel41;
private DevExpress.XtraReports.UI.XRLabel xrLabel42;
private DevExpress.XtraReports.UI.XRLabel xrLabel43;
private DevExpress.XtraReports.UI.SubBand SubBand6;
private DevExpress.XtraReports.UI.XRLabel xrLabel17;
private DevExpress.XtraReports.UI.XRLabel xrLabel18;
private DevExpress.XtraReports.UI.XRLabel xrLabel19;
private DevExpress.XtraReports.UI.XRLabel xrLabel20;
private DevExpress.XtraReports.UI.XRLabel xrLabel21;
private DevExpress.XtraReports.UI.XRLabel xrLabel22;
private DevExpress.XtraReports.UI.XRRichText xrRichText6;
}
}

File diff suppressed because one or more lines are too long

View File

@@ -1,17 +0,0 @@
using BeWo.Data.Entities;
using BeWo.Service.Invoicing;
namespace SpektrumReports.Invoicing
{
public class SelbstzahlerInvoiceCreation : InvoiceCreation
{
public override void SetInvoiceId(ServiceInvoice invoice)
{
invoice.InvoiceBase.InvoiceId = "Selbstzahler";
}
}
}

View File

@@ -70,7 +70,7 @@ namespace BeWo.Service.Plugins
//t = "5351926758"; // Viva a Vida
//t = "2215396183"; // Diakonie Remscheid Lennep
//t = "5157599087"; // SHG Schwerte
t = "4526293996"; // Fortis
//t = "4526293996"; // Fortis
//t = "3647969417"; // Caritas Bottrop
//t = "3057313346"; // SSB Mainz
//t = "6246287823"; // BeWo Alsdorf
@@ -173,7 +173,7 @@ namespace BeWo.Service.Plugins
//t = "6586058528"; // Freundeskreis Suchtkrankenhilfe e.V. (FFS)
//t = "2632162696"; // Hand in Hand (ehemals Pro BeWo Düren)
//t = "6340891020"; // Caritas Ahlen
t = "3659854106"; // alpha e.V.
//t = "3659854106"; // alpha e.V.
//t = "5809130435"; // Lebenshilfe Kusel
//t = "3367947706"; // PaS Mönchengladbach
//t = "2331203795"; // BeWo für dich
@@ -358,6 +358,7 @@ namespace BeWo.Service.Plugins
//t = "6219220038"; // SKM Kreis Viersen e.V.
//t = "1372050368"; // Petra Wagner Matthes
//t = "1253359817"; // Lebenshilfe Bad Kreuznach e.V.
//t = "9696466498"; // Lebenshilfe Bad Kreuznach (Wohnstätte)
//t = "6038574522"; // I-Wohl
//t = "2438529184"; // Alloheim Seniorenresidenzen SE
//t = "7564067748"; // SKM Aachen
@@ -374,6 +375,8 @@ namespace BeWo.Service.Plugins
//t = "2235342307"; // Suchtkrankenhilfe Ostfriesland
//t = "1733934665"; // Auf eigenen Füßen stehen (Birgit Apel de Santos & Stefan Haefs)
//t = "9814444882"; // PSM gGmbH (Paritätische Sozialdienste in Meerbusch)
//t = "2839619357"; // SKFM Düsseldorf
return t;
#else

View File

@@ -92,14 +92,15 @@ namespace BeWo.Service.Plugins
}
if (bundesland.ToLower() == "nrw" || bundesland.ToLower() == "bayern")
{
list.Add(new FeiertagDC { Datum = new DateTime(year, 8, 15), Name = "Mariä Himmelfahrt" });
list.Add(new FeiertagDC { Datum = new DateTime(year, 11, 1), Name = "Allerheiligen" });
}
list.Add(new FeiertagDC { Datum = new DateTime(year, 12, 24), Name = "Heilig Abend" }); // Eigentlich kein gesetzlicher Feiertag, wird bei uns aber immer als Standard gesetzt, da in der Praxis die meisten Unternehmen einen halben für Heilig Abend und einen halben für Silvester geben.
list.Add(new FeiertagDC { Datum = new DateTime(year, 12, 25), Name = "1. Weihnachtstag" });
list.Add(new FeiertagDC { Datum = new DateTime(year, 12, 26), Name = "2. Weihnachtstag" });
@@ -388,7 +389,14 @@ namespace BeWo.Service.Plugins
contractEndDate = new DateTime(2099, 12, 31);
else
contractEndDate = c.ContractEndDate.Value;
if (year >= c.EntryDate.Value.Year && year <= contractEndDate.Year) // Wenn das ausgewählte Jahr zwischen Vertragsbeginn und -ende liegt
DateTime contractStartDate = new DateTime();
if (c.EntryDate == null)
contractStartDate = new DateTime(year, 01, 01);
else
contractStartDate = c.EntryDate.Value;
if (year >= contractStartDate.Year && year <= contractEndDate.Year) // Wenn das ausgewählte Jahr zwischen Vertragsbeginn und -ende liegt
{
contracts.Add(c);
contractsAndWeeklyDays.Add(c, c.WeeklyDays);