Merge branch 'master' of ssh://float.ownsoft.de/git/beyondSoft/BeWo
This commit is contained in:
@@ -155,27 +155,36 @@ namespace CaritasverbandOstvest.Export
|
||||
if (satzAlt.Debitor == satzNeu.Debitor &&
|
||||
satzAlt.Kostenstelle == satzNeu.Kostenstelle &&
|
||||
satzAlt.Name == satzNeu.Name &&
|
||||
satzAlt.Belegnr == satzNeu.Belegnr &&
|
||||
satzAlt.Konto == satzNeu.Konto)
|
||||
{
|
||||
differenz = satzNeu.Betrag - satzAlt.Betrag;
|
||||
}
|
||||
}
|
||||
var neuBetrag = satzNeu.Betrag.ToString("0.00");
|
||||
neuBetrag = neuBetrag.Replace(",", ".");
|
||||
var difBetrag = differenz.ToString("0.00");
|
||||
difBetrag = difBetrag.Replace(",", ".");
|
||||
var newLineF = satzNeu.ZeileF.Replace(";" + neuBetrag + ";", ";" + difBetrag + ";");
|
||||
var newLineG = satzNeu.ZeileG.Replace(";-" + neuBetrag + ";", ";-" + difBetrag + ";");
|
||||
var newLineK = satzNeu.ZeileK.Replace(";-" + neuBetrag + ";", ";-" + difBetrag + ";");
|
||||
if (differenz < 0)
|
||||
if (differenz != 0)
|
||||
{
|
||||
newLineG = newLineG.Replace(";--",";");
|
||||
newLineK = newLineK.Replace(";--",";");
|
||||
var neuBetrag = satzNeu.Betrag.ToString("0.00");
|
||||
neuBetrag = neuBetrag.Replace(",", ".");
|
||||
var difBetrag = differenz.ToString("0.00");
|
||||
difBetrag = difBetrag.Replace(",", ".");
|
||||
var newLineF = satzNeu.ZeileF.Replace(";" + neuBetrag + ";", ";" + difBetrag + ";");
|
||||
var newLineG = satzNeu.ZeileG.Replace(";-" + neuBetrag + ";", ";-" + difBetrag + ";");
|
||||
var newLineK = satzNeu.ZeileK.Replace(";-" + neuBetrag + ";", ";-" + difBetrag + ";");
|
||||
|
||||
if (differenz < 0)
|
||||
{
|
||||
newLineG = newLineG.Replace(";--", ";");
|
||||
newLineK = newLineK.Replace(";--", ";");
|
||||
}
|
||||
sb.AppendLine(newLineF);
|
||||
sb.AppendLine(newLineG);
|
||||
sb.AppendLine(newLineK);
|
||||
}
|
||||
else
|
||||
{
|
||||
sb.AppendLine(satzNeu.ZeileF);
|
||||
sb.AppendLine(satzNeu.ZeileG);
|
||||
sb.AppendLine(satzNeu.ZeileK);
|
||||
}
|
||||
sb.AppendLine(newLineF);
|
||||
sb.AppendLine(newLineG);
|
||||
sb.AppendLine(newLineK);
|
||||
}
|
||||
}
|
||||
return sb.ToString();
|
||||
@@ -376,12 +385,12 @@ null, null, null, null, null, null, null, null, null, null, null, null, null, 'E
|
||||
(SELECT sr2.`CostBearer2SupportConceptOid`, SUM(sr2.`roundedduration` / IF(sr2.`GroupEmployeeCount` is null, 1, sr2.`GroupEmployeeCount`)) AS GeleisteteFLM FROM `servicerecord` sr2
|
||||
INNER JOIN `servicedescription` sd ON sr2.`ServiceDescriptionOid` = sd.`Oid`
|
||||
INNER JOIN `servicecategory` sc ON sd.`ServiceCategoryOid` = sc.`Oid`
|
||||
WHERE sr2.`StartDate` >= ':Monat_Start' AND sr2.`StartDate` < ':Monat_End' AND sc.`Billable` = 1 and sd.Name <> 'Ausfallzeit' GROUP BY sr2.`CostBearer2SupportConceptOid`)
|
||||
WHERE sr2.`StartDate` >= ':Monat_Start' AND sr2.`StartDate` < ':Monat_End' AND sc.`Billable` = 1 and sd.Name <> 'Fehlkontakt' GROUP BY sr2.`CostBearer2SupportConceptOid`)
|
||||
AS sr ON sr.`CostBearer2SupportConceptOid` = cb2sc.`Oid`
|
||||
WHERE c.`IsActive` = 1 AND sc.`IsActive` = 1 AND (org.Name = 'LWL' OR org.Oid = 4) AND (sr.`GeleisteteFLM` is not null))
|
||||
UNION
|
||||
(SELECT
|
||||
ROUND(0.8 * (sr.`GeleisteteFLM` / 60) * (SELECT crp.`CostRateValue` FROM `costrateperiod` crp WHERE crp.`ObjectTid` = 22 AND crp.`CostRateType` = 0 AND crp.`ObjectOid` = cb2sc.`CostBearerOid` AND (crp.`EndDate` is null or crp.`EndDate` > ':Monat_Start') order by IF(crp.`EndDate` is null, MAKEDATE(9999,365),crp.`EndDate`) LIMIT 1 )) AS 'Betrag',
|
||||
ROUND(0.8 * (sr.`GeleisteteFLM` / 60) * (SELECT crp.`CostRateValue` FROM `costrateperiod` crp WHERE crp.`ObjectTid` = 22 AND crp.`CostRateType` = 0 AND crp.`ObjectOid` = cb2sc.`CostBearerOid` AND (crp.`EndDate` is null or crp.`EndDate` > ':Monat_Start') order by IF(crp.`EndDate` is null, MAKEDATE(9999,365),crp.`EndDate`) LIMIT 1 ),2) AS 'Betrag',
|
||||
c.DebitorNumber,
|
||||
org.Name,
|
||||
CONCAT(org.Name,', ', p.`LastName`, ', ', p.`FirstName`, ', ', :Periode) as 'Verwendung',
|
||||
@@ -396,7 +405,7 @@ null, null, null, null, null, null, null, null, null, null, null, null, null, 'E
|
||||
(SELECT sr2.`CostBearer2SupportConceptOid`, SUM(sr2.`roundedduration` / IF(sr2.`GroupEmployeeCount` is null, 1, sr2.`GroupEmployeeCount`)) AS GeleisteteFLM FROM `servicerecord` sr2
|
||||
INNER JOIN `servicedescription` sd ON sr2.`ServiceDescriptionOid` = sd.`Oid`
|
||||
INNER JOIN `servicecategory` sc ON sd.`ServiceCategoryOid` = sc.`Oid`
|
||||
WHERE sr2.`StartDate` >= ':Monat_Start' AND sr2.`StartDate` < ':Monat_End' AND sc.`Billable` = 1 and sd.Name = 'Ausfallzeit' GROUP BY sr2.`CostBearer2SupportConceptOid`)
|
||||
WHERE sr2.`StartDate` >= ':Monat_Start' AND sr2.`StartDate` < ':Monat_End' AND sc.`Billable` = 1 and sd.Name = 'Fehlkontakt' GROUP BY sr2.`CostBearer2SupportConceptOid`)
|
||||
AS sr ON sr.`CostBearer2SupportConceptOid` = cb2sc.`Oid`
|
||||
WHERE c.`IsActive` = 1 AND sc.`IsActive` = 1 AND (org.Name = 'LWL' OR org.Oid = 4) AND (sr.`GeleisteteFLM` is not null))
|
||||
)qry
|
||||
|
||||
414
ReportImp/PraxisPusteblume/IfsSammelRechnung.Designer.cs
generated
414
ReportImp/PraxisPusteblume/IfsSammelRechnung.Designer.cs
generated
@@ -30,14 +30,14 @@ namespace PraxisPusteblume
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(IfsSammelRechnung));
|
||||
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.xrRichText3 = new DevExpress.XtraReports.UI.XRRichText();
|
||||
this.lblEinrichtung = new DevExpress.XtraReports.UI.XRRichText();
|
||||
this.xrRichText2 = new DevExpress.XtraReports.UI.XRRichText();
|
||||
this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
|
||||
this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.xrRichText1 = new DevExpress.XtraReports.UI.XRRichText();
|
||||
this.rtKopfIfs = new DevExpress.XtraReports.UI.XRRichText();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.rtFussIfs = new DevExpress.XtraReports.UI.XRRichText();
|
||||
@@ -53,8 +53,12 @@ namespace PraxisPusteblume
|
||||
this.cellPreisMobil = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.cellPreisGruppe = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell40 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.cellPreisGruppeInter = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.cellPreisTeam = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell42 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.cellPreisTeamExtern = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.cellPreisInvest = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
@@ -75,11 +79,14 @@ namespace PraxisPusteblume
|
||||
this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell43 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell44 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell48 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell49 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
||||
this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
||||
this.GroupFooter3 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
|
||||
@@ -94,8 +101,12 @@ namespace PraxisPusteblume
|
||||
this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell45 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell46 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell47 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell50 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell38 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell39 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
@@ -103,16 +114,20 @@ namespace PraxisPusteblume
|
||||
this.fieldGruppe = new DevExpress.XtraReports.UI.CalculatedField();
|
||||
this.GroupFooter2 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.xrRichText4 = new DevExpress.XtraReports.UI.XRRichText();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).BeginInit();
|
||||
this.xrRichText1 = new DevExpress.XtraReports.UI.XRRichText();
|
||||
this.xrRichText3 = new DevExpress.XtraReports.UI.XRRichText();
|
||||
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
||||
((System.ComponentModel.ISupportInitialize)(this.lblEinrichtung)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.rtKopfIfs)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.rtFussIfs)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText4)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// Detail
|
||||
@@ -125,20 +140,21 @@ namespace PraxisPusteblume
|
||||
// ReportHeader
|
||||
//
|
||||
this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.xrRichText3,
|
||||
this.lblEinrichtung,
|
||||
this.xrRichText2});
|
||||
this.ReportHeader.Font = new DevExpress.Drawing.DXFont("Segoe UI", 10F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.ReportHeader.Font = new DevExpress.Drawing.DXFont("Segoe UI", 10F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.ReportHeader.HeightF = 80F;
|
||||
this.ReportHeader.Name = "ReportHeader";
|
||||
this.ReportHeader.StylePriority.UseFont = false;
|
||||
//
|
||||
// xrRichText3
|
||||
// lblEinrichtung
|
||||
//
|
||||
this.xrRichText3.Font = new DevExpress.Drawing.DXFont("Verdana", 10F);
|
||||
this.xrRichText3.LocationFloat = new DevExpress.Utils.PointFloat(355.0003F, 0F);
|
||||
this.xrRichText3.Name = "xrRichText3";
|
||||
this.xrRichText3.SerializableRtfString = resources.GetString("xrRichText3.SerializableRtfString");
|
||||
this.xrRichText3.SizeF = new System.Drawing.SizeF(284.2049F, 79.99998F);
|
||||
this.lblEinrichtung.Font = new DevExpress.Drawing.DXFont("Helevetica-Light", 8F);
|
||||
this.lblEinrichtung.LocationFloat = new DevExpress.Utils.PointFloat(355.0003F, 0F);
|
||||
this.lblEinrichtung.Name = "lblEinrichtung";
|
||||
this.lblEinrichtung.SerializableRtfString = resources.GetString("lblEinrichtung.SerializableRtfString");
|
||||
this.lblEinrichtung.SizeF = new System.Drawing.SizeF(284.2049F, 79.99998F);
|
||||
//
|
||||
// xrRichText2
|
||||
//
|
||||
@@ -150,8 +166,8 @@ namespace PraxisPusteblume
|
||||
//
|
||||
// xrPictureBox1
|
||||
//
|
||||
this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
|
||||
this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(712.8367F, 39.66667F);
|
||||
this.xrPictureBox1.ImageSource = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("xrPictureBox1.ImageSource"));
|
||||
this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 27.16667F);
|
||||
this.xrPictureBox1.Name = "xrPictureBox1";
|
||||
this.xrPictureBox1.SizeF = new System.Drawing.SizeF(248.3333F, 152.3333F);
|
||||
this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
|
||||
@@ -165,33 +181,25 @@ namespace PraxisPusteblume
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.xrRichText3,
|
||||
this.xrRichText1,
|
||||
this.rtKopfIfs,
|
||||
this.xrPictureBox1});
|
||||
this.topMarginBand1.HeightF = 205F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// xrRichText1
|
||||
//
|
||||
this.xrRichText1.Font = new DevExpress.Drawing.DXFont("Verdana", 10F);
|
||||
this.xrRichText1.LocationFloat = new DevExpress.Utils.PointFloat(355.0003F, 71.39587F);
|
||||
this.xrRichText1.Name = "xrRichText1";
|
||||
this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
|
||||
this.xrRichText1.SizeF = new System.Drawing.SizeF(284.2049F, 130.6041F);
|
||||
//
|
||||
// rtKopfIfs
|
||||
//
|
||||
this.rtKopfIfs.Font = new DevExpress.Drawing.DXFont("Verdana", 10F);
|
||||
this.rtKopfIfs.LocationFloat = new DevExpress.Utils.PointFloat(0F, 71.39587F);
|
||||
this.rtKopfIfs.LocationFloat = new DevExpress.Utils.PointFloat(639.7494F, 64.02077F);
|
||||
this.rtKopfIfs.Name = "rtKopfIfs";
|
||||
this.rtKopfIfs.SerializableRtfString = resources.GetString("rtKopfIfs.SerializableRtfString");
|
||||
this.rtKopfIfs.SizeF = new System.Drawing.SizeF(284.2049F, 130.6041F);
|
||||
this.rtKopfIfs.SizeF = new System.Drawing.SizeF(303.9965F, 39.58332F);
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.rtFussIfs});
|
||||
this.bottomMarginBand1.HeightF = 100F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// rtFussIfs
|
||||
@@ -207,11 +215,12 @@ namespace PraxisPusteblume
|
||||
this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTable3.Font = new DevExpress.Drawing.DXFont("Segoe UI", 8.5F);
|
||||
this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.xrTable3.Name = "xrTable3";
|
||||
this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.xrTableRow14});
|
||||
this.xrTable3.SizeF = new System.Drawing.SizeF(985F, 40F);
|
||||
this.xrTable3.SizeF = new System.Drawing.SizeF(1130F, 40F);
|
||||
this.xrTable3.StylePriority.UseBorderColor = false;
|
||||
this.xrTable3.StylePriority.UseBorders = false;
|
||||
this.xrTable3.StylePriority.UseFont = false;
|
||||
@@ -231,8 +240,12 @@ namespace PraxisPusteblume
|
||||
this.cellPreisMobil,
|
||||
this.xrTableCell11,
|
||||
this.cellPreisGruppe,
|
||||
this.xrTableCell40,
|
||||
this.cellPreisGruppeInter,
|
||||
this.xrTableCell22,
|
||||
this.cellPreisTeam,
|
||||
this.xrTableCell42,
|
||||
this.cellPreisTeamExtern,
|
||||
this.xrTableCell24,
|
||||
this.cellPreisInvest,
|
||||
this.xrTableCell26});
|
||||
@@ -242,9 +255,10 @@ namespace PraxisPusteblume
|
||||
//
|
||||
// xrTableCell41
|
||||
//
|
||||
this.xrTableCell41.Multiline = true;
|
||||
this.xrTableCell41.Name = "xrTableCell41";
|
||||
this.xrTableCell41.Text = "Aktenzeichen";
|
||||
this.xrTableCell41.Weight = 0.138461545469124D;
|
||||
this.xrTableCell41.Text = "Aktenzeichen\r\n";
|
||||
this.xrTableCell41.Weight = 0.13944861471605966D;
|
||||
//
|
||||
// xrTableCell14
|
||||
//
|
||||
@@ -254,8 +268,8 @@ namespace PraxisPusteblume
|
||||
this.xrTableCell14.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell14.StylePriority.UseBorders = false;
|
||||
this.xrTableCell14.StylePriority.UseFont = false;
|
||||
this.xrTableCell14.Text = "Geburtsdatum";
|
||||
this.xrTableCell14.Weight = 0.13846155541051847D;
|
||||
this.xrTableCell14.Text = "Geburts-datum";
|
||||
this.xrTableCell14.Weight = 0.1128713524232956D;
|
||||
//
|
||||
// xrTableCell16
|
||||
//
|
||||
@@ -263,7 +277,7 @@ namespace PraxisPusteblume
|
||||
this.xrTableCell16.Name = "xrTableCell16";
|
||||
this.xrTableCell16.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell16.Text = "Name";
|
||||
this.xrTableCell16.Weight = 0.13846155131700078D;
|
||||
this.xrTableCell16.Weight = 0.15585432701293181D;
|
||||
//
|
||||
// xrTableCell18
|
||||
//
|
||||
@@ -271,7 +285,7 @@ namespace PraxisPusteblume
|
||||
this.xrTableCell18.Name = "xrTableCell18";
|
||||
this.xrTableCell18.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell18.Text = "Vorname";
|
||||
this.xrTableCell18.Weight = 0.1384615466387068D;
|
||||
this.xrTableCell18.Weight = 0.145671904683063D;
|
||||
//
|
||||
// xrTableCell1
|
||||
//
|
||||
@@ -287,13 +301,13 @@ namespace PraxisPusteblume
|
||||
this.cellPreisAmbulant.StylePriority.UsePadding = false;
|
||||
this.cellPreisAmbulant.StylePriority.UseTextAlignment = false;
|
||||
this.cellPreisAmbulant.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.cellPreisAmbulant.Weight = 0.084615388248299159D;
|
||||
this.cellPreisAmbulant.Weight = 0.082028594931836465D;
|
||||
//
|
||||
// xrTableCell4
|
||||
//
|
||||
this.xrTableCell4.Name = "xrTableCell4";
|
||||
this.xrTableCell4.Text = "Mobil";
|
||||
this.xrTableCell4.Weight = 0.084615388248299575D;
|
||||
this.xrTableCell4.Weight = 0.070112920180961963D;
|
||||
//
|
||||
// cellPreisMobil
|
||||
//
|
||||
@@ -302,52 +316,97 @@ namespace PraxisPusteblume
|
||||
this.cellPreisMobil.StylePriority.UsePadding = false;
|
||||
this.cellPreisMobil.StylePriority.UseTextAlignment = false;
|
||||
this.cellPreisMobil.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.cellPreisMobil.Weight = 0.084615388248299644D;
|
||||
this.cellPreisMobil.Weight = 0.099117856315637257D;
|
||||
//
|
||||
// xrTableCell11
|
||||
//
|
||||
this.xrTableCell11.Name = "xrTableCell11";
|
||||
this.xrTableCell11.Text = "Gruppe";
|
||||
this.xrTableCell11.Weight = 0.084615388248299644D;
|
||||
this.xrTableCell11.Weight = 0.087202181564762338D;
|
||||
//
|
||||
// cellPreisGruppe
|
||||
//
|
||||
this.cellPreisGruppe.Multiline = true;
|
||||
this.cellPreisGruppe.Name = "cellPreisGruppe";
|
||||
this.cellPreisGruppe.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F);
|
||||
this.cellPreisGruppe.StylePriority.UsePadding = false;
|
||||
this.cellPreisGruppe.StylePriority.UseTextAlignment = false;
|
||||
this.cellPreisGruppe.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.cellPreisGruppe.Weight = 0.084615388248299589D;
|
||||
this.cellPreisGruppe.Weight = 0.0820285949318369D;
|
||||
//
|
||||
// xrTableCell40
|
||||
//
|
||||
this.xrTableCell40.Multiline = true;
|
||||
this.xrTableCell40.Name = "xrTableCell40";
|
||||
this.xrTableCell40.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F);
|
||||
this.xrTableCell40.StylePriority.UsePadding = false;
|
||||
this.xrTableCell40.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell40.Text = "Gruppe (interd.)";
|
||||
this.xrTableCell40.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
this.xrTableCell40.Weight = 0.087202181564762282D;
|
||||
//
|
||||
// cellPreisGruppeInter
|
||||
//
|
||||
this.cellPreisGruppeInter.Multiline = true;
|
||||
this.cellPreisGruppeInter.Name = "cellPreisGruppeInter";
|
||||
this.cellPreisGruppeInter.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F);
|
||||
this.cellPreisGruppeInter.StylePriority.UsePadding = false;
|
||||
this.cellPreisGruppeInter.StylePriority.UseTextAlignment = false;
|
||||
this.cellPreisGruppeInter.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.cellPreisGruppeInter.Weight = 0.08444523173395832D;
|
||||
//
|
||||
// xrTableCell22
|
||||
//
|
||||
this.xrTableCell22.Name = "xrTableCell22";
|
||||
this.xrTableCell22.Text = "Team";
|
||||
this.xrTableCell22.Weight = 0.084615388248298659D;
|
||||
this.xrTableCell22.Text = "Team (intern)";
|
||||
this.xrTableCell22.Weight = 0.077106879242166276D;
|
||||
//
|
||||
// cellPreisTeam
|
||||
//
|
||||
this.cellPreisTeam.Multiline = true;
|
||||
this.cellPreisTeam.Name = "cellPreisTeam";
|
||||
this.cellPreisTeam.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F);
|
||||
this.cellPreisTeam.StylePriority.UsePadding = false;
|
||||
this.cellPreisTeam.StylePriority.UseTextAlignment = false;
|
||||
this.cellPreisTeam.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.cellPreisTeam.Weight = 0.084615388248298673D;
|
||||
this.cellPreisTeam.Weight = 0.089707260452309631D;
|
||||
//
|
||||
// xrTableCell42
|
||||
//
|
||||
this.xrTableCell42.Multiline = true;
|
||||
this.xrTableCell42.Name = "xrTableCell42";
|
||||
this.xrTableCell42.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F);
|
||||
this.xrTableCell42.StylePriority.UsePadding = false;
|
||||
this.xrTableCell42.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell42.Text = "Team (extern)";
|
||||
this.xrTableCell42.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
this.xrTableCell42.Weight = 0.07710687924216629D;
|
||||
//
|
||||
// cellPreisTeamExtern
|
||||
//
|
||||
this.cellPreisTeamExtern.Multiline = true;
|
||||
this.cellPreisTeamExtern.Name = "cellPreisTeamExtern";
|
||||
this.cellPreisTeamExtern.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F);
|
||||
this.cellPreisTeamExtern.StylePriority.UsePadding = false;
|
||||
this.cellPreisTeamExtern.StylePriority.UseTextAlignment = false;
|
||||
this.cellPreisTeamExtern.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.cellPreisTeamExtern.Weight = 0.092123897254431056D;
|
||||
//
|
||||
// xrTableCell24
|
||||
//
|
||||
this.xrTableCell24.Name = "xrTableCell24";
|
||||
this.xrTableCell24.Text = "Invest";
|
||||
this.xrTableCell24.Weight = 0.084615388248298659D;
|
||||
this.xrTableCell24.Weight = 0.065622875966270311D;
|
||||
//
|
||||
// cellPreisInvest
|
||||
//
|
||||
this.cellPreisInvest.Multiline = true;
|
||||
this.cellPreisInvest.Name = "cellPreisInvest";
|
||||
this.cellPreisInvest.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F);
|
||||
this.cellPreisInvest.StylePriority.UsePadding = false;
|
||||
this.cellPreisInvest.StylePriority.UseTextAlignment = false;
|
||||
this.cellPreisInvest.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.cellPreisInvest.Weight = 0.084615388248298645D;
|
||||
this.cellPreisInvest.Weight = 0.103607900530327D;
|
||||
//
|
||||
// xrTableCell26
|
||||
//
|
||||
@@ -357,7 +416,7 @@ namespace PraxisPusteblume
|
||||
this.xrTableCell26.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell26.Text = "Summe";
|
||||
this.xrTableCell26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell26.Weight = 0.10769230072572827D;
|
||||
this.xrTableCell26.Weight = 0.11027909404219097D;
|
||||
//
|
||||
// DetailReport
|
||||
//
|
||||
@@ -390,7 +449,8 @@ namespace PraxisPusteblume
|
||||
//
|
||||
this.Detail2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.xrTable1});
|
||||
this.Detail2.Font = new DevExpress.Drawing.DXFont("Segoe UI", 9F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.Detail2.Font = new DevExpress.Drawing.DXFont("Segoe UI", 9F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.Detail2.HeightF = 20F;
|
||||
this.Detail2.KeepTogetherWithDetailReports = true;
|
||||
this.Detail2.Name = "Detail2";
|
||||
@@ -401,11 +461,12 @@ namespace PraxisPusteblume
|
||||
this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTable1.Font = new DevExpress.Drawing.DXFont("Segoe UI", 8.5F);
|
||||
this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.xrTable1.Name = "xrTable1";
|
||||
this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.xrTableRow1});
|
||||
this.xrTable1.SizeF = new System.Drawing.SizeF(985F, 20F);
|
||||
this.xrTable1.SizeF = new System.Drawing.SizeF(1130F, 20F);
|
||||
this.xrTable1.StylePriority.UseBorderColor = false;
|
||||
this.xrTable1.StylePriority.UseBorders = false;
|
||||
this.xrTable1.StylePriority.UseFont = false;
|
||||
@@ -426,7 +487,11 @@ namespace PraxisPusteblume
|
||||
this.xrTableCell12,
|
||||
this.xrTableCell13,
|
||||
this.xrTableCell15,
|
||||
this.xrTableCell43,
|
||||
this.xrTableCell44,
|
||||
this.xrTableCell17,
|
||||
this.xrTableCell48,
|
||||
this.xrTableCell49,
|
||||
this.xrTableCell19,
|
||||
this.xrTableCell20,
|
||||
this.xrTableCell21});
|
||||
@@ -436,14 +501,19 @@ namespace PraxisPusteblume
|
||||
//
|
||||
// xrTableCell2
|
||||
//
|
||||
this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.ServiceDescription")});
|
||||
this.xrTableCell2.Name = "xrTableCell2";
|
||||
this.xrTableCell2.StylePriority.UseBorders = false;
|
||||
this.xrTableCell2.Text = "Aktenzeichen";
|
||||
this.xrTableCell2.Weight = 0.138461545469124D;
|
||||
this.xrTableCell2.Weight = 0.13944862723262991D;
|
||||
//
|
||||
// xrTableCell3
|
||||
//
|
||||
this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.CustomerBirthdate", "{0:dd.MM.yyyy}")});
|
||||
this.xrTableCell3.Name = "xrTableCell3";
|
||||
@@ -452,133 +522,213 @@ namespace PraxisPusteblume
|
||||
this.xrTableCell3.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell3.StylePriority.UseBorders = false;
|
||||
this.xrTableCell3.StylePriority.UseFont = false;
|
||||
this.xrTableCell3.Weight = 0.13846155541051847D;
|
||||
this.xrTableCell3.Weight = 0.11287141500614686D;
|
||||
//
|
||||
// xrTableCell5
|
||||
//
|
||||
this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.CustomerLastname")});
|
||||
this.xrTableCell5.Multiline = true;
|
||||
this.xrTableCell5.Name = "xrTableCell5";
|
||||
this.xrTableCell5.StylePriority.UseBorders = false;
|
||||
this.xrTableCell5.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell5.Text = "Name";
|
||||
this.xrTableCell5.Weight = 0.13846155131700078D;
|
||||
this.xrTableCell5.Weight = 0.15508863834410894D;
|
||||
//
|
||||
// xrTableCell6
|
||||
//
|
||||
this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.CustomerFirstname")});
|
||||
this.xrTableCell6.Multiline = true;
|
||||
this.xrTableCell6.Name = "xrTableCell6";
|
||||
this.xrTableCell6.StylePriority.UseBorders = false;
|
||||
this.xrTableCell6.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell6.Text = "Vorname";
|
||||
this.xrTableCell6.Weight = 0.1384615466387068D;
|
||||
this.xrTableCell6.Weight = 0.14643751825246434D;
|
||||
//
|
||||
// xrTableCell7
|
||||
//
|
||||
this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.HourlyRate", "{0:0.##}")});
|
||||
this.xrTableCell7.Name = "xrTableCell7";
|
||||
this.xrTableCell7.StylePriority.UseBorders = false;
|
||||
this.xrTableCell7.Weight = 0.092307696319952517D;
|
||||
//
|
||||
// xrTableCell8
|
||||
//
|
||||
this.xrTableCell8.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.HourlyRateString")});
|
||||
this.xrTableCell8.Multiline = true;
|
||||
this.xrTableCell8.Name = "xrTableCell8";
|
||||
this.xrTableCell8.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F);
|
||||
this.xrTableCell8.StylePriority.UseBorders = false;
|
||||
this.xrTableCell8.StylePriority.UsePadding = false;
|
||||
this.xrTableCell8.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell8.Weight = 0.084615388248299159D;
|
||||
this.xrTableCell8.Weight = 0.082028594931836479D;
|
||||
//
|
||||
// xrTableCell9
|
||||
//
|
||||
this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.Hours", "{0:0.##}")});
|
||||
this.xrTableCell9.Name = "xrTableCell9";
|
||||
this.xrTableCell9.Weight = 0.084615388248299575D;
|
||||
this.xrTableCell9.StylePriority.UseBorders = false;
|
||||
this.xrTableCell9.Weight = 0.070112920180961977D;
|
||||
//
|
||||
// xrTableCell10
|
||||
//
|
||||
this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.NetAmount", "{0:c}")});
|
||||
this.xrTableCell10.Name = "xrTableCell10";
|
||||
this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F);
|
||||
this.xrTableCell10.StylePriority.UseBorders = false;
|
||||
this.xrTableCell10.StylePriority.UsePadding = false;
|
||||
this.xrTableCell10.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell10.Weight = 0.084615388248299644D;
|
||||
this.xrTableCell10.Weight = 0.099117806249356219D;
|
||||
//
|
||||
// xrTableCell12
|
||||
//
|
||||
this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.Notice")});
|
||||
this.xrTableCell12.Name = "xrTableCell12";
|
||||
this.xrTableCell12.Weight = 0.084615388248299644D;
|
||||
this.xrTableCell12.StylePriority.UseBorders = false;
|
||||
this.xrTableCell12.Weight = 0.087202231631043348D;
|
||||
//
|
||||
// xrTableCell13
|
||||
//
|
||||
this.xrTableCell13.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.RateFactor")});
|
||||
this.xrTableCell13.Name = "xrTableCell13";
|
||||
this.xrTableCell13.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F);
|
||||
this.xrTableCell13.StylePriority.UseBorders = false;
|
||||
this.xrTableCell13.StylePriority.UsePadding = false;
|
||||
this.xrTableCell13.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell13.Weight = 0.084615388248299589D;
|
||||
this.xrTableCell13.Weight = 0.082028394666712814D;
|
||||
//
|
||||
// xrTableCell15
|
||||
//
|
||||
this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.UnitCount", "{0:0.##}")});
|
||||
this.xrTableCell15.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell15.Name = "xrTableCell15";
|
||||
this.xrTableCell15.Weight = 0.084615388248298659D;
|
||||
this.xrTableCell15.StylePriority.UseBorders = false;
|
||||
this.xrTableCell15.Weight = 0.08720205014077366D;
|
||||
//
|
||||
// xrTableCell43
|
||||
//
|
||||
this.xrTableCell43.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell43.Multiline = true;
|
||||
this.xrTableCell43.Name = "xrTableCell43";
|
||||
this.xrTableCell43.StylePriority.UseBorders = false;
|
||||
this.xrTableCell43.Weight = 0.084445394449370714D;
|
||||
//
|
||||
// xrTableCell44
|
||||
//
|
||||
this.xrTableCell44.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell44.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.UnitCount")});
|
||||
this.xrTableCell44.Multiline = true;
|
||||
this.xrTableCell44.Name = "xrTableCell44";
|
||||
this.xrTableCell44.StylePriority.UseBorders = false;
|
||||
this.xrTableCell44.TextFormatString = "{0:0.##}";
|
||||
this.xrTableCell44.Weight = 0.07710687924216629D;
|
||||
//
|
||||
// xrTableCell17
|
||||
//
|
||||
this.xrTableCell17.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.UnitCountString")});
|
||||
this.xrTableCell17.Name = "xrTableCell17";
|
||||
this.xrTableCell17.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F);
|
||||
this.xrTableCell17.StylePriority.UseBorders = false;
|
||||
this.xrTableCell17.StylePriority.UsePadding = false;
|
||||
this.xrTableCell17.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell17.Weight = 0.084615388248298673D;
|
||||
this.xrTableCell17.Weight = 0.089707229160883986D;
|
||||
//
|
||||
// xrTableCell48
|
||||
//
|
||||
this.xrTableCell48.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell48.Multiline = true;
|
||||
this.xrTableCell48.Name = "xrTableCell48";
|
||||
this.xrTableCell48.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F);
|
||||
this.xrTableCell48.StylePriority.UseBorders = false;
|
||||
this.xrTableCell48.StylePriority.UsePadding = false;
|
||||
this.xrTableCell48.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell48.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell48.Weight = 0.07710687924216629D;
|
||||
//
|
||||
// xrTableCell49
|
||||
//
|
||||
this.xrTableCell49.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell49.Multiline = true;
|
||||
this.xrTableCell49.Name = "xrTableCell49";
|
||||
this.xrTableCell49.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F);
|
||||
this.xrTableCell49.StylePriority.UseBorders = false;
|
||||
this.xrTableCell49.StylePriority.UsePadding = false;
|
||||
this.xrTableCell49.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell49.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell49.Weight = 0.092123897254431056D;
|
||||
//
|
||||
// xrTableCell19
|
||||
//
|
||||
this.xrTableCell19.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.UnitDescription")});
|
||||
this.xrTableCell19.Name = "xrTableCell19";
|
||||
this.xrTableCell19.Weight = 0.084615388248298659D;
|
||||
this.xrTableCell19.StylePriority.UseBorders = false;
|
||||
this.xrTableCell19.Weight = 0.065622675701146244D;
|
||||
//
|
||||
// xrTableCell20
|
||||
//
|
||||
this.xrTableCell20.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.NotBillableString")});
|
||||
this.xrTableCell20.Name = "xrTableCell20";
|
||||
this.xrTableCell20.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F);
|
||||
this.xrTableCell20.StylePriority.UseBorders = false;
|
||||
this.xrTableCell20.StylePriority.UsePadding = false;
|
||||
this.xrTableCell20.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell20.Weight = 0.084615388248298645D;
|
||||
this.xrTableCell20.Weight = 0.10360810079545106D;
|
||||
//
|
||||
// xrTableCell21
|
||||
//
|
||||
this.xrTableCell21.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell21.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.Claim")});
|
||||
this.xrTableCell21.Name = "xrTableCell21";
|
||||
this.xrTableCell21.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F);
|
||||
this.xrTableCell21.StylePriority.UseBorders = false;
|
||||
this.xrTableCell21.StylePriority.UsePadding = false;
|
||||
this.xrTableCell21.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell21.Weight = 0.10769230072572827D;
|
||||
//
|
||||
// bindingSource1
|
||||
//
|
||||
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.ServiceInvoiceRO);
|
||||
this.xrTableCell21.Weight = 0.11027929430731505D;
|
||||
//
|
||||
// GroupHeader2
|
||||
//
|
||||
@@ -599,11 +749,12 @@ namespace PraxisPusteblume
|
||||
this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTable2.Font = new DevExpress.Drawing.DXFont("Segoe UI", 8.5F);
|
||||
this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.xrTable2.Name = "xrTable2";
|
||||
this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.xrTableRow2});
|
||||
this.xrTable2.SizeF = new System.Drawing.SizeF(985F, 20F);
|
||||
this.xrTable2.SizeF = new System.Drawing.SizeF(1130F, 20F);
|
||||
this.xrTable2.StylePriority.UseBorderColor = false;
|
||||
this.xrTable2.StylePriority.UseBorders = false;
|
||||
this.xrTable2.StylePriority.UseFont = false;
|
||||
@@ -623,8 +774,12 @@ namespace PraxisPusteblume
|
||||
this.xrTableCell32,
|
||||
this.xrTableCell33,
|
||||
this.xrTableCell34,
|
||||
this.xrTableCell45,
|
||||
this.xrTableCell46,
|
||||
this.xrTableCell35,
|
||||
this.xrTableCell36,
|
||||
this.xrTableCell47,
|
||||
this.xrTableCell50,
|
||||
this.xrTableCell37,
|
||||
this.xrTableCell38,
|
||||
this.xrTableCell39});
|
||||
@@ -635,7 +790,7 @@ namespace PraxisPusteblume
|
||||
// xrTableCell23
|
||||
//
|
||||
this.xrTableCell23.Name = "xrTableCell23";
|
||||
this.xrTableCell23.Weight = 0.138461545469124D;
|
||||
this.xrTableCell23.Weight = 0.13944862723262991D;
|
||||
//
|
||||
// xrTableCell25
|
||||
//
|
||||
@@ -645,21 +800,21 @@ namespace PraxisPusteblume
|
||||
this.xrTableCell25.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell25.StylePriority.UseBorders = false;
|
||||
this.xrTableCell25.StylePriority.UseFont = false;
|
||||
this.xrTableCell25.Weight = 0.13846155541051847D;
|
||||
this.xrTableCell25.Weight = 0.11287141500614684D;
|
||||
//
|
||||
// xrTableCell27
|
||||
//
|
||||
this.xrTableCell27.Multiline = true;
|
||||
this.xrTableCell27.Name = "xrTableCell27";
|
||||
this.xrTableCell27.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell27.Weight = 0.13846155131700078D;
|
||||
this.xrTableCell27.Weight = 0.15508863834410896D;
|
||||
//
|
||||
// xrTableCell28
|
||||
//
|
||||
this.xrTableCell28.Multiline = true;
|
||||
this.xrTableCell28.Name = "xrTableCell28";
|
||||
this.xrTableCell28.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell28.Weight = 0.1384615466387068D;
|
||||
this.xrTableCell28.Weight = 0.14643751825246437D;
|
||||
//
|
||||
// xrTableCell29
|
||||
//
|
||||
@@ -674,12 +829,12 @@ namespace PraxisPusteblume
|
||||
this.xrTableCell30.StylePriority.UsePadding = false;
|
||||
this.xrTableCell30.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell30.Weight = 0.084615388248299159D;
|
||||
this.xrTableCell30.Weight = 0.082028594931836465D;
|
||||
//
|
||||
// xrTableCell31
|
||||
//
|
||||
this.xrTableCell31.Name = "xrTableCell31";
|
||||
this.xrTableCell31.Weight = 0.084615388248299575D;
|
||||
this.xrTableCell31.Weight = 0.070112820048399915D;
|
||||
//
|
||||
// xrTableCell32
|
||||
//
|
||||
@@ -688,12 +843,12 @@ namespace PraxisPusteblume
|
||||
this.xrTableCell32.StylePriority.UsePadding = false;
|
||||
this.xrTableCell32.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell32.Weight = 0.084615388248299644D;
|
||||
this.xrTableCell32.Weight = 0.09911790638191828D;
|
||||
//
|
||||
// xrTableCell33
|
||||
//
|
||||
this.xrTableCell33.Name = "xrTableCell33";
|
||||
this.xrTableCell33.Weight = 0.084615388248299644D;
|
||||
this.xrTableCell33.Weight = 0.087202231631043348D;
|
||||
//
|
||||
// xrTableCell34
|
||||
//
|
||||
@@ -702,12 +857,32 @@ namespace PraxisPusteblume
|
||||
this.xrTableCell34.StylePriority.UsePadding = false;
|
||||
this.xrTableCell34.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell34.Weight = 0.084615388248299589D;
|
||||
this.xrTableCell34.Weight = 0.082028394666712814D;
|
||||
//
|
||||
// xrTableCell45
|
||||
//
|
||||
this.xrTableCell45.Multiline = true;
|
||||
this.xrTableCell45.Name = "xrTableCell45";
|
||||
this.xrTableCell45.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F);
|
||||
this.xrTableCell45.StylePriority.UsePadding = false;
|
||||
this.xrTableCell45.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell45.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell45.Weight = 0.087202150273336623D;
|
||||
//
|
||||
// xrTableCell46
|
||||
//
|
||||
this.xrTableCell46.Multiline = true;
|
||||
this.xrTableCell46.Name = "xrTableCell46";
|
||||
this.xrTableCell46.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F);
|
||||
this.xrTableCell46.StylePriority.UsePadding = false;
|
||||
this.xrTableCell46.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell46.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell46.Weight = 0.084445394449371658D;
|
||||
//
|
||||
// xrTableCell35
|
||||
//
|
||||
this.xrTableCell35.Name = "xrTableCell35";
|
||||
this.xrTableCell35.Weight = 0.084615388248298659D;
|
||||
this.xrTableCell35.Weight = 0.077106678977042181D;
|
||||
//
|
||||
// xrTableCell36
|
||||
//
|
||||
@@ -716,12 +891,32 @@ namespace PraxisPusteblume
|
||||
this.xrTableCell36.StylePriority.UsePadding = false;
|
||||
this.xrTableCell36.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell36.Weight = 0.084615388248298673D;
|
||||
this.xrTableCell36.Weight = 0.089707329293446048D;
|
||||
//
|
||||
// xrTableCell47
|
||||
//
|
||||
this.xrTableCell47.Multiline = true;
|
||||
this.xrTableCell47.Name = "xrTableCell47";
|
||||
this.xrTableCell47.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F);
|
||||
this.xrTableCell47.StylePriority.UsePadding = false;
|
||||
this.xrTableCell47.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell47.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell47.Weight = 0.07710687924216629D;
|
||||
//
|
||||
// xrTableCell50
|
||||
//
|
||||
this.xrTableCell50.Multiline = true;
|
||||
this.xrTableCell50.Name = "xrTableCell50";
|
||||
this.xrTableCell50.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F);
|
||||
this.xrTableCell50.StylePriority.UsePadding = false;
|
||||
this.xrTableCell50.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell50.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell50.Weight = 0.092123897254431056D;
|
||||
//
|
||||
// xrTableCell37
|
||||
//
|
||||
this.xrTableCell37.Name = "xrTableCell37";
|
||||
this.xrTableCell37.Weight = 0.084615388248298659D;
|
||||
this.xrTableCell37.Weight = 0.065622475436022121D;
|
||||
//
|
||||
// xrTableCell38
|
||||
//
|
||||
@@ -731,7 +926,7 @@ namespace PraxisPusteblume
|
||||
this.xrTableCell38.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell38.Text = "Gesamt";
|
||||
this.xrTableCell38.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell38.Weight = 0.084615388248298645D;
|
||||
this.xrTableCell38.Weight = 0.10360850132569928D;
|
||||
//
|
||||
// xrTableCell39
|
||||
//
|
||||
@@ -742,7 +937,7 @@ namespace PraxisPusteblume
|
||||
this.xrTableCell39.StylePriority.UsePadding = false;
|
||||
this.xrTableCell39.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell39.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell39.Weight = 0.10769230072572827D;
|
||||
this.xrTableCell39.Weight = 0.11027909404219095D;
|
||||
//
|
||||
// fieldEinzel
|
||||
//
|
||||
@@ -772,6 +967,26 @@ namespace PraxisPusteblume
|
||||
this.xrRichText4.SerializableRtfString = resources.GetString("xrRichText4.SerializableRtfString");
|
||||
this.xrRichText4.SizeF = new System.Drawing.SizeF(284.2049F, 92.06244F);
|
||||
//
|
||||
// xrRichText1
|
||||
//
|
||||
this.xrRichText1.Font = new DevExpress.Drawing.DXFont("Verdana", 10F);
|
||||
this.xrRichText1.LocationFloat = new DevExpress.Utils.PointFloat(639.7495F, 103.6041F);
|
||||
this.xrRichText1.Name = "xrRichText1";
|
||||
this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
|
||||
this.xrRichText1.SizeF = new System.Drawing.SizeF(303.9965F, 54.16667F);
|
||||
//
|
||||
// xrRichText3
|
||||
//
|
||||
this.xrRichText3.Font = new DevExpress.Drawing.DXFont("Verdana", 10F);
|
||||
this.xrRichText3.LocationFloat = new DevExpress.Utils.PointFloat(639.7494F, 27.16669F);
|
||||
this.xrRichText3.Name = "xrRichText3";
|
||||
this.xrRichText3.SerializableRtfString = resources.GetString("xrRichText3.SerializableRtfString");
|
||||
this.xrRichText3.SizeF = new System.Drawing.SizeF(303.9965F, 36.85409F);
|
||||
//
|
||||
// bindingSource1
|
||||
//
|
||||
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.ServiceInvoiceRO);
|
||||
//
|
||||
// IfsSammelRechnung
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
@@ -787,25 +1002,29 @@ namespace PraxisPusteblume
|
||||
this.DataSource = this.bindingSource1;
|
||||
this.DisplayName = "Behandlungsnachweis";
|
||||
this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung";
|
||||
this.Font = new DevExpress.Drawing.DXFont("Segoe UI", 9F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.Font = new DevExpress.Drawing.DXFont("Segoe UI", 9F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
|
||||
this.ruleRateFactorNull});
|
||||
this.Landscape = true;
|
||||
this.Margins = new DevExpress.Drawing.DXMargins(90, 80, 205, 100);
|
||||
this.Margins = new DevExpress.Drawing.DXMargins(23F, 16F, 205F, 100F);
|
||||
this.PageHeight = 827;
|
||||
this.PageWidth = 1169;
|
||||
this.PaperKind = DevExpress.Drawing.Printing.DXPaperKind.A4;
|
||||
this.Version = "17.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).EndInit();
|
||||
this.Version = "23.2";
|
||||
xrWatermark1.Id = "Watermark1";
|
||||
this.Watermarks.Add(xrWatermark1);
|
||||
((System.ComponentModel.ISupportInitialize)(this.lblEinrichtung)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.rtKopfIfs)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.rtFussIfs)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText4)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
|
||||
}
|
||||
@@ -836,12 +1055,11 @@ namespace PraxisPusteblume
|
||||
private DevExpress.XtraReports.UI.XRTableCell cellPreisAmbulant;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell4;
|
||||
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter2;
|
||||
private DevExpress.XtraReports.UI.XRRichText xrRichText1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell cellPreisMobil;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell11;
|
||||
private DevExpress.XtraReports.UI.XRTableCell cellPreisGruppe;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell22;
|
||||
private DevExpress.XtraReports.UI.XRRichText xrRichText3;
|
||||
private DevExpress.XtraReports.UI.XRRichText lblEinrichtung;
|
||||
private DevExpress.XtraReports.UI.XRRichText xrRichText2;
|
||||
private DevExpress.XtraReports.UI.XRTableCell cellPreisTeam;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell24;
|
||||
@@ -883,6 +1101,20 @@ namespace PraxisPusteblume
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell38;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell39;
|
||||
private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader2;
|
||||
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter3;
|
||||
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter3;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell40;
|
||||
private DevExpress.XtraReports.UI.XRTableCell cellPreisGruppeInter;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell42;
|
||||
private DevExpress.XtraReports.UI.XRTableCell cellPreisTeamExtern;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell43;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell44;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell48;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell49;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell45;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell46;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell47;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell50;
|
||||
private DevExpress.XtraReports.UI.XRRichText xrRichText3;
|
||||
private DevExpress.XtraReports.UI.XRRichText xrRichText1;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -29,15 +29,23 @@ namespace PraxisPusteblume
|
||||
|
||||
public void SetReportDataSource(ServiceInvoiceRO pRO)
|
||||
{
|
||||
|
||||
bool mq = false;
|
||||
StringBuilder sb = new StringBuilder();
|
||||
|
||||
if (!String.IsNullOrEmpty(pRO.RecipientOrganisation))
|
||||
{
|
||||
if (pRO.RecipientOrganisation.EndsWith(" - IFS"))
|
||||
if (pRO.RecipientOrganisation.Contains(" - IFS"))
|
||||
{
|
||||
pRO.RecipientOrganisation = pRO.RecipientOrganisation.Replace(" - IFS", "").Trim();
|
||||
}
|
||||
if (pRO.RecipientOrganisation.Contains("(TS)"))
|
||||
{
|
||||
pRO.RecipientOrganisation = pRO.RecipientOrganisation.Replace(" (TS)", "").Trim();
|
||||
}
|
||||
else if (pRO.RecipientOrganisation.Contains("(MQ)"))
|
||||
{
|
||||
pRO.RecipientOrganisation = pRO.RecipientOrganisation.Replace(" (MQ)", "").Trim();
|
||||
mq = true;
|
||||
}
|
||||
sb.AppendLine(pRO.RecipientOrganisation);
|
||||
}
|
||||
if (!String.IsNullOrEmpty(pRO.RecipientDivision))
|
||||
@@ -52,74 +60,19 @@ namespace PraxisPusteblume
|
||||
{
|
||||
sb.AppendLine(pRO.RecipientPostCodeAndTown);
|
||||
}
|
||||
//lblAdresse.Text = sb.ToString();
|
||||
|
||||
|
||||
//lblNachweisFuer.Text = String.Format("Klient/in: {0}, geb. am {1:dd.MM.yyyy}",
|
||||
// pRO.CustomerName, pRO.CustomerBirthdate);
|
||||
|
||||
//lblMonatJahr.Text = String.Format("Abrechnungsmonat:: {0:MM}/{0:yyyy}", pRO.AccountingPeriodStart);
|
||||
|
||||
|
||||
//var stats = GetStatistics(pRO);
|
||||
//if (stats != null)
|
||||
//{
|
||||
// lblReststunden.Text = String.Format("Reststunden: {0:0.##}",
|
||||
// (stats.MinutesApprovedTotal - stats.MinutesProvidedTotal) / 60);
|
||||
//}
|
||||
//lblAZ.Text = pRO.CustomerReferenceNumber;
|
||||
//if (pRO.InvoiceDateTime.HasValue)
|
||||
// pRO.Notice = String.Format("{0:dd.MM.yyyy}", pRO.InvoiceDateTime.Value.AddDays(30));
|
||||
|
||||
// if (pRO.ServiceInvoicePeriods != null)
|
||||
// {
|
||||
// foreach (var sip in pRO.ServiceInvoicePeriods)
|
||||
// {
|
||||
// if (sip.ServiceInvoiceItems != null)
|
||||
// {
|
||||
// foreach (var ii in sip.ServiceInvoiceItems)
|
||||
// {
|
||||
// ii.ServiceDescription = String.Format("{0}\n{1}", ii.ServiceDescription, ii.Notice);
|
||||
|
||||
// ii.CustomerFirstname = String.Format("{0:c}", ii.AmountPerUnit);
|
||||
// if (!String.IsNullOrEmpty(ii.RateFactor))
|
||||
// {
|
||||
|
||||
//var rfStr = ii.RateFactor.Replace("%", "").Replace(",00", "").Trim();
|
||||
//int rfInt = 0;
|
||||
//Int32.TryParse(rfStr, out rfInt);
|
||||
|
||||
|
||||
|
||||
//if (rateFactor > 1)
|
||||
//{
|
||||
// ii.CustomerFirstname = String.Format("{0} x {1:0.##}", ii.CustomerFirstname, rateFactor);
|
||||
//}
|
||||
//else
|
||||
//{
|
||||
// ii.CustomerFirstname = String.Format("{0}", ii.CustomerFirstname);
|
||||
//}
|
||||
// }
|
||||
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
||||
// }
|
||||
|
||||
//SetCustomerInfos(pRO);
|
||||
|
||||
//cellDesription.Text = String.Format("Fachleistungsstunden {0:MM}/{0:yyyy}", pRO.AccountingPeriodStart);
|
||||
|
||||
if (mq)
|
||||
{
|
||||
lblEinrichtung.Text = lblEinrichtung.Text.Replace("102358", "102522");
|
||||
rtKopfIfs.Text = rtKopfIfs.Text.Replace("Jahnstraße 31, 83278 Traunstein", "Staudacher Str. 12, 83250 Marquartstein");
|
||||
}
|
||||
|
||||
SetzePreise(pRO);
|
||||
|
||||
|
||||
if (pRO.ServiceInvoicePeriods != null && pRO.ServiceInvoicePeriods.Count > 0)
|
||||
{
|
||||
foreach (var p in pRO.ServiceInvoicePeriods)
|
||||
{
|
||||
var newInvoiceItem = CreateNewInvoiceItem(pRO, p);
|
||||
|
||||
p.ServiceInvoiceItems = new List<ServiceInvoiceItemRO>();
|
||||
p.ServiceInvoiceItems.Add(newInvoiceItem);
|
||||
|
||||
@@ -127,24 +80,6 @@ namespace PraxisPusteblume
|
||||
pRO.ServiceInvoicePeriods.Sort((a, b) => a.ServiceInvoiceItems[0].CustomerLastname.CompareTo(b.ServiceInvoiceItems[0].CustomerLastname));
|
||||
}
|
||||
|
||||
//if (pauschaleItem == null)
|
||||
//{
|
||||
// lblBezeichnungTeam.Visible = false;
|
||||
// lblGleichTeam.Visible = false;
|
||||
// lblBetragTeamsitzung.Visible = false;
|
||||
// tableSummen.Top -= 30;
|
||||
//}
|
||||
//else
|
||||
//{
|
||||
// lblBetragTeamsitzung.Text = String.Format("{0:0.00} Euro", pauschaleItem.NetAmount);
|
||||
//}
|
||||
|
||||
//ErstelleSummenTabelle(summen.Values.OrderBy(s => s.Leistung).ToList());
|
||||
|
||||
//cellClaimGesamt.Text = String.Format("{0} Euro", pRO.NetClaim.Replace("€", "").Trim());
|
||||
|
||||
|
||||
|
||||
this.bindingSource1.DataSource = pRO;
|
||||
}
|
||||
|
||||
@@ -180,14 +115,12 @@ namespace PraxisPusteblume
|
||||
|
||||
if (sip.ServiceInvoiceItems != null && sip.ServiceInvoiceItems.Count > 0)
|
||||
{
|
||||
|
||||
foreach (var i in sip.ServiceInvoiceItems)
|
||||
{
|
||||
if (i.ServiceDescription == null)
|
||||
{
|
||||
i.ServiceDescription = "";
|
||||
}
|
||||
|
||||
if (i.ServiceDescription == "Team")
|
||||
{
|
||||
teamPreis += i.NetAmount ?? 0;
|
||||
@@ -207,7 +140,6 @@ namespace PraxisPusteblume
|
||||
{
|
||||
if (i.ServiceRecord != null)
|
||||
{
|
||||
|
||||
if (i.ServiceRecord.ServiceDescription.Name.ToLower().Contains("mobil"))
|
||||
{
|
||||
mobilPreis += GetGrossAmount(i);
|
||||
@@ -240,16 +172,13 @@ namespace PraxisPusteblume
|
||||
private decimal GetGrossAmount(ServiceInvoiceItemRO ii)
|
||||
{
|
||||
decimal amount = 0;
|
||||
|
||||
if (Decimal.TryParse(ii.GrossAmount.Replace("€", ""), out amount))
|
||||
{
|
||||
return amount;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
private void SetzePreise(ServiceInvoiceRO pRO)
|
||||
{
|
||||
decimal preisAmbulant = 58.24m;
|
||||
@@ -257,6 +186,8 @@ namespace PraxisPusteblume
|
||||
decimal preisGruppe = 32.53m;
|
||||
decimal preisTeam = 10.88m;
|
||||
decimal preisInvest = 4.84m;
|
||||
decimal preisVernetzung = 18m;
|
||||
decimal preisGruppeInter = 47.45m;
|
||||
if (pRO.AccountingPeriodStart >= new DateTime(2019, 4, 1))
|
||||
{
|
||||
preisTeam = 11.26m;
|
||||
@@ -295,6 +226,13 @@ namespace PraxisPusteblume
|
||||
preisInvest = GetPreis(preise, "Invest (MQ)", pRO.AccountingPeriodStart);
|
||||
preisTeam = GetPreis(preise, "Team", pRO.AccountingPeriodStart);
|
||||
}
|
||||
if (pRO.AccountingPeriodStart >= new DateTime(2025, 08, 01))
|
||||
{
|
||||
var preise = DAOFactory.GenericDAO.GetAllActive<Preis>();
|
||||
preisGruppe = GetPreis(preise, "Gruppe", pRO.AccountingPeriodStart);
|
||||
preisGruppeInter = GetPreis(preise, "Gruppe Interdisziplinär", pRO.AccountingPeriodStart);
|
||||
preisVernetzung = GetPreis(preise, "Team Vernetzung", pRO.AccountingPeriodStart);
|
||||
}
|
||||
|
||||
var cat = DAOFactory.SearchDAO.FindServiceCategoryByName("IFS - Psychologie / Heilpädagogik");
|
||||
if (cat != null)
|
||||
@@ -333,8 +271,7 @@ namespace PraxisPusteblume
|
||||
{
|
||||
preisGruppe = crp.CostRateValue.Value;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
cellPreisAmbulant.Text = String.Format("{0:c}", preisAmbulant);
|
||||
@@ -342,6 +279,8 @@ namespace PraxisPusteblume
|
||||
cellPreisGruppe.Text = String.Format("{0:c}", preisGruppe);
|
||||
cellPreisTeam.Text = String.Format("{0:c}", preisTeam);
|
||||
cellPreisInvest.Text = String.Format("{0:c}", preisInvest);
|
||||
cellPreisGruppeInter.Text = String.Format("{0:c}", preisGruppeInter);
|
||||
cellPreisTeamExtern.Text = String.Format("{0:c}", preisVernetzung);
|
||||
}
|
||||
|
||||
private static decimal GetPreis(IList<Preis> allePreise, String name, DateTime datum)
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -282,6 +282,15 @@ namespace PraxisPusteblume
|
||||
this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.lblIK = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel18 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
|
||||
this.xrLabel24 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel21 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel20 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
@@ -293,6 +302,21 @@ namespace PraxisPusteblume
|
||||
this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
||||
this.xrLabel26 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel36 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel37 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel38 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel39 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel40 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel33 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel32 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel28 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel27 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel23 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel25 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel22 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrCheckBox2 = new DevExpress.XtraReports.UI.XRCheckBox();
|
||||
this.xrLabel35 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel34 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
@@ -302,18 +326,6 @@ namespace PraxisPusteblume
|
||||
this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrCheckBox1 = new DevExpress.XtraReports.UI.XRCheckBox();
|
||||
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
||||
this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
|
||||
this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel18 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel22 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel23 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
((System.ComponentModel.ISupportInitialize)(this.tableMonat1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
@@ -327,28 +339,24 @@ namespace PraxisPusteblume
|
||||
//
|
||||
// formattingRuleStartDate
|
||||
//
|
||||
this.formattingRuleStartDate.Condition = "[StartDate2] < [StartDate]";
|
||||
this.formattingRuleStartDate.DataMember = "ServicesDouble";
|
||||
this.formattingRuleStartDate.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
|
||||
this.formattingRuleStartDate.Name = "formattingRuleStartDate";
|
||||
//
|
||||
// formattingRuleServiceDesc
|
||||
//
|
||||
this.formattingRuleServiceDesc.Condition = "[StartDate2] < [StartDate]";
|
||||
this.formattingRuleServiceDesc.DataMember = "ServicesDouble";
|
||||
this.formattingRuleServiceDesc.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
|
||||
this.formattingRuleServiceDesc.Name = "formattingRuleServiceDesc";
|
||||
//
|
||||
// formattingRuleCostBearer
|
||||
//
|
||||
this.formattingRuleCostBearer.Condition = "[StartDate2] < [StartDate]";
|
||||
this.formattingRuleCostBearer.DataMember = "ServicesDouble";
|
||||
this.formattingRuleCostBearer.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
|
||||
this.formattingRuleCostBearer.Name = "formattingRuleCostBearer";
|
||||
//
|
||||
// formattingRuleEmployeeName
|
||||
//
|
||||
this.formattingRuleEmployeeName.Condition = "[StartDate2] < [StartDate]";
|
||||
this.formattingRuleEmployeeName.DataMember = "ServicesDouble";
|
||||
this.formattingRuleEmployeeName.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
|
||||
this.formattingRuleEmployeeName.Name = "formattingRuleEmployeeName";
|
||||
@@ -360,7 +368,7 @@ namespace PraxisPusteblume
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 60F;
|
||||
this.bottomMarginBand1.HeightF = 25.84941F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// GroupHeader1
|
||||
@@ -388,7 +396,7 @@ namespace PraxisPusteblume
|
||||
this.xrTableRow3,
|
||||
this.xrTableRow4,
|
||||
this.xrTableRow5});
|
||||
this.tableMonat1.SizeF = new System.Drawing.SizeF(1054F, 206F);
|
||||
this.tableMonat1.SizeF = new System.Drawing.SizeF(1065F, 206F);
|
||||
this.tableMonat1.StylePriority.UseBackColor = false;
|
||||
this.tableMonat1.StylePriority.UseBorders = false;
|
||||
this.tableMonat1.StylePriority.UseFont = false;
|
||||
@@ -809,10 +817,10 @@ namespace PraxisPusteblume
|
||||
this.xrTableCell1.StylePriority.UseFont = false;
|
||||
this.xrTableCell1.StylePriority.UsePadding = false;
|
||||
this.xrTableCell1.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell1.Text = "Unterschrift des Erziehungsberechtigten/\r\nBevollmächtigten * \r";
|
||||
this.xrTableCell1.Text = "Unterschrift des/der Personensorgeberechtigten / Bevollmächtigten * \r";
|
||||
this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
this.xrTableCell1.TextTrimming = DevExpress.Drawing.DXStringTrimming.Word;
|
||||
this.xrTableCell1.Weight = 0.084650443303647918D;
|
||||
this.xrTableCell1.Weight = 0.0926777743506947D;
|
||||
//
|
||||
// tableRowPflegeeinheiten1
|
||||
//
|
||||
@@ -1030,7 +1038,7 @@ namespace PraxisPusteblume
|
||||
// xrTableCell33
|
||||
//
|
||||
this.xrTableCell33.Name = "xrTableCell33";
|
||||
this.xrTableCell33.Weight = 0.08465030263795828D;
|
||||
this.xrTableCell33.Weight = 0.092677633031817114D;
|
||||
//
|
||||
// xrTableRow1
|
||||
//
|
||||
@@ -1240,7 +1248,7 @@ namespace PraxisPusteblume
|
||||
// xrTableCell66
|
||||
//
|
||||
this.xrTableCell66.Name = "xrTableCell66";
|
||||
this.xrTableCell66.Weight = 0.08465030263795828D;
|
||||
this.xrTableCell66.Weight = 0.092677633031817114D;
|
||||
//
|
||||
// xrTableRow2
|
||||
//
|
||||
@@ -1290,7 +1298,7 @@ namespace PraxisPusteblume
|
||||
this.xrTableCell67.StylePriority.UseFont = false;
|
||||
this.xrTableCell67.StylePriority.UsePadding = false;
|
||||
this.xrTableCell67.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell67.Text = "Logo";
|
||||
this.xrTableCell67.Text = "SSST**";
|
||||
this.xrTableCell67.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
this.xrTableCell67.Weight = 0.05108216210755992D;
|
||||
//
|
||||
@@ -1452,7 +1460,7 @@ namespace PraxisPusteblume
|
||||
// xrTableCell100
|
||||
//
|
||||
this.xrTableCell100.Name = "xrTableCell100";
|
||||
this.xrTableCell100.Weight = 0.08465030263795828D;
|
||||
this.xrTableCell100.Weight = 0.092677633031817114D;
|
||||
//
|
||||
// xrTableRow3
|
||||
//
|
||||
@@ -1662,7 +1670,7 @@ namespace PraxisPusteblume
|
||||
// xrTableCell165
|
||||
//
|
||||
this.xrTableCell165.Name = "xrTableCell165";
|
||||
this.xrTableCell165.Weight = 0.08465030263795828D;
|
||||
this.xrTableCell165.Weight = 0.092677633031817114D;
|
||||
//
|
||||
// xrTableRow4
|
||||
//
|
||||
@@ -1874,7 +1882,7 @@ namespace PraxisPusteblume
|
||||
// xrTableCell198
|
||||
//
|
||||
this.xrTableCell198.Name = "xrTableCell198";
|
||||
this.xrTableCell198.Weight = 0.08465030263795828D;
|
||||
this.xrTableCell198.Weight = 0.092677633031817114D;
|
||||
//
|
||||
// xrTableRow5
|
||||
//
|
||||
@@ -2084,12 +2092,12 @@ namespace PraxisPusteblume
|
||||
// xrTableCell231
|
||||
//
|
||||
this.xrTableCell231.Name = "xrTableCell231";
|
||||
this.xrTableCell231.Weight = 0.08465030263795828D;
|
||||
this.xrTableCell231.Weight = 0.092677633031817114D;
|
||||
//
|
||||
// xrLabel1
|
||||
//
|
||||
this.xrLabel1.Font = new DevExpress.Drawing.DXFont("Arial", 15F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 45F);
|
||||
this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(322F, 34.58333F);
|
||||
this.xrLabel1.Multiline = true;
|
||||
this.xrLabel1.Name = "xrLabel1";
|
||||
this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -2106,7 +2114,7 @@ namespace PraxisPusteblume
|
||||
this.xrLabel10.Multiline = true;
|
||||
this.xrLabel10.Name = "xrLabel10";
|
||||
this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel10.SizeF = new System.Drawing.SizeF(1054F, 45F);
|
||||
this.xrLabel10.SizeF = new System.Drawing.SizeF(1054F, 34.58333F);
|
||||
this.xrLabel10.StylePriority.UseBorders = false;
|
||||
this.xrLabel10.StylePriority.UseFont = false;
|
||||
this.xrLabel10.StylePriority.UseTextAlignment = false;
|
||||
@@ -2116,6 +2124,7 @@ namespace PraxisPusteblume
|
||||
// ReportHeader
|
||||
//
|
||||
this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.lblIK,
|
||||
this.xrLabel18,
|
||||
this.xrLabel14,
|
||||
this.xrLabel12,
|
||||
@@ -2137,13 +2146,142 @@ namespace PraxisPusteblume
|
||||
this.xrLabel1,
|
||||
this.xrLabel10});
|
||||
this.ReportHeader.Font = new DevExpress.Drawing.DXFont("Arial", 10F);
|
||||
this.ReportHeader.HeightF = 280F;
|
||||
this.ReportHeader.HeightF = 248.7047F;
|
||||
this.ReportHeader.Name = "ReportHeader";
|
||||
this.ReportHeader.StylePriority.UseFont = false;
|
||||
//
|
||||
// lblIK
|
||||
//
|
||||
this.lblIK.LocationFloat = new DevExpress.Utils.PointFloat(446.1979F, 71.87498F);
|
||||
this.lblIK.Name = "lblIK";
|
||||
this.lblIK.SizeF = new System.Drawing.SizeF(281.4687F, 20.62502F);
|
||||
this.lblIK.StylePriority.UseTextAlignment = false;
|
||||
this.lblIK.Text = "[Mandator.IKLeistungserbringer]";
|
||||
this.lblIK.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// xrLabel18
|
||||
//
|
||||
this.xrLabel18.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel18.Font = new DevExpress.Drawing.DXFont("Arial", 10F);
|
||||
this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(748.4999F, 182.2917F);
|
||||
this.xrLabel18.Multiline = true;
|
||||
this.xrLabel18.Name = "xrLabel18";
|
||||
this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel18.SizeF = new System.Drawing.SizeF(174.1016F, 20.625F);
|
||||
this.xrLabel18.StylePriority.UseBorders = false;
|
||||
this.xrLabel18.StylePriority.UseFont = false;
|
||||
this.xrLabel18.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// xrLabel14
|
||||
//
|
||||
this.xrLabel14.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel14.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
|
||||
new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[StartDate]")});
|
||||
this.xrLabel14.Font = new DevExpress.Drawing.DXFont("Arial", 10F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(414.4999F, 213.9583F);
|
||||
this.xrLabel14.Multiline = true;
|
||||
this.xrLabel14.Name = "xrLabel14";
|
||||
this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel14.SizeF = new System.Drawing.SizeF(142.6105F, 20.00002F);
|
||||
this.xrLabel14.StylePriority.UseBorders = false;
|
||||
this.xrLabel14.StylePriority.UseFont = false;
|
||||
this.xrLabel14.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
this.xrLabel14.TextFormatString = "{0:dd.MM.yyyy}";
|
||||
//
|
||||
// xrLabel12
|
||||
//
|
||||
this.xrLabel12.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel12.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
|
||||
new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[EndDate]")});
|
||||
this.xrLabel12.Font = new DevExpress.Drawing.DXFont("Arial", 10F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(599.6597F, 213.9583F);
|
||||
this.xrLabel12.Multiline = true;
|
||||
this.xrLabel12.Name = "xrLabel12";
|
||||
this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel12.SizeF = new System.Drawing.SizeF(127.3334F, 20.00002F);
|
||||
this.xrLabel12.StylePriority.UseBorders = false;
|
||||
this.xrLabel12.StylePriority.UseFont = false;
|
||||
this.xrLabel12.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
this.xrLabel12.TextFormatString = "{0:dd.MM.yyyy}";
|
||||
//
|
||||
// xrLabel8
|
||||
//
|
||||
this.xrLabel8.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel8.Font = new DevExpress.Drawing.DXFont("Arial", 10F);
|
||||
this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(299.8299F, 182.2917F);
|
||||
this.xrLabel8.Multiline = true;
|
||||
this.xrLabel8.Name = "xrLabel8";
|
||||
this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel8.SizeF = new System.Drawing.SizeF(127.3334F, 20.625F);
|
||||
this.xrLabel8.StylePriority.UseBorders = false;
|
||||
this.xrLabel8.StylePriority.UseFont = false;
|
||||
this.xrLabel8.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// xrLabel6
|
||||
//
|
||||
this.xrLabel6.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
|
||||
new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[CustomerInsuranceNumber]")});
|
||||
this.xrLabel6.Font = new DevExpress.Drawing.DXFont("Arial", 10F);
|
||||
this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(545.9998F, 129.5833F);
|
||||
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(181.6669F, 20.625F);
|
||||
this.xrLabel6.StylePriority.UseBorders = false;
|
||||
this.xrLabel6.StylePriority.UseFont = false;
|
||||
this.xrLabel6.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// xrLabel5
|
||||
//
|
||||
this.xrLabel5.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
|
||||
new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Costbearer]")});
|
||||
this.xrLabel5.Font = new DevExpress.Drawing.DXFont("Arial", 10F);
|
||||
this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(153.9999F, 129.5833F);
|
||||
this.xrLabel5.Multiline = true;
|
||||
this.xrLabel5.Name = "xrLabel5";
|
||||
this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel5.SizeF = new System.Drawing.SizeF(240F, 20.625F);
|
||||
this.xrLabel5.StylePriority.UseBorders = false;
|
||||
this.xrLabel5.StylePriority.UseFont = false;
|
||||
this.xrLabel5.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// xrLabel3
|
||||
//
|
||||
this.xrLabel3.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
|
||||
new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[CustomerBirthday]")});
|
||||
this.xrLabel3.Font = new DevExpress.Drawing.DXFont("Arial", 10F);
|
||||
this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(321.9998F, 71.87498F);
|
||||
this.xrLabel3.Multiline = true;
|
||||
this.xrLabel3.Name = "xrLabel3";
|
||||
this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel3.SizeF = new System.Drawing.SizeF(112.0002F, 20.62501F);
|
||||
this.xrLabel3.StylePriority.UseBorders = false;
|
||||
this.xrLabel3.StylePriority.UseFont = false;
|
||||
this.xrLabel3.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
this.xrLabel3.TextFormatString = "{0:dd.MM.yyyy}";
|
||||
//
|
||||
// xrPictureBox1
|
||||
//
|
||||
this.xrPictureBox1.ImageSource = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("xrPictureBox1.ImageSource"));
|
||||
this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(741.9999F, 34.58333F);
|
||||
this.xrPictureBox1.Name = "xrPictureBox1";
|
||||
this.xrPictureBox1.SizeF = new System.Drawing.SizeF(256.6635F, 135F);
|
||||
this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
|
||||
//
|
||||
// xrLabel24
|
||||
//
|
||||
this.xrLabel24.LocationFloat = new DevExpress.Utils.PointFloat(270.5F, 240F);
|
||||
this.xrLabel24.Font = new DevExpress.Drawing.DXFont("Arial", 10F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.xrLabel24.LocationFloat = new DevExpress.Utils.PointFloat(570.3298F, 213.9583F);
|
||||
this.xrLabel24.Multiline = true;
|
||||
this.xrLabel24.Name = "xrLabel24";
|
||||
this.xrLabel24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -2155,7 +2293,8 @@ namespace PraxisPusteblume
|
||||
//
|
||||
// xrLabel21
|
||||
//
|
||||
this.xrLabel21.LocationFloat = new DevExpress.Utils.PointFloat(0F, 240F);
|
||||
this.xrLabel21.Font = new DevExpress.Drawing.DXFont("Arial", 10F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.xrLabel21.LocationFloat = new DevExpress.Utils.PointFloat(299.8299F, 213.9583F);
|
||||
this.xrLabel21.Multiline = true;
|
||||
this.xrLabel21.Name = "xrLabel21";
|
||||
this.xrLabel21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -2168,20 +2307,20 @@ namespace PraxisPusteblume
|
||||
// xrLabel20
|
||||
//
|
||||
this.xrLabel20.Font = new DevExpress.Drawing.DXFont("Arial", 10F);
|
||||
this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(438.5F, 210F);
|
||||
this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(438.5F, 182.9167F);
|
||||
this.xrLabel20.Multiline = true;
|
||||
this.xrLabel20.Name = "xrLabel20";
|
||||
this.xrLabel20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel20.SizeF = new System.Drawing.SizeF(258.67F, 20F);
|
||||
this.xrLabel20.SizeF = new System.Drawing.SizeF(310F, 20F);
|
||||
this.xrLabel20.StylePriority.UseBorders = false;
|
||||
this.xrLabel20.StylePriority.UseFont = false;
|
||||
this.xrLabel20.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel20.Text = "Unterschrift des Erziehungsberechtigten:";
|
||||
this.xrLabel20.Text = "Unterschrift des/der Personensorgeberechtigten:";
|
||||
//
|
||||
// xrLabel17
|
||||
//
|
||||
this.xrLabel17.Font = new DevExpress.Drawing.DXFont("Arial", 10F);
|
||||
this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(0F, 210F);
|
||||
this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(0F, 182.9167F);
|
||||
this.xrLabel17.Multiline = true;
|
||||
this.xrLabel17.Name = "xrLabel17";
|
||||
this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -2194,21 +2333,23 @@ namespace PraxisPusteblume
|
||||
// xrLabel15
|
||||
//
|
||||
this.xrLabel15.Font = new DevExpress.Drawing.DXFont("Arial", 10F);
|
||||
this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(0F, 180F);
|
||||
this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(406F, 130.2083F);
|
||||
this.xrLabel15.Multiline = true;
|
||||
this.xrLabel15.Name = "xrLabel15";
|
||||
this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel15.SizeF = new System.Drawing.SizeF(150.5F, 20F);
|
||||
this.xrLabel15.SizeF = new System.Drawing.SizeF(140F, 20F);
|
||||
this.xrLabel15.StylePriority.UseBorders = false;
|
||||
this.xrLabel15.StylePriority.UseFont = false;
|
||||
this.xrLabel15.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel15.Text = "Krankenversichertennr.";
|
||||
this.xrLabel15.Text = "Versichertennummer:";
|
||||
//
|
||||
// xrLabel16
|
||||
//
|
||||
this.xrLabel16.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel16.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
|
||||
new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[CustomerFirstName] [[CustomerLastName]]")});
|
||||
this.xrLabel16.Font = new DevExpress.Drawing.DXFont("Arial", 10F);
|
||||
this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(126.5F, 90F);
|
||||
this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(0F, 71.87498F);
|
||||
this.xrLabel16.Multiline = true;
|
||||
this.xrLabel16.Name = "xrLabel16";
|
||||
this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -2221,7 +2362,7 @@ namespace PraxisPusteblume
|
||||
// xrLabel13
|
||||
//
|
||||
this.xrLabel13.Font = new DevExpress.Drawing.DXFont("Arial", 10F);
|
||||
this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(0F, 150F);
|
||||
this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(3.499985F, 130.2083F);
|
||||
this.xrLabel13.Multiline = true;
|
||||
this.xrLabel13.Name = "xrLabel13";
|
||||
this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -2229,49 +2370,63 @@ namespace PraxisPusteblume
|
||||
this.xrLabel13.StylePriority.UseBorders = false;
|
||||
this.xrLabel13.StylePriority.UseFont = false;
|
||||
this.xrLabel13.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel13.Text = "Krankenversichert bei";
|
||||
this.xrLabel13.Text = "Krankenversichert bei:";
|
||||
//
|
||||
// xrLabel11
|
||||
//
|
||||
this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(438.5002F, 180F);
|
||||
this.xrLabel11.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(446.1979F, 92.49997F);
|
||||
this.xrLabel11.Multiline = true;
|
||||
this.xrLabel11.Name = "xrLabel11";
|
||||
this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel11.SizeF = new System.Drawing.SizeF(304.3022F, 20.62503F);
|
||||
this.xrLabel11.SizeF = new System.Drawing.SizeF(281.4687F, 20.62503F);
|
||||
this.xrLabel11.StylePriority.UseBorders = false;
|
||||
this.xrLabel11.StylePriority.UseFont = false;
|
||||
this.xrLabel11.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel11.Text = "IK der Einrichtung: [Mandator.IKLeistungserbringer]";
|
||||
this.xrLabel11.Text = "IK der Einrichtung / Stempel";
|
||||
this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// xrLabel9
|
||||
//
|
||||
this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(0F, 120F);
|
||||
this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(321.9998F, 92.49997F);
|
||||
this.xrLabel9.Multiline = true;
|
||||
this.xrLabel9.Name = "xrLabel9";
|
||||
this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel9.SizeF = new System.Drawing.SizeF(126.5F, 20F);
|
||||
this.xrLabel9.SizeF = new System.Drawing.SizeF(112F, 20F);
|
||||
this.xrLabel9.StylePriority.UseBorders = false;
|
||||
this.xrLabel9.StylePriority.UseFont = false;
|
||||
this.xrLabel9.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel9.Text = "Geburtsdatum:";
|
||||
this.xrLabel9.Text = "Geburtsdatum";
|
||||
this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// xrLabel7
|
||||
//
|
||||
this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(0F, 90F);
|
||||
this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(0F, 92.49997F);
|
||||
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(126.5F, 20F);
|
||||
this.xrLabel7.SizeF = new System.Drawing.SizeF(264.0001F, 20F);
|
||||
this.xrLabel7.StylePriority.UseBorders = false;
|
||||
this.xrLabel7.StylePriority.UseFont = false;
|
||||
this.xrLabel7.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel7.Text = "Name des Kindes:";
|
||||
this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
this.xrLabel7.Text = "Name des Kindes";
|
||||
this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// GroupHeader2
|
||||
//
|
||||
this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.xrLabel26,
|
||||
this.xrLabel36,
|
||||
this.xrLabel37,
|
||||
this.xrLabel38,
|
||||
this.xrLabel39,
|
||||
this.xrLabel40,
|
||||
this.xrLabel33,
|
||||
this.xrLabel32,
|
||||
this.xrLabel28,
|
||||
this.xrLabel27,
|
||||
this.xrLabel23,
|
||||
this.xrLabel25,
|
||||
this.xrLabel22,
|
||||
this.xrLabel19,
|
||||
this.xrLabel4,
|
||||
@@ -2283,12 +2438,223 @@ namespace PraxisPusteblume
|
||||
this.xrLabel29,
|
||||
this.xrLabel2,
|
||||
this.xrCheckBox1});
|
||||
this.GroupHeader2.HeightF = 215.1902F;
|
||||
this.GroupHeader2.HeightF = 251.5237F;
|
||||
this.GroupHeader2.Name = "GroupHeader2";
|
||||
//
|
||||
// xrLabel26
|
||||
//
|
||||
this.xrLabel26.Font = new DevExpress.Drawing.DXFont("Arial", 9F);
|
||||
this.xrLabel26.LocationFloat = new DevExpress.Utils.PointFloat(38.50002F, 72.21883F);
|
||||
this.xrLabel26.Multiline = true;
|
||||
this.xrLabel26.Name = "xrLabel26";
|
||||
this.xrLabel26.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel26.SizeF = new System.Drawing.SizeF(1016.5F, 33.07838F);
|
||||
this.xrLabel26.StylePriority.UseBorders = false;
|
||||
this.xrLabel26.StylePriority.UseFont = false;
|
||||
this.xrLabel26.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel26.Text = "Anmerkung: Sollte der interne und/oder externe Austausch abgerechnet werden, best" +
|
||||
"ätigt die Einrichtung mit ihrer Unterschrift die vertraglich vereinbarte Durchfü" +
|
||||
"hrung.";
|
||||
this.xrLabel26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// xrLabel36
|
||||
//
|
||||
this.xrLabel36.Font = new DevExpress.Drawing.DXFont("Arial", 8F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.xrLabel36.LocationFloat = new DevExpress.Utils.PointFloat(38.50002F, 57.02884F);
|
||||
this.xrLabel36.Multiline = true;
|
||||
this.xrLabel36.Name = "xrLabel36";
|
||||
this.xrLabel36.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel36.SizeF = new System.Drawing.SizeF(180F, 15.19F);
|
||||
this.xrLabel36.StylePriority.UseBorders = false;
|
||||
this.xrLabel36.StylePriority.UseFont = false;
|
||||
this.xrLabel36.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel36.Text = "0201502 / 0201503 / 0201504";
|
||||
this.xrLabel36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// xrLabel37
|
||||
//
|
||||
this.xrLabel37.Font = new DevExpress.Drawing.DXFont("Arial", 8F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.xrLabel37.LocationFloat = new DevExpress.Utils.PointFloat(218.4999F, 57.02884F);
|
||||
this.xrLabel37.Multiline = true;
|
||||
this.xrLabel37.Name = "xrLabel37";
|
||||
this.xrLabel37.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel37.SizeF = new System.Drawing.SizeF(179F, 15.19F);
|
||||
this.xrLabel37.StylePriority.UseBorders = false;
|
||||
this.xrLabel37.StylePriority.UseFont = false;
|
||||
this.xrLabel37.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel37.Text = "0202502 / 0202503 / 0202504 ";
|
||||
this.xrLabel37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// xrLabel38
|
||||
//
|
||||
this.xrLabel38.Font = new DevExpress.Drawing.DXFont("Arial", 8F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.xrLabel38.LocationFloat = new DevExpress.Utils.PointFloat(397.4999F, 57.02884F);
|
||||
this.xrLabel38.Multiline = true;
|
||||
this.xrLabel38.Name = "xrLabel38";
|
||||
this.xrLabel38.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel38.SizeF = new System.Drawing.SizeF(250.0835F, 15.19F);
|
||||
this.xrLabel38.StylePriority.UseBorders = false;
|
||||
this.xrLabel38.StylePriority.UseFont = false;
|
||||
this.xrLabel38.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel38.Text = "0202002 / 0202003 / 0202004 ";
|
||||
this.xrLabel38.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// xrLabel39
|
||||
//
|
||||
this.xrLabel39.Font = new DevExpress.Drawing.DXFont("Arial", 8F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.xrLabel39.LocationFloat = new DevExpress.Utils.PointFloat(827.5833F, 57.02884F);
|
||||
this.xrLabel39.Multiline = true;
|
||||
this.xrLabel39.Name = "xrLabel39";
|
||||
this.xrLabel39.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel39.SizeF = new System.Drawing.SizeF(227.4166F, 15.19F);
|
||||
this.xrLabel39.StylePriority.UseBorders = false;
|
||||
this.xrLabel39.StylePriority.UseFont = false;
|
||||
this.xrLabel39.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel39.Text = "0209002 / 0209003 / 0209004";
|
||||
this.xrLabel39.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// xrLabel40
|
||||
//
|
||||
this.xrLabel40.Font = new DevExpress.Drawing.DXFont("Arial", 8F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.xrLabel40.LocationFloat = new DevExpress.Utils.PointFloat(647.5834F, 57.02884F);
|
||||
this.xrLabel40.Multiline = true;
|
||||
this.xrLabel40.Name = "xrLabel40";
|
||||
this.xrLabel40.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel40.SizeF = new System.Drawing.SizeF(179.9999F, 15.19F);
|
||||
this.xrLabel40.StylePriority.UseBorders = false;
|
||||
this.xrLabel40.StylePriority.UseFont = false;
|
||||
this.xrLabel40.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel40.Text = "0209502 / 0209503 / 0209504 ";
|
||||
this.xrLabel40.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// xrLabel33
|
||||
//
|
||||
this.xrLabel33.Font = new DevExpress.Drawing.DXFont("Arial", 9F);
|
||||
this.xrLabel33.LocationFloat = new DevExpress.Utils.PointFloat(647.5834F, 41.83884F);
|
||||
this.xrLabel33.Multiline = true;
|
||||
this.xrLabel33.Name = "xrLabel33";
|
||||
this.xrLabel33.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel33.SizeF = new System.Drawing.SizeF(180F, 15.19F);
|
||||
this.xrLabel33.StylePriority.UseBorders = false;
|
||||
this.xrLabel33.StylePriority.UseFont = false;
|
||||
this.xrLabel33.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel33.Text = "„M“ = mobile Behandlung";
|
||||
this.xrLabel33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// xrLabel32
|
||||
//
|
||||
this.xrLabel32.Font = new DevExpress.Drawing.DXFont("Arial", 9F);
|
||||
this.xrLabel32.LocationFloat = new DevExpress.Utils.PointFloat(827.5834F, 41.83884F);
|
||||
this.xrLabel32.Multiline = true;
|
||||
this.xrLabel32.Name = "xrLabel32";
|
||||
this.xrLabel32.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel32.SizeF = new System.Drawing.SizeF(226.4166F, 15.19F);
|
||||
this.xrLabel32.StylePriority.UseBorders = false;
|
||||
this.xrLabel32.StylePriority.UseFont = false;
|
||||
this.xrLabel32.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel32.Text = "„R“ = mobile Reihenbehandlung";
|
||||
this.xrLabel32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// xrLabel28
|
||||
//
|
||||
this.xrLabel28.Font = new DevExpress.Drawing.DXFont("Arial", 9F);
|
||||
this.xrLabel28.LocationFloat = new DevExpress.Utils.PointFloat(397.5F, 41.83884F);
|
||||
this.xrLabel28.Multiline = true;
|
||||
this.xrLabel28.Name = "xrLabel28";
|
||||
this.xrLabel28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel28.SizeF = new System.Drawing.SizeF(250.0834F, 15.19F);
|
||||
this.xrLabel28.StylePriority.UseBorders = false;
|
||||
this.xrLabel28.StylePriority.UseFont = false;
|
||||
this.xrLabel28.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel28.Text = "„IG“ = Interdisziplinäre Gruppenbehandlung ";
|
||||
this.xrLabel28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// xrLabel27
|
||||
//
|
||||
this.xrLabel27.Font = new DevExpress.Drawing.DXFont("Arial", 9F);
|
||||
this.xrLabel27.LocationFloat = new DevExpress.Utils.PointFloat(217.4999F, 41.83884F);
|
||||
this.xrLabel27.Multiline = true;
|
||||
this.xrLabel27.Name = "xrLabel27";
|
||||
this.xrLabel27.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel27.SizeF = new System.Drawing.SizeF(180F, 15.19F);
|
||||
this.xrLabel27.StylePriority.UseBorders = false;
|
||||
this.xrLabel27.StylePriority.UseFont = false;
|
||||
this.xrLabel27.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel27.Text = "„G“ = Gruppenbehandlung ";
|
||||
this.xrLabel27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// xrLabel23
|
||||
//
|
||||
this.xrLabel23.Font = new DevExpress.Drawing.DXFont("Arial", 9F);
|
||||
this.xrLabel23.LocationFloat = new DevExpress.Utils.PointFloat(37.49997F, 41.83884F);
|
||||
this.xrLabel23.Multiline = true;
|
||||
this.xrLabel23.Name = "xrLabel23";
|
||||
this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel23.SizeF = new System.Drawing.SizeF(180F, 15.19F);
|
||||
this.xrLabel23.StylePriority.UseBorders = false;
|
||||
this.xrLabel23.StylePriority.UseFont = false;
|
||||
this.xrLabel23.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel23.Text = "„E“ = Einzelbehandlung";
|
||||
this.xrLabel23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// xrLabel25
|
||||
//
|
||||
this.xrLabel25.Font = new DevExpress.Drawing.DXFont("Arial", 9F);
|
||||
this.xrLabel25.LocationFloat = new DevExpress.Utils.PointFloat(37.5F, 0F);
|
||||
this.xrLabel25.Multiline = true;
|
||||
this.xrLabel25.Name = "xrLabel25";
|
||||
this.xrLabel25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel25.SizeF = new System.Drawing.SizeF(1016.5F, 15.19024F);
|
||||
this.xrLabel25.StylePriority.UseBorders = false;
|
||||
this.xrLabel25.StylePriority.UseFont = false;
|
||||
this.xrLabel25.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel25.Text = "*Der/Die Bevollmächtigte ist nicht der/die behandelnde Therapeut*in **SSSST: S" +
|
||||
"timm-, Sprech-, Sprach-, Schlucktherapie";
|
||||
//
|
||||
// xrLabel22
|
||||
//
|
||||
this.xrLabel22.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel22.LocationFloat = new DevExpress.Utils.PointFloat(596.17F, 231.5236F);
|
||||
this.xrLabel22.Multiline = true;
|
||||
this.xrLabel22.Name = "xrLabel22";
|
||||
this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel22.SizeF = new System.Drawing.SizeF(336.0001F, 20F);
|
||||
this.xrLabel22.StylePriority.UseBorderDashStyle = false;
|
||||
this.xrLabel22.StylePriority.UseBorders = false;
|
||||
this.xrLabel22.StylePriority.UseFont = false;
|
||||
this.xrLabel22.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// xrLabel19
|
||||
//
|
||||
this.xrLabel19.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(99.00004F, 231.5236F);
|
||||
this.xrLabel19.Multiline = true;
|
||||
this.xrLabel19.Name = "xrLabel19";
|
||||
this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel19.SizeF = new System.Drawing.SizeF(201.8298F, 20F);
|
||||
this.xrLabel19.StylePriority.UseBorderDashStyle = false;
|
||||
this.xrLabel19.StylePriority.UseBorders = false;
|
||||
this.xrLabel19.StylePriority.UseFont = false;
|
||||
this.xrLabel19.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// xrLabel4
|
||||
//
|
||||
this.xrLabel4.Font = new DevExpress.Drawing.DXFont("Arial", 10F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(37.5F, 108.2972F);
|
||||
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(1016.5F, 22.00005F);
|
||||
this.xrLabel4.StylePriority.UseBorders = false;
|
||||
this.xrLabel4.StylePriority.UseFont = false;
|
||||
this.xrLabel4.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel4.Text = "Die Förderung läuft weiter:";
|
||||
//
|
||||
// xrCheckBox2
|
||||
//
|
||||
this.xrCheckBox2.LocationFloat = new DevExpress.Utils.PointFloat(37.5F, 87F);
|
||||
this.xrCheckBox2.LocationFloat = new DevExpress.Utils.PointFloat(37.5F, 160.2972F);
|
||||
this.xrCheckBox2.Name = "xrCheckBox2";
|
||||
this.xrCheckBox2.SizeF = new System.Drawing.SizeF(17.83439F, 23F);
|
||||
this.xrCheckBox2.StylePriority.UseTextAlignment = false;
|
||||
@@ -2297,7 +2663,7 @@ namespace PraxisPusteblume
|
||||
// xrLabel35
|
||||
//
|
||||
this.xrLabel35.Font = new DevExpress.Drawing.DXFont("Arial", 10F);
|
||||
this.xrLabel35.LocationFloat = new DevExpress.Utils.PointFloat(406F, 153.9146F);
|
||||
this.xrLabel35.LocationFloat = new DevExpress.Utils.PointFloat(400.1701F, 232.4418F);
|
||||
this.xrLabel35.Multiline = true;
|
||||
this.xrLabel35.Name = "xrLabel35";
|
||||
this.xrLabel35.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -2309,7 +2675,7 @@ namespace PraxisPusteblume
|
||||
//
|
||||
// xrLabel34
|
||||
//
|
||||
this.xrLabel34.LocationFloat = new DevExpress.Utils.PointFloat(37.5F, 152.9964F);
|
||||
this.xrLabel34.LocationFloat = new DevExpress.Utils.PointFloat(38.49996F, 231.5236F);
|
||||
this.xrLabel34.Multiline = true;
|
||||
this.xrLabel34.Name = "xrLabel34";
|
||||
this.xrLabel34.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -2323,7 +2689,7 @@ namespace PraxisPusteblume
|
||||
//
|
||||
this.xrLabel31.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel31.Font = new DevExpress.Drawing.DXFont("Arial", 10F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.xrLabel31.LocationFloat = new DevExpress.Utils.PointFloat(181.9999F, 90F);
|
||||
this.xrLabel31.LocationFloat = new DevExpress.Utils.PointFloat(181.9999F, 163.2972F);
|
||||
this.xrLabel31.Multiline = true;
|
||||
this.xrLabel31.Name = "xrLabel31";
|
||||
this.xrLabel31.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -2338,7 +2704,7 @@ namespace PraxisPusteblume
|
||||
//
|
||||
this.xrLabel30.Font = new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.xrLabel30.LocationFloat = new DevExpress.Utils.PointFloat(60F, 90F);
|
||||
this.xrLabel30.LocationFloat = new DevExpress.Utils.PointFloat(60.00001F, 163.2972F);
|
||||
this.xrLabel30.Multiline = true;
|
||||
this.xrLabel30.Name = "xrLabel30";
|
||||
this.xrLabel30.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -2352,7 +2718,7 @@ namespace PraxisPusteblume
|
||||
//
|
||||
this.xrLabel29.Font = new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
|
||||
new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
|
||||
this.xrLabel29.LocationFloat = new DevExpress.Utils.PointFloat(60F, 60F);
|
||||
this.xrLabel29.LocationFloat = new DevExpress.Utils.PointFloat(60.00001F, 133.2971F);
|
||||
this.xrLabel29.Multiline = true;
|
||||
this.xrLabel29.Name = "xrLabel29";
|
||||
this.xrLabel29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -2364,21 +2730,21 @@ namespace PraxisPusteblume
|
||||
//
|
||||
// xrLabel2
|
||||
//
|
||||
this.xrLabel2.Font = new DevExpress.Drawing.DXFont("Arial", 9F);
|
||||
this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(37.5F, 0F);
|
||||
this.xrLabel2.Font = new DevExpress.Drawing.DXFont("Arial", 10F, DevExpress.Drawing.DXFontStyle.Bold);
|
||||
this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(38.4999F, 15.19025F);
|
||||
this.xrLabel2.Multiline = true;
|
||||
this.xrLabel2.Name = "xrLabel2";
|
||||
this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel2.SizeF = new System.Drawing.SizeF(1016.5F, 15.19024F);
|
||||
this.xrLabel2.SizeF = new System.Drawing.SizeF(1016.5F, 26.64859F);
|
||||
this.xrLabel2.StylePriority.UseBorders = false;
|
||||
this.xrLabel2.StylePriority.UseFont = false;
|
||||
this.xrLabel2.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel2.Text = "Die Behandlungstage sind mit diesem Buchstaben zu kennzeichnen: Einzelbehandlung " +
|
||||
"= „E“; Gruppenbehandlung = „G“; mobile Behandlung = „M“, Reihenbehandlung = „R“";
|
||||
this.xrLabel2.Text = "Die Behandlungstage sind mit diesem Buchstaben zu kennzeichnen: ";
|
||||
this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// xrCheckBox1
|
||||
//
|
||||
this.xrCheckBox1.LocationFloat = new DevExpress.Utils.PointFloat(37.5F, 57F);
|
||||
this.xrCheckBox1.LocationFloat = new DevExpress.Utils.PointFloat(37.5F, 130.2972F);
|
||||
this.xrCheckBox1.Name = "xrCheckBox1";
|
||||
this.xrCheckBox1.SizeF = new System.Drawing.SizeF(22.5F, 22.99998F);
|
||||
this.xrCheckBox1.StylePriority.UseTextAlignment = false;
|
||||
@@ -2388,165 +2754,6 @@ namespace PraxisPusteblume
|
||||
//
|
||||
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.ServicesOverviewRO);
|
||||
//
|
||||
// xrPictureBox1
|
||||
//
|
||||
this.xrPictureBox1.ImageSource = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("xrPictureBox1.ImageSource"));
|
||||
this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(750.5001F, 45F);
|
||||
this.xrPictureBox1.Name = "xrPictureBox1";
|
||||
this.xrPictureBox1.SizeF = new System.Drawing.SizeF(256.6635F, 135F);
|
||||
this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
|
||||
//
|
||||
// xrLabel3
|
||||
//
|
||||
this.xrLabel3.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel3.Font = new DevExpress.Drawing.DXFont("Arial", 10F);
|
||||
this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(126.4998F, 119.375F);
|
||||
this.xrLabel3.Multiline = true;
|
||||
this.xrLabel3.Name = "xrLabel3";
|
||||
this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel3.SizeF = new System.Drawing.SizeF(264.0001F, 20.625F);
|
||||
this.xrLabel3.StylePriority.UseBorders = false;
|
||||
this.xrLabel3.StylePriority.UseFont = false;
|
||||
this.xrLabel3.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// xrLabel5
|
||||
//
|
||||
this.xrLabel5.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel5.Font = new DevExpress.Drawing.DXFont("Arial", 10F);
|
||||
this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(150.4999F, 149.375F);
|
||||
this.xrLabel5.Multiline = true;
|
||||
this.xrLabel5.Name = "xrLabel5";
|
||||
this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel5.SizeF = new System.Drawing.SizeF(240F, 20.625F);
|
||||
this.xrLabel5.StylePriority.UseBorders = false;
|
||||
this.xrLabel5.StylePriority.UseFont = false;
|
||||
this.xrLabel5.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// xrLabel6
|
||||
//
|
||||
this.xrLabel6.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel6.Font = new DevExpress.Drawing.DXFont("Arial", 10F);
|
||||
this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(150.5001F, 179.375F);
|
||||
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(239.9998F, 20.625F);
|
||||
this.xrLabel6.StylePriority.UseBorders = false;
|
||||
this.xrLabel6.StylePriority.UseFont = false;
|
||||
this.xrLabel6.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// xrLabel8
|
||||
//
|
||||
this.xrLabel8.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel8.Font = new DevExpress.Drawing.DXFont("Arial", 10F);
|
||||
this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(299.8299F, 209.375F);
|
||||
this.xrLabel8.Multiline = true;
|
||||
this.xrLabel8.Name = "xrLabel8";
|
||||
this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel8.SizeF = new System.Drawing.SizeF(127.3334F, 20.625F);
|
||||
this.xrLabel8.StylePriority.UseBorders = false;
|
||||
this.xrLabel8.StylePriority.UseFont = false;
|
||||
this.xrLabel8.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// xrLabel12
|
||||
//
|
||||
this.xrLabel12.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel12.Font = new DevExpress.Drawing.DXFont("Arial", 10F);
|
||||
this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(299.8299F, 239.375F);
|
||||
this.xrLabel12.Multiline = true;
|
||||
this.xrLabel12.Name = "xrLabel12";
|
||||
this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel12.SizeF = new System.Drawing.SizeF(127.3334F, 20.625F);
|
||||
this.xrLabel12.StylePriority.UseBorders = false;
|
||||
this.xrLabel12.StylePriority.UseFont = false;
|
||||
this.xrLabel12.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// xrLabel14
|
||||
//
|
||||
this.xrLabel14.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel14.Font = new DevExpress.Drawing.DXFont("Arial", 10F);
|
||||
this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(114.67F, 239.375F);
|
||||
this.xrLabel14.Multiline = true;
|
||||
this.xrLabel14.Name = "xrLabel14";
|
||||
this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel14.SizeF = new System.Drawing.SizeF(142.6105F, 20.625F);
|
||||
this.xrLabel14.StylePriority.UseBorders = false;
|
||||
this.xrLabel14.StylePriority.UseFont = false;
|
||||
this.xrLabel14.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// xrLabel18
|
||||
//
|
||||
this.xrLabel18.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel18.Font = new DevExpress.Drawing.DXFont("Arial", 10F);
|
||||
this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(697.17F, 209.375F);
|
||||
this.xrLabel18.Multiline = true;
|
||||
this.xrLabel18.Name = "xrLabel18";
|
||||
this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel18.SizeF = new System.Drawing.SizeF(246.9316F, 20.625F);
|
||||
this.xrLabel18.StylePriority.UseBorders = false;
|
||||
this.xrLabel18.StylePriority.UseFont = false;
|
||||
this.xrLabel18.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// xrLabel4
|
||||
//
|
||||
this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(37.5F, 30F);
|
||||
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(1016.5F, 25F);
|
||||
this.xrLabel4.StylePriority.UseBorders = false;
|
||||
this.xrLabel4.StylePriority.UseFont = false;
|
||||
this.xrLabel4.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel4.Text = "Die Förderung läuft weiter:";
|
||||
//
|
||||
// xrLabel19
|
||||
//
|
||||
this.xrLabel19.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(98.00008F, 152.9964F);
|
||||
this.xrLabel19.Multiline = true;
|
||||
this.xrLabel19.Name = "xrLabel19";
|
||||
this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel19.SizeF = new System.Drawing.SizeF(201.8298F, 20F);
|
||||
this.xrLabel19.StylePriority.UseBorderDashStyle = false;
|
||||
this.xrLabel19.StylePriority.UseBorders = false;
|
||||
this.xrLabel19.StylePriority.UseFont = false;
|
||||
this.xrLabel19.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// xrLabel22
|
||||
//
|
||||
this.xrLabel22.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel22.LocationFloat = new DevExpress.Utils.PointFloat(601.9999F, 152.9964F);
|
||||
this.xrLabel22.Multiline = true;
|
||||
this.xrLabel22.Name = "xrLabel22";
|
||||
this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel22.SizeF = new System.Drawing.SizeF(336.0001F, 20F);
|
||||
this.xrLabel22.StylePriority.UseBorderDashStyle = false;
|
||||
this.xrLabel22.StylePriority.UseBorders = false;
|
||||
this.xrLabel22.StylePriority.UseFont = false;
|
||||
this.xrLabel22.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// xrLabel23
|
||||
//
|
||||
this.xrLabel23.Font = new DevExpress.Drawing.DXFont("Arial", 9F);
|
||||
this.xrLabel23.LocationFloat = new DevExpress.Utils.PointFloat(37.5002F, 200F);
|
||||
this.xrLabel23.Multiline = true;
|
||||
this.xrLabel23.Name = "xrLabel23";
|
||||
this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel23.SizeF = new System.Drawing.SizeF(1016.5F, 15.19024F);
|
||||
this.xrLabel23.StylePriority.UseBorders = false;
|
||||
this.xrLabel23.StylePriority.UseFont = false;
|
||||
this.xrLabel23.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel23.Text = "*der Bevollmächtigte ist nicht der behandelnde Therapeut";
|
||||
//
|
||||
// LeistungsnachweisKrankenkasse
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
@@ -2561,7 +2768,7 @@ namespace PraxisPusteblume
|
||||
this.DataSource = this.bindingSource1;
|
||||
this.Font = new DevExpress.Drawing.DXFont("Arial", 10F);
|
||||
this.Landscape = true;
|
||||
this.Margins = new DevExpress.Drawing.DXMargins(65F, 50F, 51.08695F, 60F);
|
||||
this.Margins = new DevExpress.Drawing.DXMargins(65F, 39F, 51.08695F, 25.84941F);
|
||||
this.PageHeight = 827;
|
||||
this.PageWidth = 1169;
|
||||
this.PaperKind = DevExpress.Drawing.Printing.DXPaperKind.A4;
|
||||
@@ -2857,6 +3064,18 @@ namespace PraxisPusteblume
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel22;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel19;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel4;
|
||||
private DevExpress.XtraReports.UI.XRLabel lblIK;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel26;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel36;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel37;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel38;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel39;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel40;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel33;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel32;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel28;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel27;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel23;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel25;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,14 +18,6 @@ namespace PraxisPusteblume
|
||||
{
|
||||
private Dictionary<string, decimal> key2Pflegeeinheiten = new Dictionary<string, decimal>();
|
||||
private Dictionary<string, decimal> key2Wegepauschale = new Dictionary<string, decimal>();
|
||||
|
||||
|
||||
private decimal totalEinheiten1 = 0;
|
||||
private decimal totalEinheiten2 = 0;
|
||||
private decimal totalWegepWochentags1 = 0;
|
||||
private decimal totalWegepWochentags2 = 0;
|
||||
private decimal totalWegepWochenende1 = 0;
|
||||
private decimal totalWegepWochenende2 = 0;
|
||||
|
||||
public LeistungsnachweisKrankenkasse()
|
||||
{
|
||||
@@ -36,7 +28,7 @@ namespace PraxisPusteblume
|
||||
{
|
||||
//cellMonat1.Text = String.Format("{0:MMM yy}", ro.StartDate);
|
||||
//lblZeitraum.Text = String.Format("Zeitraum {0:dd.MM.yyyy} - {1:dd.MM.yyyy}", ro.StartDate, ro.EndDate);
|
||||
InitRows(ro);
|
||||
//InitRows(ro);
|
||||
if (ro.Services != null)
|
||||
{
|
||||
foreach (ServicesOverviewRO.ServiceDetail s in ro.Services)
|
||||
@@ -45,42 +37,10 @@ namespace PraxisPusteblume
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//lblCustomer.Text = String.Format("Klient: {0}, {1}, {2}, {3} {4}, {5}", ro.CustomerLastName,
|
||||
// ro.CustomerFirstName, ro.CustomerStreet, ro.CustomerPostalCode, ro.CustomerCity, ro.ReferenceNumber);
|
||||
|
||||
|
||||
if (String.IsNullOrEmpty(ro.Costbearer))
|
||||
{
|
||||
ro.Costbearer = HoleErstenKostentraeger(ro);
|
||||
}
|
||||
//cellPreis1.Text = String.Format("{0:c}", totalEuro1);
|
||||
//cellPreis2.Text = String.Format("{0:c}", totalEuro2);
|
||||
//cellPreis3.Text = String.Format("{0:c}", totalEuro3);
|
||||
|
||||
//lblSummeEinheiten1.Text = String.Format("{0:0}", totalEinheiten1);
|
||||
//lblSummeWegepWochentags1.Text = String.Format("{0:0}", totalWegepWochentags1);
|
||||
//lblSummeWegepWochenende1.Text = String.Format("{0:0}", totalWegepWochenende1);
|
||||
|
||||
//lblPflegeeinheitenTotal.Text = String.Format("Anzahl Pflegeeinheiten:{0:0}", totalEinheiten1 + totalEinheiten2);
|
||||
|
||||
//cellStunden1.Text = String.Format("{0:0.00}", totalStunden1 / 60);
|
||||
//cellStunden2.Text = String.Format("{0:0.00}", totalStunden2 / 60);
|
||||
//cellStunden3.Text = String.Format("{0:0.00}", totalStunden3 / 60);
|
||||
//Customer c = GetCustomer(ro);
|
||||
//if (c != null)
|
||||
//{
|
||||
// var dcList = MapperFactory.CustomerPersonRelationDC_Customer2Person.MapToNewDCs(c.Customer2PersonList);
|
||||
|
||||
// var x =
|
||||
// dcList.FirstOrDefault(
|
||||
// f => f.RelationRole.TypeDescription.ToLower().Equals("facharzt (psychiater)"));
|
||||
|
||||
// if (x != null)
|
||||
// {
|
||||
// lblArzt.Text = x.Person.TitleFirstNameLastNameToString();
|
||||
// }
|
||||
//}
|
||||
this.bindingSource1.DataSource = ro;
|
||||
}
|
||||
|
||||
@@ -93,7 +53,6 @@ namespace PraxisPusteblume
|
||||
if (ro.CustomerOid > 0)
|
||||
{
|
||||
var c = DAOFactory.GenericDAO.LoadByID<Customer>(ro.CustomerOid);
|
||||
|
||||
foreach (var sc in c.SupportConcepts)
|
||||
{
|
||||
foreach (var c2s in sc.CostBearer2SupportConceptList)
|
||||
@@ -105,7 +64,6 @@ namespace PraxisPusteblume
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -113,37 +71,11 @@ namespace PraxisPusteblume
|
||||
return ro.Costbearer;
|
||||
}
|
||||
|
||||
private void InitRows(ServicesOverviewRO ro)
|
||||
{
|
||||
DateTime start = ro.StartDate;
|
||||
|
||||
int idx = 0;
|
||||
while (start < ro.StartDate.AddMonths(1))
|
||||
{
|
||||
var cellIdx = 2 + idx++;
|
||||
rowWochentage.Cells[cellIdx].Text = String.Format("{0:dd\nddd}", start);
|
||||
|
||||
if (IstWochentagOderFeiertag(start))
|
||||
{
|
||||
rowWochentage.Cells[cellIdx].BackColor = Color.LightGray;
|
||||
tableRowPflegeeinheiten1.Cells[cellIdx].BackColor = Color.LightGray;
|
||||
//row2.Cells[cellIdx].BackColor = Color.LightGray;
|
||||
//row3.Cells[cellIdx].BackColor = Color.LightGray;
|
||||
}
|
||||
start = start.AddDays(1);
|
||||
}
|
||||
while (idx < 31)
|
||||
{
|
||||
rowWochentage.Cells[2 + idx++].Text = "";
|
||||
}
|
||||
}
|
||||
|
||||
private Customer GetCustomer(ServicesOverviewRO ro)
|
||||
{
|
||||
if (ro.CostBearer2SupportConceptList != null && ro.CostBearer2SupportConceptList.Count > 0)
|
||||
{
|
||||
return ro.CostBearer2SupportConceptList[0].SupportConcept.Customer;
|
||||
|
||||
}
|
||||
|
||||
return null;
|
||||
@@ -152,8 +84,6 @@ namespace PraxisPusteblume
|
||||
private void AddDetailToTable(ServicesOverviewRO ro, ServicesOverviewRO.ServiceDetail sd)
|
||||
{
|
||||
var table = tableMonat1;
|
||||
|
||||
|
||||
SetTableText(table, sd);
|
||||
}
|
||||
|
||||
@@ -193,7 +123,7 @@ namespace PraxisPusteblume
|
||||
}
|
||||
|
||||
row = tableRowPflegeeinheiten1;
|
||||
totalEinheiten1 += einheiten;
|
||||
//totalEinheiten1 += einheiten;
|
||||
|
||||
//if (wegepauschale)
|
||||
//{
|
||||
@@ -226,20 +156,7 @@ namespace PraxisPusteblume
|
||||
uhrzeitRow.Cells[column].Text = String.Format("{0:HH:mm}", sd.StartDate);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
key2Pflegeeinheiten[key] = decimalValue;
|
||||
}
|
||||
|
||||
private bool IstWochentagOderFeiertag(DateTime dt)
|
||||
{
|
||||
if (dt.DayOfWeek == DayOfWeek.Saturday || dt.DayOfWeek == DayOfWeek.Sunday)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -153,13 +153,9 @@ namespace PraxisPusteblume
|
||||
{
|
||||
i.ServiceDescription = i.ServiceDescription.Replace("?", "€");
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
isIfs = false;
|
||||
|
||||
|
||||
21
ReportImp/SicherlebenMichaelVoß/CustomReportCreator.cs
Normal file
21
ReportImp/SicherlebenMichaelVoß/CustomReportCreator.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using BeWo.Data.Access;
|
||||
using BeWo.Data.Entities;
|
||||
using BeWo.Report;
|
||||
using BeWo.Report.ReportObjects;
|
||||
using DevExpress.XtraReports.Design;
|
||||
using DevExpress.XtraReports.UI;
|
||||
|
||||
namespace SicherlebenMichaelVoß
|
||||
{
|
||||
public class CustomReportCreator : DefaultReportCreator
|
||||
{
|
||||
public override XtraReport CreateSettlementReport(string dcId, long? invoiceBaseOid)
|
||||
{
|
||||
return base.CreateSettlementReport(dcId, invoiceBaseOid, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -60,6 +60,7 @@
|
||||
<ItemGroup>
|
||||
<Compile Include="CustomMitarbeiterstundenkontoBerechnung.cs" />
|
||||
<Compile Include="CustomMitarbeiterstundenkontoBerechnungMonate.cs" />
|
||||
<Compile Include="CustomReportCreator.cs" />
|
||||
<Compile Include="Invoicing\CustomSettlementInvoiceCreation.cs" />
|
||||
<Compile Include="Mitarbeiterarbeitszeitkonto.cs">
|
||||
<SubType>Component</SubType>
|
||||
|
||||
Reference in New Issue
Block a user