Index: Baza Reklam 2 - Faktury/ZamowieniaForm.cs
===================================================================
--- Baza Reklam 2 - Faktury/ZamowieniaForm.cs (revision 28)
+++ Baza Reklam 2 - Faktury/ZamowieniaForm.cs (revision 29)
@@ -859,5 +859,5 @@
             naglowekKorekty.NABYWCA_NIP = faktura.NABYWCA_NIP;
             naglowekKorekty.TERMIN_ZAPLATY = DateTime.Today.AddDays(7);
-            naglowekKorekty.opis = "TU BÊDZIE JAKI OPIS";
+            naglowekKorekty.opis = "rezygnacja z emisji reklamy";
 
             naglowekKorekty.SPOSOB_ZAPLATY = faktura.SPOSOB_ZAPLATY;
Index: Baza Reklam 2 - Faktury/FactureViewer.Designer.cs
===================================================================
--- Baza Reklam 2 - Faktury/FactureViewer.Designer.cs (revision 28)
+++ Baza Reklam 2 - Faktury/FactureViewer.Designer.cs (revision 29)
@@ -33,4 +33,5 @@
             this.splitContainer1 = new System.Windows.Forms.SplitContainer();
             this.groupBox2 = new System.Windows.Forms.GroupBox();
+            this.powodKorektyComboBox = new System.Windows.Forms.ComboBox();
             this.nUMERTextBox = new System.Windows.Forms.TextBox();
             this.fAKTURYBindingSource = new System.Windows.Forms.BindingSource(this.components);
@@ -96,4 +97,5 @@
             // groupBox2
             // 
+            this.groupBox2.Controls.Add(this.powodKorektyComboBox);
             this.groupBox2.Controls.Add(nUMERLabel);
             this.groupBox2.Controls.Add(this.nUMERTextBox);
@@ -107,4 +109,17 @@
             this.groupBox2.Text = "Faktura";
             // 
+            // powodKorektyComboBox
+            // 
+            this.powodKorektyComboBox.Enabled = false;
+            this.powodKorektyComboBox.FormattingEnabled = true;
+            this.powodKorektyComboBox.Items.AddRange(new object[] {
+            "rezygnacja z emisji reklamy",
+            "uznana reklamacja"});
+            this.powodKorektyComboBox.Location = new System.Drawing.Point(53, 60);
+            this.powodKorektyComboBox.Name = "powodKorektyComboBox";
+            this.powodKorektyComboBox.Size = new System.Drawing.Size(410, 21);
+            this.powodKorektyComboBox.TabIndex = 9;
+            this.powodKorektyComboBox.SelectedIndexChanged += new System.EventHandler(this.powodKorektyComboBox_SelectedIndexChanged);
+            // 
             // nUMERTextBox
             // 
@@ -137,8 +152,9 @@
             // 
             this.opisTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.fAKTURYBindingSource, "opis", true));
-            this.opisTextBox.Location = new System.Drawing.Point(61, 18);
+            this.opisTextBox.Location = new System.Drawing.Point(53, 19);
+            this.opisTextBox.MaxLength = 200;
             this.opisTextBox.Multiline = true;
             this.opisTextBox.Name = "opisTextBox";
-            this.opisTextBox.Size = new System.Drawing.Size(410, 72);
+            this.opisTextBox.Size = new System.Drawing.Size(410, 35);
             this.opisTextBox.TabIndex = 4;
             // 
@@ -338,4 +354,5 @@
         private System.Windows.Forms.TextBox nUMERTextBox;
         private System.Windows.Forms.CheckBox proformaCheckBox;
+        private System.Windows.Forms.ComboBox powodKorektyComboBox;
     }
 }
Index: Baza Reklam 2 - Faktury/FactureViewer.cs
===================================================================
--- Baza Reklam 2 - Faktury/FactureViewer.cs (revision 28)
+++ Baza Reklam 2 - Faktury/FactureViewer.cs (revision 29)
@@ -157,4 +157,8 @@
             InitializeComponent();
 
+            powodKorektyComboBox.Enabled = true;
+            opisTextBox.ReadOnly = !User.getUser().St_kierownik;
+            opisTextBox.BackColor = User.getUser().St_kierownik ? Color.White : Color.WhiteSmoke;
+
             reportViewer1.LocalReport.ReportEmbeddedResource = "Baza_Reklam.Raporty.fakturaKorekta.rdlc";
 
@@ -208,14 +212,4 @@
                 this.reportViewer1.LocalReport.SetParameters(paramList);
             }
-
-            //nadpisanie drukowania
-            //this.reportViewer1.Print += new CancelEventHandler(HandlePrint);
-            /*
-            if (rodzaj)
-            {
-                this.reportViewer1.Print += new CancelEventHandler(HandlePrint);
-            }
-            */
-
             jezykComboBox.SelectedIndex = 0;
             typComboBox.SelectedIndex = 1;
@@ -352,18 +346,29 @@
             fAKTURYBindingSource.EndEdit();
             fAKTURYTableAdapter.Update(this.rEKLAMADataSet.FAKTURY);
-            fAKTURYTableAdapter.FillByIdFaktury(this.rEKLAMADataSet.FAKTURY, idFaktury);
+            fAKTURYTableAdapter.FillByIdFaktury(this.rEKLAMADataSet.FAKTURY, idKorekty);
+
+            reportViewer1.LocalReport.DataSources.Clear();
 
             //ustawienie parametrów, nowych datasoure dla raportu
             List<ReportParameter> paramList = new List<ReportParameter>();
-
-            paramList.Add(new ReportParameter("jezyk", jezykComboBox.SelectedItem.ToString(), true));
+            raporty.FakturaDataTable korektaTable = fakturaTableAdapter1.GetDataByIdFaktury(idKorekty);
+            raporty.FakturaRow korekta = korektaTable[0];
+            reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("Korekta", korektaTable));
+            reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("Faktura", fakturaTableAdapter1.GetDataByIdFaktury(this.idFaktury)));
+
+            //piersza korekta
+            if (korekta.idFakturyKorekta == idFaktury)
+            {
+                reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("FakturaDetails2", fAKTURA_DETAILS2TableAdapter.GetDataIdFaktury(this.idFaktury)));
+            }
+            else
+            {
+                reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("FakturaDetails2", fAKTURA_DETAILS2TableAdapter.GetDataIdFaktury(korekta.idFakturyKorekta)));
+            }
+            reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("FakturaDetailsKorekty", fAKTURA_DETAILS2TableAdapter.GetDataIdFaktury(idKorekty)));
+            reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("tlumaczenia", ds.Tables[0]));
+
             paramList.Add(new ReportParameter("podpis", podpisCheckBox.Checked.ToString(), true));
             this.reportViewer1.LocalReport.SetParameters(paramList);
-            reportViewer1.LocalReport.DataSources.Clear();
-            reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("Faktura", fakturaTableAdapter1.GetDataByIdFaktury(idFaktury)));
-
-            reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("FakturaDetails2", fAKTURA_DETAILS2TableAdapter.GetDataIdFaktury(idFaktury)));
-            reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("FakturaDetailsKorekty", fAKTURA_DETAILS2TableAdapter.GetDataIdFaktury(idKorekty)));
-            reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("tlumaczenia", ds.Tables[0]));
 
             reportViewer1.RefreshReport();
@@ -604,4 +609,14 @@
             e.Cancel = true;
         }
+
+        private void powodKorektyComboBox_SelectedIndexChanged(object sender, EventArgs e)
+        {
+            DataRowView row = (DataRowView)fAKTURYBindingSource.Current;
+            row["opis"] = powodKorektyComboBox.SelectedItem.ToString();
+            fAKTURYBindingSource.EndEdit();
+            
+            opisTextBox.Text = powodKorektyComboBox.SelectedItem.ToString();
+        }
+
    }
 }
Index: Baza Reklam 2 - Faktury/FactureViewer.resx
===================================================================
--- Baza Reklam 2 - Faktury/FactureViewer.resx (revision 25)
+++ Baza Reklam 2 - Faktury/FactureViewer.resx (revision 29)
@@ -124,4 +124,10 @@
     <value>162, 17</value>
   </metadata>
+  <metadata name="fAKTURYBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+    <value>162, 17</value>
+  </metadata>
+  <metadata name="rEKLAMADataSet.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+    <value>17, 17</value>
+  </metadata>
   <metadata name="rEKLAMADataSet.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
     <value>17, 17</value>
Index: Baza Reklam 2 - Faktury/Raporty/fakturaKorekta.rdlc
===================================================================
--- Baza Reklam 2 - Faktury/Raporty/fakturaKorekta.rdlc (revision 28)
+++ Baza Reklam 2 - Faktury/Raporty/fakturaKorekta.rdlc (revision 29)
@@ -1587,5 +1587,5 @@
         <ZIndex>7</ZIndex>
         <DataSetName>Korekta</DataSetName>
-        <Top>18.79365cm</Top>
+        <Top>17.14286cm</Top>
         <Width>18.28572cm</Width>
         <Header>
@@ -2029,9 +2029,8 @@
           <Rectangle Name="sprzedawca">
             <Left>0.12698cm</Left>
-            <ZIndex>4</ZIndex>
+            <ZIndex>3</ZIndex>
             <ReportItems>
               <Textbox Name="FAKTURY_DRUK_INTERNATIONALlabel_sprzedawca">
                 <rd:DefaultName>FAKTURY_DRUK_INTERNATIONALlabel_sprzedawca</rd:DefaultName>
-                <Width>8cm</Width>
                 <Style>
                   <BackgroundColor>#c0c0ff</BackgroundColor>
@@ -2111,10 +2110,10 @@
             </ReportItems>
             <Top>0.12698cm</Top>
-            <Width>8.12699cm</Width>
-            <Height>3.68254cm</Height>
+            <Width>8cm</Width>
+            <Height>3.55556cm</Height>
           </Rectangle>
           <Rectangle Name="nabywca">
             <Left>0.12698cm</Left>
-            <ZIndex>3</ZIndex>
+            <ZIndex>2</ZIndex>
             <ReportItems>
               <Rectangle Name="rectangle3">
@@ -2123,5 +2122,4 @@
                 <ReportItems>
                   <Textbox Name="textbox36">
-                    <Top>0.12698cm</Top>
                     <Width>5.07937cm</Width>
                     <Style>
@@ -2134,12 +2132,9 @@
                     </Style>
                     <CanGrow>true</CanGrow>
-                    <Left>0.12698cm</Left>
-                    <Height>1.77778cm</Height>
                     <Value>=Fields!Adres_Kor.Value</Value>
                   </Textbox>
                 </ReportItems>
-                <Top>0.63492cm</Top>
+                <Top>0.50794cm</Top>
                 <Width>5.33333cm</Width>
-                <Height>2.03175cm</Height>
               </Rectangle>
               <Textbox Name="FAKTURY_DRUK_INTERNATIONALlabel_nabywca">
@@ -2159,5 +2154,5 @@
               <Textbox Name="NABYWCA_NIP">
                 <rd:DefaultName>NABYWCA_NIP</rd:DefaultName>
-                <Top>1.26984cm</Top>
+                <Top>1.14286cm</Top>
                 <Width>4.06349cm</Width>
                 <Style>
@@ -2176,5 +2171,5 @@
               <Textbox Name="NABYWCA_ADRES">
                 <rd:DefaultName>NABYWCA_ADRES</rd:DefaultName>
-                <Top>0.63492cm</Top>
+                <Top>0.50794cm</Top>
                 <Width>5.07937cm</Width>
                 <Style>
@@ -2190,28 +2185,10 @@
               </Textbox>
             </ReportItems>
-            <Top>4.44444cm</Top>
+            <Top>3.68254cm</Top>
             <Width>18.28571cm</Width>
-            <Height>2.79365cm</Height>
+            <Height>2.28572cm</Height>
           </Rectangle>
-          <Textbox Name="textbox7">
-            <rd:DefaultName>textbox7</rd:DefaultName>
-            <Width>4.8254cm</Width>
-            <Style>
-              <FontSize>8pt</FontSize>
-              <FontWeight>700</FontWeight>
-              <TextAlign>Right</TextAlign>
-              <VerticalAlign>Middle</VerticalAlign>
-              <PaddingLeft>2pt</PaddingLeft>
-              <PaddingRight>2pt</PaddingRight>
-              <PaddingTop>2pt</PaddingTop>
-              <PaddingBottom>2pt</PaddingBottom>
-            </Style>
-            <ZIndex>2</ZIndex>
-            <CanGrow>true</CanGrow>
-            <Left>13.71429cm</Left>
-            <Height>0.50793cm</Height>
-            <Value>="RE/" &amp; Fields!RejestrFaktur_Symbol.Value &amp; "/" &amp; Fields!NUMER.Value &amp; "/" &amp; Fields!NUMER_ROZ.Value &amp; "/" &amp; Fields!NUMER_ROK.Value</Value>
-          </Textbox>
           <Rectangle Name="sposobZaplaty">
+            <Left>0.12698cm</Left>
             <ZIndex>1</ZIndex>
             <ReportItems>
@@ -2284,10 +2261,29 @@
               </Textbox>
             </ReportItems>
-            <Top>7.49206cm</Top>
+            <Top>6.09524cm</Top>
             <Width>18.28571cm</Width>
+            <Height>1.26984cm</Height>
           </Rectangle>
           <Rectangle Name="rectangle2">
-            <Left>8.38095cm</Left>
+            <Left>8.12698cm</Left>
             <ReportItems>
+              <Textbox Name="textbox7">
+                <rd:DefaultName>textbox7</rd:DefaultName>
+                <Style>
+                  <FontSize>8pt</FontSize>
+                  <FontWeight>700</FontWeight>
+                  <TextAlign>Right</TextAlign>
+                  <VerticalAlign>Middle</VerticalAlign>
+                  <PaddingLeft>2pt</PaddingLeft>
+                  <PaddingRight>2pt</PaddingRight>
+                  <PaddingTop>2pt</PaddingTop>
+                  <PaddingBottom>2pt</PaddingBottom>
+                </Style>
+                <ZIndex>8</ZIndex>
+                <CanGrow>true</CanGrow>
+                <Left>5.5873cm</Left>
+                <Height>0.50793cm</Height>
+                <Value>="RE/" &amp; Fields!RejestrFaktur_Symbol.Value &amp; "/" &amp; Fields!NUMER.Value &amp; "/" &amp; Fields!NUMER_ROZ.Value &amp; "/" &amp; Fields!NUMER_ROK.Value</Value>
+              </Textbox>
               <Textbox Name="FAKTURY_DRUK_INTERNATIONALlabel_zaliczka_dnia">
                 <rd:DefaultName>FAKTURY_DRUK_INTERNATIONALlabel_zaliczka_dnia</rd:DefaultName>
@@ -2305,5 +2301,6 @@
                 <ZIndex>7</ZIndex>
                 <CanGrow>true</CanGrow>
-                <Left>3.68254cm</Left>
+                <Left>3.93651cm</Left>
+                <Height>0.50794cm</Height>
                 <Value>="Data sprzedaÅŒy: "</Value>
               </Textbox>
@@ -2323,5 +2320,6 @@
                 <ZIndex>6</ZIndex>
                 <CanGrow>true</CanGrow>
-                <Left>7.87302cm</Left>
+                <Left>8.12699cm</Left>
+                <Height>0.50794cm</Height>
                 <Value>=First(Fields!DATA_SPRZEDAZY.Value, "Faktura")</Value>
               </Textbox>
@@ -2340,5 +2338,5 @@
                 <ZIndex>5</ZIndex>
                 <CanGrow>true</CanGrow>
-                <Left>3.68254cm</Left>
+                <Left>3.93651cm</Left>
                 <Height>0.50794cm</Height>
                 <Value>="Dotyczy faktury VAT nr: "</Value>
@@ -2359,5 +2357,5 @@
                 <ZIndex>4</ZIndex>
                 <CanGrow>true</CanGrow>
-                <Left>3.68254cm</Left>
+                <Left>3.93651cm</Left>
                 <Height>0.50794cm</Height>
                 <Value>=First(Fields!FAKTURY_DRUK_INTERNATIONALlabel_data_wystawienia.Value, "tlumaczenia")</Value>
@@ -2379,5 +2377,5 @@
                 <ZIndex>3</ZIndex>
                 <CanGrow>true</CanGrow>
-                <Left>7.87302cm</Left>
+                <Left>8.12699cm</Left>
                 <Height>0.50794cm</Height>
                 <Value>=First(Fields!NUMER.Value, "Faktura") &amp; "/" &amp; First(Fields!NUMER_ROZ.Value, "Faktura") &amp; "/" &amp; First(Fields!NUMER_ROK.Value, "Faktura")</Value>
@@ -2397,5 +2395,5 @@
                 <ZIndex>2</ZIndex>
                 <CanGrow>true</CanGrow>
-                <Left>7.87302cm</Left>
+                <Left>8.12699cm</Left>
                 <Height>0.50794cm</Height>
                 <Value>=Fields!DATA_WYSTAWIENIA.Value</Value>
@@ -2403,4 +2401,5 @@
               <Textbox Name="NUMER">
                 <rd:DefaultName>NUMER</rd:DefaultName>
+                <Top>0.50794cm</Top>
                 <Style>
                   <FontSize>16pt</FontSize>
@@ -2421,5 +2420,5 @@
               <Textbox Name="FAKTURY_DRUK_INTERNATIONALlabel_oryginal_kopia">
                 <rd:DefaultName>FAKTURY_DRUK_INTERNATIONALlabel_oryginal_kopia</rd:DefaultName>
-                <Top>0.7619cm</Top>
+                <Top>1.14286cm</Top>
                 <Style>
                   <FontWeight>700</FontWeight>
@@ -2429,16 +2428,15 @@
                   <PaddingRight>2pt</PaddingRight>
                 </Style>
-                <Left>5.33334cm</Left>
-                <Height>0.63492cm</Height>
+                <Left>4.69841cm</Left>
+                <Height>0.38096cm</Height>
                 <Value>=First(Fields!FAKTURY_DRUK_INTERNATIONALlabel_oryginal_kopia.Value, "tlumaczenia")</Value>
               </Textbox>
             </ReportItems>
-            <Top>0.63492cm</Top>
-            <Width>10.1627cm</Width>
-            <Height>3.1746cm</Height>
+            <Width>10.41667cm</Width>
+            <Height>3.68254cm</Height>
           </Rectangle>
         </ReportItems>
         <Width>18.67064cm</Width>
-        <Height>8.7619cm</Height>
+        <Height>7.49206cm</Height>
       </List>
       <Rectangle Name="rectangle5">
@@ -3562,5 +3560,5 @@
           </Table>
         </ReportItems>
-        <Top>14.22222cm</Top>
+        <Top>12.69841cm</Top>
         <Width>18.53969cm</Width>
         <Height>4.31746cm</Height>
@@ -3569,5 +3567,5 @@
         <ZIndex>4</ZIndex>
         <DataSetName>FakturaDetails2</DataSetName>
-        <Top>26.15873cm</Top>
+        <Top>24.25397cm</Top>
         <TableGroups>
           <TableGroup>
@@ -3764,6 +3762,5 @@
           </TableColumn>
         </TableColumns>
-        <Height>1.6508cm</Height>
-        <Left>0.25397cm</Left>
+        <Left>0.12698cm</Left>
       </Table>
       <Rectangle Name="rectangle4">
@@ -4941,5 +4938,5 @@
           </List>
         </ReportItems>
-        <Top>9.26984cm</Top>
+        <Top>7.61905cm</Top>
         <Width>18.53968cm</Width>
         <Height>4.95239cm</Height>
@@ -4948,5 +4945,5 @@
         <ZIndex>2</ZIndex>
         <Left>0.12698cm</Left>
-        <DataSetName>Faktura</DataSetName>
+        <DataSetName>Korekta</DataSetName>
         <ReportItems>
           <Textbox Name="opis">
@@ -5060,5 +5057,5 @@
           </Rectangle>
         </ReportItems>
-        <Top>20.8254cm</Top>
+        <Top>19.04762cm</Top>
         <Width>18.53968cm</Width>
         <Height>3.42857cm</Height>
@@ -5105,5 +5102,5 @@
           </Textbox>
         </ReportItems>
-        <Top>24.50794cm</Top>
+        <Top>22.60318cm</Top>
         <Width>18.53968cm</Width>
         <PageBreakAtEnd>true</PageBreakAtEnd>
@@ -5112,5 +5109,5 @@
       <Table Name="table6">
         <DataSetName>FakturaDetailsKorekty</DataSetName>
-        <Top>26.15873cm</Top>
+        <Top>24.25397cm</Top>
         <TableGroups>
           <TableGroup>
@@ -5301,12 +5298,11 @@
           </TableColumn>
         </TableColumns>
-        <Height>1.6508cm</Height>
-        <Left>9.52381cm</Left>
+        <Left>9.39683cm</Left>
       </Table>
     </ReportItems>
-    <Height>28.19048cm</Height>
+    <Height>25.90477cm</Height>
   </Body>
   <Language>pl</Language>
-  <TopMargin>1cm</TopMargin>
+  <TopMargin>0.7cm</TopMargin>
   <PageHeight>29.7cm</PageHeight>
 </Report>
Index: Baza Reklam 2 - Faktury/Raporty/fakturaReversed2.rdlc
===================================================================
--- Baza Reklam 2 - Faktury/Raporty/fakturaReversed2.rdlc (revision 28)
+++ Baza Reklam 2 - Faktury/Raporty/fakturaReversed2.rdlc (revision 29)
@@ -3809,5 +3809,5 @@
           </Table>
         </ReportItems>
-        <Top>9.39683cm</Top>
+        <Top>8.12698cm</Top>
         <Width>18.66667cm</Width>
         <Height>6.34921cm</Height>
@@ -3815,5 +3815,5 @@
       <List Name="list3">
         <ZIndex>3</ZIndex>
-        <Left>0.12698cm</Left>
+        <Left>0.38095cm</Left>
         <DataSetName>Faktura</DataSetName>
         <ReportItems>
@@ -3833,5 +3833,5 @@
           </Textbox>
         </ReportItems>
-        <Top>15.87302cm</Top>
+        <Top>14.60317cm</Top>
         <Width>13.84127cm</Width>
         <Height>0.50794cm</Height>
@@ -3845,9 +3845,8 @@
           <Rectangle Name="sprzedawca">
             <Left>0.12698cm</Left>
-            <ZIndex>4</ZIndex>
+            <ZIndex>3</ZIndex>
             <ReportItems>
               <Textbox Name="FAKTURY_DRUK_INTERNATIONALlabel_sprzedawca">
                 <rd:DefaultName>FAKTURY_DRUK_INTERNATIONALlabel_sprzedawca</rd:DefaultName>
-                <Width>8cm</Width>
                 <Style>
                   <BackgroundColor>#c0c0ff</BackgroundColor>
@@ -3922,15 +3921,14 @@
                 </Style>
                 <CanGrow>true</CanGrow>
-                <Height>0.50794cm</Height>
                 <Value>=Fields!Adres_Kor_Agencji.Value</Value>
               </Textbox>
             </ReportItems>
             <Top>0.12698cm</Top>
-            <Width>8.25397cm</Width>
-            <Height>3.68254cm</Height>
+            <Width>8cm</Width>
+            <Height>3.42857cm</Height>
           </Rectangle>
           <Rectangle Name="nabywca">
-            <Left>0.12698cm</Left>
-            <ZIndex>3</ZIndex>
+            <Left>0.25397cm</Left>
+            <ZIndex>2</ZIndex>
             <ReportItems>
               <Rectangle Name="rectangle3">
@@ -3939,5 +3937,4 @@
                 <ReportItems>
                   <Textbox Name="textbox36">
-                    <Top>0.12698cm</Top>
                     <Width>5.07937cm</Width>
                     <Style>
@@ -3950,12 +3947,9 @@
                     </Style>
                     <CanGrow>true</CanGrow>
-                    <Left>0.12698cm</Left>
-                    <Height>1.77778cm</Height>
                     <Value>=Fields!Adres_Kor.Value</Value>
                   </Textbox>
                 </ReportItems>
-                <Top>0.63492cm</Top>
-                <Width>5.33333cm</Width>
-                <Height>2.03175cm</Height>
+                <Top>0.50794cm</Top>
+                <Width>6.47619cm</Width>
               </Rectangle>
               <Textbox Name="FAKTURY_DRUK_INTERNATIONALlabel_nabywca">
@@ -3975,5 +3969,5 @@
               <Textbox Name="NABYWCA_NIP">
                 <rd:DefaultName>NABYWCA_NIP</rd:DefaultName>
-                <Top>1.26984cm</Top>
+                <Top>1.14286cm</Top>
                 <Width>4.06349cm</Width>
                 <Style>
@@ -3992,5 +3986,5 @@
               <Textbox Name="NABYWCA_ADRES">
                 <rd:DefaultName>NABYWCA_ADRES</rd:DefaultName>
-                <Top>0.63492cm</Top>
+                <Top>0.50794cm</Top>
                 <Width>5.07937cm</Width>
                 <Style>
@@ -4006,28 +4000,10 @@
               </Textbox>
             </ReportItems>
-            <Top>4.44444cm</Top>
+            <Top>3.93651cm</Top>
             <Width>18.28571cm</Width>
-            <Height>2.79365cm</Height>
+            <Height>2.28572cm</Height>
           </Rectangle>
-          <Textbox Name="textbox7">
-            <rd:DefaultName>textbox7</rd:DefaultName>
-            <Width>4.8254cm</Width>
-            <Style>
-              <FontSize>8pt</FontSize>
-              <FontWeight>700</FontWeight>
-              <TextAlign>Right</TextAlign>
-              <VerticalAlign>Middle</VerticalAlign>
-              <PaddingLeft>2pt</PaddingLeft>
-              <PaddingRight>2pt</PaddingRight>
-              <PaddingTop>2pt</PaddingTop>
-              <PaddingBottom>2pt</PaddingBottom>
-            </Style>
-            <ZIndex>2</ZIndex>
-            <CanGrow>true</CanGrow>
-            <Left>13.71429cm</Left>
-            <Height>0.50793cm</Height>
-            <Value>="RE/" &amp; Fields!RejestrFaktur_Symbol.Value &amp; "/" &amp; Fields!NUMER.Value &amp; "/" &amp; Fields!NUMER_ROZ.Value &amp; "/" &amp; Fields!NUMER_ROK.Value</Value>
-          </Textbox>
           <Rectangle Name="sposobZaplaty">
+            <Left>0.25397cm</Left>
             <ZIndex>1</ZIndex>
             <ReportItems>
@@ -4100,13 +4076,34 @@
               </Textbox>
             </ReportItems>
-            <Top>7.49206cm</Top>
+            <Top>6.47619cm</Top>
             <Width>18.28571cm</Width>
+            <Height>1.26984cm</Height>
           </Rectangle>
           <Rectangle Name="rectangle2">
-            <Left>8.38095cm</Left>
+            <Left>8.25397cm</Left>
             <ReportItems>
+              <Textbox Name="textbox7">
+                <rd:DefaultName>textbox7</rd:DefaultName>
+                <Top>0.12698cm</Top>
+                <Width>4.8254cm</Width>
+                <Style>
+                  <FontSize>8pt</FontSize>
+                  <FontWeight>700</FontWeight>
+                  <TextAlign>Right</TextAlign>
+                  <VerticalAlign>Middle</VerticalAlign>
+                  <PaddingLeft>2pt</PaddingLeft>
+                  <PaddingRight>2pt</PaddingRight>
+                  <PaddingTop>2pt</PaddingTop>
+                  <PaddingBottom>2pt</PaddingBottom>
+                </Style>
+                <ZIndex>11</ZIndex>
+                <CanGrow>true</CanGrow>
+                <Left>5.46031cm</Left>
+                <Height>0.50793cm</Height>
+                <Value>="RE/" &amp; Fields!RejestrFaktur_Symbol.Value &amp; "/" &amp; Fields!NUMER.Value &amp; "/" &amp; Fields!NUMER_ROZ.Value &amp; "/" &amp; Fields!NUMER_ROK.Value</Value>
+              </Textbox>
               <Textbox Name="FAKTURY_DRUK_INTERNATIONALlabel_zaliczka_brutto">
                 <rd:DefaultName>FAKTURY_DRUK_INTERNATIONALlabel_zaliczka_brutto</rd:DefaultName>
-                <Top>3.04762cm</Top>
+                <Top>3.30159cm</Top>
                 <Width>4.31746cm</Width>
                 <Style>
@@ -4121,10 +4118,10 @@
                 <ZIndex>10</ZIndex>
                 <CanGrow>true</CanGrow>
-                <Left>1.52381cm</Left>
+                <Left>1.65079cm</Left>
                 <Value>=Iif(Fields!Zaliczka_Brutto.Value&lt;&gt;0,First(Fields!FAKTURY_DRUK_INTERNATIONALlabel_zaliczka_brutto.Value, "tlumaczenia"),"")</Value>
               </Textbox>
               <Textbox Name="FAKTURY_DRUK_INTERNATIONALlabel_zaliczka_dnia">
                 <rd:DefaultName>FAKTURY_DRUK_INTERNATIONALlabel_zaliczka_dnia</rd:DefaultName>
-                <Top>2.53968cm</Top>
+                <Top>2.79365cm</Top>
                 <Width>4.31746cm</Width>
                 <Style>
@@ -4139,5 +4136,5 @@
                 <ZIndex>9</ZIndex>
                 <CanGrow>true</CanGrow>
-                <Left>1.52381cm</Left>
+                <Left>1.65079cm</Left>
                 <Height>0.50794cm</Height>
                 <Value>=Iif(Fields!Zaliczka_Brutto.Value&lt;&gt;0,First(Fields!FAKTURY_DRUK_INTERNATIONALlabel_zaliczka_dnia.Value, "tlumaczenia"),"")</Value>
@@ -4145,5 +4142,6 @@
               <Textbox Name="Zaliczka_Brutto">
                 <rd:DefaultName>Zaliczka_Brutto</rd:DefaultName>
-                <Top>3.04762cm</Top>
+                <Top>3.30159cm</Top>
+                <Width>2.28969cm</Width>
                 <Style>
                   <FontSize>8pt</FontSize>
@@ -4159,10 +4157,11 @@
                 <ZIndex>8</ZIndex>
                 <CanGrow>true</CanGrow>
-                <Left>7.87301cm</Left>
+                <Left>7.99999cm</Left>
                 <Value>=Iif(Fields!Zaliczka_Brutto.Value&lt;&gt;0,Fields!Zaliczka_Brutto.Value,"")</Value>
               </Textbox>
               <Textbox Name="Zaliczka_Data">
                 <rd:DefaultName>Zaliczka_Data</rd:DefaultName>
-                <Top>2.53968cm</Top>
+                <Top>2.79365cm</Top>
+                <Width>2.28969cm</Width>
                 <Style>
                   <FontSize>8pt</FontSize>
@@ -4177,5 +4176,5 @@
                 <ZIndex>7</ZIndex>
                 <CanGrow>true</CanGrow>
-                <Left>7.87301cm</Left>
+                <Left>7.99999cm</Left>
                 <Height>0.50794cm</Height>
                 <Value>=Iif(Fields!Zaliczka_Brutto.Value&lt;&gt;0,Fields!Zaliczka_Data.Value,"")</Value>
@@ -4183,5 +4182,5 @@
               <Textbox Name="MIEJSCOWOSC_WYSTAWIENIA">
                 <rd:DefaultName>MIEJSCOWOSC_WYSTAWIENIA</rd:DefaultName>
-                <Top>1.52381cm</Top>
+                <Top>1.77778cm</Top>
                 <Width>2.03175cm</Width>
                 <Style>
@@ -4196,5 +4195,5 @@
                 <ZIndex>6</ZIndex>
                 <CanGrow>true</CanGrow>
-                <Left>5.84127cm</Left>
+                <Left>5.96825cm</Left>
                 <Height>0.50794cm</Height>
                 <Value>=Fields!MIEJSCOWOSC_WYSTAWIENIA.Value</Value>
@@ -4202,5 +4201,5 @@
               <Textbox Name="FAKTURY_DRUK_INTERNATIONALlabel_data_sprzedazy">
                 <rd:DefaultName>FAKTURY_DRUK_INTERNATIONALlabel_data_sprzedazy</rd:DefaultName>
-                <Top>2.03175cm</Top>
+                <Top>2.28572cm</Top>
                 <Width>4.31746cm</Width>
                 <Style>
@@ -4215,5 +4214,5 @@
                 <ZIndex>5</ZIndex>
                 <CanGrow>true</CanGrow>
-                <Left>1.52381cm</Left>
+                <Left>1.65079cm</Left>
                 <Height>0.50794cm</Height>
                 <Value>=First(Fields!FAKTURY_DRUK_INTERNATIONALlabel_data_sprzedazy.Value, "tlumaczenia")</Value>
@@ -4221,5 +4220,5 @@
               <Textbox Name="FAKTURY_DRUK_INTERNATIONALlabel_data_wystawienia">
                 <rd:DefaultName>FAKTURY_DRUK_INTERNATIONALlabel_data_wystawienia</rd:DefaultName>
-                <Top>1.52381cm</Top>
+                <Top>1.77778cm</Top>
                 <Width>4.31746cm</Width>
                 <Style>
@@ -4234,5 +4233,5 @@
                 <ZIndex>4</ZIndex>
                 <CanGrow>true</CanGrow>
-                <Left>1.52381cm</Left>
+                <Left>1.65079cm</Left>
                 <Height>0.50794cm</Height>
                 <Value>=First(Fields!FAKTURY_DRUK_INTERNATIONALlabel_data_wystawienia.Value, "tlumaczenia")</Value>
@@ -4240,4 +4239,6 @@
               <Textbox Name="NUMER">
                 <rd:DefaultName>NUMER</rd:DefaultName>
+                <Top>0.63492cm</Top>
+                <Width>10.28968cm</Width>
                 <Style>
                   <FontSize>16pt</FontSize>
@@ -4257,5 +4258,6 @@
               <Textbox Name="FAKTURY_DRUK_INTERNATIONALlabel_oryginal_kopia">
                 <rd:DefaultName>FAKTURY_DRUK_INTERNATIONALlabel_oryginal_kopia</rd:DefaultName>
-                <Top>0.7619cm</Top>
+                <Top>1.26984cm</Top>
+                <Width>5.71826cm</Width>
                 <Style>
                   <FontWeight>700</FontWeight>
@@ -4266,11 +4268,12 @@
                 </Style>
                 <ZIndex>2</ZIndex>
-                <Left>5.33334cm</Left>
-                <Height>0.63492cm</Height>
+                <Left>4.57142cm</Left>
+                <Height>0.50794cm</Height>
                 <Value>=First(Fields!FAKTURY_DRUK_INTERNATIONALlabel_oryginal_kopia.Value, "tlumaczenia")</Value>
               </Textbox>
               <Textbox Name="DATA_SPRZEDAZY">
                 <rd:DefaultName>DATA_SPRZEDAZY</rd:DefaultName>
-                <Top>2.03175cm</Top>
+                <Top>2.28572cm</Top>
+                <Width>2.28969cm</Width>
                 <Style>
                   <FontSize>8pt</FontSize>
@@ -4286,5 +4289,5 @@
                 <ZIndex>1</ZIndex>
                 <CanGrow>true</CanGrow>
-                <Left>7.87301cm</Left>
+                <Left>7.99999cm</Left>
                 <Height>0.50794cm</Height>
                 <Value>=Fields!DATA_SPRZEDAZY.Value</Value>
@@ -4292,5 +4295,6 @@
               <Textbox Name="textbox25">
                 <rd:DefaultName>textbox25</rd:DefaultName>
-                <Top>1.52381cm</Top>
+                <Top>1.77778cm</Top>
+                <Width>2.28969cm</Width>
                 <Style>
                   <FontSize>8pt</FontSize>
@@ -4304,17 +4308,14 @@
                 </Style>
                 <CanGrow>true</CanGrow>
-                <Left>7.87301cm</Left>
+                <Left>7.99999cm</Left>
                 <Height>0.50794cm</Height>
                 <Value>=Fields!DATA_WYSTAWIENIA.Value</Value>
               </Textbox>
             </ReportItems>
-            <Top>0.63492cm</Top>
-            <Width>10.1627cm</Width>
-            <Height>3.55556cm</Height>
+            <Height>3.80953cm</Height>
           </Rectangle>
         </ReportItems>
-        <Top>0.12698cm</Top>
         <Width>18.67064cm</Width>
-        <Height>8.7619cm</Height>
+        <Height>7.87302cm</Height>
       </List>
       <List Name="list2">
@@ -4470,5 +4471,4 @@
                 <rd:DefaultName>opis</rd:DefaultName>
                 <Top>0.7619cm</Top>
-                <Width>18.53968cm</Width>
                 <Style>
                   <BorderStyle>
@@ -4509,8 +4509,10 @@
             </ReportItems>
             <Top>2.03175cm</Top>
+            <Width>18.53968cm</Width>
             <Height>4.57143cm</Height>
           </Rectangle>
         </ReportItems>
-        <Top>16.38095cm</Top>
+        <Top>15.2381cm</Top>
+        <Width>18.66667cm</Width>
         <Height>6.73016cm</Height>
       </List>
@@ -4518,5 +4520,5 @@
         <DataSetName>FakturaDetails2</DataSetName>
         <PageBreakAtStart>true</PageBreakAtStart>
-        <Top>23.2381cm</Top>
+        <Top>22.09524cm</Top>
         <TableGroups>
           <TableGroup>
@@ -4716,8 +4718,8 @@
       </Table>
     </ReportItems>
-    <Height>25.14286cm</Height>
+    <Height>24cm</Height>
   </Body>
   <Language>pl</Language>
-  <TopMargin>1cm</TopMargin>
+  <TopMargin>0.7cm</TopMargin>
   <PageHeight>29.7cm</PageHeight>
 </Report>
