MH: AWO Dortmund Spitzabrechnung
This commit is contained in:
@@ -56,6 +56,18 @@
|
||||
<Compile Include="Mitarbeiterauslastung.designer.cs">
|
||||
<DependentUpon>Mitarbeiterauslastung.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SettlementReport.cs">
|
||||
<SubType>Component</SubType>
|
||||
</Compile>
|
||||
<Compile Include="SettlementReport.Designer.cs">
|
||||
<DependentUpon>SettlementReport.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SettlementReport2.cs">
|
||||
<SubType>Component</SubType>
|
||||
</Compile>
|
||||
<Compile Include="SettlementReport2.Designer.cs">
|
||||
<DependentUpon>SettlementReport2.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SonderFinanzauswertung.cs">
|
||||
<SubType>Component</SubType>
|
||||
</Compile>
|
||||
@@ -119,6 +131,14 @@
|
||||
<EmbeddedResource Include="Mitarbeiterauslastung.resx">
|
||||
<DependentUpon>Mitarbeiterauslastung.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="SettlementReport.resx">
|
||||
<DependentUpon>SettlementReport.cs</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="SettlementReport2.resx">
|
||||
<DependentUpon>SettlementReport2.cs</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="SonderFinanzauswertung.resx">
|
||||
<DependentUpon>SonderFinanzauswertung.cs</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
|
||||
1100
ReportImp/AwoDortmund/SettlementReport.Designer.cs
generated
Normal file
1100
ReportImp/AwoDortmund/SettlementReport.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
222
ReportImp/AwoDortmund/SettlementReport.cs
Normal file
222
ReportImp/AwoDortmund/SettlementReport.cs
Normal file
@@ -0,0 +1,222 @@
|
||||
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 AwoDortmund.Alt
|
||||
{
|
||||
public partial class Spitzabrechnung : DevExpress.XtraReports.UI.XtraReport, IBeWoReport<SettlementRO>
|
||||
{
|
||||
public Spitzabrechnung()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
public void SetReportDataSource(SettlementRO pRO)
|
||||
{
|
||||
bool isDefaultSpitzabrechnung = false;
|
||||
|
||||
if (String.IsNullOrEmpty(pRO.Notice))
|
||||
{
|
||||
lblNotice.Visible = 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
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} bis {1}: {2:0.##} FLS {3}x {4:c}",
|
||||
pRO.AccountingStartDateString, pRO.HourlyRate3EndDateString,
|
||||
pRO.GeleisteteFLSMitStundensatz3, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRate3),
|
||||
|
||||
GrossAmountTotal = pRO.GeleisteteFLSMitStundensatz3 * pRO.RateFactor * pRO.HourlyRate3
|
||||
});
|
||||
|
||||
itemList.Add(new InvoiceItemDC
|
||||
{
|
||||
ItemDescription = String.Format("{0} bis {1}: {2:0.##} FLS {3}x {4:c}",
|
||||
pRO.HourlyRateOldStartDateString, pRO.HourlyRateOldEndDateString,
|
||||
pRO.GeleisteteFLSMitStundensatzAlt, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRateOld),
|
||||
|
||||
GrossAmountTotal = pRO.GeleisteteFLSMitStundensatzAlt * pRO.RateFactor * pRO.HourlyRateOld
|
||||
});
|
||||
|
||||
itemList.Add(new InvoiceItemDC
|
||||
{
|
||||
ItemDescription = String.Format("{0} bis {1}: {2:0.##} FLS {3}x {4:c}",
|
||||
pRO.HourlyRateNewStartDateString, pRO.AccountingEndDateString,
|
||||
pRO.GeleisteteFLSMitStundensatzAktuell, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRateNew),
|
||||
|
||||
GrossAmountTotal = pRO.GeleisteteFLSMitStundensatzAktuell * pRO.RateFactor * pRO.HourlyRateNew
|
||||
});
|
||||
|
||||
}
|
||||
else if (pRO.DifferentHourlyRateCount == 2)
|
||||
{
|
||||
itemList.Add(new InvoiceItemDC
|
||||
{
|
||||
ItemDescription = String.Format("{0} bis {1}: {2:0.##} FLS {3}x {4:c}",
|
||||
pRO.AccountingStartDateString, pRO.HourlyRateOldEndDateString,
|
||||
pRO.GeleisteteFLSMitStundensatzAlt, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRateOld),
|
||||
|
||||
GrossAmountTotal = pRO.GeleisteteFLSMitStundensatzAlt * (decimal)pRO.RateFactor * pRO.HourlyRateOld
|
||||
});
|
||||
|
||||
itemList.Add(new InvoiceItemDC
|
||||
{
|
||||
ItemDescription = String.Format("{0} bis {1}: {2:0.##} FLS {3}x {4:c}",
|
||||
pRO.HourlyRateNewStartDateString, pRO.AccountingEndDateString,
|
||||
pRO.GeleisteteFLSMitStundensatzAktuell, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRateNew),
|
||||
|
||||
GrossAmountTotal = pRO.GeleisteteFLSMitStundensatzAktuell * pRO.RateFactor * pRO.HourlyRateNew
|
||||
});
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
itemList.Add(new InvoiceItemDC
|
||||
{
|
||||
ItemDescription = String.Format("{0} bis {1}: {2:0.##} FLS {3}x {4:c}",
|
||||
pRO.AccountingStartDateString, pRO.AccountingEndDateString,
|
||||
pRO.GeleisteteFLSMitStundensatzAktuell, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRateNew),
|
||||
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
373
ReportImp/AwoDortmund/SettlementReport.resx
Normal file
373
ReportImp/AwoDortmund/SettlementReport.resx
Normal file
@@ -0,0 +1,373 @@
|
||||
<?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="xrLabel6.Text" xml:space="preserve">
|
||||
<value>anbei sende ich Ihnen die unterschriebenen Nachweise über die im Rahmen des Betreuten Wohnens für [Salutation2] [CustomerName] erbrachten Leistungen zu. Nach unserer Berechnung ergeben sich für den Betreuungszeitraum [AccountingPeriod] hieraus:
|
||||
</value>
|
||||
</data>
|
||||
<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>
|
||||
/9j/4AAQSkZJRgABAQEA3ADcAAD/2wBDAAIBAQIBAQICAgICAgICAwUDAwMDAwYEBAMFBwYHBwcGBwcI
|
||||
CQsJCAgKCAcHCg0KCgsMDAwMBwkODw0MDgsMDAz/2wBDAQICAgMDAwYDAwYMCAcIDAwMDAwMDAwMDAwM
|
||||
DAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAz/wAARCAFgATYDASIAAhEBAxEB/8QA
|
||||
HwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIh
|
||||
MUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVW
|
||||
V1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXG
|
||||
x8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQF
|
||||
BgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAV
|
||||
YnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOE
|
||||
hYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq
|
||||
8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD9/KKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo
|
||||
AKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo
|
||||
AKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo
|
||||
AKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo
|
||||
AKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo
|
||||
AKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo
|
||||
AKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo
|
||||
AKKKKACiiigAooooAKKKKACiigsBQAUZryD9qv8Abd+G/wCxr4Z/tXx14itdMMozbWcZ868vTjgRxLlj
|
||||
6ZOFHcivy6/ad/4OTPF3ia4urH4V+F7Dw3p7ZWLUdYH2q+P+2IlIjQ+xL15+MzTDYXSrLXstWfo3BfhP
|
||||
xPxS+fKsM/Z/8/Je7D/wJ7+kUz9pM4pvnJ/eX86/mT+JX/BSf47fFy5aTWvip4wKt1is79rGLHpsh2Lj
|
||||
8K82k+N/jKefzJPF3ieSTOd7arOWz9d9eJLiuin7sG/mkfvWD+iBnM4XxOPpxl2jGUvxfL+R/Vsrhhwf
|
||||
1pa/l38B/tz/ABj+F9ykmh/E/wAcWew5Ef8AbE8sX4xuxU/iK+rP2df+DiT4yfDK5t7fxlaaP4+0xWHm
|
||||
vNH9hvtvfEkQ2E/WMn3rajxRhpu004/ivwPCz76J/FODg6mX1aeIt0TcJfLm93/yY/dyivlj9iz/AIK5
|
||||
fCH9s6WDTdJ1hvD/AIpkTJ0PWCsFw57iJslJv+Atux1UV9SpKrjhhX0FGvTqx56Tuu6P5yzrIcxyjFPB
|
||||
ZpRlRqLeMk0/lfdea0HUUZzQWxWp5IUVR1zWbXQ9OmvLy4trW0tYzLNNNII44lAyWZjwB7mvgH9sH/g4
|
||||
Q+GPwPuLzRvAdpN8RPEFuxjaeGTyNLgccHMxBMn/AGzUqf7wrnxWLo4ePPWkkfS8McHZ1xFifqmTYaVa
|
||||
XWy0X+KT0j82foZTTIq9WX86/nm+On/Bc79oL4y3Uq2fiaDwXYyfKtpoVssJA95X3SZ9ww+lfPXij9qf
|
||||
4l+NLozat8QvG2pSNyftGt3Mg9+C+K+frcVYeLtCLf4fnr+B/ReT/RH4jxFNVMfiqVFv7K5ptetrL7mz
|
||||
+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
|
||||
JH7Sf8Ewv+C4ui/tPSab4H+IzW3h3x9OUtrS8RdljrkhwoC/88pmJ+4flY/dPO0fodCWIOW3fhX8wf8A
|
||||
wT95/bi+EY/6m3Tf/SlK/p9g/wBXX2XD+YVcTQftd4u1+5/Ev0jPD3KuFs+pRyhOFOvBzcL3UXzWaj1s
|
||||
97O9tloPooor3j+ewooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiig
|
||||
AooooAKKKKACiiigAooooAKOtFFADXQMvSvEf2yv2B/h5+3B4IbSfGWlq15CjCw1W2UJfac5/ijfHTpl
|
||||
GBU45HTHuFFTUpxnFwmrpndluZ4vL8TDGYGpKnUg7qUXZp+qPwlj/wCCUfxF/YX/AG+PhXqFxbN4k8Dt
|
||||
4y00W2v2UR2KDcptW4Tkwt25JUno2Tiv3Wt02L606SJZh8wz9adXDgcup4TmVLaTvbsfacfeJGZ8X/Va
|
||||
ubKPtaMHByStz3d7tbJ97aPsgooor0D89CiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKK
|
||||
ACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKK
|
||||
ACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKK
|
||||
ACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKK
|
||||
ACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKK
|
||||
ACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKK
|
||||
ACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKK
|
||||
ACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA/9k=
|
||||
</value>
|
||||
</data>
|
||||
<data name="xrRichText2.SerializableRtfString" xml:space="preserve">
|
||||
<value>ewBcAHIAdABmADEAXABkAGUAZgBmADAAewBcAGYAbwBuAHQAdABiAGwAewBcAGYAMAAgAEMAYQBsAGkAYgByAGkAOwB9AHsAXABmADEAIABUAGkAbQBlAHMAIABOAGUAdwAgAFIAbwBtAGEAbgA7AH0AewBcAGYAMgAgAEEAcgBpAGEAbAA7AH0AfQB7AFwAYwBvAGwAbwByAHQAYgBsACAAOwBcAHIAZQBkADAAXABnAHIAZQBlAG4AMABcAGIAbAB1AGUAMAAgADsAXAByAGUAZAAwAFwAZwByAGUAZQBuADAAXABiAGwAdQBlADIANQA1ACAAOwB9AHsAXAAqAFwAZABlAGYAYwBoAHAAIABcAGYAMQBcAGYAcwAyADQAfQB7AFwAcwB0AHkAbABlAHMAaABlAGUAdAAgAHsAXABxAGwAXABmADEAXABmAHMAMgA0ACAATgBvAHIAbQBhAGwAOwB9AHsAXAAqAFwAYwBzADEAXABmADEAXABmAHMAMgA0AFwAYwBmADEAIABEAGUAZgBhAHUAbAB0ACAAUABhAHIAYQBnAHIAYQBwAGgAIABGAG8AbgB0ADsAfQB7AFwAKgBcAGMAcwAyAFwAcwBiAGEAcwBlAGQAbwBuADEAXABmADEAXABmAHMAMgA0AFwAYwBmADEAIABMAGkAbgBlACAATgB1AG0AYgBlAHIAOwB9AHsAXAAqAFwAYwBzADMAXAB1AGwAXABmADEAXABmAHMAMgA0AFwAYwBmADIAIABIAHkAcABlAHIAbABpAG4AawA7AH0AewBcACoAXAB0AHMANABcAHQAcwByAG8AdwBkAFwAZgAxAFwAZgBzADIANABcAHEAbABcAHQAcwBjAGUAbABsAHAAYQBkAGQAZgBsADMAXAB0AHMAYwBlAGwAbABwAGEAZABkAGwAMQAwADgAXAB0AHMAYwBlAGwAbABwAGEAZABkAGYAYgAzAFwAdABzAGMAZQBsAGwAcABhAGQAZABmAHIAMwBcAHQAcwBjAGUAbABsAHAAYQBkAGQAcgAxADAAOABcAHQAcwBjAGUAbABsAHAAYQBkAGQAZgB0ADMAXAB0AHMAdgBlAHIAdABhAGwAdABcAGMAbAB0AHgAbAByAHQAYgAgAE4AbwByAG0AYQBsACAAVABhAGIAbABlADsAfQB7AFwAKgBcAHQAcwA1AFwAdABzAHIAbwB3AGQAXABzAGIAYQBzAGUAZABvAG4ANABcAGYAMQBcAGYAcwAyADQAXABxAGwAXAB0AHIAYgByAGQAcgB0AFwAYgByAGQAcgBzAFwAYgByAGQAcgB3ADEAMABcAHQAcgBiAHIAZAByAGwAXABiAHIAZAByAHMAXABiAHIAZAByAHcAMQAwAFwAdAByAGIAcgBkAHIAYgBcAGIAcgBkAHIAcwBcAGIAcgBkAHIAdwAxADAAXAB0AHIAYgByAGQAcgByAFwAYgByAGQAcgBzAFwAYgByAGQAcgB3ADEAMABcAHQAcgBiAHIAZAByAGgAXABiAHIAZAByAHMAXABiAHIAZAByAHcAMQAwAFwAdAByAGIAcgBkAHIAdgBcAGIAcgBkAHIAcwBcAGIAcgBkAHIAdwAxADAAXAB0AHMAYwBlAGwAbABwAGEAZABkAGYAbAAzAFwAdABzAGMAZQBsAGwAcABhAGQAZABsADEAMAA4AFwAdABzAGMAZQBsAGwAcABhAGQAZABmAHIAMwBcAHQAcwBjAGUAbABsAHAAYQBkAGQAcgAxADAAOABcAHQAcwB2AGUAcgB0AGEAbAB0AFwAYwBsAHQAeABsAHIAdABiACAAVABhAGIAbABlACAAUwBpAG0AcABsAGUAIAAxADsAfQB9AHsAXAAqAFwAbABpAHMAdABvAHYAZQByAHIAaQBkAGUAdABhAGIAbABlAH0AXABuAG8AdQBpAGMAbwBtAHAAYQB0AFwAcwBwAGwAeQB0AHcAbgBpAG4AZQBcAGgAdABtAGEAdQB0AHMAcABcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAewBcAGYAMgBcAGYAcwAxADYAXABjAGYAMAAgAEEAVwBPACAAQQBzAHMAaQBzAHQAZQBuAHoAYQBnAGUAbgB0AHUAcgAgAFwAdQA4ADIAMQAxAFwAJwA5ADYAIABMAGUAdQB0AGgAYQByAGQAcwB0AHIAYQBcAHUAMgAyADMAXAAnAGQAZgBlACAAOQAtADEAMQAgAFwAdQA4ADIAMQAxAFwAJwA5ADYAIAA0ADQAMQAzADUAIABEAG8AcgB0AG0AdQBuAGQAfQBcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmADEAXABmAHMAMgA0AFwAYwBmADEAXABwAGEAcgB9AA==</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>
|
||||
</root>
|
||||
986
ReportImp/AwoDortmund/SettlementReport2.Designer.cs
generated
Normal file
986
ReportImp/AwoDortmund/SettlementReport2.Designer.cs
generated
Normal file
@@ -0,0 +1,986 @@
|
||||
using BeWo.Report.ReportObjects;
|
||||
namespace AwoDortmund
|
||||
{
|
||||
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.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.rowErbrachteLeistung = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.RecipientPostCodeAndTown = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel_RecipientStreet = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel_RecipientDivision = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel_RecipientContactPerson = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
|
||||
this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.xrTableRow20 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableRow21 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableRow22 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableRow23 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableRow24 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
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.fieldApprovedFLSWithFactor = new DevExpress.XtraReports.UI.CalculatedField();
|
||||
this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
|
||||
this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.xrTable4 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.xrTableRow33 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell52 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell53 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
||||
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.xrTable5 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.xrTableRow30 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell48 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableRow31 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell49 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell50 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableRow32 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell51 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableRow34 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell54 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell55 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableRow35 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell56 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell57 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableRow36 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell58 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableRow37 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell59 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell60 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
|
||||
this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel18 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel16 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// Detail
|
||||
//
|
||||
this.Detail.HeightF = 0F;
|
||||
this.Detail.Name = "Detail";
|
||||
this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
|
||||
this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// ReportHeader
|
||||
//
|
||||
this.ReportHeader.Font = new System.Drawing.Font("Verdana", 10F);
|
||||
this.ReportHeader.HeightF = 0F;
|
||||
this.ReportHeader.Name = "ReportHeader";
|
||||
this.ReportHeader.StylePriority.UseFont = false;
|
||||
//
|
||||
// xrLabel8
|
||||
//
|
||||
this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceDate", "{0:dd.MM.yyyy}")});
|
||||
this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(367.0001F, 169F);
|
||||
this.xrLabel8.Name = "xrLabel8";
|
||||
this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel8.SizeF = new System.Drawing.SizeF(283F, 23F);
|
||||
this.xrLabel8.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel8.Text = "xrLabel8";
|
||||
this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// xrTable1
|
||||
//
|
||||
this.xrTable1.BorderColor = System.Drawing.SystemColors.ControlLight;
|
||||
this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 375.3333F);
|
||||
this.xrTable1.Name = "xrTable1";
|
||||
this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.rowErbrachteLeistung});
|
||||
this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 17F);
|
||||
this.xrTable1.StylePriority.UseBorderColor = false;
|
||||
//
|
||||
// rowErbrachteLeistung
|
||||
//
|
||||
this.rowErbrachteLeistung.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell22});
|
||||
this.rowErbrachteLeistung.Name = "rowErbrachteLeistung";
|
||||
this.rowErbrachteLeistung.Weight = 0.085D;
|
||||
//
|
||||
// xrTableCell22
|
||||
//
|
||||
this.xrTableCell22.BorderColor = System.Drawing.SystemColors.ControlLight;
|
||||
this.xrTableCell22.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell22.Name = "xrTableCell22";
|
||||
this.xrTableCell22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrTableCell22.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell22.StylePriority.UseBorders = false;
|
||||
this.xrTableCell22.StylePriority.UseFont = false;
|
||||
this.xrTableCell22.Text = "Erbrachte Leistungen:";
|
||||
this.xrTableCell22.Weight = 1D;
|
||||
//
|
||||
// ruleRateFactorNull
|
||||
//
|
||||
this.ruleRateFactorNull.Condition = "[RateFactorText2] == ?";
|
||||
this.ruleRateFactorNull.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
|
||||
this.ruleRateFactorNull.Name = "ruleRateFactorNull";
|
||||
//
|
||||
// xrLabel6
|
||||
//
|
||||
this.xrLabel6.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 300.3333F);
|
||||
this.xrLabel6.Multiline = true;
|
||||
this.xrLabel6.Name = "xrLabel6";
|
||||
this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel6.SizeF = new System.Drawing.SizeF(642F, 67F);
|
||||
this.xrLabel6.StylePriority.UseBackColor = false;
|
||||
this.xrLabel6.StylePriority.UseFont = false;
|
||||
this.xrLabel6.Text = resources.GetString("xrLabel6.Text");
|
||||
//
|
||||
// xrLabel5
|
||||
//
|
||||
this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 267.3333F);
|
||||
this.xrLabel5.Name = "xrLabel5";
|
||||
this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel5.SizeF = new System.Drawing.SizeF(317F, 17F);
|
||||
this.xrLabel5.StylePriority.UseFont = false;
|
||||
this.xrLabel5.Text = "Sehr geehrte Damen und Herren,";
|
||||
//
|
||||
// xrLabel4
|
||||
//
|
||||
this.xrLabel4.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel4.CanShrink = true;
|
||||
this.xrLabel4.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 225F);
|
||||
this.xrLabel4.Multiline = true;
|
||||
this.xrLabel4.Name = "xrLabel4";
|
||||
this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel4.SizeF = new System.Drawing.SizeF(650F, 17F);
|
||||
this.xrLabel4.StylePriority.UseBackColor = false;
|
||||
this.xrLabel4.StylePriority.UseFont = false;
|
||||
this.xrLabel4.Text = "[CustomerReferenceNumberAndDate]";
|
||||
this.xrLabel4.WordWrap = false;
|
||||
//
|
||||
// xrLabel3
|
||||
//
|
||||
this.xrLabel3.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel3.CanShrink = true;
|
||||
this.xrLabel3.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 209F);
|
||||
this.xrLabel3.Name = "xrLabel3";
|
||||
this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel3.SizeF = new System.Drawing.SizeF(650F, 16F);
|
||||
this.xrLabel3.StylePriority.UseBackColor = false;
|
||||
this.xrLabel3.StylePriority.UseFont = false;
|
||||
this.xrLabel3.Text = "Abrechnung Betreuungsleistungen für [Salutation2] [CustomerFirstName] [CustomerLa" +
|
||||
"stName]";
|
||||
this.xrLabel3.WordWrap = false;
|
||||
//
|
||||
// xrLabel2
|
||||
//
|
||||
this.xrLabel2.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel2.CanShrink = true;
|
||||
this.xrLabel2.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 192F);
|
||||
this.xrLabel2.Name = "xrLabel2";
|
||||
this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel2.SizeF = new System.Drawing.SizeF(650F, 17F);
|
||||
this.xrLabel2.StylePriority.UseBackColor = false;
|
||||
this.xrLabel2.StylePriority.UseFont = false;
|
||||
this.xrLabel2.Text = "Rechnung Nr. [InvoiceNumber]";
|
||||
this.xrLabel2.WordWrap = false;
|
||||
//
|
||||
// RecipientPostCodeAndTown
|
||||
//
|
||||
this.RecipientPostCodeAndTown.CanShrink = true;
|
||||
this.RecipientPostCodeAndTown.LocationFloat = new DevExpress.Utils.PointFloat(0F, 68.00003F);
|
||||
this.RecipientPostCodeAndTown.Name = "RecipientPostCodeAndTown";
|
||||
this.RecipientPostCodeAndTown.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.RecipientPostCodeAndTown.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
|
||||
this.RecipientPostCodeAndTown.SizeF = new System.Drawing.SizeF(292F, 17F);
|
||||
this.RecipientPostCodeAndTown.StylePriority.UseFont = false;
|
||||
this.RecipientPostCodeAndTown.Text = "[RecipientPostCodeAndTown]";
|
||||
//
|
||||
// xrLabel_RecipientStreet
|
||||
//
|
||||
this.xrLabel_RecipientStreet.CanShrink = true;
|
||||
this.xrLabel_RecipientStreet.LocationFloat = new DevExpress.Utils.PointFloat(0F, 51.00002F);
|
||||
this.xrLabel_RecipientStreet.Name = "xrLabel_RecipientStreet";
|
||||
this.xrLabel_RecipientStreet.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel_RecipientStreet.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
|
||||
this.xrLabel_RecipientStreet.SizeF = new System.Drawing.SizeF(292F, 17F);
|
||||
this.xrLabel_RecipientStreet.StylePriority.UseFont = false;
|
||||
this.xrLabel_RecipientStreet.Text = "[RecipientStreet]";
|
||||
//
|
||||
// xrLabel_RecipientDivision
|
||||
//
|
||||
this.xrLabel_RecipientDivision.CanShrink = true;
|
||||
this.xrLabel_RecipientDivision.LocationFloat = new DevExpress.Utils.PointFloat(0F, 34.00002F);
|
||||
this.xrLabel_RecipientDivision.Name = "xrLabel_RecipientDivision";
|
||||
this.xrLabel_RecipientDivision.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel_RecipientDivision.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
|
||||
this.xrLabel_RecipientDivision.SizeF = new System.Drawing.SizeF(292F, 17F);
|
||||
this.xrLabel_RecipientDivision.StylePriority.UseFont = false;
|
||||
this.xrLabel_RecipientDivision.Text = "[RecipientDivision]";
|
||||
//
|
||||
// xrLabel_RecipientContactPerson
|
||||
//
|
||||
this.xrLabel_RecipientContactPerson.CanShrink = true;
|
||||
this.xrLabel_RecipientContactPerson.LocationFloat = new DevExpress.Utils.PointFloat(0F, 17.00001F);
|
||||
this.xrLabel_RecipientContactPerson.Name = "xrLabel_RecipientContactPerson";
|
||||
this.xrLabel_RecipientContactPerson.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel_RecipientContactPerson.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
|
||||
this.xrLabel_RecipientContactPerson.SizeF = new System.Drawing.SizeF(292F, 17F);
|
||||
this.xrLabel_RecipientContactPerson.StylePriority.UseFont = false;
|
||||
this.xrLabel_RecipientContactPerson.Text = "[RecipientContactPerson]";
|
||||
//
|
||||
// xrLabel1
|
||||
//
|
||||
this.xrLabel1.CanShrink = true;
|
||||
this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.xrLabel1.Name = "xrLabel1";
|
||||
this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel1.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
|
||||
this.xrLabel1.SizeF = new System.Drawing.SizeF(292F, 17F);
|
||||
this.xrLabel1.StylePriority.UseFont = false;
|
||||
this.xrLabel1.Text = "[RecipientOrganisation]";
|
||||
//
|
||||
// ReportFooter
|
||||
//
|
||||
this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.xrLabel12,
|
||||
this.xrLabel18,
|
||||
this.xrLabel10,
|
||||
this.xrTable3,
|
||||
this.xrLabel11,
|
||||
this.lblNotice});
|
||||
this.ReportFooter.Font = new System.Drawing.Font("Verdana", 10F);
|
||||
this.ReportFooter.HeightF = 209F;
|
||||
this.ReportFooter.KeepTogether = true;
|
||||
this.ReportFooter.Name = "ReportFooter";
|
||||
this.ReportFooter.StylePriority.UseFont = false;
|
||||
//
|
||||
// xrLabel10
|
||||
//
|
||||
this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(0F, 117F);
|
||||
this.xrLabel10.Name = "xrLabel10";
|
||||
this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel10.SizeF = new System.Drawing.SizeF(175F, 17F);
|
||||
this.xrLabel10.StylePriority.UseFont = false;
|
||||
this.xrLabel10.Text = "Mit freundlichen Grüßen";
|
||||
//
|
||||
// xrTable3
|
||||
//
|
||||
this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 33F);
|
||||
this.xrTable3.Name = "xrTable3";
|
||||
this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.xrTableRow20,
|
||||
this.xrTableRow21,
|
||||
this.xrTableRow22,
|
||||
this.xrTableRow23,
|
||||
this.xrTableRow24});
|
||||
this.xrTable3.SizeF = new System.Drawing.SizeF(650F, 68F);
|
||||
this.xrTable3.StylePriority.UseFont = false;
|
||||
//
|
||||
// xrTableRow20
|
||||
//
|
||||
this.xrTableRow20.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell16});
|
||||
this.xrTableRow20.Name = "xrTableRow20";
|
||||
this.xrTableRow20.Weight = 0.38095238095238093D;
|
||||
//
|
||||
// xrTableCell16
|
||||
//
|
||||
this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Notice")});
|
||||
this.xrTableCell16.Name = "xrTableCell16";
|
||||
this.xrTableCell16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrTableCell16.StylePriority.UsePadding = false;
|
||||
this.xrTableCell16.Text = "xrTableCell1";
|
||||
this.xrTableCell16.Weight = 3D;
|
||||
//
|
||||
// xrTableRow21
|
||||
//
|
||||
this.xrTableRow21.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell18});
|
||||
this.xrTableRow21.Name = "xrTableRow21";
|
||||
this.xrTableRow21.Weight = 0.23809523809523808D;
|
||||
//
|
||||
// xrTableCell18
|
||||
//
|
||||
this.xrTableCell18.Name = "xrTableCell18";
|
||||
this.xrTableCell18.Weight = 3D;
|
||||
//
|
||||
// xrTableRow22
|
||||
//
|
||||
this.xrTableRow22.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell29});
|
||||
this.xrTableRow22.Name = "xrTableRow22";
|
||||
this.xrTableRow22.Weight = 0.38095238095238088D;
|
||||
//
|
||||
// xrTableCell29
|
||||
//
|
||||
this.xrTableCell29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AbsenceTimes")});
|
||||
this.xrTableCell29.Name = "xrTableCell29";
|
||||
this.xrTableCell29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrTableCell29.StylePriority.UsePadding = false;
|
||||
this.xrTableCell29.Text = "xrTableCell4";
|
||||
this.xrTableCell29.Weight = 3D;
|
||||
//
|
||||
// xrTableRow23
|
||||
//
|
||||
this.xrTableRow23.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell30});
|
||||
this.xrTableRow23.Name = "xrTableRow23";
|
||||
this.xrTableRow23.Weight = 0.23809523809523803D;
|
||||
//
|
||||
// xrTableCell30
|
||||
//
|
||||
this.xrTableCell30.Name = "xrTableCell30";
|
||||
this.xrTableCell30.Weight = 3D;
|
||||
//
|
||||
// xrTableRow24
|
||||
//
|
||||
this.xrTableRow24.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell31});
|
||||
this.xrTableRow24.Name = "xrTableRow24";
|
||||
this.xrTableRow24.Weight = 0.38095238095238093D;
|
||||
//
|
||||
// xrTableCell31
|
||||
//
|
||||
this.xrTableCell31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FinalSentence")});
|
||||
this.xrTableCell31.Name = "xrTableCell31";
|
||||
this.xrTableCell31.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrTableCell31.StylePriority.UsePadding = false;
|
||||
this.xrTableCell31.Text = "xrTableCell8";
|
||||
this.xrTableCell31.Weight = 3D;
|
||||
//
|
||||
// xrLabel11
|
||||
//
|
||||
this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(582.9999F, 192F);
|
||||
this.xrLabel11.Name = "xrLabel11";
|
||||
this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel11.SizeF = new System.Drawing.SizeF(67F, 17F);
|
||||
this.xrLabel11.StylePriority.UseFont = false;
|
||||
this.xrLabel11.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel11.Text = "Anlage";
|
||||
this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// lblNotice
|
||||
//
|
||||
this.lblNotice.CanShrink = true;
|
||||
this.lblNotice.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Italic);
|
||||
this.lblNotice.LocationFloat = new DevExpress.Utils.PointFloat(0F, 7.999992F);
|
||||
this.lblNotice.Name = "lblNotice";
|
||||
this.lblNotice.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.lblNotice.SizeF = new System.Drawing.SizeF(250F, 25F);
|
||||
this.lblNotice.StylePriority.UseFont = false;
|
||||
this.lblNotice.Text = "Abschließende Bemerkungen:";
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.xrPictureBox1});
|
||||
this.topMarginBand1.HeightF = 136.4583F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.xrLabel17,
|
||||
this.xrLabel16});
|
||||
this.bottomMarginBand1.HeightF = 114.9583F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// GroupHeader1
|
||||
//
|
||||
this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.xrLabel9,
|
||||
this.xrLabel13,
|
||||
this.xrLabel14,
|
||||
this.xrLabel15,
|
||||
this.xrLabel7,
|
||||
this.xrLabel1,
|
||||
this.xrLabel_RecipientContactPerson,
|
||||
this.xrLabel_RecipientDivision,
|
||||
this.xrLabel_RecipientStreet,
|
||||
this.RecipientPostCodeAndTown,
|
||||
this.xrLabel2,
|
||||
this.xrLabel3,
|
||||
this.xrLabel4,
|
||||
this.xrLabel5,
|
||||
this.xrLabel6,
|
||||
this.xrTable1,
|
||||
this.xrLabel8});
|
||||
this.GroupHeader1.Font = new System.Drawing.Font("Verdana", 10F);
|
||||
this.GroupHeader1.HeightF = 392.3333F;
|
||||
this.GroupHeader1.Name = "GroupHeader1";
|
||||
this.GroupHeader1.StylePriority.UseFont = false;
|
||||
//
|
||||
// fieldApprovedFLSWithFactor
|
||||
//
|
||||
this.fieldApprovedFLSWithFactor.Expression = "[ApprovedFLSTotal] * [RateFactor]";
|
||||
this.fieldApprovedFLSWithFactor.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
|
||||
this.fieldApprovedFLSWithFactor.Name = "fieldApprovedFLSWithFactor";
|
||||
//
|
||||
// DetailReport
|
||||
//
|
||||
this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.Detail1});
|
||||
this.DetailReport.DataMember = "InvoiceItems";
|
||||
this.DetailReport.DataSource = this.bindingSource1;
|
||||
this.DetailReport.Level = 0;
|
||||
this.DetailReport.Name = "DetailReport";
|
||||
//
|
||||
// Detail1
|
||||
//
|
||||
this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.xrTable4});
|
||||
this.Detail1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.Detail1.HeightF = 17F;
|
||||
this.Detail1.Name = "Detail1";
|
||||
this.Detail1.StylePriority.UseFont = false;
|
||||
//
|
||||
// xrTable4
|
||||
//
|
||||
this.xrTable4.BorderColor = System.Drawing.SystemColors.ControlLight;
|
||||
this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.xrTable4.Name = "xrTable4";
|
||||
this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.xrTableRow33});
|
||||
this.xrTable4.SizeF = new System.Drawing.SizeF(650F, 17F);
|
||||
this.xrTable4.StylePriority.UseBorderColor = false;
|
||||
//
|
||||
// xrTableRow33
|
||||
//
|
||||
this.xrTableRow33.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell52,
|
||||
this.xrTableCell53});
|
||||
this.xrTableRow33.Name = "xrTableRow33";
|
||||
this.xrTableRow33.Weight = 0.085D;
|
||||
//
|
||||
// xrTableCell52
|
||||
//
|
||||
this.xrTableCell52.BorderColor = System.Drawing.SystemColors.ControlLight;
|
||||
this.xrTableCell52.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell52.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceItems.DetailDescription")});
|
||||
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.Text = "abzüglich der geleisteten Abschlagszahlung:";
|
||||
this.xrTableCell52.Weight = 0.78314100999098568D;
|
||||
//
|
||||
// xrTableCell53
|
||||
//
|
||||
this.xrTableCell53.BorderColor = System.Drawing.SystemColors.ControlLight;
|
||||
this.xrTableCell53.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell53.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceItems.GrossAmountTotal", "{0:c}")});
|
||||
this.xrTableCell53.Name = "xrTableCell53";
|
||||
this.xrTableCell53.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrTableCell53.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell53.StylePriority.UseBorders = false;
|
||||
this.xrTableCell53.StylePriority.UseFont = false;
|
||||
this.xrTableCell53.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell53.Text = "xrTableCell10";
|
||||
this.xrTableCell53.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell53.Weight = 0.21685899000901443D;
|
||||
//
|
||||
// bindingSource1
|
||||
//
|
||||
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.Settlement2RO);
|
||||
//
|
||||
// GroupFooter1
|
||||
//
|
||||
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.xrTable5});
|
||||
this.GroupFooter1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.GroupFooter1.HeightF = 132F;
|
||||
this.GroupFooter1.Name = "GroupFooter1";
|
||||
this.GroupFooter1.StylePriority.UseFont = false;
|
||||
//
|
||||
// xrTable5
|
||||
//
|
||||
this.xrTable5.BorderColor = System.Drawing.SystemColors.ControlLight;
|
||||
this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.xrTable5.Name = "xrTable5";
|
||||
this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.xrTableRow30,
|
||||
this.xrTableRow31,
|
||||
this.xrTableRow32,
|
||||
this.xrTableRow34,
|
||||
this.xrTableRow35,
|
||||
this.xrTableRow36,
|
||||
this.xrTableRow37});
|
||||
this.xrTable5.SizeF = new System.Drawing.SizeF(650F, 132F);
|
||||
this.xrTable5.StylePriority.UseBorderColor = false;
|
||||
//
|
||||
// xrTableRow30
|
||||
//
|
||||
this.xrTableRow30.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell48});
|
||||
this.xrTableRow30.Name = "xrTableRow30";
|
||||
this.xrTableRow30.Weight = 0.085D;
|
||||
//
|
||||
// xrTableCell48
|
||||
//
|
||||
this.xrTableCell48.BorderColor = System.Drawing.SystemColors.ControlLight;
|
||||
this.xrTableCell48.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell48.Name = "xrTableCell48";
|
||||
this.xrTableCell48.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrTableCell48.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell48.StylePriority.UseBorders = false;
|
||||
this.xrTableCell48.Weight = 1D;
|
||||
//
|
||||
// xrTableRow31
|
||||
//
|
||||
this.xrTableRow31.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell49,
|
||||
this.xrTableCell50});
|
||||
this.xrTableRow31.Name = "xrTableRow31";
|
||||
this.xrTableRow31.Weight = 0.085D;
|
||||
//
|
||||
// xrTableCell49
|
||||
//
|
||||
this.xrTableCell49.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell49.Name = "xrTableCell49";
|
||||
this.xrTableCell49.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrTableCell49.StylePriority.UseBorders = false;
|
||||
this.xrTableCell49.StylePriority.UseFont = false;
|
||||
this.xrTableCell49.StylePriority.UsePadding = false;
|
||||
this.xrTableCell49.Text = "Gesamtforderung:";
|
||||
this.xrTableCell49.Weight = 0.78314100999098546D;
|
||||
//
|
||||
// xrTableCell50
|
||||
//
|
||||
this.xrTableCell50.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell50.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountBillableTotal", "{0:c}")});
|
||||
this.xrTableCell50.Name = "xrTableCell50";
|
||||
this.xrTableCell50.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrTableCell50.StylePriority.UseBorders = false;
|
||||
this.xrTableCell50.StylePriority.UseFont = false;
|
||||
this.xrTableCell50.StylePriority.UsePadding = false;
|
||||
this.xrTableCell50.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell50.Text = "xrTableCell9";
|
||||
this.xrTableCell50.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell50.Weight = 0.21685899000901443D;
|
||||
//
|
||||
// xrTableRow32
|
||||
//
|
||||
this.xrTableRow32.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell51});
|
||||
this.xrTableRow32.Name = "xrTableRow32";
|
||||
this.xrTableRow32.Weight = 0.085D;
|
||||
//
|
||||
// xrTableCell51
|
||||
//
|
||||
this.xrTableCell51.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell51.Name = "xrTableCell51";
|
||||
this.xrTableCell51.StylePriority.UseBorders = false;
|
||||
this.xrTableCell51.Weight = 1D;
|
||||
//
|
||||
// xrTableRow34
|
||||
//
|
||||
this.xrTableRow34.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell54,
|
||||
this.xrTableCell55});
|
||||
this.xrTableRow34.Name = "xrTableRow34";
|
||||
this.xrTableRow34.Weight = 0.085D;
|
||||
//
|
||||
// xrTableCell54
|
||||
//
|
||||
this.xrTableCell54.BorderColor = System.Drawing.SystemColors.ControlLight;
|
||||
this.xrTableCell54.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell54.Name = "xrTableCell54";
|
||||
this.xrTableCell54.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrTableCell54.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell54.StylePriority.UseBorders = false;
|
||||
this.xrTableCell54.StylePriority.UseFont = false;
|
||||
this.xrTableCell54.Text = "abzüglich der geleisteten Abschlagszahlung:";
|
||||
this.xrTableCell54.Weight = 0.78314100999098568D;
|
||||
//
|
||||
// xrTableCell55
|
||||
//
|
||||
this.xrTableCell55.BorderColor = System.Drawing.SystemColors.ControlLight;
|
||||
this.xrTableCell55.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell55.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountAdvancedPayments", "{0:c}")});
|
||||
this.xrTableCell55.Name = "xrTableCell55";
|
||||
this.xrTableCell55.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrTableCell55.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell55.StylePriority.UseBorders = false;
|
||||
this.xrTableCell55.StylePriority.UseFont = false;
|
||||
this.xrTableCell55.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell55.Text = "xrTableCell10";
|
||||
this.xrTableCell55.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell55.Weight = 0.21685899000901443D;
|
||||
//
|
||||
// xrTableRow35
|
||||
//
|
||||
this.xrTableRow35.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell56,
|
||||
this.xrTableCell57});
|
||||
this.xrTableRow35.Name = "xrTableRow35";
|
||||
this.xrTableRow35.Weight = 0.085D;
|
||||
//
|
||||
// xrTableCell56
|
||||
//
|
||||
this.xrTableCell56.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell56.Name = "xrTableCell56";
|
||||
this.xrTableCell56.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrTableCell56.StylePriority.UseBorders = false;
|
||||
this.xrTableCell56.StylePriority.UsePadding = false;
|
||||
this.xrTableCell56.Text = "abzüglich Eigenanteil:";
|
||||
this.xrTableCell56.Weight = 0.78314100999098568D;
|
||||
//
|
||||
// xrTableCell57
|
||||
//
|
||||
this.xrTableCell57.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell57.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Eigenbeteiligung", "{0:c}")});
|
||||
this.xrTableCell57.Name = "xrTableCell57";
|
||||
this.xrTableCell57.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrTableCell57.StylePriority.UseBorders = false;
|
||||
this.xrTableCell57.StylePriority.UsePadding = false;
|
||||
this.xrTableCell57.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell57.Text = "xrTableCell15";
|
||||
this.xrTableCell57.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell57.Weight = 0.21685899000901443D;
|
||||
//
|
||||
// xrTableRow36
|
||||
//
|
||||
this.xrTableRow36.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell58});
|
||||
this.xrTableRow36.Name = "xrTableRow36";
|
||||
this.xrTableRow36.Weight = 0.085D;
|
||||
//
|
||||
// xrTableCell58
|
||||
//
|
||||
this.xrTableCell58.BorderColor = System.Drawing.SystemColors.ControlLight;
|
||||
this.xrTableCell58.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell58.Name = "xrTableCell58";
|
||||
this.xrTableCell58.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrTableCell58.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell58.StylePriority.UseBorders = false;
|
||||
this.xrTableCell58.Weight = 1D;
|
||||
//
|
||||
// xrTableRow37
|
||||
//
|
||||
this.xrTableRow37.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell59,
|
||||
this.xrTableCell60});
|
||||
this.xrTableRow37.Name = "xrTableRow37";
|
||||
this.xrTableRow37.Weight = 0.15D;
|
||||
//
|
||||
// xrTableCell59
|
||||
//
|
||||
this.xrTableCell59.BorderColor = System.Drawing.SystemColors.ControlLight;
|
||||
this.xrTableCell59.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell59.Name = "xrTableCell59";
|
||||
this.xrTableCell59.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrTableCell59.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell59.StylePriority.UseBorders = false;
|
||||
this.xrTableCell59.StylePriority.UseFont = false;
|
||||
this.xrTableCell59.Text = "Restforderung:";
|
||||
this.xrTableCell59.Weight = 0.78314100999098568D;
|
||||
//
|
||||
// xrTableCell60
|
||||
//
|
||||
this.xrTableCell60.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell60.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Claim", "{0:c}")});
|
||||
this.xrTableCell60.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.xrTableCell60.Name = "xrTableCell60";
|
||||
this.xrTableCell60.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrTableCell60.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell60.StylePriority.UseBorders = false;
|
||||
this.xrTableCell60.StylePriority.UseFont = false;
|
||||
this.xrTableCell60.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell60.Text = "xrTableCell17";
|
||||
this.xrTableCell60.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell60.Weight = 0.21685899000901443D;
|
||||
//
|
||||
// xrPictureBox1
|
||||
//
|
||||
this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
|
||||
this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(469.0834F, 4.166603F);
|
||||
this.xrPictureBox1.Name = "xrPictureBox1";
|
||||
this.xrPictureBox1.SizeF = new System.Drawing.SizeF(158.3333F, 132.2917F);
|
||||
this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
|
||||
//
|
||||
// xrLabel7
|
||||
//
|
||||
this.xrLabel7.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel7.CanShrink = true;
|
||||
this.xrLabel7.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(490.5F, 0F);
|
||||
this.xrLabel7.Multiline = true;
|
||||
this.xrLabel7.Name = "xrLabel7";
|
||||
this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel7.SizeF = new System.Drawing.SizeF(187.5F, 47.08334F);
|
||||
this.xrLabel7.StylePriority.UseBackColor = false;
|
||||
this.xrLabel7.StylePriority.UseFont = false;
|
||||
this.xrLabel7.Text = "Arbeiterwohlfahrt\r\nUnterbezirk Dortmund\r\n";
|
||||
this.xrLabel7.WordWrap = false;
|
||||
//
|
||||
// xrLabel9
|
||||
//
|
||||
this.xrLabel9.Font = new System.Drawing.Font("Verdana", 11F);
|
||||
this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(361F, 51.00002F);
|
||||
this.xrLabel9.Name = "xrLabel9";
|
||||
this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel9.SizeF = new System.Drawing.SizeF(317F, 17F);
|
||||
this.xrLabel9.StylePriority.UseFont = false;
|
||||
this.xrLabel9.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel9.Text = "Susanne Pree";
|
||||
this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// xrLabel13
|
||||
//
|
||||
this.xrLabel13.Font = new System.Drawing.Font("Verdana", 11F);
|
||||
this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(361F, 68.00003F);
|
||||
this.xrLabel13.Name = "xrLabel13";
|
||||
this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel13.SizeF = new System.Drawing.SizeF(317F, 17F);
|
||||
this.xrLabel13.StylePriority.UseFont = false;
|
||||
this.xrLabel13.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel13.Text = "s.pree@awo-dortmund.de";
|
||||
this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// xrLabel14
|
||||
//
|
||||
this.xrLabel14.Font = new System.Drawing.Font("Verdana", 8F);
|
||||
this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(361F, 85.00004F);
|
||||
this.xrLabel14.Name = "xrLabel14";
|
||||
this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel14.SizeF = new System.Drawing.SizeF(317F, 17F);
|
||||
this.xrLabel14.StylePriority.UseFont = false;
|
||||
this.xrLabel14.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel14.Text = "Tel: 0231 53 45 48 - 15";
|
||||
this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// xrLabel15
|
||||
//
|
||||
this.xrLabel15.Font = new System.Drawing.Font("Verdana", 8F);
|
||||
this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(361F, 102F);
|
||||
this.xrLabel15.Name = "xrLabel15";
|
||||
this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel15.SizeF = new System.Drawing.SizeF(317F, 17F);
|
||||
this.xrLabel15.StylePriority.UseFont = false;
|
||||
this.xrLabel15.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel15.Text = "Fax: 0231 53 45 48 - 29";
|
||||
this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// xrLabel12
|
||||
//
|
||||
this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(0F, 175F);
|
||||
this.xrLabel12.Name = "xrLabel12";
|
||||
this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel12.SizeF = new System.Drawing.SizeF(225F, 17F);
|
||||
this.xrLabel12.StylePriority.UseFont = false;
|
||||
this.xrLabel12.Text = "i.A. Susanne Pree";
|
||||
//
|
||||
// xrLabel18
|
||||
//
|
||||
this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(0F, 192F);
|
||||
this.xrLabel18.Name = "xrLabel18";
|
||||
this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel18.SizeF = new System.Drawing.SizeF(225F, 17F);
|
||||
this.xrLabel18.StylePriority.UseFont = false;
|
||||
this.xrLabel18.Text = "Verwaltung";
|
||||
//
|
||||
// xrLabel17
|
||||
//
|
||||
this.xrLabel17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
|
||||
this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(236.7935F, 14.95832F);
|
||||
this.xrLabel17.Multiline = true;
|
||||
this.xrLabel17.Name = "xrLabel17";
|
||||
this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel17.SizeF = new System.Drawing.SizeF(269.6233F, 100F);
|
||||
this.xrLabel17.StylePriority.UseFont = false;
|
||||
this.xrLabel17.Text = "Steuernummer: 314/5702/4217\r\nBankverbindung\r\nSparkasse Dortmund\r\nIBAN DE66 4405 0" +
|
||||
"199 0001 0697 21\r\nBIC DORTDE33XXX\r\n";
|
||||
//
|
||||
// xrLabel16
|
||||
//
|
||||
this.xrLabel16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
|
||||
this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(0F, 14.95832F);
|
||||
this.xrLabel16.Multiline = true;
|
||||
this.xrLabel16.Name = "xrLabel16";
|
||||
this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel16.SizeF = new System.Drawing.SizeF(236.7935F, 100F);
|
||||
this.xrLabel16.StylePriority.UseFont = false;
|
||||
this.xrLabel16.Text = "AWO Assistenzagentur\r\nAmbulant Betreutes Wohnen (BeWo)\r\nLeuthardstraße 9-11\r\n4413" +
|
||||
"5 Dortmund\r\nTel: 0231 53 45 48 - 0 \r\nFax: 0231 53 45 48 – 29\r\n";
|
||||
//
|
||||
// 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.fieldApprovedFLSWithFactor});
|
||||
this.DataSource = this.bindingSource1;
|
||||
this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung";
|
||||
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
|
||||
this.ruleRateFactorNull});
|
||||
this.Margins = new System.Drawing.Printing.Margins(75, 74, 136, 115);
|
||||
this.PageHeight = 1169;
|
||||
this.PageWidth = 827;
|
||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||
this.Version = "17.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private DevExpress.XtraReports.UI.DetailBand Detail;
|
||||
private System.Windows.Forms.BindingSource bindingSource1;
|
||||
private DevExpress.XtraReports.UI.ReportHeaderBand ReportHeader;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel6;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel5;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel4;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel3;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel2;
|
||||
private DevExpress.XtraReports.UI.XRLabel RecipientPostCodeAndTown;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel_RecipientStreet;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel_RecipientDivision;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel_RecipientContactPerson;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel1;
|
||||
private DevExpress.XtraReports.UI.ReportFooterBand ReportFooter;
|
||||
private DevExpress.XtraReports.UI.XRLabel lblNotice;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel11;
|
||||
private DevExpress.XtraReports.UI.XRTable xrTable1;
|
||||
private DevExpress.XtraReports.UI.XRTableRow rowErbrachteLeistung;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell22;
|
||||
private DevExpress.XtraReports.UI.XRTable xrTable3;
|
||||
private DevExpress.XtraReports.UI.XRTableRow xrTableRow20;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell16;
|
||||
private DevExpress.XtraReports.UI.XRTableRow xrTableRow21;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell18;
|
||||
private DevExpress.XtraReports.UI.XRTableRow xrTableRow22;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell29;
|
||||
private DevExpress.XtraReports.UI.XRTableRow xrTableRow23;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell30;
|
||||
private DevExpress.XtraReports.UI.XRTableRow xrTableRow24;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell31;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel10;
|
||||
private DevExpress.XtraReports.UI.FormattingRule ruleRateFactorNull;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel8;
|
||||
private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader1;
|
||||
private DevExpress.XtraReports.UI.CalculatedField fieldApprovedFLSWithFactor;
|
||||
private DevExpress.XtraReports.UI.DetailReportBand DetailReport;
|
||||
private DevExpress.XtraReports.UI.DetailBand Detail1;
|
||||
private DevExpress.XtraReports.UI.XRTable xrTable4;
|
||||
private DevExpress.XtraReports.UI.XRTableRow xrTableRow33;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell52;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell53;
|
||||
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1;
|
||||
private DevExpress.XtraReports.UI.XRTable xrTable5;
|
||||
private DevExpress.XtraReports.UI.XRTableRow xrTableRow30;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell48;
|
||||
private DevExpress.XtraReports.UI.XRTableRow xrTableRow31;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell49;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell50;
|
||||
private DevExpress.XtraReports.UI.XRTableRow xrTableRow32;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell51;
|
||||
private DevExpress.XtraReports.UI.XRTableRow xrTableRow34;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell54;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell55;
|
||||
private DevExpress.XtraReports.UI.XRTableRow xrTableRow35;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell56;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell57;
|
||||
private DevExpress.XtraReports.UI.XRTableRow xrTableRow36;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell58;
|
||||
private DevExpress.XtraReports.UI.XRTableRow xrTableRow37;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell59;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell60;
|
||||
private DevExpress.XtraReports.UI.XRPictureBox xrPictureBox1;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel7;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel9;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel13;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel14;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel15;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel12;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel18;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel17;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel16;
|
||||
}
|
||||
}
|
||||
39
ReportImp/AwoDortmund/SettlementReport2.cs
Normal file
39
ReportImp/AwoDortmund/SettlementReport2.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Drawing;
|
||||
using System.Collections;
|
||||
using System.ComponentModel;
|
||||
using DevExpress.XtraReports.UI;
|
||||
using BeWo.Report.ReportObjects;
|
||||
using BeWo.Report;
|
||||
|
||||
namespace AwoDortmund
|
||||
{
|
||||
public partial class Spitzabrechnung : DevExpress.XtraReports.UI.XtraReport, IBeWoReport<Settlement2RO>
|
||||
{
|
||||
public Spitzabrechnung()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
public void SetReportDataSource(Settlement2RO pRO)
|
||||
{
|
||||
if (String.IsNullOrEmpty(pRO.Notice))
|
||||
{
|
||||
lblNotice.Visible = false;
|
||||
}
|
||||
|
||||
decimal rateFactor = 1;
|
||||
|
||||
foreach (var ii in pRO.InvoiceItems)
|
||||
{
|
||||
if (ii.RateFactor.HasValue)
|
||||
{
|
||||
rateFactor = (100 + ii.RateFactor.Value) / 100;
|
||||
}
|
||||
}
|
||||
pRO.RateFactor = (double)rateFactor;
|
||||
|
||||
this.bindingSource1.DataSource = pRO;
|
||||
}
|
||||
}
|
||||
}
|
||||
370
ReportImp/AwoDortmund/SettlementReport2.resx
Normal file
370
ReportImp/AwoDortmund/SettlementReport2.resx
Normal file
@@ -0,0 +1,370 @@
|
||||
<?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="xrLabel6.Text" xml:space="preserve">
|
||||
<value>anbei sende ich Ihnen die unterschriebenen Nachweise über die im Rahmen des Betreuten Wohnens für [Salutation2] [CustomerFirstName] [CustomerLastName] erbrachten Leistungen zu. Nach unserer Berechnung ergeben sich für den Betreuungszeitraum [AccountingPeriod] hieraus:
|
||||
</value>
|
||||
</data>
|
||||
<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>
|
||||
/9j/4AAQSkZJRgABAQEA3ADcAAD/2wBDAAIBAQIBAQICAgICAgICAwUDAwMDAwYEBAMFBwYHBwcGBwcI
|
||||
CQsJCAgKCAcHCg0KCgsMDAwMBwkODw0MDgsMDAz/2wBDAQICAgMDAwYDAwYMCAcIDAwMDAwMDAwMDAwM
|
||||
DAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAz/wAARCAFgATYDASIAAhEBAxEB/8QA
|
||||
HwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIh
|
||||
MUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVW
|
||||
V1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXG
|
||||
x8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQF
|
||||
BgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAV
|
||||
YnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOE
|
||||
hYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq
|
||||
8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD9/KKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo
|
||||
AKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo
|
||||
AKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo
|
||||
AKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo
|
||||
AKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo
|
||||
AKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo
|
||||
AKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo
|
||||
AKKKKACiiigAooooAKKKKACiigsBQAUZryD9qv8Abd+G/wCxr4Z/tXx14itdMMozbWcZ868vTjgRxLlj
|
||||
6ZOFHcivy6/ad/4OTPF3ia4urH4V+F7Dw3p7ZWLUdYH2q+P+2IlIjQ+xL15+MzTDYXSrLXstWfo3BfhP
|
||||
xPxS+fKsM/Z/8/Je7D/wJ7+kUz9pM4pvnJ/eX86/mT+JX/BSf47fFy5aTWvip4wKt1is79rGLHpsh2Lj
|
||||
8K82k+N/jKefzJPF3ieSTOd7arOWz9d9eJLiuin7sG/mkfvWD+iBnM4XxOPpxl2jGUvxfL+R/Vsrhhwf
|
||||
1pa/l38B/tz/ABj+F9ykmh/E/wAcWew5Ef8AbE8sX4xuxU/iK+rP2df+DiT4yfDK5t7fxlaaP4+0xWHm
|
||||
vNH9hvtvfEkQ2E/WMn3rajxRhpu004/ivwPCz76J/FODg6mX1aeIt0TcJfLm93/yY/dyivlj9iz/AIK5
|
||||
fCH9s6WDTdJ1hvD/AIpkTJ0PWCsFw57iJslJv+Atux1UV9SpKrjhhX0FGvTqx56Tuu6P5yzrIcxyjFPB
|
||||
ZpRlRqLeMk0/lfdea0HUUZzQWxWp5IUVR1zWbXQ9OmvLy4trW0tYzLNNNII44lAyWZjwB7mvgH9sH/g4
|
||||
Q+GPwPuLzRvAdpN8RPEFuxjaeGTyNLgccHMxBMn/AGzUqf7wrnxWLo4ePPWkkfS8McHZ1xFifqmTYaVa
|
||||
XWy0X+KT0j82foZTTIq9WX86/nm+On/Bc79oL4y3Uq2fiaDwXYyfKtpoVssJA95X3SZ9ww+lfPXij9qf
|
||||
4l+NLozat8QvG2pSNyftGt3Mg9+C+K+frcVYeLtCLf4fnr+B/ReT/RH4jxFNVMfiqVFv7K5ptetrL7mz
|
||||
+p7zlP8AEv506v5UdI/aE8e+HrhZtP8AG/i6xmU5V7fWLiNl/EPXtnwb/wCCxP7Q3wXurc2vxE1TXLWJ
|
||||
gXtNcVdQjlHoWkHmDPs4qafFVBv3oNfczozP6IefUablgsbSqNdGpQv6P3vxP6Qs0V+WH7Jn/ByP4f8A
|
||||
FFzBpfxb8NN4bnkO3+2NI33FmD6yQnMiD3Xf+FfpZ8MvidoHxd8I2eveGtY0/XNHvkEkF3ZzrNE4Puvf
|
||||
1B5FfQYXHUMSuajK5/PPF3h/n/DFb2OdYaVO+0t4S9JK6f338jo6KAc0V1HxoUUUUAFFFFABRRRQAUUU
|
||||
UAFFFFABRRRQAUUUUAFFFFABRRQW20ANeVYz8zYr4Z/4Kxf8FgdI/Yl0ubwj4RNlrnxKvociNjvt9DRh
|
||||
8sswB+Zz1WPv1OBjPpP/AAVO/b7sP2EP2eLnVrZre58Ya4GsdAspOjTEfNM4/wCecYO4+p2r3r+dLxt4
|
||||
01X4ieLNQ1zXL641PV9Vna5u7qdy0k8jHJZj6nP4Divm88zr6svY0fje/kv8z+nvo/eCkOJqrzzOo/7J
|
||||
Tdox29pJbp/3F17vTozU+Lfxg8SfHLxzfeJPFmtXuva5qUnmT3V1IWY9wqjoqjPCqAAOABXMkF39zVrw
|
||||
94evvFet2um6bZ3GoahfSrBb21vGZJZpGOFVVGSSTwABX6w/sC/8G7Ud/pFn4m+OFxcK1yiSxeGbC42G
|
||||
MEZxczKc7vVIzx/ePQfG4PAYjGVGqer6t/qz+2OMuP8AhzgjL4PHyVNWtCnBLmaXSMVayXVuyXVn5M6f
|
||||
plzq14lva289zcSHCRRRl3f6Acmu3039lb4oazaCez+G/j66hYZEkPh+7kU/iI8V/TF8I/2X/AHwG0qO
|
||||
z8G+DfDvhyFVCn7DYxxO+P7zgbmPuSTXcfZcL0x9K+mp8Jq37yp9yP5fzT6Ydf2jWXZcuXvOer+UVZfe
|
||||
fyieLvhf4m8AH/ifeHdc0Q5xi/sJbbn0+dRWFjjNf1ma94VsfEmmzWmoafZ6hbTKVkhuIlljkB7FWBB/
|
||||
Gvj39rj/AIIX/Bf9pKxurzRtHT4e+JJE/d3uiRrFbM/UeZbcRsPUqFY+tc+I4VqJXozv5PT8T3uGfpd5
|
||||
dXrKjnmDlRT+3CXOl6xaTt6NvyP5+rO6msLmO4gkeGaFg6SI21kYHIIPUEHuK/Tf/gmF/wAF4tY+HF7p
|
||||
/gf4zXk2seHW2W9n4jk+a70zsBcEcyxD+/8AfXvuHT5B/bh/4JyfEb9hDxStr4q05bzRLp8WGuWOZLG7
|
||||
6/KTjMcn+w+D6bhzXginym54bsfSvDoYjE4CtdXi+q6P+u5++Z9w3wv4h5IpTca1KSvCpBrmi+8Xa6a6
|
||||
xfo0f1m+HPENj4n0a11HT7u3vrG+iWe3uIJBJHNGwyrKw4II5BFcH+1N+1V4L/ZG+FF94u8Z6pHYadaq
|
||||
VijXDT3suDtiiTqznHToMEnABNfjn/wSG/4LBt+yULjwL8RLy8vvh+0Mk+m3AVpp9HmVciJRyTFJyAo+
|
||||
6xB6E4+cf2//ANvTxR+3j8a7nxDq001poNozQ6LpG/dFp8GeuOhkYYLN1J46AAfXVuJaKwyq0/jfTt6n
|
||||
8bZH9F/OanFM8rzBuOCp2k6q+3FvSMP77t738u/VX7L/AIKDf8FYfiB+3Vrtxp7XU3hnwHHIfsug2spC
|
||||
ygH5XuXGPNf2PyL2GRk/Kr/M3yj8qBHvYBefT3r7s/4J6f8ABDbx1+1paWfiTxlJceBfBE/7yGSWP/iY
|
||||
6knBzDEeEQ9nfr1CsMGvkYU8Vj62l5S/Bf5I/s/EYvhTw9yVKXJhqEdEl8UnbovinJ9Xq++h8JbDjOK6
|
||||
/wAM/s8+P/GtsJtG8DeMNWhYZEllo1zcKfxVCK/os/Zp/wCCYXwX/Za063Xw54H0q41KE7jqmpxLe3zN
|
||||
6+ZIDt+iBR7V71FYLBHtWNVVRgBeK+go8Jtq9Wp9y/V/5H82599MCnGq4ZPgHKP81Sdm/Plinb/wI/lZ
|
||||
8S/s9+PvBkBk1jwP4w0mNRkveaNcwKB9WQVyJiZeq4+tf1qPp6zJh1DDuD3rw39pL/gmr8G/2pdNuU8U
|
||||
eBdH/tCbJGqWEK2d/G394SxgM2PRsj2qq3CbtelU+9f5E5H9MGnKqoZvl7jHrKnO7X/bskr/APgR/M4v
|
||||
DV7p+xH/AMFAvH/7Cnj+PVPCuotPo9xIv9paJcyE2WoJ3yv8D46SL8w46j5T7h/wUi/4Io+MP2Mra+8U
|
||||
+FZrjxj8P4zvlnWP/TtJX/pui8Mg/wCei8D+IL1Pw4V2nmvmqlLE4Gt73uyW3/AfVH9PZbm3DXHWSOVB
|
||||
xxGHqaSi1qnbaSesZL5Pqn1P6dP2If23vBv7cfwit/FPha68t4wItS06Zh9p0ufAzHIO4PVWHDDp3A9p
|
||||
DBq/mO/YL/bY8Q/sOfHzT/FWjyST6XIy2+saduxHqNqWG5SOm9eqN2PsSD/ST8G/ipofxs+Gui+LPDt4
|
||||
t9omv2kd5aTr/EjjOCOzDoQeQQRX3+T5tHGUve0mt1+p/nX42eElbgvNFLD3lhK13Tk901vCT7ro+q13
|
||||
udTRQDmivYPxMKKKKACiiigAooooAKKKKACiiigAooooAKKKKACortxHHuY7QAST6Cpa+fv+Covx6P7N
|
||||
/wCw38QPEsMzQ3/9mtp9iynDC4uSIIyPdS+76KazrVFTg6j2Sv8AcehlOW1cxxtHAUPjqyjBesmkvzPx
|
||||
C/4K6fthz/tfftj6/eW1003hnwvI+i6IgPyGGNiJJR6+ZIGbP93aO1fL5HmEmiRi7bm5bvX0h/wSg/ZV
|
||||
X9rn9tLwt4fvLf7RoOlyNrOsA/d+zQYbafZ5DHGR6Oa/K5e0xmK/vSf9fcf66U45dwXwtp7tDCUrvpfl
|
||||
X/pUn+LP0o/4IV/8Ev7X4K/DrT/i34002Ofxl4ig83SLedc/2NaOPlcA9JpF5J6qpA4Jav0kiXZGq+lR
|
||||
2FslnZxxRqqRxrtVQMBQOgFTV+n4PC08PSVKktF/Vz/KPjLi7H8S5vVzfMZXnN6LpGPSMeyS+93b1YUU
|
||||
UV0ny4UjDK0tFAHL/FX4T+H/AIy+A9R8N+KNJsda0XVIjFc2t1GHjdT/ACI4II5BAI5Ffgl/wVc/4JT6
|
||||
t+wn40bXdBNzq3w21icraXcg3S6XIxJFvOe/+w/G7GD83X+hOVN61zPxZ+E+h/Gj4eat4X8Sadb6pout
|
||||
27W13byrkSIwx9Qw6gjkEAivNzPK6eMp2l8S2fb/AIB+qeFPipmXBeZKtQbnh5v95TvpJd0uk10fXZ6H
|
||||
8pJzGev5UJHvP44r6I/4KR/sE61+wd8fbjw/N5134Z1PfdaBqTL/AMfVvn/VscY82PIVh7q3Rq+q/wDg
|
||||
hP8A8Euk+L2v2vxh8e6b5nhnSbnd4esbiPKancISDcMDw0UbDCj+JwT0Xn89oZXXq4n6razW/ku5/o5n
|
||||
3itkWW8LripVFOjON4Jbzk9oLtLvf4bO+x6P/wAEdf8AgipBY2GlfFb4u6Uk95NtutD8OXUeUt14ZLi4
|
||||
U9XPVYyPl4J5wF/V6C0W3jVURVVRgADAFOt4xFHhQqjPQCpK/SMFgqWFpqnTXq+5/mDxxxzmvFeZyzPN
|
||||
J3b0jFfDCPSMV+b3b1YAYFFFFdh8aFB5FFFAFPVdIg1axmt7qGKeCdDHJHIoZXU8EEHggivwb/4LZ/8A
|
||||
BNG3/Y6+JkPjLwfZ+T8P/FlyUWCNTs0e8ILGAH/nm4DMnphl7DP73sNy15V+2d+zbp/7VX7NHizwNqCR
|
||||
/wDE6smFrKy5Ntcp88Mo/wB2RVP0zXmZtl8cVQcWveW3r/wT9S8I/EXFcIZ9TxcJP2E2o1Y9HBve380f
|
||||
iXzWzZ/Lvgx/j6V+uH/Bt7+2XLdJ4g+DGsXbMtuja1oCufuLkC5hU+mWWQD/AGpDX5O+KfDt54S8S6hp
|
||||
OoQvb3+mXMlrcxMOY5EYq4/BgRXpX7DHx3n/AGZv2svAvjSN3jh0fVYvtYRsF7aTMUy++Y3evgMqxUsN
|
||||
i4zlprZ+j3/E/wBGvFjhOjxVwlicJFKUuX2lN72nFXjb1WnpJn9QkZzTqr6Xdx39lHNEyvHKoZWU5DA8
|
||||
g1Yr9SP8k7NaMKKKKACiiigAooooAKKKKACiiigAooooAKKKKADNfmr/AMHMvxCm0T9lnwT4dhZk/t7x
|
||||
EZ5cH7yW8DnH/fUiH8K/SljgV+Q//B0RrsjX3wb08N+7CavcMPU5s1X+TV5Oe1OXA1Gu1vvdj9f8A8HH
|
||||
Fce5dTl0lKX/AIDCUl+KR+TB5+tfrj/wbD/CiM2HxP8AG0igytLa6JbMR9wANNLg++6H8q/JDO5v97iv
|
||||
3W/4NwNAh0/9g7ULtFxJqHii7dyB12xQoM/gtfH8N01LGp9k2f2v9J7MZ4XgWrSpv+LOnF+nNzfjyn6D
|
||||
Rf6sU6mx/cp1fox/mSFFFFABRRRQAU2RPMFOooA8b/bR/Yg8HftzfC2Hwr4vjmSCzvI761u7YKLm1dT8
|
||||
2xiDgOm5GHcN6gGvTPAvgTS/ht4Q03QdFs7fT9J0m3S1tLaFNscMaABVA+grYoqfZxUnO2r6noVM0xlT
|
||||
CQwE6knRg3KMW/dTla7S7uyADFFFFUeeFFFFABRRRQAU2VPMTHT8KdRQB+b/AO0l/wAG6/hr9oD47eKv
|
||||
GkPxG1Tw+nibUJNRawi0iOZLeSQ7nAcyKSC249BjOOcZriY/+DXvQYunxe1nPr/YUXH/AJGr9VqK8uWS
|
||||
4KUnJ01d+v8AmfrGE8ceOMNh4YWjmElCEVFLlg7JKyV3FvRaasw/hr4Ql8A+AtG0Wa+k1ObSrGG0e7dN
|
||||
jXLRoEMhXJwWxnGTjNblFFeptoflNSpKcnOW7d36sKKM4oBzQSFFFFABRRRQAUUUUAFFFFABRRRQAUUU
|
||||
UAI3NfkZ/wAHQ3h1mPwc1RVwi/2vbO3ufsbKP0ev10IzX5z/APByr8NZPEv7HPhnxFDHubwx4iTzWx9y
|
||||
KeJ4z/5EEVeTnlNzwNRLtf7nc/XPAjMI4PjzLqs9nNx/8DhKK/Fo/DngNX7nf8G3HiqPV/2G9Y05GBm0
|
||||
nxTdLIPQPDA4/ma/DFzmv1a/4NiPi2tt4n+JngaWT5ru3tdbtUz18tmhmP8A4/DXx/DtTlxyT6pr9f0P
|
||||
7e+k1lc8ZwJXqU9fYzhP5KXK/uUvuP2Ci+5TqbF9ynV+jH+YoUUUUAFFFFABXiv/AAUQ/bH039gT9jPx
|
||||
98WdSht7tfCOmPPZ2csvlrqF45Edtb7uo3zMikjJAJPavaq/Ab/g9I/bq8q1+Hv7PekXvzyOfFviGND9
|
||||
1Rvhso2+p+0OQfSM+lAHCf8AEb38Rx/zQvwR/wCDu6/+Ipf+I3n4kKfm+Bfgn/wd3X/xFfj9+yJ+z/qH
|
||||
7VX7Tfgb4d6WjPe+MNbtdMUgE+UkkgEkh9kTcx9lNcV4ys49M8Walbw4ENvdSxIPQK5A/lQB/Zf/AMEU
|
||||
/wDgpVqX/BVT9i5PihrHhzTfCuojXbzR5dPsbh7iJBCI2VtzgHJEgyPar3/BZf8A4KIap/wS8/Ye1j4s
|
||||
aP4f07xRf6fqdjp8Wn3s7wQy/aJQjEugJBAyR9K+K/8Agy+8QnUv+CaHjKxLbv7P+IF3x/d32Vm3+Ndd
|
||||
/wAHhOqf2f8A8Ehpoc/8f3jPSYQPXCzv/wCyUAfDv/Eb38R/+iF+CP8Awd3X/wARX6kf8EG/+Ctfij/g
|
||||
r38C/G3jTxF4L0bwbH4Z11NGtYtPu5bhbo/Z0mdmMgGMeYg49TX8d9f1Lf8ABmz4S/sD/glHrGobdra5
|
||||
471G5zj7wS3s4R+RjNAH1R/wWt/4KiL/AMEm/wBjxfiJa6Pp/iTX9R1i20fStJvLhoI7t33PIxZQWwkU
|
||||
btwOu0d6/Ikf8HvXxII/5IX4I/8AB3df/EVn/wDB6X+1gvjP9pr4Z/CCzuDJb+CdHl13UFVvl+1XrBI1
|
||||
I9VhgDfSavyB+HXwom8W/CD4g+KmX/Q/CFtZKXxx591dpHGv1Mazn/gJoA/b79nv/g8u+Ifxs+Pngfwb
|
||||
N8FPBllF4t1+w0Z7iPWblmgW4uI4S4BTBI35wfSv6AkY+X83XvX8L/7BBx+3R8F/+x70P/04QV/ctrWr
|
||||
W+g6JdX13IsFrZxNPNI33Y0UFmY+wANAH43/APBXP/g6h17/AIJ3ftz+KvhF4T+G3hnxlZ+E4bRLvULz
|
||||
VJoZPtUtuk7xhUUjCCRF9dwYdq+bdO/4Pavidqt9Fb2/wH8EzTTuI0RdbussxOAB8nc1+Qf7bvx5l/af
|
||||
/a/+JvxCkkeQeMPE1/qsRfllilndo1/BNo/Cvdv+CA/7K6/tff8ABV34S+Grq1W70XStUHiLVkdd0Ztr
|
||||
FTcbXH915Ejj9/MA70Af2LfDLWtX174daJf+ILS10/WrrT4J9Qtrdi0NtcNGrSRoW5KqxIBPJAr4d/4K
|
||||
o/8ABxX8Ef8AgmHrFx4XuGu/iF8RoY9zeHdElQCwYjKi7uGysGf7oDyY52Y5qv8A8HEv/BWST/gl9+xt
|
||||
s8K3UcfxP+IrTaV4cJwzaeqoPPvtpznyldAoPG+ROoBFfyO+J/FWpeNvEN9qmrX95qmqapO9zd3d1KZZ
|
||||
7qV2LPI7t8zMzEkknJJzQB+v3xW/4PSv2hPE2qSf8In4B+F/hfT8/u47mC61G4A/2pDNGp/CMVF8Jv8A
|
||||
g9D/AGiPDOvxyeLfA/wv8UaXuBlgt7a6064K9wsoldVPuY2+lfCn7Fv/AARs/aO/4KAeFp/EHwv+Guo6
|
||||
14dt3aH+1rq5g0+zmkX7yRSTuglYdDs3YPBxXjv7Sv7L3j79j74t6l4F+JPhnUPCfirSSv2ixuwpbawy
|
||||
roykq6MOQ6kqfWgD+uj/AIJOf8F0vhD/AMFYtHurPw5JdeFPHulwCe/8K6rIhuQnG6W3kXi4hBOCwCsO
|
||||
NyLkZ+1q/hK/ZN/ad8T/ALHn7Q3hP4keEdQl0/XvCN/He27p0mUHEkLj+KORCyMD1ViK/uJ+BPxZ0/48
|
||||
/Bjwn430l/M0nxho9prVm3/TG4hWVP8Ax1xQB1lFFFABRRRQAUUUUAFFFFABRRRQAV4j/wAFGfgZ/wAN
|
||||
HfsXfEDwnHb/AGm8vtJlmsUA+b7TDiWHHvvRR+Ne3VHdAFOcfjU1IKcXB9dDuyzMKuBxlLG0HadOUZL1
|
||||
i01+KP5J7iBraVlbhlOCPSvoX/glZ+0ev7L37cPgfxBcXLWuk3t3/ZOqNnCG2uB5ZLeyuUf/AIBV/wD4
|
||||
K4fsvSfsq/tx+LtKgt3h0PX5zrukNj5TBcEsyL2+SXzEx6KPWvmuB9jA527TnPpX5PLnweIt1i/y/wA0
|
||||
f69U5YLjDhfTWji6X3c8fzi/uaP62LNg9srKdytyD61JXyd/wR6/bFj/AGuf2M9BuLqfzfE3hRBousqz
|
||||
bnaSJQI5T3/eR7Wz/e3DtX1gh+UV+q0K0atNVIbNH+RufZLicnzGtleLVqlGTi/k9/RrVeQtFFFankhR
|
||||
RRQBS8Ra5a+GdCvNSvp0tbLT4XubiZzhYo0UszE+gAJ/Cv4j/wDgqJ+2Zeft+ft3/Ej4pXDTfZfEWrSL
|
||||
pkUnW20+ECG1j/CFEz6tk96/pZ/4Okv25l/ZE/4Jg69oGnXn2bxV8Wpx4W09Uk2yrbOpe9lA67RADGT2
|
||||
adPWv5KZP9Y31oA/XT/g0D/ZIm+Kf7bPjT4rXUEcmk/Cnw1Mls7Ln/iY3ytFHj6W63RPcEr61+TvjeQz
|
||||
eMdWY9WvJicf9dGr+qj/AINef2SW/Zo/4I92/iK9t0h1z4qvd+KJm2YdbYx+TaqT3HlRCQennGv5U/FT
|
||||
tJ4m1Bm5ZrmQn/vo0Af0af8ABkf4h+1fskfGbS93zWXi+2usZ6CWzVf/AGkfyr0P/g841T7F/wAEuvDN
|
||||
vux9s8f2Ckeu2zvW/pXzt/wY7eLS6ftEaEzcRtoV+i565+3Ix/8AHV/MV7V/wes6j5H/AATy+G1v/wA/
|
||||
Hj+Jvrt0+8/xoA/mXr+u7/g118Er8Nv+CJ3wtnuAIW1qXVdXlY8Da+oXAVj/ANs0Wv5Ea/qmb4/r/wAE
|
||||
+/8Ag1V8L+JIZvsWryfDG00/SiOH+36lGEjZfdTcGT6IaAP54/8AgrH+1Ov7aX/BRX4tfEeCaSbTde8Q
|
||||
3CaWznLfYYCLe1z6fuYozj1Jr3PQfgIvwu/4NxfFXxEuLbyb74o/GLTNKgkK8y2enWN6y49vPluAcdSo
|
||||
9K+BEVriZVALM7YA9Sa/fD/gvN+zMv7Gn/Btv+zV8OfLWK70nxFps2pDbgtez6ff3Fx/5GlcfQCgD8b/
|
||||
APgneN3/AAUA+BoP/RQdB/8ATjb1/XF/wXX/AGiT+y//AMEmfjZ4mhuPst/NoD6LZPuw3n3zrZrt9x5x
|
||||
b/gJPav5JP8Agm7brd/8FD/gPE2QsnxE0BSR6HUrcV+6/wDwev8A7RX/AAi/7L3wl+F9rcFJ/F3iCfXr
|
||||
uNG5NvZQ+WgYehkugRnvF7UAfzgO252Pqa/ff/gyg/ZQEt78XvjTeWY3Qpb+ENKuHXs2Lm7C/wDfNpz9
|
||||
RX4EAbjX9df/AASV+Htr/wAEx/8AggVoPiHUoGs7zT/Bd78QdYDrtkM08D3iqw7MIvJjweRtoA/A/wD4
|
||||
OU/21pf2yf8Agqp44+x3jT+Gfh0w8H6QqyboyLVmFxIO3z3LTHI6qF9K+IvhV4Av/ix8T/DvhbSozNqn
|
||||
iTU7bS7RAPvTTyrGg/76YVQ8U+I7rxf4jvtVvZGmvNSuJLqeRjkvI7FmJ+pJNfcX/BtT8Arf9oL/AILH
|
||||
fCO1vYRPYeGbq58TTgjIDWVvJNCT9LgQUAf1kfsq/s76D+yj+zj4L+HPh21ht9H8G6TBpkARceYUQB5D
|
||||
6s7bnY9SWJr+fr/g9t0TT7L9rb4M30MUcepXnhS6juWUfM8cd2THn6F5MfU1/SLGuxMdfev5cf8Ag8m+
|
||||
Ki+NP+Co+i+Ho5A0fg7wZZWzqD9yWeae4b/xySKgD8k6/tO/4IZX0+of8Eh/2eZLgsz/APCFWEakj+BE
|
||||
2J/46q1/FjX9un/BI/wZJ8Pv+CX/AOz/AKRNH5c1r4A0Yyr/AHXezidh+bGgD6IooooAKKKKACiiigAo
|
||||
oooAKKKKACiiigD8/wD/AIOA/wBjJvj9+zFH460azafxH8OQ93II0zJcae2PPX32YWT6I3rX4QyEluet
|
||||
f1qazp0OsabcWlxCtxb3UTRSRuu5XVhgqR3BFfzi/wDBVf8AYauf2Hv2o9S0m2t5l8I68W1HQJ2GV8lm
|
||||
+aDP96Jjt9duw96+L4ny+zWLgvJ/o/0P7o+il4jRnRqcI42XvRvOjfqn8cF6P3l5OXY2P+CO37cx/Yr/
|
||||
AGp7NtWuHj8GeLtml6ypb93b5b91ckf9M2Jyf7jv14Ff0TWN7HeWcMsckbJKoZSpyGBGeK/koDeX9R1B
|
||||
r9u/+CCv/BRiP46/DGP4T+LL5R4u8IWv/Eqmlk+fVLBcALzy0kIwp7lNp7NRwzmVn9UqfL/In6U3hfOr
|
||||
FcX5dDWKUayXbaM/l8MvKz6M/SKimq42D6U6vtD+GQpsj7ELU6vG/wDgoP8AtXaZ+xD+xf8AEf4papJG
|
||||
q+ENFmu7WJz/AMfV4R5drCP+uk7xp/wKgD+a3/g7H/bmH7VH/BSW68E6XcpN4b+Ddr/YMWw5WTUH2yXr
|
||||
/UN5cP8A271+e/7LXwJ1T9p/9o3wP8O9FH/E08ba3aaLbsRkRGeVYy59lDFj7Ka5fx7401T4j+N9Y8Q6
|
||||
1dy3+sa7ezahfXMpy9xPK5eRz7lmJ/Guq/Zb/ac8XfscfHTQfiR4Du7LT/Fnhl5JdOurqxivY7d3ieIt
|
||||
5UqshYK7YJBwcEcgGgD+4DSvhzpPwM/Zxj8LaHD9l0Pwr4dGmWMK/wDLKC3tvLRfwVRX8JOtvv1a5b+9
|
||||
K5/U1+gms/8AB05+2rr2j3Vjc/EzR2tryF4JVXwppikoylSARBkcHqK/POeZriVnb7zHJoA/br/gyK1z
|
||||
7P8AtVfGzTd5AvPCtnc7ezeVd7c/h5x/Ovoz/g9w1Mw/sgfBqz3f8fHjG4mx/uWTj/2p+tfH/wDwZYeI
|
||||
Rp//AAUk8faeW/5CHw+uWAz1Md/ZH+TH86+mv+D4LVvK+D3wBscjM2s6vcY9dkFsv/s9AH878I3PX7k/
|
||||
8HPnx9b4O/8ABOb9kn9nezkjSaTw1YeINYiU4aNLSxitbdT/ALLySXJ+sIr8TPh/ojeJfHWi6dGpd7++
|
||||
gtlUDOS8ir/WvtL/AIONf2kl/aK/4Kp+OobNw2i/DmO38E6aA24KlimyXH1uDOfoRQB57/wRQ/ZZH7Y/
|
||||
/BUD4P8Age4tUvNJm16LU9XjkGY3sbMG6nRvZ0hKfVwO9fuF/wAHqjiD/gnR8N493+s+IMJAz1xp97Xz
|
||||
J/wZS/sqx+IfjX8V/jFeWbuvhnTrfw1pczD5FmuWM05X/aWOGIewm96+kf8Ag9judn7AfwrixzJ4+Vs+
|
||||
mNPu/wDGgD8Ef+CYtq19/wAFJf2fYV+9N8SPDyDjPJ1O3FfaX/B3F+0XJ8Z/+CsGo+G45vM0/wCGehWO
|
||||
hxIpyqyyIbuY/XM6qf8AcHpXyl/wRq0qHVf+CrP7Pv2hljt7Hxzpmoyu33US2nW4Zj9BETn2rzr9tz4+
|
||||
XH7Un7X/AMTPiJcSvMfGXiS+1SIv1WGSdjEv/AY9i/QUAa3/AATr/ZnuP2xv24fhf8M4I2kj8XeIbWzv
|
||||
Nv8ABaBw9y//AAGBZG/Cv6uP+Dhjxevwq/4Ip/HCSzVbeOTQYNIiRPlCpc3Vva7R7bZDx6V+Of8AwZm/
|
||||
soP8Sf23/GfxVurXzNO+G+gfY7aVhnZf3zbF2+4gjuM+gcetfqz/AMHUUkkP/BEH4sGPdn7XogbHdTq9
|
||||
nnNAH8iVftL/AMGT/wAJY/EX7bfxU8ZyR7m8L+EI9OiYj7j3l0jZ+u21YfQmvxar+gv/AIMeLayXw3+0
|
||||
Ncb0/tBrrRIyv8Xlbb0g/Tdn8qAP3vdti5r+Lf8A4LmftA/8NM/8FZPjp4nSTzLWPxPNo1oQcqYLALZI
|
||||
R7MIN3/Aq/ro/b//AGo9P/Yy/Yx+JXxNvpoo/wDhD9CuLy2V+k11s228eO++Zo1/4FX8OPiDWbrxHr17
|
||||
qF9M9xeX873FxK5y0sjsWZifUkk0AbXwY+HV78Xviz4Z8K6bDJcah4l1W10q2jjGWeSeZIlA/FhX94Hg
|
||||
Xwnb+BPBek6LaKsdrpFlDZQoowFSKNUUD8FFfyff8Gr/AOx3dftO/wDBVTw34guLR5PDvwntZPFF/KUz
|
||||
GJ1HlWaZ6bjM4cDuIXI6V/WvQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAV84/8ABTn9hjTv27/2cNQ8
|
||||
OtHBD4k0vN/oF84x9nulBwjHr5cgyjD3B6qK+jqjlh83d6Gs61ONSDpzWj0PSyfOMXlWOpZjgJ8lWlJS
|
||||
i+zX5p7NdVdM/k58ceCtU+Hfi/U9C1qzm0/VtHuXtLu2lGHhkQ7WU/Qjtwe1aHwh+LGufA34laP4s8NX
|
||||
0mma3oVwt1azp1DDqCOhVhlSDwQSD1r9ef8AgvL/AMEw5PiloV18ZfA2nb/EOkwAeIrKBMtqNsgGLlQP
|
||||
+WkSjDd2QeqjP4xSffOa/L8wwVTBYjk7apn+rXhzx5lvHXD6xVldrkrU3ryyas00/syWse6fdH9Lv/BP
|
||||
H9ujQf28fgNZ+J9OeG11q0C22t6YHzJYXIUbuOpjb7yN3Bx1BA+gQc1/MV+wn+254l/YU+ONn4s0F3ur
|
||||
GTbb6tpjNtj1O2zlkPow5Kt/CfUEg/0Z/s1/tG+Gf2pfhJpPjTwnqC32k6rGCOgktpB96KRf4ZFPBB/U
|
||||
YNfdZLmqxlK0/jW/n5o/gXxu8IcRwdmTxGFi5YKs3yS35H/JJ+X2X1Xoz0InaK/B3/g9I/bl/sbwR8Pv
|
||||
2f8AR7pluNYkHizXxG+P3EZeG0iYdw0nnPg94UNfvBIMxt9K/nS/4Kpf8G8n7Zn/AAUP/by+InxUez8A
|
||||
rpeu6iYdFgm8Sqr22mwARWqFdnyt5SKzAfxsx717R+Gn4afNK3vX6d/sK/8ABq98b/28P2VvCfxW0fxZ
|
||||
4B8L6T4whkurKy1mS7W78lZXjWRhHCygSbN688qynvWlpP8AwaCftdNqtst1a/Du3tXlVZpV8SB2jQn5
|
||||
mA8vnAycd6/qC+Bfwj0n4B/Bfwn4J0OBbfR/COkWuj2cYH3YoIViX8cKKAP5svHf/Bmf8evAHgnWNcuv
|
||||
iV8J5rbRrKa+mSKa/wB7JFGzsFzbgZIXjNfj41f3pfG/wzfeNvg34s0XTREdQ1fRryytRK22MyyQOibj
|
||||
2G5hk1/Ln/xCC/thf9A/4cf+FMv/AMboAX/g0D8THQf+Cwmn2u7A1vwjq9nj12iKf/2jX1t/wfF6p837
|
||||
Odl6f2/P+f8AZ6/0p/8AwQz/AODd/wDaU/4J7/8ABSzwL8UPHdn4Lj8KaLb6lBfmw10XNxiexnhTamwb
|
||||
v3jpnngc19Gf8HM3/BHP41f8FU/G3wluvhVb+GZrPwXZalFf/wBq6oLJhJcPblNgKncMRHPpQB/M98CP
|
||||
Flt4B+NXhPXryNZLXQ9XtdQmRujpDMshX8QpH41k+OvGeofETxnq2vatcPdanrV7Nf3cznLTTSuXdifU
|
||||
sxP41+mQ/wCDQf8AbCX/AJcPhx/4Uy//AButDwj/AMGgP7WFx4r02PWbf4e2ukyXcS3s0XiISSQwFx5j
|
||||
Koj5IXJA74xQB+0X/Bsh+y6v7Mv/AASF+Hck1v5Oq/ELzfGF8SuGcXZH2f8AD7KlufxNfLP/AAe1zMP2
|
||||
IPhDGPut44dj9RYXGP5mv2S8CeDbH4deC9J0DS4EtdM0SyhsLSFBhYoYkCIoHoFUCvzv/wCDlb/gl98U
|
||||
v+Co37PPw78M/CuHQZtT8N+IpdSvRqmofY4xC1s8Y2ttOTuI4oA/lr/Zi+L0nwG+K0fiu3/4/dO0vVIb
|
||||
Rt2DHcXGn3FtFIPdJJlf/gNcA675sL3r9RR/waD/ALYQ/wCXD4cf+FMv/wAbqbTP+DQP9rqXUoFurX4d
|
||||
W9vJIqyyr4jDmNScFtoj5wOcd8UAfrt/waa/spt+zv8A8EotG8RX1n9l1n4qapc+JJt6/vPsuRb2oP8A
|
||||
smOHzF9pvevqX/gr/wDstX37aP8AwTY+L3w30qFbjWde0GSXS4iQPNvLdlubdMnpulhRc9t1ez/Ab4Ra
|
||||
b8Avgp4R8EaOnl6Z4R0a00a1HrHbwrEpP1C5/GuqeMSDkZoA/gN1PS7jRb+a1u4ZLe5t3aOWKRdrxspw
|
||||
VI7EEEEHpX0Z/wAEyf8AgqZ8Tv8AglT8ZL3xh8N7jTZv7YtRZarpOqQtNYanEDuTeqsrBkbJV1YEbmHR
|
||||
iD+7P/BZb/g1U0b9tH4j6v8AFL4K6zpPgnxxrTPdaxoeoIy6TrFweTPG6AtbytyW+VkdjnCHcT+Q3xD/
|
||||
AODZ79tLwFrklovwbutaiVsJdaTrFjcwSj1B84MAf9pQfYUAVf8Agp1/wcF/HX/gqR4Ah8H+LJPDvhfw
|
||||
XHcJdy6L4etpYIr+VOUad5JHeQIeQuQu7BwSAR8P6No914i1a3sbG3mvLy8kWGCCFC0kzsQqqqjksSQA
|
||||
BySa/RT4Hf8ABql+2P8AFzVoo9U8C6L4FsWYB7vX9dtlVBxk+XbtLIeufu1+zn/BID/g2M+Gv/BOPxTY
|
||||
eP8AxpqUPxP+KFl+8s7uW18nS9DfA+a2gYsWlBziaQ5HBVUOSQDvv+Dc/wD4JYXH/BM/9h2FPFFkLX4l
|
||||
fER4ta8SIxBewAUi3ssj/nkjMW/6aSSdRiv0EpFG0D6UtABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABR
|
||||
RRQBBdWYukZWVWVxgqw4Ix0r8Pv+C2H/AASgk/Z18U3vxQ8AaazeBdWn36pZW8fy6DcOT8wA6QOx47Ix
|
||||
xwCor9yKy/F3hDT/AB14dvdJ1a1t9Q0zUoXt7q2njEkc8bgqysp4IIJFefmWXwxdJ0579H2Z+heGniJj
|
||||
+Ds3jmOD96D0qQvpOPVeq3i+j8rp/wAmvlnJ+uK+mv8AgmV/wUi8RfsBfFtbgNc6p4I1mVU1vSQ/3h08
|
||||
+EHhZl/8eHynsV9A/wCCuX/BKfUv2JfGs3ijwvDcah8MdYuD5EuN0miysSfs8p67P7jnr908jLfEvl4/
|
||||
OvziUcRgMTZ6Sjt5r9Uz/TjC4vh7xA4c5lathqys094vqn/LOL679Vuf1ZfBf41+G/2gfhxpfizwpqUG
|
||||
raHrEImt7iJs59VYdVZTkFTgggg11WxT/Cv5V/OX/wAEx/8Agp54k/YC+Iiwyfada8A6tOp1bSPM5j6D
|
||||
7RBk4WUDGR0cDBwcEf0DfA347+GP2jPhtpnizwjqlvq+h6tGJIZ4m+6e6MOqup4KnBB4NfoeV5pTxkLr
|
||||
SS3X+Xkf5w+LPhJmXBeP5Zpzws2/Z1Oj/uy7SX3PdeXXhFH8I/KlozRXqH5GBGab5a/3V/KnUUAIEVTw
|
||||
o/KlKhu1FFADfLX+6v5UbFH8K/lTqKACgrntRRQA3y1/ur+VGxR/Cv5U6igAHFFFFAAeaNvtRRQAbRnp
|
||||
RRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBh/EH4caL8VPB2o+H/EFhb6po+rQ
|
||||
tb3drcIHjnjYYKkH/wDWOvWvwQ/4Kr/8Emtc/Yf8Uz+JPDkN7q/wy1CY/Z7naZJNGZj8sE5/u5OEkPB4
|
||||
BO7r/QXWR418D6T8QfC1/o2t6fa6ppWpQvBdWtxGJIp0YYKsp4INebmeWU8ZT5ZaSWz7f8A/UPC3xTzP
|
||||
gvMfrOG9+jO3tKbekl3XaS6P5PQ/k4KbPvZFfRn/AATu/wCCkPjH9gH4krd6W7ar4T1GRf7Y0OaUiG5X
|
||||
p5kfaOYDow69DkdPcv8AgrJ/wRp1b9k++vPHXw+t7rWPhzKxkuLYZkufD5J6N3eD0fqvRuPmPwDjaPev
|
||||
zupTxOAr66SWz6P/ADP9J8rzThrxB4fbhy1sPVVpRlvF9mt4yi9mvVM/qO/ZY/a28GftffCqz8WeC9Vt
|
||||
7+xuFAntywW5sJcZMMyZyjj8j1BIIJ9NikZz04r+Xv8AZB/bL8cfsXfE+DxJ4M1JoOi32nysTaanEDnZ
|
||||
Kmee+GGGXPB65/fb/gn9/wAFKPAv7eXgVbjRrhNJ8TWUSnU9BupB9otW6bk/56RE5w49shTxX3WU53Tx
|
||||
UeSek+3f0/yP4C8YPAzMuEK7xuEvVwTek7XcL7Rnb8JbPyeh9I0UyKTzPpin17h+ChRRRQAUUUUAFFFF
|
||||
ABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUHmiigCtq
|
||||
el2+qWU0NzDHcQzIY5I5F3I6nggg8EGvyF/4Kq/8EKJNFfU/iF8E9Maa0Ytcal4WhBLQ9S0loO69zF25
|
||||
28YWv2DIyKjljURt8orjxuBo4qn7OqvR9UfbcC+IGccJZiswyqpb+aD+Ga7SX5NarofyU3VrJYzPHIjR
|
||||
yRnaysMMp7gjtjpitr4ZfFLxB8HfG2n+JPDOr3mia5pUgmtbu1fZJGw/Qg9CpyCOCCOK/cb/AIKc/wDB
|
||||
FLw3+15Fe+L/AAKun+FfiJtLyjZ5djrbdcTBR8kh/wCegGT/ABA9R+Ifxn+C/ij4AeP77wv4w0W90HXN
|
||||
PfbLbXKbSR2ZT0dD1DKSCOhr87zDK6+Bnd7X0f8AXU/0o8OvFXIeO8BKlTtGta1SjOzaTVnZPScH3S/x
|
||||
JH7Sf8Ewv+C4ui/tPSab4H+IzW3h3x9OUtrS8RdljrkhwoC/88pmJ+4flY/dPO0fodCWIOW3fhX8wf8A
|
||||
wT95/bi+EY/6m3Tf/SlK/p9g/wBXX2XD+YVcTQftd4u1+5/Ev0jPD3KuFs+pRyhOFOvBzcL3UXzWaj1s
|
||||
97O9tloPooor3j+ewooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiig
|
||||
AooooAKKKKACiiigAooooAKOtFFADXQMvSvEf2yv2B/h5+3B4IbSfGWlq15CjCw1W2UJfac5/ijfHTpl
|
||||
GBU45HTHuFFTUpxnFwmrpndluZ4vL8TDGYGpKnUg7qUXZp+qPwlj/wCCUfxF/YX/AG+PhXqFxbN4k8Dt
|
||||
4y00W2v2UR2KDcptW4Tkwt25JUno2Tiv3Wt02L606SJZh8wz9adXDgcup4TmVLaTvbsfacfeJGZ8X/Va
|
||||
ubKPtaMHByStz3d7tbJ97aPsgooor0D89CiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKK
|
||||
ACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKK
|
||||
ACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKK
|
||||
ACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKK
|
||||
ACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKK
|
||||
ACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKK
|
||||
ACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKK
|
||||
ACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA/9k=
|
||||
</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>
|
||||
</root>
|
||||
Reference in New Issue
Block a user