Merge branch 'master' of ssh://float.ownsoft.de/git/beyondSoft/BeWo
This commit is contained in:
@@ -39,16 +39,16 @@
|
||||
<UpdatePeriodically>false</UpdatePeriodically>
|
||||
<UpdateRequired>true</UpdateRequired>
|
||||
<MapFileExtensions>false</MapFileExtensions>
|
||||
<InstallUrl>https://app.ownsoft.de/test/</InstallUrl>
|
||||
<InstallUrl>https://app.ownsoft.de/</InstallUrl>
|
||||
<TargetCulture>de-DE</TargetCulture>
|
||||
<ProductName>BeWoPlaner</ProductName>
|
||||
<PublisherName>ownSoft GmbH</PublisherName>
|
||||
<MinimumRequiredVersion>2.0.1.250</MinimumRequiredVersion>
|
||||
<MinimumRequiredVersion>2.0.1.253</MinimumRequiredVersion>
|
||||
<CreateWebPageOnPublish>true</CreateWebPageOnPublish>
|
||||
<WebPage>publish.htm</WebPage>
|
||||
<OpenBrowserOnPublish>false</OpenBrowserOnPublish>
|
||||
<TrustUrlParameters>true</TrustUrlParameters>
|
||||
<ApplicationRevision>251</ApplicationRevision>
|
||||
<ApplicationRevision>254</ApplicationRevision>
|
||||
<ApplicationVersion>2.0.1.%2a</ApplicationVersion>
|
||||
<UseApplicationTrust>false</UseApplicationTrust>
|
||||
<CreateDesktopShortcut>true</CreateDesktopShortcut>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<PublishUrlHistory>D:\Projects\beyondsoft\BeWoPlaner\Publish\|publish\|D:\Projects\beyondsoft\BeWoPlaner\PublishTest\|D:\Projects\beyondsoft\BeWoPlaner\PublishDev\|D:\Projects\beyondsoft\BeWoPlaner\Publish45\</PublishUrlHistory>
|
||||
<InstallUrlHistory>https://app.ownsoft.de/test/|https://app.ownsoft.de/|https://app.ownsoft.de/dev/|http://app.ownsoft.de/dev/|http://app.beyondsoft.de/dev/</InstallUrlHistory>
|
||||
<InstallUrlHistory>https://app.ownsoft.de/|https://app.ownsoft.de/test/|https://app.ownsoft.de/dev/|http://app.ownsoft.de/dev/|http://app.beyondsoft.de/dev/</InstallUrlHistory>
|
||||
<SupportUrlHistory />
|
||||
<UpdateUrlHistory>https://app.ownsoft.de/|https://app.ownsoft.de/bewoplaner.application/</UpdateUrlHistory>
|
||||
<BootstrapperUrlHistory />
|
||||
|
||||
@@ -51,7 +51,7 @@ namespace BeWo
|
||||
|
||||
public static MainControl MainControl;
|
||||
public static string ShortVersion = "3.22";
|
||||
public static string Version = "Version 3.22 Test";
|
||||
public static string Version = "Version 3.22";
|
||||
|
||||
public static int RenderTier = 0;
|
||||
|
||||
@@ -527,6 +527,9 @@ namespace BeWo
|
||||
val = UserSettingsUtils.GetSettingValue(_Mandator.Settings, SettingsKeys.AllowGkvAbrechnung);
|
||||
AppSettings.AllowGkvAbrechnung = val != null && val.Equals("1");
|
||||
|
||||
val = UserSettingsUtils.GetSettingValue(_Mandator.Settings, SettingsKeys.ShowWohnhilfe);
|
||||
AppSettings.ShowWohnhilfe = val != null && val.Equals("1");
|
||||
|
||||
val = UserSettingsUtils.GetSettingValue(_Mandator.Settings, SettingsKeys.ShowImportAbschlagszahlungen);
|
||||
AppSettings.ShowImportAbschlagszahlungen = val != null && val.Equals("1");
|
||||
|
||||
@@ -601,6 +604,7 @@ namespace BeWo
|
||||
AppSettings.ShowAIInternal = true;
|
||||
AppSettings.ShowWorktime = true;
|
||||
AppSettings.ShowPersehImport = true;
|
||||
AppSettings.ShowWohnhilfe = true;
|
||||
//showInfoButtonInCalender = true;
|
||||
#endif
|
||||
|
||||
|
||||
@@ -450,7 +450,7 @@ namespace BeWo.Core.Config
|
||||
public bool ShowAIInternal { get; set; }
|
||||
|
||||
public bool AllowGkvAbrechnung { get; set; }
|
||||
|
||||
public bool ShowWohnhilfe { get; set; }
|
||||
public bool ShowImportAbschlagszahlungen { get; set; }
|
||||
|
||||
public bool ShowPersehImport { get; set; }
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace BeWo
|
||||
{
|
||||
#if DEBUG
|
||||
|
||||
//return _CurrentConfig ?? (_CurrentConfig = SimpleAutoLogin);
|
||||
return _CurrentConfig ?? (_CurrentConfig = SimpleAutoLogin);
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
@@ -57,7 +57,7 @@
|
||||
<dxa:AccordionItem Header="{markup:Translate Medikamentenarten}" Name="TabitemMedikamentenarten" Selected="Tabitem_Selected" Foreground="Black"/>
|
||||
<dxa:AccordionItem Header="{markup:Translate Rollen des Umfeldes}" Name="TabitemEnvironmentRoles" Selected="Tabitem_Selected" Foreground="Black"/>
|
||||
<dxa:AccordionItem Header="{markup:Translate Vermittlung}" Name="TabitemPlacementObjectives" Selected="Tabitem_Selected" Foreground="Black"/>
|
||||
<dxa:AccordionItem Header="{t:Translate Falldaten}" Foreground="Black" >
|
||||
<dxa:AccordionItem Header="{t:Translate Falldaten}" Foreground="Black" Name="TabitemFalldaten">
|
||||
<dxa:AccordionItem Header="{markup:Translate Auftragsherkunft}" Name="TabitemAuftragsherkunft" Selected="Tabitem_Selected" Foreground="Black"/>
|
||||
<dxa:AccordionItem Header="{markup:Translate Vermittlungsgrundlage}" Name="TabitemVermittlungsgrundlage" Selected="Tabitem_Selected" Foreground="Black"/>
|
||||
</dxa:AccordionItem>
|
||||
|
||||
@@ -100,6 +100,10 @@ namespace BeWo.View.Master
|
||||
TabitemDienste.Visibility = Visibility.Visible;
|
||||
#endif
|
||||
|
||||
if (!BeWoApp.AppSettings.ShowWohnhilfe)
|
||||
{
|
||||
TabitemFalldaten.Visibility = Visibility.Collapsed;
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
@@ -1757,31 +1757,34 @@ namespace BeWo.ViewModel.ListViewModel
|
||||
|
||||
private void UpdateGruppenZiele(List<SupportConceptTreeNodeDetailInfoDC> allInfos)
|
||||
{
|
||||
var goalCats = new List<ValueListEntryDC>();
|
||||
var goals = new List<ValueListEntryDC>();
|
||||
|
||||
var goalCategoryDict = _AllGoalCategories.ToDictionary(goalCat => goalCat.ValueListEntryOid.Value);
|
||||
|
||||
foreach (var info in allInfos)
|
||||
if (allInfos != null && _AllGoalCategories != null)
|
||||
{
|
||||
foreach (var goal in info.SupportConceptGoals)
|
||||
var goalCats = new List<ValueListEntryDC>();
|
||||
var goals = new List<ValueListEntryDC>();
|
||||
|
||||
var goalCategoryDict = _AllGoalCategories.ToDictionary(goalCat => goalCat.ValueListEntryOid.Value);
|
||||
|
||||
foreach (var info in allInfos)
|
||||
{
|
||||
if (goal.ParentOid != null && goalCategoryDict.ContainsKey(goal.ParentOid.Value))
|
||||
foreach (var goal in info.SupportConceptGoals)
|
||||
{
|
||||
var path = GetAllParentGoalCategoies(goalCategoryDict, goal);
|
||||
foreach (var goalCat in path)
|
||||
if (goal.ParentOid != null && goalCategoryDict.ContainsKey(goal.ParentOid.Value))
|
||||
{
|
||||
goalCats.Add(goalCat);
|
||||
goalCategoryDict.Remove(goalCat.ValueListEntryOid.Value);
|
||||
var path = GetAllParentGoalCategoies(goalCategoryDict, goal);
|
||||
foreach (var goalCat in path)
|
||||
{
|
||||
goalCats.Add(goalCat);
|
||||
goalCategoryDict.Remove(goalCat.ValueListEntryOid.Value);
|
||||
}
|
||||
}
|
||||
|
||||
goals.Add(goal);
|
||||
}
|
||||
|
||||
goals.Add(goal);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
PrototypeVM.ChangeGoalTree(goalCats, goals);
|
||||
|
||||
PrototypeVM.ChangeGoalTree(goalCats, goals);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -98,14 +98,20 @@ namespace BeWo.ViewModel
|
||||
if (!IsDienstplanungRight(r) || BeWoApp.AppSettings.ShowDienstplanung)
|
||||
{
|
||||
if (!IsAbwesenheitsPlanungRight(r) || BeWoApp.AppSettings.ShowUrlaubsplanung)
|
||||
{
|
||||
if (!IsUnterschriftRight(r))
|
||||
{
|
||||
if (r != UserRightType.SupportConcept_ImportData || BeWoApp.AppSettings.ShowPersehImport)
|
||||
{
|
||||
if (r != UserRightType.AiChatInZeiterfassung || BeWoApp.AppSettings.ShowAI)
|
||||
{
|
||||
possibleRights.Add(r);
|
||||
{
|
||||
if (!IsWohnhilfeRight(r) || BeWoApp.AppSettings.ShowWohnhilfe)
|
||||
{
|
||||
if (!IsGkvAbrechnungRight(r) || BeWoApp.AppSettings.AllowGkvAbrechnung)
|
||||
{
|
||||
if (!IsUnterschriftRight(r))
|
||||
{
|
||||
if (r != UserRightType.SupportConcept_ImportData || BeWoApp.AppSettings.ShowPersehImport)
|
||||
{
|
||||
if (r != UserRightType.AiChatInZeiterfassung || BeWoApp.AppSettings.ShowAI)
|
||||
{
|
||||
possibleRights.Add(r);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -150,7 +156,8 @@ namespace BeWo.ViewModel
|
||||
|
||||
private static bool IsDienstplanungRight(UserRightType userRightType)
|
||||
{
|
||||
if (userRightType == UserRightType.DienstplanungAnsehen)
|
||||
if (userRightType == UserRightType.DienstplanungAnsehen
|
||||
|| userRightType == UserRightType.DienstplanungBearbeiten)
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
@@ -243,6 +250,32 @@ namespace BeWo.ViewModel
|
||||
return false;
|
||||
}
|
||||
|
||||
private static bool IsWohnhilfeRight(UserRightType userRightType)
|
||||
{
|
||||
if (userRightType == UserRightType.WohnheimView_Wohneinheit_Belegung_View
|
||||
|| userRightType == UserRightType.WohnheimView_Wohneinheit_Belegung_Manage
|
||||
|| userRightType == UserRightType.WohnheimView_Wohneinheit_View
|
||||
|| userRightType == UserRightType.WohnheimView_Wohneinheit_Manage
|
||||
|| userRightType == UserRightType.WohnheimView_Wohneinheit_Gallery_View
|
||||
|| userRightType == UserRightType.WohnheimView_Wohneinheit_Gallery_Manage
|
||||
|| userRightType == UserRightType.Customer_GemeinnutzigeArbeit_View
|
||||
|| userRightType == UserRightType.Customer_GemeinnutzigeArbeit_Manage
|
||||
|| userRightType == UserRightType.Customer_Wohnhilfe_View
|
||||
|| userRightType == UserRightType.Customer_Wohnhilfe_Manage)
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
private static bool IsGkvAbrechnungRight(UserRightType userRightType)
|
||||
{
|
||||
if (userRightType == UserRightType.Finance_Gkv_View
|
||||
|| userRightType == UserRightType.Finance_Gkv_Create
|
||||
|| userRightType == UserRightType.Finance_Gkv_Send
|
||||
|| userRightType == UserRightType.Finance_Gkv_Delete)
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
private static bool IsUnterschriftRight(UserRightType userRightType)
|
||||
{
|
||||
if (userRightType == UserRightType.ServiceRecord_AllowCreateAfterEmployeeSignature
|
||||
|
||||
@@ -159,6 +159,7 @@ namespace BeWo.Data.Security
|
||||
}
|
||||
|
||||
var rights_3_22 = new List<UserRightType> {
|
||||
UserRightType.DienstplanungBearbeiten,
|
||||
UserRightType.WohnheimView_Wohneinheit_Belegung_View,
|
||||
UserRightType.WohnheimView_Wohneinheit_Belegung_Manage,
|
||||
UserRightType.WohnheimView_Wohneinheit_View,
|
||||
|
||||
@@ -1367,3 +1367,11 @@ ADD CONSTRAINT `FK_CUSTOMERVERMITTLUNGARBEIT_VERMITTLUNGSGRUNDLAGE`
|
||||
REFERENCES `valuelistentry` (`Oid`)
|
||||
ON DELETE SET NULL
|
||||
ON UPDATE CASCADE;
|
||||
|
||||
|
||||
ALTER TABLE `organisation`
|
||||
ADD COLUMN `BezDatenannahmestelle` VARCHAR(4096) NULL DEFAULT NULL AFTER `IKDatenannahmestelle`;
|
||||
|
||||
ALTER TABLE `organisation`
|
||||
ADD COLUMN `Verfahrensstufe` INT NULL DEFAULT 0 AFTER `BusinessPartnerId`;
|
||||
|
||||
|
||||
122
ReportImp/AutismusKoelnBonn/BasisRechnung.Designer.cs
generated
122
ReportImp/AutismusKoelnBonn/BasisRechnung.Designer.cs
generated
@@ -30,6 +30,7 @@ namespace AutismusKoelnBonn
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ServiceInvoiceReport));
|
||||
DevExpress.XtraReports.UI.XRWatermark xrWatermark1 = new DevExpress.XtraReports.UI.XRWatermark();
|
||||
this.Detail = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
|
||||
@@ -121,14 +122,14 @@ namespace AutismusKoelnBonn
|
||||
//
|
||||
this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.xrPictureBox1});
|
||||
this.ReportHeader.Font = new System.Drawing.Font("Verdana", 10F);
|
||||
this.ReportHeader.Font = new DevExpress.Drawing.DXFont("Verdana", 10F);
|
||||
this.ReportHeader.HeightF = 147.9167F;
|
||||
this.ReportHeader.Name = "ReportHeader";
|
||||
this.ReportHeader.StylePriority.UseFont = false;
|
||||
//
|
||||
// xrPictureBox1
|
||||
//
|
||||
this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
|
||||
this.xrPictureBox1.ImageSource = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("xrPictureBox1.ImageSource"));
|
||||
this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(466.3054F, 0F);
|
||||
this.xrPictureBox1.Name = "xrPictureBox1";
|
||||
this.xrPictureBox1.SizeF = new System.Drawing.SizeF(236.1249F, 141.3333F);
|
||||
@@ -157,20 +158,20 @@ namespace AutismusKoelnBonn
|
||||
//
|
||||
// xrPageInfo2
|
||||
//
|
||||
this.xrPageInfo2.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.xrPageInfo2.Format = "Seite {0} von {1}";
|
||||
this.xrPageInfo2.Font = new DevExpress.Drawing.DXFont("Arial", 8F);
|
||||
this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(509.0416F, 94.12498F);
|
||||
this.xrPageInfo2.Name = "xrPageInfo2";
|
||||
this.xrPageInfo2.SizeF = new System.Drawing.SizeF(153.0834F, 23F);
|
||||
this.xrPageInfo2.StylePriority.UseFont = false;
|
||||
this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrPageInfo2.TextFormatString = "Seite {0} von {1}";
|
||||
//
|
||||
// xrRichText3
|
||||
//
|
||||
this.xrRichText3.BorderColor = System.Drawing.Color.DarkGray;
|
||||
this.xrRichText3.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Dot;
|
||||
this.xrRichText3.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.xrRichText3.Font = new System.Drawing.Font("Verdana", 10F);
|
||||
this.xrRichText3.Font = new DevExpress.Drawing.DXFont("Verdana", 10F);
|
||||
this.xrRichText3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.xrRichText3.Name = "xrRichText3";
|
||||
this.xrRichText3.SerializableRtfString = resources.GetString("xrRichText3.SerializableRtfString");
|
||||
@@ -184,7 +185,7 @@ namespace AutismusKoelnBonn
|
||||
this.xrRichText5.BorderColor = System.Drawing.Color.DarkGray;
|
||||
this.xrRichText5.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Dot;
|
||||
this.xrRichText5.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.xrRichText5.Font = new System.Drawing.Font("Verdana", 10F);
|
||||
this.xrRichText5.Font = new DevExpress.Drawing.DXFont("Verdana", 10F);
|
||||
this.xrRichText5.LocationFloat = new DevExpress.Utils.PointFloat(198.9583F, 0F);
|
||||
this.xrRichText5.Name = "xrRichText5";
|
||||
this.xrRichText5.SerializableRtfString = resources.GetString("xrRichText5.SerializableRtfString");
|
||||
@@ -198,7 +199,7 @@ namespace AutismusKoelnBonn
|
||||
this.xrRichText6.BorderColor = System.Drawing.Color.DarkGray;
|
||||
this.xrRichText6.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Dot;
|
||||
this.xrRichText6.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.xrRichText6.Font = new System.Drawing.Font("Verdana", 10F);
|
||||
this.xrRichText6.Font = new DevExpress.Drawing.DXFont("Verdana", 10F);
|
||||
this.xrRichText6.LocationFloat = new DevExpress.Utils.PointFloat(509.0416F, 0F);
|
||||
this.xrRichText6.Name = "xrRichText6";
|
||||
this.xrRichText6.SerializableRtfString = resources.GetString("xrRichText6.SerializableRtfString");
|
||||
@@ -231,14 +232,15 @@ namespace AutismusKoelnBonn
|
||||
this.xrLabel2,
|
||||
this.xrLabel8,
|
||||
this.lblAbrechnungszeitraum});
|
||||
this.Page1.Font = new System.Drawing.Font("Verdana", 10F);
|
||||
this.Page1.Font = new DevExpress.Drawing.DXFont("Verdana", 10F);
|
||||
this.Page1.HeightF = 514.5001F;
|
||||
this.Page1.Name = "Page1";
|
||||
this.Page1.StylePriority.UseFont = false;
|
||||
//
|
||||
// lblAnrede
|
||||
//
|
||||
this.lblAnrede.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.lblAnrede.Font = new DevExpress.Drawing.DXFont("Arial", 11.25F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.lblAnrede.LocationFloat = new DevExpress.Utils.PointFloat(30.29156F, 400F);
|
||||
this.lblAnrede.Multiline = true;
|
||||
this.lblAnrede.Name = "lblAnrede";
|
||||
@@ -251,7 +253,7 @@ namespace AutismusKoelnBonn
|
||||
// lblBonnHZE
|
||||
//
|
||||
this.lblBonnHZE.CanGrow = false;
|
||||
this.lblBonnHZE.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.lblBonnHZE.Font = new DevExpress.Drawing.DXFont("Arial", 8F);
|
||||
this.lblBonnHZE.LocationFloat = new DevExpress.Utils.PointFloat(466.3054F, 0F);
|
||||
this.lblBonnHZE.Name = "lblBonnHZE";
|
||||
this.lblBonnHZE.Padding = new DevExpress.XtraPrinting.PaddingInfo(6, 0, 0, 0, 100F);
|
||||
@@ -265,7 +267,7 @@ namespace AutismusKoelnBonn
|
||||
// lblHeaderKoelnHZE
|
||||
//
|
||||
this.lblHeaderKoelnHZE.CanGrow = false;
|
||||
this.lblHeaderKoelnHZE.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.lblHeaderKoelnHZE.Font = new DevExpress.Drawing.DXFont("Arial", 8F);
|
||||
this.lblHeaderKoelnHZE.LocationFloat = new DevExpress.Utils.PointFloat(472.4583F, 0F);
|
||||
this.lblHeaderKoelnHZE.Name = "lblHeaderKoelnHZE";
|
||||
this.lblHeaderKoelnHZE.Padding = new DevExpress.XtraPrinting.PaddingInfo(1, 0, 0, 0, 100F);
|
||||
@@ -278,7 +280,7 @@ namespace AutismusKoelnBonn
|
||||
//
|
||||
// lblTeamKoelnHZE
|
||||
//
|
||||
this.lblTeamKoelnHZE.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.lblTeamKoelnHZE.Font = new DevExpress.Drawing.DXFont("Arial", 8F);
|
||||
this.lblTeamKoelnHZE.LocationFloat = new DevExpress.Utils.PointFloat(472.4583F, 111.5F);
|
||||
this.lblTeamKoelnHZE.Name = "lblTeamKoelnHZE";
|
||||
this.lblTeamKoelnHZE.SerializableRtfString = resources.GetString("lblTeamKoelnHZE.SerializableRtfString");
|
||||
@@ -288,7 +290,7 @@ namespace AutismusKoelnBonn
|
||||
//
|
||||
// lblAbsenderBonn
|
||||
//
|
||||
this.lblAbsenderBonn.Font = new System.Drawing.Font("Verdana", 10F);
|
||||
this.lblAbsenderBonn.Font = new DevExpress.Drawing.DXFont("Verdana", 10F);
|
||||
this.lblAbsenderBonn.LocationFloat = new DevExpress.Utils.PointFloat(30.29156F, 0F);
|
||||
this.lblAbsenderBonn.Name = "lblAbsenderBonn";
|
||||
this.lblAbsenderBonn.SerializableRtfString = resources.GetString("lblAbsenderBonn.SerializableRtfString");
|
||||
@@ -298,7 +300,7 @@ namespace AutismusKoelnBonn
|
||||
// lblTeamBonn
|
||||
//
|
||||
this.lblTeamBonn.CanGrow = false;
|
||||
this.lblTeamBonn.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.lblTeamBonn.Font = new DevExpress.Drawing.DXFont("Arial", 8F);
|
||||
this.lblTeamBonn.LocationFloat = new DevExpress.Utils.PointFloat(467.8752F, 0F);
|
||||
this.lblTeamBonn.Name = "lblTeamBonn";
|
||||
this.lblTeamBonn.Padding = new DevExpress.XtraPrinting.PaddingInfo(6, 0, 0, 0, 100F);
|
||||
@@ -311,7 +313,7 @@ namespace AutismusKoelnBonn
|
||||
//
|
||||
// lblTeamMerkenich
|
||||
//
|
||||
this.lblTeamMerkenich.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.lblTeamMerkenich.Font = new DevExpress.Drawing.DXFont("Arial", 8F);
|
||||
this.lblTeamMerkenich.LocationFloat = new DevExpress.Utils.PointFloat(473.3195F, 111.5F);
|
||||
this.lblTeamMerkenich.Name = "lblTeamMerkenich";
|
||||
this.lblTeamMerkenich.SerializableRtfString = resources.GetString("lblTeamMerkenich.SerializableRtfString");
|
||||
@@ -323,7 +325,7 @@ namespace AutismusKoelnBonn
|
||||
//
|
||||
this.lbl3.BackColor = System.Drawing.Color.Transparent;
|
||||
this.lbl3.CanShrink = true;
|
||||
this.lbl3.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.lbl3.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.lbl3.LocationFloat = new DevExpress.Utils.PointFloat(31.33326F, 380F);
|
||||
this.lbl3.Name = "lbl3";
|
||||
this.lbl3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -339,7 +341,8 @@ namespace AutismusKoelnBonn
|
||||
//
|
||||
this.lbl2.BackColor = System.Drawing.Color.Transparent;
|
||||
this.lbl2.CanShrink = true;
|
||||
this.lbl2.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.lbl2.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Bold, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.lbl2.LocationFloat = new DevExpress.Utils.PointFloat(31.33326F, 360F);
|
||||
this.lbl2.Multiline = true;
|
||||
this.lbl2.Name = "lbl2";
|
||||
@@ -356,7 +359,8 @@ namespace AutismusKoelnBonn
|
||||
//
|
||||
this.xrLabel11.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel11.CanShrink = true;
|
||||
this.xrLabel11.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrLabel11.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Bold, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(420.9998F, 291.0416F);
|
||||
this.xrLabel11.Name = "xrLabel11";
|
||||
this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -370,7 +374,8 @@ namespace AutismusKoelnBonn
|
||||
//
|
||||
this.xrLabel10.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel10.CanShrink = true;
|
||||
this.xrLabel10.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrLabel10.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Bold, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(420.9998F, 248.0416F);
|
||||
this.xrLabel10.Name = "xrLabel10";
|
||||
this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -384,7 +389,8 @@ namespace AutismusKoelnBonn
|
||||
//
|
||||
this.xrLabel6.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel6.CanShrink = true;
|
||||
this.xrLabel6.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrLabel6.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Bold, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(563.3748F, 271.0416F);
|
||||
this.xrLabel6.Name = "xrLabel6";
|
||||
this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -398,7 +404,7 @@ namespace AutismusKoelnBonn
|
||||
//
|
||||
// lblAbsenderKoeln
|
||||
//
|
||||
this.lblAbsenderKoeln.Font = new System.Drawing.Font("Verdana", 10F);
|
||||
this.lblAbsenderKoeln.Font = new DevExpress.Drawing.DXFont("Verdana", 10F);
|
||||
this.lblAbsenderKoeln.LocationFloat = new DevExpress.Utils.PointFloat(30.29156F, 0F);
|
||||
this.lblAbsenderKoeln.Name = "lblAbsenderKoeln";
|
||||
this.lblAbsenderKoeln.SerializableRtfString = resources.GetString("lblAbsenderKoeln.SerializableRtfString");
|
||||
@@ -406,7 +412,7 @@ namespace AutismusKoelnBonn
|
||||
//
|
||||
// lblTeamKoeln
|
||||
//
|
||||
this.lblTeamKoeln.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.lblTeamKoeln.Font = new DevExpress.Drawing.DXFont("Arial", 8F);
|
||||
this.lblTeamKoeln.LocationFloat = new DevExpress.Utils.PointFloat(472.4583F, 111.5F);
|
||||
this.lblTeamKoeln.Name = "lblTeamKoeln";
|
||||
this.lblTeamKoeln.SerializableRtfString = resources.GetString("lblTeamKoeln.SerializableRtfString");
|
||||
@@ -416,7 +422,7 @@ namespace AutismusKoelnBonn
|
||||
// lblHeaderKoeln
|
||||
//
|
||||
this.lblHeaderKoeln.CanGrow = false;
|
||||
this.lblHeaderKoeln.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.lblHeaderKoeln.Font = new DevExpress.Drawing.DXFont("Arial", 8F);
|
||||
this.lblHeaderKoeln.LocationFloat = new DevExpress.Utils.PointFloat(472.4583F, 0F);
|
||||
this.lblHeaderKoeln.Name = "lblHeaderKoeln";
|
||||
this.lblHeaderKoeln.SerializableRtfString = resources.GetString("lblHeaderKoeln.SerializableRtfString");
|
||||
@@ -437,7 +443,8 @@ namespace AutismusKoelnBonn
|
||||
//
|
||||
this.xrLabel4.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel4.CanShrink = true;
|
||||
this.xrLabel4.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrLabel4.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Bold, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(563.3748F, 291.0416F);
|
||||
this.xrLabel4.Multiline = true;
|
||||
this.xrLabel4.Name = "xrLabel4";
|
||||
@@ -454,7 +461,7 @@ namespace AutismusKoelnBonn
|
||||
//
|
||||
this.lbl1.BackColor = System.Drawing.Color.Transparent;
|
||||
this.lbl1.CanShrink = true;
|
||||
this.lbl1.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.lbl1.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.lbl1.LocationFloat = new DevExpress.Utils.PointFloat(30.29156F, 340F);
|
||||
this.lbl1.Name = "lbl1";
|
||||
this.lbl1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -468,7 +475,8 @@ namespace AutismusKoelnBonn
|
||||
//
|
||||
this.xrLabel2.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel2.CanShrink = true;
|
||||
this.xrLabel2.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrLabel2.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Bold, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(420.9998F, 271.0416F);
|
||||
this.xrLabel2.Name = "xrLabel2";
|
||||
this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -482,7 +490,8 @@ namespace AutismusKoelnBonn
|
||||
//
|
||||
this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceDate")});
|
||||
this.xrLabel8.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrLabel8.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Bold, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(563.3748F, 248.0416F);
|
||||
this.xrLabel8.Name = "xrLabel8";
|
||||
this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -494,7 +503,8 @@ namespace AutismusKoelnBonn
|
||||
//
|
||||
// lblAbrechnungszeitraum
|
||||
//
|
||||
this.lblAbrechnungszeitraum.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.lblAbrechnungszeitraum.Font = new DevExpress.Drawing.DXFont("Arial", 11.25F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.lblAbrechnungszeitraum.LocationFloat = new DevExpress.Utils.PointFloat(30.29159F, 442.2917F);
|
||||
this.lblAbrechnungszeitraum.Multiline = true;
|
||||
this.lblAbrechnungszeitraum.Name = "lblAbrechnungszeitraum";
|
||||
@@ -547,7 +557,7 @@ namespace AutismusKoelnBonn
|
||||
this.xrTableCell32.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell32.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.xrTableCell32.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.xrTableCell32.Name = "xrTableCell32";
|
||||
this.xrTableCell32.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell32.StylePriority.UseBackColor = false;
|
||||
@@ -567,7 +577,7 @@ namespace AutismusKoelnBonn
|
||||
this.xrTableCell37.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell37.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.xrTableCell37.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.xrTableCell37.Name = "xrTableCell37";
|
||||
this.xrTableCell37.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell37.StylePriority.UseBackColor = false;
|
||||
@@ -587,7 +597,7 @@ namespace AutismusKoelnBonn
|
||||
this.xrTableCell35.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell35.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.xrTableCell35.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.xrTableCell35.Name = "xrTableCell35";
|
||||
this.xrTableCell35.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell35.StylePriority.UseBackColor = false;
|
||||
@@ -607,7 +617,7 @@ namespace AutismusKoelnBonn
|
||||
this.xrTableCell33.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell33.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.xrTableCell33.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.xrTableCell33.Name = "xrTableCell33";
|
||||
this.xrTableCell33.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell33.StylePriority.UseBackColor = false;
|
||||
@@ -627,7 +637,7 @@ namespace AutismusKoelnBonn
|
||||
this.xrTableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell34.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.xrTableCell34.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.xrTableCell34.Name = "xrTableCell34";
|
||||
this.xrTableCell34.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell34.StylePriority.UseBackColor = false;
|
||||
@@ -660,7 +670,8 @@ namespace AutismusKoelnBonn
|
||||
//
|
||||
// xrTable6
|
||||
//
|
||||
this.xrTable6.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrTable6.Font = new DevExpress.Drawing.DXFont("Verdana", 8.25F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.xrTable6.LocationFloat = new DevExpress.Utils.PointFloat(31.86131F, 0F);
|
||||
this.xrTable6.Name = "xrTable6";
|
||||
this.xrTable6.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
@@ -686,7 +697,8 @@ namespace AutismusKoelnBonn
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell40.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.ServiceDescription")});
|
||||
this.xrTableCell40.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrTableCell40.Font = new DevExpress.Drawing.DXFont("Arial", 11.25F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.xrTableCell40.Name = "xrTableCell40";
|
||||
this.xrTableCell40.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell40.StylePriority.UseBorderColor = false;
|
||||
@@ -705,7 +717,8 @@ namespace AutismusKoelnBonn
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell42.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.AccountingPeriodStart", "{0:MMMM yyyy}")});
|
||||
this.xrTableCell42.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrTableCell42.Font = new DevExpress.Drawing.DXFont("Arial", 11.25F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.xrTableCell42.Name = "xrTableCell42";
|
||||
this.xrTableCell42.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell42.StylePriority.UseBorderColor = false;
|
||||
@@ -723,7 +736,8 @@ namespace AutismusKoelnBonn
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell43.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.Hours", "{0:0.00}")});
|
||||
this.xrTableCell43.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrTableCell43.Font = new DevExpress.Drawing.DXFont("Arial", 11.25F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.xrTableCell43.Name = "xrTableCell43";
|
||||
this.xrTableCell43.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell43.StylePriority.UseBorderColor = false;
|
||||
@@ -742,7 +756,8 @@ namespace AutismusKoelnBonn
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell44.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.HourlyRate", "{0:c}")});
|
||||
this.xrTableCell44.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrTableCell44.Font = new DevExpress.Drawing.DXFont("Arial", 11.25F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.xrTableCell44.Name = "xrTableCell44";
|
||||
this.xrTableCell44.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell44.StylePriority.UseBorderColor = false;
|
||||
@@ -760,7 +775,8 @@ namespace AutismusKoelnBonn
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell47.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.GrossAmount")});
|
||||
this.xrTableCell47.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrTableCell47.Font = new DevExpress.Drawing.DXFont("Arial", 11.25F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.xrTableCell47.Name = "xrTableCell47";
|
||||
this.xrTableCell47.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell47.StylePriority.UseBorderColor = false;
|
||||
@@ -783,7 +799,7 @@ namespace AutismusKoelnBonn
|
||||
//
|
||||
// lblVerwaltung
|
||||
//
|
||||
this.lblVerwaltung.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.lblVerwaltung.Font = new DevExpress.Drawing.DXFont("Arial", 9F);
|
||||
this.lblVerwaltung.LocationFloat = new DevExpress.Utils.PointFloat(30.29156F, 210.6979F);
|
||||
this.lblVerwaltung.Multiline = true;
|
||||
this.lblVerwaltung.Name = "lblVerwaltung";
|
||||
@@ -795,19 +811,21 @@ namespace AutismusKoelnBonn
|
||||
//
|
||||
// lblMfg
|
||||
//
|
||||
this.lblMfg.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.lblMfg.Font = new DevExpress.Drawing.DXFont("Arial", 11.25F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.lblMfg.LocationFloat = new DevExpress.Utils.PointFloat(30.29156F, 138.6978F);
|
||||
this.lblMfg.Multiline = true;
|
||||
this.lblMfg.Name = "lblMfg";
|
||||
this.lblMfg.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.lblMfg.SizeF = new System.Drawing.SizeF(671.097F, 72.00012F);
|
||||
this.lblMfg.StylePriority.UseFont = false;
|
||||
this.lblMfg.Text = "Mit freundlichen Grüßen\r\n\r\n\r\nWalter Krebs";
|
||||
this.lblMfg.Text = "Mit freundlichen Grüßen\r\n\r\n\r\nAva Mehlen";
|
||||
this.lblMfg.Visible = false;
|
||||
//
|
||||
// xrLabel1
|
||||
//
|
||||
this.xrLabel1.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrLabel1.Font = new DevExpress.Drawing.DXFont("Arial", 11.25F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(30.29156F, 48.22909F);
|
||||
this.xrLabel1.Multiline = true;
|
||||
this.xrLabel1.Name = "xrLabel1";
|
||||
@@ -843,7 +861,7 @@ namespace AutismusKoelnBonn
|
||||
this.xrTableCell1.BorderColor = System.Drawing.Color.Black;
|
||||
this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell1.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.xrTableCell1.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.xrTableCell1.Name = "xrTableCell1";
|
||||
this.xrTableCell1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell1.StylePriority.UseBackColor = false;
|
||||
@@ -862,7 +880,7 @@ namespace AutismusKoelnBonn
|
||||
this.xrTableCell2.BorderColor = System.Drawing.Color.Black;
|
||||
this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell2.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.xrTableCell2.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.xrTableCell2.Name = "xrTableCell2";
|
||||
this.xrTableCell2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell2.StylePriority.UseBackColor = false;
|
||||
@@ -880,7 +898,7 @@ namespace AutismusKoelnBonn
|
||||
this.xrTableCell3.BorderColor = System.Drawing.Color.Black;
|
||||
this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell3.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.xrTableCell3.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.xrTableCell3.Name = "xrTableCell3";
|
||||
this.xrTableCell3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell3.StylePriority.UseBackColor = false;
|
||||
@@ -898,7 +916,7 @@ namespace AutismusKoelnBonn
|
||||
this.xrTableCell4.BorderColor = System.Drawing.Color.Black;
|
||||
this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell4.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.xrTableCell4.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.xrTableCell4.Name = "xrTableCell4";
|
||||
this.xrTableCell4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell4.StylePriority.UseBackColor = false;
|
||||
@@ -918,7 +936,7 @@ namespace AutismusKoelnBonn
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "GrossClaim")});
|
||||
this.xrTableCell6.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.xrTableCell6.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.xrTableCell6.Name = "xrTableCell6";
|
||||
this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell6.StylePriority.UseBackColor = false;
|
||||
@@ -945,14 +963,16 @@ namespace AutismusKoelnBonn
|
||||
this.DetailReport});
|
||||
this.DataSource = this.bindingSource1;
|
||||
this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung";
|
||||
this.Font = new System.Drawing.Font("Verdana", 10F);
|
||||
this.Font = new DevExpress.Drawing.DXFont("Verdana", 10F);
|
||||
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
|
||||
this.ruleRateFactorNull});
|
||||
this.Margins = new System.Drawing.Printing.Margins(68, 34, 40, 139);
|
||||
this.Margins = new DevExpress.Drawing.DXMargins(68F, 34F, 40F, 139F);
|
||||
this.PageHeight = 1169;
|
||||
this.PageWidth = 827;
|
||||
this.PaperKind = DevExpress.Drawing.Printing.DXPaperKind.A4;
|
||||
this.Version = "17.1";
|
||||
this.Version = "23.2";
|
||||
xrWatermark1.Id = "Watermark1";
|
||||
this.Watermarks.Add(xrWatermark1);
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText5)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText6)).EndInit();
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -34,6 +34,7 @@ namespace AutismusKoelnBonn
|
||||
DevExpress.XtraReports.UI.XRWatermark xrWatermark1 = new DevExpress.XtraReports.UI.XRWatermark();
|
||||
this.Detail = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.lblBewilligungszeitraum = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrTable5 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.xrTableRow23 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
@@ -88,7 +89,6 @@ namespace AutismusKoelnBonn
|
||||
this.xrTableCell43 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell44 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell47 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.lblBewilligungszeitraum = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.lblHeaderKoeln)).BeginInit();
|
||||
@@ -143,6 +143,23 @@ namespace AutismusKoelnBonn
|
||||
this.ReportHeader.Name = "ReportHeader";
|
||||
this.ReportHeader.StylePriority.UseFont = false;
|
||||
//
|
||||
// lblBewilligungszeitraum
|
||||
//
|
||||
this.lblBewilligungszeitraum.BackColor = System.Drawing.Color.Transparent;
|
||||
this.lblBewilligungszeitraum.CanShrink = true;
|
||||
this.lblBewilligungszeitraum.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Bold, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.lblBewilligungszeitraum.LocationFloat = new DevExpress.Utils.PointFloat(32.94474F, 483.5415F);
|
||||
this.lblBewilligungszeitraum.Multiline = true;
|
||||
this.lblBewilligungszeitraum.Name = "lblBewilligungszeitraum";
|
||||
this.lblBewilligungszeitraum.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.lblBewilligungszeitraum.SizeF = new System.Drawing.SizeF(648.9583F, 20F);
|
||||
this.lblBewilligungszeitraum.StylePriority.UseBackColor = false;
|
||||
this.lblBewilligungszeitraum.StylePriority.UseFont = false;
|
||||
this.lblBewilligungszeitraum.StylePriority.UseTextAlignment = false;
|
||||
this.lblBewilligungszeitraum.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
this.lblBewilligungszeitraum.WordWrap = false;
|
||||
//
|
||||
// xrTable5
|
||||
//
|
||||
this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(31.90305F, 612.9581F);
|
||||
@@ -666,7 +683,7 @@ namespace AutismusKoelnBonn
|
||||
this.lblMfg.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.lblMfg.SizeF = new System.Drawing.SizeF(653.1387F, 72.00015F);
|
||||
this.lblMfg.StylePriority.UseFont = false;
|
||||
this.lblMfg.Text = "Mit freundlichen Grüßen\r\n\r\n\r\nWalter Krebs";
|
||||
this.lblMfg.Text = "Mit freundlichen Grüßen\r\n\r\n\r\nAva Mehlen";
|
||||
//
|
||||
// lblVerwaltung
|
||||
//
|
||||
@@ -883,23 +900,6 @@ namespace AutismusKoelnBonn
|
||||
this.xrTableCell47.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.xrTableCell47.Weight = 0.39389530172875176D;
|
||||
//
|
||||
// lblBewilligungszeitraum
|
||||
//
|
||||
this.lblBewilligungszeitraum.BackColor = System.Drawing.Color.Transparent;
|
||||
this.lblBewilligungszeitraum.CanShrink = true;
|
||||
this.lblBewilligungszeitraum.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Bold, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.lblBewilligungszeitraum.LocationFloat = new DevExpress.Utils.PointFloat(32.94474F, 483.5415F);
|
||||
this.lblBewilligungszeitraum.Multiline = true;
|
||||
this.lblBewilligungszeitraum.Name = "lblBewilligungszeitraum";
|
||||
this.lblBewilligungszeitraum.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.lblBewilligungszeitraum.SizeF = new System.Drawing.SizeF(648.9583F, 20F);
|
||||
this.lblBewilligungszeitraum.StylePriority.UseBackColor = false;
|
||||
this.lblBewilligungszeitraum.StylePriority.UseFont = false;
|
||||
this.lblBewilligungszeitraum.StylePriority.UseTextAlignment = false;
|
||||
this.lblBewilligungszeitraum.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
this.lblBewilligungszeitraum.WordWrap = false;
|
||||
//
|
||||
// bindingSource1
|
||||
//
|
||||
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.InvoiceCustomerRO);
|
||||
|
||||
1848
ReportImp/AutismusKoelnBonn/SettlementReport.Designer.cs
generated
1848
ReportImp/AutismusKoelnBonn/SettlementReport.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
1871
ReportImp/AutismusKoelnBonn/SettlementReport2.Designer.cs
generated
1871
ReportImp/AutismusKoelnBonn/SettlementReport2.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@@ -105,7 +105,12 @@ namespace BeWo.HPHBersenbrueck
|
||||
|
||||
foreach (var serviceRecord in serviceRecordList)
|
||||
{
|
||||
String key = String.Format("{0:yyyyMM}", serviceRecord.Start);
|
||||
if (serviceRecord.ServiceDescription.Name.StartsWith("6 ") || serviceRecord.ServiceDescription.Name.StartsWith("10 ") || serviceRecord.ServiceDescription.Name.ToLower().Contains("unrefinanziert") ||
|
||||
serviceRecord.ServiceDescription.Name.StartsWith("15 "))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
String key = String.Format("{0:yyyyMM}", serviceRecord.Start);
|
||||
|
||||
if (!month2TotalSummary.ContainsKey(key))
|
||||
{
|
||||
|
||||
@@ -95,6 +95,7 @@
|
||||
public static string FilterGroupServiceCategories => "FilterGroupServiceCategories";
|
||||
|
||||
public static string AllowGkvAbrechnung => "AllowGkvAbrechnung";
|
||||
public static string ShowWohnhilfe => "ShowWohnhilfe";
|
||||
|
||||
public static string ShowImportAbschlagszahlungen => "ShowImportAbschlagszahlungen";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user