First create solution

This commit is contained in:
2017-03-08 11:21:27 +01:00
commit a2fb86bacf
5508 changed files with 1082238 additions and 0 deletions
+51
View File
@@ -0,0 +1,51 @@
namespace Nuvolar.Module.ReportV2
{
partial class Invoice
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
components = new System.ComponentModel.Container();
this.Detail = new DevExpress.XtraReports.UI.DetailBand();
this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
this.TopMargin.Height = 100;
this.BottomMargin.Height = 100;
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
this.Detail,
this.TopMargin,
this.BottomMargin});
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
}
#endregion
private DevExpress.XtraReports.UI.DetailBand Detail;
private DevExpress.XtraReports.UI.TopMarginBand TopMargin;
private DevExpress.XtraReports.UI.BottomMarginBand BottomMargin;
}
}
+17
View File
@@ -0,0 +1,17 @@
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using DevExpress.XtraReports.UI;
namespace Nuvolar.Module.ReportV2
{
public partial class Invoice : DevExpress.XtraReports.UI.XtraReport
{
public Invoice()
{
InitializeComponent();
}
}
}
+120
View File
@@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>
+478
View File
@@ -0,0 +1,478 @@
namespace Nuvolar.Module.ReportV2
{
partial class Report_Invoice
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary();
DevExpress.XtraReports.UI.XRSummary xrSummary3 = new DevExpress.XtraReports.UI.XRSummary();
DevExpress.DataAccess.Sql.TableQuery tableQuery1 = new DevExpress.DataAccess.Sql.TableQuery();
DevExpress.DataAccess.Sql.RelationInfo relationInfo1 = new DevExpress.DataAccess.Sql.RelationInfo();
DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo1 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
DevExpress.DataAccess.Sql.RelationInfo relationInfo2 = new DevExpress.DataAccess.Sql.RelationInfo();
DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo2 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
DevExpress.DataAccess.Sql.TableInfo tableInfo1 = new DevExpress.DataAccess.Sql.TableInfo();
DevExpress.DataAccess.Sql.ColumnInfo columnInfo1 = new DevExpress.DataAccess.Sql.ColumnInfo();
DevExpress.DataAccess.Sql.ColumnInfo columnInfo2 = new DevExpress.DataAccess.Sql.ColumnInfo();
DevExpress.DataAccess.Sql.ColumnInfo columnInfo3 = new DevExpress.DataAccess.Sql.ColumnInfo();
DevExpress.DataAccess.Sql.TableInfo tableInfo2 = new DevExpress.DataAccess.Sql.TableInfo();
DevExpress.DataAccess.Sql.ColumnInfo columnInfo4 = new DevExpress.DataAccess.Sql.ColumnInfo();
DevExpress.DataAccess.Sql.TableInfo tableInfo3 = new DevExpress.DataAccess.Sql.TableInfo();
DevExpress.DataAccess.Sql.ColumnInfo columnInfo5 = new DevExpress.DataAccess.Sql.ColumnInfo();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Report_Invoice));
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
this.formattingRule1 = new DevExpress.XtraReports.UI.FormattingRule();
this.label13 = new DevExpress.XtraReports.UI.XRLabel();
this.label6 = new DevExpress.XtraReports.UI.XRLabel();
this.label14 = new DevExpress.XtraReports.UI.XRLabel();
this.label11 = new DevExpress.XtraReports.UI.XRLabel();
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
this.label9 = new DevExpress.XtraReports.UI.XRLabel();
this.label4 = new DevExpress.XtraReports.UI.XRLabel();
this.label3 = new DevExpress.XtraReports.UI.XRLabel();
this.label2 = new DevExpress.XtraReports.UI.XRLabel();
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
this.line2 = new DevExpress.XtraReports.UI.XRLine();
this.label8 = new DevExpress.XtraReports.UI.XRLabel();
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
this.pageFooterBand1 = new DevExpress.XtraReports.UI.PageFooterBand();
this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
this.line1 = new DevExpress.XtraReports.UI.XRLine();
this.label7 = new DevExpress.XtraReports.UI.XRLabel();
this.label5 = new DevExpress.XtraReports.UI.XRLabel();
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
this.label12 = new DevExpress.XtraReports.UI.XRLabel();
this.label10 = new DevExpress.XtraReports.UI.XRLabel();
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
//
// FieldCaption
//
this.FieldCaption.BackColor = System.Drawing.Color.White;
this.FieldCaption.BorderColor = System.Drawing.SystemColors.ControlText;
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.FieldCaption.BorderWidth = 1F;
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
this.FieldCaption.Name = "FieldCaption";
//
// label1
//
this.label1.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(148.9583F, 10.50002F);
this.label1.Name = "label1";
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.label1.SizeF = new System.Drawing.SizeF(100F, 18F);
this.label1.StylePriority.UseFont = false;
this.label1.StylePriority.UseTextAlignment = false;
this.label1.Text = "Összesen";
this.label1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// formattingRule1
//
this.formattingRule1.Name = "formattingRule1";
//
// label13
//
this.label13.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.label13.LocationFloat = new DevExpress.Utils.PointFloat(245.8334F, 38F);
this.label13.Name = "label13";
this.label13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.label13.Scripts.OnBeforePrint = "label13_BeforePrint";
this.label13.SizeF = new System.Drawing.SizeF(453.1666F, 18F);
this.label13.StylePriority.UseFont = false;
//
// label6
//
this.label6.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
this.label6.LocationFloat = new DevExpress.Utils.PointFloat(303.125F, 0F);
this.label6.Name = "label6";
this.label6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.label6.SizeF = new System.Drawing.SizeF(107.2917F, 18F);
this.label6.StylePriority.UseFont = false;
this.label6.StylePriority.UseTextAlignment = false;
this.label6.Text = "Nettó összeg";
this.label6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
//
// label14
//
this.label14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "VAT.ShortName")});
this.label14.LocationFloat = new DevExpress.Utils.PointFloat(20.6845F, 10.00001F);
this.label14.Name = "label14";
this.label14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.label14.SizeF = new System.Drawing.SizeF(82.14286F, 17.04762F);
this.label14.Text = "label14";
this.label14.Visible = false;
//
// label11
//
this.label11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "invoicevatrows.AmountVATHUF")});
this.label11.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
this.label11.LocationFloat = new DevExpress.Utils.PointFloat(436.4584F, 10.50005F);
this.label11.Name = "label11";
this.label11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.label11.SizeF = new System.Drawing.SizeF(131.25F, 18F);
this.label11.StylePriority.UseFont = false;
this.label11.StylePriority.UseTextAlignment = false;
xrSummary1.FormatString = "{0:#,##0}";
xrSummary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
this.label11.Summary = xrSummary1;
this.label11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
//
// detailBand1
//
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.label9,
this.label4,
this.label3,
this.label2});
this.detailBand1.HeightF = 23F;
this.detailBand1.Name = "detailBand1";
//
// label9
//
this.label9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "invoicevatrows.AmountBruttoHUF")});
this.label9.Font = new System.Drawing.Font("Arial", 9.75F);
this.label9.LocationFloat = new DevExpress.Utils.PointFloat(591.7083F, 0F);
this.label9.Name = "label9";
this.label9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.label9.SizeF = new System.Drawing.SizeF(107.2917F, 18F);
this.label9.StylePriority.UseFont = false;
this.label9.StylePriority.UseTextAlignment = false;
this.label9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
//
// label4
//
this.label4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "invoicevatrows.AmountVATHUF", "{0:#,##0}")});
this.label4.Font = new System.Drawing.Font("Arial", 9.75F);
this.label4.LocationFloat = new DevExpress.Utils.PointFloat(460.4167F, 0F);
this.label4.Name = "label4";
this.label4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.label4.SizeF = new System.Drawing.SizeF(107.2917F, 18F);
this.label4.StylePriority.UseFont = false;
this.label4.StylePriority.UseTextAlignment = false;
this.label4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
//
// label3
//
this.label3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "invoicevatrows.AmountNettoHUF", "{0:#,##0}")});
this.label3.Font = new System.Drawing.Font("Arial", 9.75F);
this.label3.LocationFloat = new DevExpress.Utils.PointFloat(303.125F, 0F);
this.label3.Name = "label3";
this.label3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.label3.SizeF = new System.Drawing.SizeF(107.2917F, 18F);
this.label3.StylePriority.UseFont = false;
this.label3.StylePriority.UseTextAlignment = false;
this.label3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
//
// label2
//
this.label2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "invoicevatrows.ShortName")});
this.label2.Font = new System.Drawing.Font("Arial", 9.75F);
this.label2.LocationFloat = new DevExpress.Utils.PointFloat(148.9583F, 0F);
this.label2.Name = "label2";
this.label2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.label2.SizeF = new System.Drawing.SizeF(100F, 18F);
this.label2.StylePriority.UseFont = false;
this.label2.StylePriority.UseTextAlignment = false;
this.label2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// DataField
//
this.DataField.BackColor = System.Drawing.Color.White;
this.DataField.BorderColor = System.Drawing.SystemColors.ControlText;
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.DataField.BorderWidth = 1F;
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
this.DataField.ForeColor = System.Drawing.SystemColors.ControlText;
this.DataField.Name = "DataField";
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
//
// line2
//
this.line2.LocationFloat = new DevExpress.Utils.PointFloat(148.9582F, 0F);
this.line2.Name = "line2";
this.line2.SizeF = new System.Drawing.SizeF(550.0417F, 6.333365F);
//
// label8
//
this.label8.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
this.label8.LocationFloat = new DevExpress.Utils.PointFloat(591.7083F, 0F);
this.label8.Name = "label8";
this.label8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.label8.SizeF = new System.Drawing.SizeF(107.2917F, 18F);
this.label8.StylePriority.UseFont = false;
this.label8.StylePriority.UseTextAlignment = false;
this.label8.Text = "Bruttó összeg";
this.label8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
//
// topMarginBand1
//
this.topMarginBand1.HeightF = 0F;
this.topMarginBand1.Name = "topMarginBand1";
//
// pageFooterBand1
//
this.pageFooterBand1.Expanded = false;
this.pageFooterBand1.HeightF = 0F;
this.pageFooterBand1.Name = "pageFooterBand1";
//
// reportHeaderBand1
//
this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.line1,
this.label8,
this.label7,
this.label6,
this.label5});
this.reportHeaderBand1.HeightF = 20.16668F;
this.reportHeaderBand1.Name = "reportHeaderBand1";
//
// line1
//
this.line1.LocationFloat = new DevExpress.Utils.PointFloat(148.9583F, 18F);
this.line1.Name = "line1";
this.line1.SizeF = new System.Drawing.SizeF(550.0416F, 2.166679F);
//
// label7
//
this.label7.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
this.label7.LocationFloat = new DevExpress.Utils.PointFloat(460.4167F, 0F);
this.label7.Name = "label7";
this.label7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.label7.SizeF = new System.Drawing.SizeF(107.2917F, 18F);
this.label7.StylePriority.UseFont = false;
this.label7.StylePriority.UseTextAlignment = false;
this.label7.Text = "ÁFA összeg";
this.label7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
//
// label5
//
this.label5.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
this.label5.LocationFloat = new DevExpress.Utils.PointFloat(148.9583F, 0F);
this.label5.Name = "label5";
this.label5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.label5.SizeF = new System.Drawing.SizeF(100F, 18F);
this.label5.StylePriority.UseFont = false;
this.label5.Text = "ÁFA kód";
//
// PageInfo
//
this.PageInfo.BackColor = System.Drawing.Color.White;
this.PageInfo.BorderColor = System.Drawing.SystemColors.ControlText;
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.PageInfo.BorderWidth = 1F;
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
this.PageInfo.ForeColor = System.Drawing.SystemColors.ControlText;
this.PageInfo.Name = "PageInfo";
//
// Title
//
this.Title.BackColor = System.Drawing.Color.White;
this.Title.BorderColor = System.Drawing.SystemColors.ControlText;
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.Title.BorderWidth = 1F;
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
this.Title.ForeColor = System.Drawing.Color.Maroon;
this.Title.Name = "Title";
//
// bottomMarginBand1
//
this.bottomMarginBand1.HeightF = 0F;
this.bottomMarginBand1.Name = "bottomMarginBand1";
//
// label12
//
this.label12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "invoicevatrows.AmountBruttoHUF")});
this.label12.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
this.label12.LocationFloat = new DevExpress.Utils.PointFloat(578.1667F, 10.50005F);
this.label12.Name = "label12";
this.label12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.label12.SizeF = new System.Drawing.SizeF(120.8333F, 18F);
this.label12.StylePriority.UseFont = false;
this.label12.StylePriority.UseTextAlignment = false;
xrSummary2.FormatString = "{0:#,##0}";
xrSummary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
this.label12.Summary = xrSummary2;
this.label12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
//
// label10
//
this.label10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "invoicevatrows.AmountNettoHUF")});
this.label10.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
this.label10.LocationFloat = new DevExpress.Utils.PointFloat(277.0834F, 10.50005F);
this.label10.Name = "label10";
this.label10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.label10.SizeF = new System.Drawing.SizeF(133.3333F, 18F);
this.label10.StylePriority.UseFont = false;
this.label10.StylePriority.UseTextAlignment = false;
xrSummary3.FormatString = "{0:#,##0}";
xrSummary3.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
this.label10.Summary = xrSummary3;
this.label10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
//
// GroupFooter1
//
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.label14,
this.label13,
this.line2,
this.label1,
this.label10,
this.label11,
this.label12});
this.GroupFooter1.HeightF = 56F;
this.GroupFooter1.Name = "GroupFooter1";
//
// sqlDataSource1
//
this.sqlDataSource1.ConnectionName = "84.1.150.148_hsystem_nuvolar";
this.sqlDataSource1.Name = "sqlDataSource1";
tableQuery1.FilterString = "";
tableQuery1.GroupFilterString = "";
tableQuery1.Name = "invoicevatrows";
relationColumnInfo1.NestedKeyColumn = "Oid";
relationColumnInfo1.ParentKeyColumn = "VAT";
relationInfo1.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
relationColumnInfo1});
relationInfo1.NestedTable = "vat";
relationInfo1.ParentTable = "invoicevatrows";
relationColumnInfo2.NestedKeyColumn = "Oid";
relationColumnInfo2.ParentKeyColumn = "InvoiceHeader";
relationInfo2.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
relationColumnInfo2});
relationInfo2.NestedTable = "invoiceheader";
relationInfo2.ParentTable = "invoicevatrows";
tableQuery1.Relations.AddRange(new DevExpress.DataAccess.Sql.RelationInfo[] {
relationInfo1,
relationInfo2});
tableInfo1.Name = "invoicevatrows";
columnInfo1.Name = "AmountNettoHUF";
columnInfo2.Name = "AmountVATHUF";
columnInfo3.Name = "AmountBruttoHUF";
tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
columnInfo1,
columnInfo2,
columnInfo3});
tableInfo2.Name = "vat";
columnInfo4.Name = "ShortName";
tableInfo2.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
columnInfo4});
tableInfo3.Name = "invoiceheader";
columnInfo5.Alias = "InvoiceHeader";
columnInfo5.Name = "Oid";
tableInfo3.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
columnInfo5});
tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
tableInfo1,
tableInfo2,
tableInfo3});
this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
tableQuery1});
this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
//
// Report_Invoice
//
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
this.detailBand1,
this.pageFooterBand1,
this.reportHeaderBand1,
this.topMarginBand1,
this.bottomMarginBand1,
this.GroupFooter1});
this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
this.sqlDataSource1});
this.DataMember = "invoicevatrows";
this.DataSource = this.sqlDataSource1;
this.DisplayName = "Kimenő számla ÁFA";
this.Extensions.Add("DataSerializationExtension", "XtraReport");
this.Extensions.Add("DataEditorExtension", "XtraReport");
this.Extensions.Add("ParameterEditorExtension", "XtraReport");
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
this.formattingRule1});
this.Margins = new System.Drawing.Printing.Margins(100, 28, 0, 0);
this.PageHeight = 1169;
this.PageWidth = 827;
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
this.ScriptLanguage = DevExpress.XtraReports.ScriptLanguage.VisualBasic;
this.ScriptsSource = resources.GetString("$this.ScriptsSource");
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
this.Title,
this.FieldCaption,
this.PageInfo,
this.DataField});
this.Version = "15.2";
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
}
#endregion
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
private DevExpress.XtraReports.UI.XRLabel label1;
private DevExpress.XtraReports.UI.FormattingRule formattingRule1;
private DevExpress.XtraReports.UI.XRLabel label13;
private DevExpress.XtraReports.UI.XRLabel label6;
private DevExpress.XtraReports.UI.XRLabel label14;
private DevExpress.XtraReports.UI.XRLabel label11;
private DevExpress.XtraReports.UI.DetailBand detailBand1;
private DevExpress.XtraReports.UI.XRLabel label9;
private DevExpress.XtraReports.UI.XRLabel label4;
private DevExpress.XtraReports.UI.XRLabel label3;
private DevExpress.XtraReports.UI.XRLabel label2;
private DevExpress.XtraReports.UI.XRControlStyle DataField;
private DevExpress.XtraReports.UI.XRLine line2;
private DevExpress.XtraReports.UI.XRLabel label8;
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
private DevExpress.XtraReports.UI.PageFooterBand pageFooterBand1;
private DevExpress.XtraReports.UI.ReportHeaderBand reportHeaderBand1;
private DevExpress.XtraReports.UI.XRLine line1;
private DevExpress.XtraReports.UI.XRLabel label7;
private DevExpress.XtraReports.UI.XRLabel label5;
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
private DevExpress.XtraReports.UI.XRControlStyle Title;
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
private DevExpress.XtraReports.UI.XRLabel label12;
private DevExpress.XtraReports.UI.XRLabel label10;
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1;
private DevExpress.DataAccess.Sql.SqlDataSource sqlDataSource1;
}
}
@@ -0,0 +1,16 @@
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using DevExpress.XtraReports.UI;
namespace Nuvolar.Module.ReportV2
{
public partial class Report_Invoice : DevExpress.XtraReports.UI.XtraReport
{
public Report_Invoice()
{
InitializeComponent();
}
}
}
@@ -0,0 +1,136 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="sqlDataSource1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 56</value>
</metadata>
<data name="sqlDataSource1.ResultSchemaSerializable" xml:space="preserve">
<value>PERhdGFTZXQgTmFtZT0ic3FsRGF0YVNvdXJjZTEiPjxWaWV3IE5hbWU9Imludm9pY2V2YXRyb3dzIj48RmllbGQgTmFtZT0iQW1vdW50TmV0dG9IVUYiIFR5cGU9IkRvdWJsZSIgLz48RmllbGQgTmFtZT0iQW1vdW50VkFUSFVGIiBUeXBlPSJEb3VibGUiIC8+PEZpZWxkIE5hbWU9IkFtb3VudEJydXR0b0hVRiIgVHlwZT0iRG91YmxlIiAvPjxGaWVsZCBOYW1lPSJTaG9ydE5hbWUiIFR5cGU9IlN0cmluZyIgLz48RmllbGQgTmFtZT0iSW52b2ljZUhlYWRlciIgVHlwZT0iU3RyaW5nIiAvPjwvVmlldz48L0RhdGFTZXQ+</value>
</data>
<data name="$this.ScriptsSource" xml:space="preserve">
<value>
Private Sub label13_BeforePrint(ByVal sender As Object, ByVal e As System.Drawing.Printing.PrintEventArgs)
if label14.text = "FAD" then
label13.text = "FAD: A számla a FORDÍTOTT ADÓZÁS szabályai szerint lett kiállítva."
end if
End Sub
</value>
</data>
</root>