Zbiór zmian 777 dla branches/Emisje

Pokaż
Ignoruj:
Data:
2009-07-24 15:49:02 (17 years ago)
Autor:
marek
Opis:

re #195 - przy dodawaniu emisji lokalizacja jest przenoszona na emisje

Lokalizacja:
branches/Emisje/BazaReklam
Pliki:
1 dodane
12 zmodyfikowane

Legenda:

Bez zmian
Dodane
Usunięte
  • branches/Emisje/BazaReklam/About.Designer.cs

    r597 r777  
    139139            this.lblDB.Size = new System.Drawing.Size(183, 13); 
    140140            this.lblDB.TabIndex = 9; 
    141             this.lblDB.Text = "sql.ct.com.pl/BAZA_REKLAM_TEST"; 
     141            this.lblDB.Text = "<ConnectionString>"; 
    142142            //  
    143143            // label5 
  • branches/Emisje/BazaReklam/Baza Reklam.csproj

    r765 r777  
    131131    <Compile Include="Classes\Interfaces\IInvoiceProvider.cs" /> 
    132132    <Compile Include="Classes\Interfaces\IForm.cs" /> 
     133    <Compile Include="Classes\Model\AdIssue.cs" /> 
    133134    <Compile Include="Classes\Model\AdLocation.cs" /> 
    134135    <Compile Include="Classes\Model\Agent.cs" /> 
  • branches/Emisje/BazaReklam/KalendarzEmisji.cs

    r764 r777  
    99    public partial class KalendarzEmisji : Form 
    1010    { 
    11         string tytul; 
    12  
    13         readonly REKLAMADataSet.REKLAMARow reklama; 
    14  
     11        short emisjaDoZmiany; 
     12        short? nowaEmisja; 
     13 
     14        int iloscEmisji; 
     15        int index = -1; 
     16        string _tytul; 
     17 
     18        int? _dzial; 
     19        int? _rozdzial; 
     20        int _lokalizacja; 
     21        bool _doDruku; 
     22 
     23 
     24        //TODO: tu trzeba bedzie wymyslec cos lepszego 
     25        DateTime dataOstatatniejZafakturowanejEmisji = DateTime.Parse("2008-12-30"); 
     26        REKLAMADataSet.REKLAMARow reklama; 
    1527        REKLAMADataSet.UKAZE_SIE_W_NRDataTable emisje; 
     28 
     29        public short? NowaEmisja 
     30        { 
     31            get { return nowaEmisja; } 
     32            set { nowaEmisja = value; } 
     33        } 
    1634 
    1735        public REKLAMADataSet.UKAZE_SIE_W_NRDataTable Emisje 
     
    2139        } 
    2240 
    23         readonly short emisjaDoZmiany; 
    24         short? nowaEmisja; 
    25  
    26         int iloscEmisji; 
    27         int index = -1; 
    28  
    29         //TODO: tu trzeba bedzie wymyslec cos lepszego 
    30         public DateTime dataOstatatniejZafakturowanejEmisji = DateTime.Parse("2008-12-30"); 
    31  
    32         #region properties 
    33  
    34         public short? NowaEmisja 
    35         { 
    36             get { return nowaEmisja; } 
    37             set { nowaEmisja = value; } 
    38         } 
    39  
    40         private string Tytul 
    41         { 
    42             get { return tytul; } 
    43             set { tytul = value; } 
    44         } 
    45  
    46         #endregion properties 
    47  
    48         public KalendarzEmisji(REKLAMADataSet.REKLAMARow reklama, REKLAMADataSet.UKAZE_SIE_W_NRDataTable emisje) 
     41 
     42        public KalendarzEmisji(REKLAMADataSet.REKLAMARow reklama, REKLAMADataSet.UKAZE_SIE_W_NRDataTable emisje, int? dzial, int? rozdzial, int lokalizacja, bool doDruku) 
     43        { 
     44            _dzial = dzial; 
     45            _rozdzial = rozdzial; 
     46            _lokalizacja = lokalizacja; 
     47            _doDruku = doDruku; 
     48 
     49            InitForm(reklama, emisje, null); 
     50             
     51            dodajButton.Click += dodajButton_Click; 
     52 
     53            foreach (DataRow r in emisje.Rows) 
     54            { 
     55                if (r.RowState != DataRowState.Deleted) 
     56                    iloscEmisji++; 
     57            } 
     58 
     59            label2.Text = iloscEmisji.ToString(); 
     60        } 
     61 
     62 
     63        public KalendarzEmisji(REKLAMADataSet.REKLAMARow reklama, REKLAMADataSet.UKAZE_SIE_W_NRDataTable emisje, short emisjaDoZmiany) 
     64        { 
     65            InitForm(reklama, emisje, emisjaDoZmiany); 
     66 
     67            dodajButton.Text = "Zmieñ"; 
     68            dodajButton.Click += zmienButton_Click; 
     69        } 
     70 
     71        private void InitForm(REKLAMADataSet.REKLAMARow reklamaRow, REKLAMADataSet.UKAZE_SIE_W_NRDataTable emisjeTable, short? issueNumerToChange) 
    4972        { 
    5073            InitializeComponent(); 
    51             Tytul = reklama.TYTU£; 
     74 
     75            reklama = reklamaRow; 
     76            emisje = emisjeTable; 
     77 
     78            _tytul = reklama.TYTU£; 
    5279            label1.Text = reklama.TYTU£; 
    53             this.reklama = reklama; 
    54             this.emisje = emisje; 
    55  
    56             foreach (DataRow r in emisje.Rows) 
    57             { 
    58                 if (r.RowState != DataRowState.Deleted) 
    59                 { 
    60                     iloscEmisji++; 
    61                 } 
    62             } 
    63  
    64             label2.Text = iloscEmisji.ToString(); 
    65  
    66             dodajButton.Click += dodajButton_Click; 
    67  
    68         } 
    69  
    70  
    71         public KalendarzEmisji(REKLAMADataSet.REKLAMARow reklama, REKLAMADataSet.UKAZE_SIE_W_NRDataTable emisje, short emisjaDoZmiany) 
    72         { 
    73             InitializeComponent(); 
    74             Tytul = reklama.TYTU£; 
    75             label1.Text = reklama.TYTU£; 
    76             dodajButton.Text = "Zmieñ"; 
    77  
    78             this.reklama = reklama; 
    79             this.emisje = emisje; 
    80  
    81             this.emisjaDoZmiany = emisjaDoZmiany; 
    82  
    83             dodajButton.Click += zmienButton_Click; 
    84         } 
    85  
     80 
     81            if(issueNumerToChange.HasValue) 
     82                emisjaDoZmiany = issueNumerToChange.Value; 
     83        } 
    8684 
    8785        private void KalendarzEmisji_Load(object sender, EventArgs e) 
     
    9189            DateTime startDay = DateTime.Today; 
    9290 
    93             nRTableAdapter.FillByTytulData(sLOWNIKDataSet.NR, Tytul, startDay); 
     91            nRTableAdapter.FillByTytulData(sLOWNIKDataSet.NR, _tytul, startDay); 
    9492                        
    9593            short nr = Emisje.MaxZafakturowanyNrWydania(); 
    96    
     94 
    9795            if (nr != 0) 
    98             { 
    99                 dataOstatatniejZafakturowanejEmisji = sLOWNIKDataSet.NR.dataWydania(Tytul, nr); 
    100             } 
     96                dataOstatatniejZafakturowanejEmisji = sLOWNIKDataSet.NR.dataWydania(_tytul, nr); 
    10197 
    10298            nRDataGridView.CellValueChanged += nRDataGridView_CellValueChanged; 
     
    118114                        em.dataDodania = DateTime.Today; 
    119115                        em.Nr_Wydania = Convert.ToInt16(row.Cells[0].Value); 
     116                        em.LokalizacjaId = _lokalizacja; 
     117                        if (_dzial.HasValue) 
     118                            em.DzialId = _dzial.Value; 
     119                        if (_rozdzial.HasValue) 
     120                            em.RozdzialId = _rozdzial.Value; 
     121                        em.DoDruku = _doDruku; 
    120122 
    121123                        emisje.AddUKAZE_SIE_W_NRRow(em); 
     
    138140        private void zmienButton_Click(object sender, EventArgs e) 
    139141        { 
    140             //foreach (REKLAMADataSet.UKAZE_SIE_W_NRRow r in emisje) 
    141             //{ 
    142             //    if (r.RowState != DataRowState.Deleted) 
    143             //    { 
    144             //        if (r.Nr_Wydania == emisjaDoZmiany && nowaEmisja.HasValue) 
    145             //        { 
    146             //            r.Nr_Wydania = nowaEmisja.Value; 
    147             //            r.EndEdit(); 
    148             //            break; 
    149             //        } 
    150             //    } 
    151             //} 
    152142            nowaEmisja = GetNewIssueNumber(); 
    153  
    154143        } 
    155144 
  • branches/Emisje/BazaReklam/Logowanie.cs

    r757 r777  
    196196        { 
    197197            sqlBldr.ConnectionString = 
    198                 ConfigurationManager.ConnectionStrings[bazyComboBox.SelectedItem.ToString()].ConnectionString; 
     198                ConfigurationManager.ConnectionStrings[0].ConnectionString; 
    199199 
    200200            sqlBldr.UserID = textBox1.Text; 
  • branches/Emisje/BazaReklam/MDIBazaReklam.cs

    r732 r777  
    66using Baza_Reklam.Classes.Model; 
    77using Baza_Reklam.Classes.Repositories; 
     8using Baza_Reklam.Properties; 
    89 
    910namespace Baza_Reklam 
     
    2324        private void MDIBazaReklam_Load(object sender, EventArgs e) 
    2425        { 
     26            //Podmiana ConnectionStringa, ktory jest zapisany na stale w design time  
     27            Settings.Default["Baza_ReklamConnectionString"] = ConnString.getConnString().Value; 
     28 
    2529            uprawnienia(); 
    2630        } 
  • branches/Emisje/BazaReklam/OrderDetails.cs

    r764 r777  
    12041204                    rEKLAMADataSet.UKAZE_SIE_W_NR.Copy(); 
    12051205 
    1206                 KalendarzEmisji kalendarz = new KalendarzEmisji(Reklama, table); 
     1206                int? dzial = null; 
     1207                if (SelectedNavigationColumn != null) 
     1208                    dzial = SelectedNavigationColumn.Id; 
     1209 
     1210                int? rozdzial = null; 
     1211                if (SelectedNavigationColumn != null) 
     1212                    rozdzial = SelectedNavigationSubColumn.Id; 
     1213 
     1214                KalendarzEmisji kalendarz = new KalendarzEmisji(Reklama, table, dzial, rozdzial, ((AdLocation)cbLocation.SelectedItem).Id, zATWIERDZONO_DO_DRUKUCheckBox.Checked); 
    12071215 
    12081216                if (kalendarz.ShowDialog() == DialogResult.OK) 
  • branches/Emisje/BazaReklam/Properties/Settings.Designer.cs

    r737 r777  
    5454        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
    5555        [global::System.Configuration.SpecialSettingAttribute(global::System.Configuration.SpecialSetting.ConnectionString)] 
    56         [global::System.Configuration.DefaultSettingValueAttribute("Data Source=sql.ct.com.pl;Initial Catalog=Baza_Reklam;User ID=sa;Password=9ar6u$e" + 
    57             "k")] 
     56        [global::System.Configuration.DefaultSettingValueAttribute("Data Source=.\\sql2k;Initial Catalog=Baza_Reklam;User ID=sa;Password=mageroni")] 
    5857        public string Baza_ReklamConnectionString { 
    5958            get { 
  • branches/Emisje/BazaReklam/Properties/Settings.settings

    r737 r777  
    1515      <DesignTimeValue Profile="(Default)">&lt;?xml version="1.0" encoding="utf-16"?&gt; 
    1616&lt;SerializableConnectionString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt; 
    17   &lt;ConnectionString&gt;Data Source=sql.ct.com.pl;Initial Catalog=Baza_Reklam;User ID=sa;Password=9ar6u$ek&lt;/ConnectionString&gt; 
     17  &lt;ConnectionString&gt;Data Source=.\sql2k;Initial Catalog=Baza_Reklam;User ID=sa;Password=mageroni&lt;/ConnectionString&gt; 
    1818  &lt;ProviderName&gt;System.Data.SqlClient&lt;/ProviderName&gt; 
    1919&lt;/SerializableConnectionString&gt;</DesignTimeValue> 
    20       <Value Profile="(Default)">Data Source=sql.ct.com.pl;Initial Catalog=Baza_Reklam;User ID=sa;Password=9ar6u$ek</Value> 
     20      <Value Profile="(Default)">Data Source=.\sql2k;Initial Catalog=Baza_Reklam;User ID=sa;Password=mageroni</Value> 
    2121    </Setting> 
    2222  </Settings> 
  • branches/Emisje/BazaReklam/REKLAMADataSet.Designer.cs

    r761 r777  
    28142814            private global::System.Data.DataColumn columnnetto; 
    28152815             
     2816            private global::System.Data.DataColumn columnDoDruku; 
     2817             
     2818            private global::System.Data.DataColumn columnLokalizacjaId; 
     2819             
     2820            private global::System.Data.DataColumn columnDzialId; 
     2821             
     2822            private global::System.Data.DataColumn columnRozdzialId; 
     2823             
    28162824            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
    28172825            public UKAZE_SIE_W_NRDataTable() { 
     
    29082916             
    29092917            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
     2918            public global::System.Data.DataColumn DoDrukuColumn { 
     2919                get { 
     2920                    return this.columnDoDruku; 
     2921                } 
     2922            } 
     2923             
     2924            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
     2925            public global::System.Data.DataColumn LokalizacjaIdColumn { 
     2926                get { 
     2927                    return this.columnLokalizacjaId; 
     2928                } 
     2929            } 
     2930             
     2931            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
     2932            public global::System.Data.DataColumn DzialIdColumn { 
     2933                get { 
     2934                    return this.columnDzialId; 
     2935                } 
     2936            } 
     2937             
     2938            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
     2939            public global::System.Data.DataColumn RozdzialIdColumn { 
     2940                get { 
     2941                    return this.columnRozdzialId; 
     2942                } 
     2943            } 
     2944             
     2945            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
    29102946            [global::System.ComponentModel.Browsable(false)] 
    29112947            public int Count { 
     
    29362972             
    29372973            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
    2938             public UKAZE_SIE_W_NRRow AddUKAZE_SIE_W_NRRow(REKLAMARow parentREKLAMARowByREKLAMA_UKAZE_SIE_W_NR, short Nr_Wydania, short status, bool zafakturowana, FAKTURYRow parentFAKTURYRowByFAKTURY_UKAZE_SIE_W_NR, System.DateTime dataDodania, System.DateTime dataAnulowania, decimal netto) { 
     2974            public UKAZE_SIE_W_NRRow AddUKAZE_SIE_W_NRRow(REKLAMARow parentREKLAMARowByREKLAMA_UKAZE_SIE_W_NR, short Nr_Wydania, short status, bool zafakturowana, FAKTURYRow parentFAKTURYRowByFAKTURY_UKAZE_SIE_W_NR, System.DateTime dataDodania, System.DateTime dataAnulowania, decimal netto, bool DoDruku, int LokalizacjaId, int DzialId, int RozdzialId) { 
    29392975                UKAZE_SIE_W_NRRow rowUKAZE_SIE_W_NRRow = ((UKAZE_SIE_W_NRRow)(this.NewRow())); 
    29402976                object[] columnValuesArray = new object[] { 
     
    29472983                        dataDodania, 
    29482984                        dataAnulowania, 
    2949                         netto}; 
     2985                        netto, 
     2986                        DoDruku, 
     2987                        LokalizacjaId, 
     2988                        DzialId, 
     2989                        RozdzialId}; 
    29502990                if ((parentREKLAMARowByREKLAMA_UKAZE_SIE_W_NR != null)) { 
    29512991                    columnValuesArray[1] = parentREKLAMARowByREKLAMA_UKAZE_SIE_W_NR[0]; 
     
    29933033                this.columndataAnulowania = base.Columns["dataAnulowania"]; 
    29943034                this.columnnetto = base.Columns["netto"]; 
     3035                this.columnDoDruku = base.Columns["DoDruku"]; 
     3036                this.columnLokalizacjaId = base.Columns["LokalizacjaId"]; 
     3037                this.columnDzialId = base.Columns["DzialId"]; 
     3038                this.columnRozdzialId = base.Columns["RozdzialId"]; 
    29953039            } 
    29963040             
     
    30153059                this.columnnetto = new global::System.Data.DataColumn("netto", typeof(decimal), null, global::System.Data.MappingType.Element); 
    30163060                base.Columns.Add(this.columnnetto); 
     3061                this.columnDoDruku = new global::System.Data.DataColumn("DoDruku", typeof(bool), null, global::System.Data.MappingType.Element); 
     3062                base.Columns.Add(this.columnDoDruku); 
     3063                this.columnLokalizacjaId = new global::System.Data.DataColumn("LokalizacjaId", typeof(int), null, global::System.Data.MappingType.Element); 
     3064                base.Columns.Add(this.columnLokalizacjaId); 
     3065                this.columnDzialId = new global::System.Data.DataColumn("DzialId", typeof(int), null, global::System.Data.MappingType.Element); 
     3066                base.Columns.Add(this.columnDzialId); 
     3067                this.columnRozdzialId = new global::System.Data.DataColumn("RozdzialId", typeof(int), null, global::System.Data.MappingType.Element); 
     3068                base.Columns.Add(this.columnRozdzialId); 
    30173069                this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] { 
    30183070                                this.columnID}, true)); 
     
    2105621108             
    2105721109            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
     21110            public bool DoDruku { 
     21111                get { 
     21112                    try { 
     21113                        return ((bool)(this[this.tableUKAZE_SIE_W_NR.DoDrukuColumn])); 
     21114                    } 
     21115                    catch (global::System.InvalidCastException e) { 
     21116                        throw new global::System.Data.StrongTypingException("The value for column \'DoDruku\' in table \'UKAZE_SIE_W_NR\' is DBNull.", e); 
     21117                    } 
     21118                } 
     21119                set { 
     21120                    this[this.tableUKAZE_SIE_W_NR.DoDrukuColumn] = value; 
     21121                } 
     21122            } 
     21123             
     21124            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
     21125            public int LokalizacjaId { 
     21126                get { 
     21127                    try { 
     21128                        return ((int)(this[this.tableUKAZE_SIE_W_NR.LokalizacjaIdColumn])); 
     21129                    } 
     21130                    catch (global::System.InvalidCastException e) { 
     21131                        throw new global::System.Data.StrongTypingException("The value for column \'LokalizacjaId\' in table \'UKAZE_SIE_W_NR\' is DBNull.", e); 
     21132                    } 
     21133                } 
     21134                set { 
     21135                    this[this.tableUKAZE_SIE_W_NR.LokalizacjaIdColumn] = value; 
     21136                } 
     21137            } 
     21138             
     21139            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
     21140            public int DzialId { 
     21141                get { 
     21142                    try { 
     21143                        return ((int)(this[this.tableUKAZE_SIE_W_NR.DzialIdColumn])); 
     21144                    } 
     21145                    catch (global::System.InvalidCastException e) { 
     21146                        throw new global::System.Data.StrongTypingException("The value for column \'DzialId\' in table \'UKAZE_SIE_W_NR\' is DBNull.", e); 
     21147                    } 
     21148                } 
     21149                set { 
     21150                    this[this.tableUKAZE_SIE_W_NR.DzialIdColumn] = value; 
     21151                } 
     21152            } 
     21153             
     21154            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
     21155            public int RozdzialId { 
     21156                get { 
     21157                    try { 
     21158                        return ((int)(this[this.tableUKAZE_SIE_W_NR.RozdzialIdColumn])); 
     21159                    } 
     21160                    catch (global::System.InvalidCastException e) { 
     21161                        throw new global::System.Data.StrongTypingException("The value for column \'RozdzialId\' in table \'UKAZE_SIE_W_NR\' is DBNull.", e); 
     21162                    } 
     21163                } 
     21164                set { 
     21165                    this[this.tableUKAZE_SIE_W_NR.RozdzialIdColumn] = value; 
     21166                } 
     21167            } 
     21168             
     21169            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
    2105821170            public FAKTURYRow FAKTURYRow { 
    2105921171                get { 
     
    2111321225            public void SetnettoNull() { 
    2111421226                this[this.tableUKAZE_SIE_W_NR.nettoColumn] = global::System.Convert.DBNull; 
     21227            } 
     21228             
     21229            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
     21230            public bool IsDoDrukuNull() { 
     21231                return this.IsNull(this.tableUKAZE_SIE_W_NR.DoDrukuColumn); 
     21232            } 
     21233             
     21234            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
     21235            public void SetDoDrukuNull() { 
     21236                this[this.tableUKAZE_SIE_W_NR.DoDrukuColumn] = global::System.Convert.DBNull; 
     21237            } 
     21238             
     21239            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
     21240            public bool IsLokalizacjaIdNull() { 
     21241                return this.IsNull(this.tableUKAZE_SIE_W_NR.LokalizacjaIdColumn); 
     21242            } 
     21243             
     21244            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
     21245            public void SetLokalizacjaIdNull() { 
     21246                this[this.tableUKAZE_SIE_W_NR.LokalizacjaIdColumn] = global::System.Convert.DBNull; 
     21247            } 
     21248             
     21249            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
     21250            public bool IsDzialIdNull() { 
     21251                return this.IsNull(this.tableUKAZE_SIE_W_NR.DzialIdColumn); 
     21252            } 
     21253             
     21254            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
     21255            public void SetDzialIdNull() { 
     21256                this[this.tableUKAZE_SIE_W_NR.DzialIdColumn] = global::System.Convert.DBNull; 
     21257            } 
     21258             
     21259            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
     21260            public bool IsRozdzialIdNull() { 
     21261                return this.IsNull(this.tableUKAZE_SIE_W_NR.RozdzialIdColumn); 
     21262            } 
     21263             
     21264            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 
     21265            public void SetRozdzialIdNull() { 
     21266                this[this.tableUKAZE_SIE_W_NR.RozdzialIdColumn] = global::System.Convert.DBNull; 
    2111521267            } 
    2111621268             
     
    3796838120            tableMapping.ColumnMappings.Add("dataAnulowania", "dataAnulowania"); 
    3796938121            tableMapping.ColumnMappings.Add("netto", "netto"); 
     38122            tableMapping.ColumnMappings.Add("DoDruku", "DoDruku"); 
     38123            tableMapping.ColumnMappings.Add("LokalizacjaId", "LokalizacjaId"); 
     38124            tableMapping.ColumnMappings.Add("DzialId", "DzialId"); 
     38125            tableMapping.ColumnMappings.Add("RozdzialId", "RozdzialId"); 
    3797038126            this._adapter.TableMappings.Add(tableMapping); 
    3797138127            this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand(); 
     
    3797638132            this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand(); 
    3797738133            this._adapter.InsertCommand.Connection = this.Connection; 
    37978             this._adapter.InsertCommand.CommandText = @"INSERT INTO [UKAŻE SIĘ W NR] ([ReklamaId], [Nr Wydania], [status], [zafakturowana], [idFaktury], [dataDodania], [dataAnulowania], [netto]) VALUES (@ReklamaId, @Nr_Wydania, @status, @zafakturowana, @idFaktury, @dataDodania, @dataAnulowania, @netto); 
    37979 SELECT ID, ReklamaId, [Nr Wydania], status, zafakturowana, idFaktury, dataDodania, dataAnulowania, netto FROM [UKAŻE SIĘ W NR] WHERE (ID = SCOPE_IDENTITY())"; 
     38134            this._adapter.InsertCommand.CommandText = @"INSERT INTO [UKAŻE SIĘ W NR] ([ReklamaId], [Nr Wydania], [status], [zafakturowana], [idFaktury], [dataDodania], [dataAnulowania], [netto], [DoDruku], [LokalizacjaId], [DzialId], [RozdzialId]) VALUES (@ReklamaId, @Nr_Wydania, @status, @zafakturowana, @idFaktury, @dataDodania, @dataAnulowania, @netto, @DoDruku, @LokalizacjaId, @DzialId, @RozdzialId); 
     38135SELECT ID, ReklamaId, [Nr Wydania], status, zafakturowana, idFaktury, dataDodania, dataAnulowania, netto, DoDruku, LokalizacjaId, DzialId, RozdzialId FROM [UKAŻE SIĘ W NR] WHERE (ID = SCOPE_IDENTITY())"; 
    3798038136            this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text; 
    3798138137            this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ReklamaId", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReklamaId", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); 
     
    3798738143            this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@dataAnulowania", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "dataAnulowania", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); 
    3798838144            this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@netto", global::System.Data.SqlDbType.Money, 0, global::System.Data.ParameterDirection.Input, 0, 0, "netto", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); 
     38145            this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DoDruku", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DoDruku", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); 
     38146            this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@LokalizacjaId", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "LokalizacjaId", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); 
     38147            this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DzialId", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DzialId", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); 
     38148            this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RozdzialId", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "RozdzialId", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); 
    3798938149            this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand(); 
    3799038150            this._adapter.UpdateCommand.Connection = this.Connection; 
    37991             this._adapter.UpdateCommand.CommandText = @"UPDATE [UKAŻE SIĘ W NR] SET [ReklamaId] = @ReklamaId, [Nr Wydania] = @Nr_Wydania, [status] = @status, [zafakturowana] = @zafakturowana, [idFaktury] = @idFaktury, [dataDodania] = @dataDodania, [dataAnulowania] = @dataAnulowania, [netto] = @netto WHERE (([ID] = @Original_ID)); 
    37992 SELECT ID, ReklamaId, [Nr Wydania], status, zafakturowana, idFaktury, dataDodania, dataAnulowania, netto FROM [UKAŻE SIĘ W NR] WHERE (ID = @ID)"; 
     38151            this._adapter.UpdateCommand.CommandText = @"UPDATE [UKAŻE SIĘ W NR] SET [ReklamaId] = @ReklamaId, [Nr Wydania] = @Nr_Wydania, [status] = @status, [zafakturowana] = @zafakturowana, [idFaktury] = @idFaktury, [dataDodania] = @dataDodania, [dataAnulowania] = @dataAnulowania, [netto] = @netto, [DoDruku] = @DoDruku, [LokalizacjaId] = @LokalizacjaId, [DzialId] = @DzialId, [RozdzialId] = @RozdzialId WHERE (([ID] = @Original_ID)); 
     38152SELECT ID, ReklamaId, [Nr Wydania], status, zafakturowana, idFaktury, dataDodania, dataAnulowania, netto, DoDruku, LokalizacjaId, DzialId, RozdzialId FROM [UKAŻE SIĘ W NR] WHERE (ID = @ID)"; 
    3799338153            this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text; 
    3799438154            this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ReklamaId", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReklamaId", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); 
     
    3800038160            this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@dataAnulowania", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "dataAnulowania", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); 
    3800138161            this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@netto", global::System.Data.SqlDbType.Money, 0, global::System.Data.ParameterDirection.Input, 0, 0, "netto", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); 
     38162            this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DoDruku", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DoDruku", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); 
     38163            this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@LokalizacjaId", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "LokalizacjaId", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); 
     38164            this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DzialId", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DzialId", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); 
     38165            this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RozdzialId", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "RozdzialId", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); 
    3800238166            this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ID", global::System.Data.SqlDbType.Decimal, 0, global::System.Data.ParameterDirection.Input, 18, 0, "ID", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); 
    3800338167            this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ID", global::System.Data.SqlDbType.Decimal, 9, global::System.Data.ParameterDirection.Input, 18, 0, "ID", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); 
     
    3801638180            this._commandCollection[0].Connection = this.Connection; 
    3801738181            this._commandCollection[0].CommandText = "SELECT     ID, ReklamaId, [Nr Wydania], status, zafakturowana, idFaktury, dataDod" + 
    38018                 "ania, dataAnulowania, netto\r\nFROM         [UKAŻE SIĘ W NR]"; 
     38182                "ania, dataAnulowania, netto, DoDruku, LokalizacjaId, DzialId, RozdzialId\r\nFROM  " + 
     38183                "       [UKAŻE SIĘ W NR]"; 
    3801938184            this._commandCollection[0].CommandType = global::System.Data.CommandType.Text; 
    3802038185            this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand(); 
    3802138186            this._commandCollection[1].Connection = this.Connection; 
    3802238187            this._commandCollection[1].CommandText = "SELECT ID, [Nr Wydania], ReklamaId, dataAnulowania, dataDodania, idFaktury, netto" + 
    38023                 ", status, zafakturowana FROM [UKAŻE SIĘ W NR] WHERE (idFaktury = @idFaktury)"; 
     38188                ", status, zafakturowana, DoDruku, LokalizacjaId, DzialId, RozdzialId FROM [UKAŻE" + 
     38189                " SIĘ W NR] WHERE (idFaktury = @idFaktury)"; 
    3802438190            this._commandCollection[1].CommandType = global::System.Data.CommandType.Text; 
    3802538191            this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idFaktury", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 0, 0, "idFaktury", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); 
     
    3802738193            this._commandCollection[2].Connection = this.Connection; 
    3802838194            this._commandCollection[2].CommandText = "SELECT ID, [Nr Wydania], ReklamaId, dataAnulowania, dataDodania, idFaktury, netto" + 
    38029                 ", status, zafakturowana FROM [UKAŻE SIĘ W NR] WHERE (ReklamaId = @param1) AND (z" + 
    38030                 "afakturowana = 0) ORDER BY [Nr Wydania]"; 
     38195                ", status, zafakturowana, DoDruku, LokalizacjaId, DzialId, RozdzialId FROM [UKAŻE" + 
     38196                " SIĘ W NR] WHERE (ReklamaId = @param1) AND (zafakturowana = 0) ORDER BY [Nr Wyda" + 
     38197                "nia]"; 
    3803138198            this._commandCollection[2].CommandType = global::System.Data.CommandType.Text; 
    3803238199            this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@param1", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 0, 0, "ReklamaId", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); 
    3803338200            this._commandCollection[3] = new global::System.Data.SqlClient.SqlCommand(); 
    3803438201            this._commandCollection[3].Connection = this.Connection; 
    38035             this._commandCollection[3].CommandText = @"SELECT EMISJE.ID, EMISJE.[Nr Wydania], EMISJE.ReklamaId, EMISJE.dataAnulowania, EMISJE.dataDodania, EMISJE.idFaktury, EMISJE.netto, EMISJE.status, EMISJE.zafakturowana FROM [UKAŻE SIĘ W NR] AS EMISJE LEFT OUTER JOIN REKLAMA AS R ON R.ReklamaID = EMISJE.ReklamaId LEFT OUTER JOIN NR AS nr ON EMISJE.[Nr Wydania] = nr.NRW AND nr.TYT = R.tytuł WHERE (R.ReklamaID = @rekId) AND (EMISJE.zafakturowana = 0) AND (MONTH(nr.DATA_W) = MONTH(@data)) AND (YEAR(nr.DATA_W) = YEAR(@data))"; 
     38202            this._commandCollection[3].CommandText = @"SELECT EMISJE.ID, EMISJE.[Nr Wydania], EMISJE.ReklamaId, EMISJE.dataAnulowania, EMISJE.dataDodania, EMISJE.idFaktury, EMISJE.netto, EMISJE.status, EMISJE.zafakturowana, EMISJE.DoDruku, EMISJE.LokalizacjaId, EMISJE.DzialId, EMISJE.RozdzialId FROM [UKAŻE SIĘ W NR] AS EMISJE LEFT OUTER JOIN REKLAMA AS R ON R.ReklamaID = EMISJE.ReklamaId LEFT OUTER JOIN NR AS nr ON EMISJE.[Nr Wydania] = nr.NRW AND nr.TYT = R.tytuł WHERE (R.ReklamaID = @rekId) AND (EMISJE.zafakturowana = 0) AND (MONTH(nr.DATA_W) = MONTH(@data)) AND (YEAR(nr.DATA_W) = YEAR(@data))"; 
    3803638203            this._commandCollection[3].CommandType = global::System.Data.CommandType.Text; 
    3803738204            this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@rekId", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 0, 0, "ReklamaID", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); 
     
    3803938206            this._commandCollection[4] = new global::System.Data.SqlClient.SqlCommand(); 
    3804038207            this._commandCollection[4].Connection = this.Connection; 
    38041             this._commandCollection[4].CommandText = @"SELECT EMISJE.ID, EMISJE.[Nr Wydania], EMISJE.ReklamaId, EMISJE.dataAnulowania, EMISJE.dataDodania, EMISJE.idFaktury, EMISJE.netto, EMISJE.status, EMISJE.zafakturowana FROM [UKAŻE SIĘ W NR] AS EMISJE LEFT OUTER JOIN REKLAMA AS R ON R.ReklamaID = EMISJE.ReklamaId LEFT OUTER JOIN NR AS nr ON EMISJE.[Nr Wydania] = nr.NRW AND nr.TYT = R.tytuł WHERE (EMISJE.zafakturowana = 0) AND (R.ReklamaID = @rekId) AND (MONTH(nr.DATA_W) = MONTH(@data)) AND (YEAR(nr.DATA_W) = YEAR(@data)) OR (EMISJE.zafakturowana = 0) AND (R.ReklamaID = @rekId) AND (MONTH(nr.DATA_W) = MONTH(DATEADD(month, 1, @data))) AND (YEAR(nr.DATA_W) = YEAR(DATEADD(month, 1, @data))) OR (EMISJE.zafakturowana = 0) AND (R.ReklamaID = @rekId) AND (MONTH(nr.DATA_W) = MONTH(DATEADD(month, 2, @data))) AND (YEAR(nr.DATA_W) = YEAR(DATEADD(month, 2, @data)))"; 
     38208            this._commandCollection[4].CommandText = @"SELECT EMISJE.ID, EMISJE.[Nr Wydania], EMISJE.ReklamaId, EMISJE.dataAnulowania, EMISJE.dataDodania, EMISJE.idFaktury, EMISJE.netto, EMISJE.status, EMISJE.zafakturowana, EMISJE.DoDruku, EMISJE.LokalizacjaId, EMISJE.DzialId, EMISJE.RozdzialId FROM [UKAŻE SIĘ W NR] AS EMISJE LEFT OUTER JOIN REKLAMA AS R ON R.ReklamaID = EMISJE.ReklamaId LEFT OUTER JOIN NR AS nr ON EMISJE.[Nr Wydania] = nr.NRW AND nr.TYT = R.tytuł WHERE (EMISJE.zafakturowana = 0) AND (R.ReklamaID = @rekId) AND (MONTH(nr.DATA_W) = MONTH(@data)) AND (YEAR(nr.DATA_W) = YEAR(@data)) OR (EMISJE.zafakturowana = 0) AND (R.ReklamaID = @rekId) AND (MONTH(nr.DATA_W) = MONTH(DATEADD(month, 1, @data))) AND (YEAR(nr.DATA_W) = YEAR(DATEADD(month, 1, @data))) OR (EMISJE.zafakturowana = 0) AND (R.ReklamaID = @rekId) AND (MONTH(nr.DATA_W) = MONTH(DATEADD(month, 2, @data))) AND (YEAR(nr.DATA_W) = YEAR(DATEADD(month, 2, @data)))"; 
    3804238209            this._commandCollection[4].CommandType = global::System.Data.CommandType.Text; 
    3804338210            this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@rekId", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 0, 0, "ReklamaID", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); 
     
    3804638213            this._commandCollection[5].Connection = this.Connection; 
    3804738214            this._commandCollection[5].CommandText = "SELECT ID, [Nr Wydania], ReklamaId, dataAnulowania, dataDodania, idFaktury, netto" + 
    38048                 ", status, zafakturowana FROM [UKAŻE SIĘ W NR] WHERE (ReklamaId = @param1) ORDER " + 
    38049                 "BY [Nr Wydania]"; 
     38215                ", status, zafakturowana, DoDruku, LokalizacjaId, DzialId, RozdzialId FROM [UKAŻE" + 
     38216                " SIĘ W NR] WHERE (ReklamaId = @param1) ORDER BY [Nr Wydania]"; 
    3805038217            this._commandCollection[5].CommandType = global::System.Data.CommandType.Text; 
    3805138218            this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@param1", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 0, 0, "ReklamaId", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); 
     
    3828038447        [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] 
    3828138448        [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)] 
    38282         public virtual int Insert(int ReklamaId, short Nr_Wydania, short status, bool zafakturowana, global::System.Nullable<int> idFaktury, global::System.Nullable<global::System.DateTime> dataDodania, global::System.Nullable<global::System.DateTime> dataAnulowania, global::System.Nullable<decimal> netto) { 
     38449        public virtual int Insert(int ReklamaId, short Nr_Wydania, short status, bool zafakturowana, global::System.Nullable<int> idFaktury, global::System.Nullable<global::System.DateTime> dataDodania, global::System.Nullable<global::System.DateTime> dataAnulowania, global::System.Nullable<decimal> netto, global::System.Nullable<bool> DoDruku, global::System.Nullable<int> LokalizacjaId, global::System.Nullable<int> DzialId, global::System.Nullable<int> RozdzialId) { 
    3828338450            this.Adapter.InsertCommand.Parameters[0].Value = ((int)(ReklamaId)); 
    3828438451            this.Adapter.InsertCommand.Parameters[1].Value = ((short)(Nr_Wydania)); 
     
    3830938476                this.Adapter.InsertCommand.Parameters[7].Value = global::System.DBNull.Value; 
    3831038477            } 
     38478            if ((DoDruku.HasValue == true)) { 
     38479                this.Adapter.InsertCommand.Parameters[8].Value = ((bool)(DoDruku.Value)); 
     38480            } 
     38481            else { 
     38482                this.Adapter.InsertCommand.Parameters[8].Value = global::System.DBNull.Value; 
     38483            } 
     38484            if ((LokalizacjaId.HasValue == true)) { 
     38485                this.Adapter.InsertCommand.Parameters[9].Value = ((int)(LokalizacjaId.Value)); 
     38486            } 
     38487            else { 
     38488                this.Adapter.InsertCommand.Parameters[9].Value = global::System.DBNull.Value; 
     38489            } 
     38490            if ((DzialId.HasValue == true)) { 
     38491                this.Adapter.InsertCommand.Parameters[10].Value = ((int)(DzialId.Value)); 
     38492            } 
     38493            else { 
     38494                this.Adapter.InsertCommand.Parameters[10].Value = global::System.DBNull.Value; 
     38495            } 
     38496            if ((RozdzialId.HasValue == true)) { 
     38497                this.Adapter.InsertCommand.Parameters[11].Value = ((int)(RozdzialId.Value)); 
     38498            } 
     38499            else { 
     38500                this.Adapter.InsertCommand.Parameters[11].Value = global::System.DBNull.Value; 
     38501            } 
    3831138502            global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State; 
    3831238503            if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)  
     
    3832838519        [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] 
    3832938520        [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)] 
    38330         public virtual int Update(int ReklamaId, short Nr_Wydania, short status, bool zafakturowana, global::System.Nullable<int> idFaktury, global::System.Nullable<global::System.DateTime> dataDodania, global::System.Nullable<global::System.DateTime> dataAnulowania, global::System.Nullable<decimal> netto, decimal Original_ID, decimal ID) { 
     38521        public virtual int Update(int ReklamaId, short Nr_Wydania, short status, bool zafakturowana, global::System.Nullable<int> idFaktury, global::System.Nullable<global::System.DateTime> dataDodania, global::System.Nullable<global::System.DateTime> dataAnulowania, global::System.Nullable<decimal> netto, global::System.Nullable<bool> DoDruku, global::System.Nullable<int> LokalizacjaId, global::System.Nullable<int> DzialId, global::System.Nullable<int> RozdzialId, decimal Original_ID, decimal ID) { 
    3833138522            this.Adapter.UpdateCommand.Parameters[0].Value = ((int)(ReklamaId)); 
    3833238523            this.Adapter.UpdateCommand.Parameters[1].Value = ((short)(Nr_Wydania)); 
     
    3835738548                this.Adapter.UpdateCommand.Parameters[7].Value = global::System.DBNull.Value; 
    3835838549            } 
    38359             this.Adapter.UpdateCommand.Parameters[8].Value = ((decimal)(Original_ID)); 
    38360             this.Adapter.UpdateCommand.Parameters[9].Value = ((decimal)(ID)); 
     38550            if ((DoDruku.HasValue == true)) { 
     38551                this.Adapter.UpdateCommand.Parameters[8].Value = ((bool)(DoDruku.Value)); 
     38552            } 
     38553            else { 
     38554                this.Adapter.UpdateCommand.Parameters[8].Value = global::System.DBNull.Value; 
     38555            } 
     38556            if ((LokalizacjaId.HasValue == true)) { 
     38557                this.Adapter.UpdateCommand.Parameters[9].Value = ((int)(LokalizacjaId.Value)); 
     38558            } 
     38559            else { 
     38560                this.Adapter.UpdateCommand.Parameters[9].Value = global::System.DBNull.Value; 
     38561            } 
     38562            if ((DzialId.HasValue == true)) { 
     38563                this.Adapter.UpdateCommand.Parameters[10].Value = ((int)(DzialId.Value)); 
     38564            } 
     38565            else { 
     38566                this.Adapter.UpdateCommand.Parameters[10].Value = global::System.DBNull.Value; 
     38567            } 
     38568            if ((RozdzialId.HasValue == true)) { 
     38569                this.Adapter.UpdateCommand.Parameters[11].Value = ((int)(RozdzialId.Value)); 
     38570            } 
     38571            else { 
     38572                this.Adapter.UpdateCommand.Parameters[11].Value = global::System.DBNull.Value; 
     38573            } 
     38574            this.Adapter.UpdateCommand.Parameters[12].Value = ((decimal)(Original_ID)); 
     38575            this.Adapter.UpdateCommand.Parameters[13].Value = ((decimal)(ID)); 
    3836138576            global::System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State; 
    3836238577            if (((this.Adapter.UpdateCommand.Connection.State & global::System.Data.ConnectionState.Open)  
     
    3837838593        [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] 
    3837938594        [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)] 
    38380         public virtual int Update(int ReklamaId, short Nr_Wydania, short status, bool zafakturowana, global::System.Nullable<int> idFaktury, global::System.Nullable<global::System.DateTime> dataDodania, global::System.Nullable<global::System.DateTime> dataAnulowania, global::System.Nullable<decimal> netto, decimal Original_ID) { 
    38381             return this.Update(ReklamaId, Nr_Wydania, status, zafakturowana, idFaktury, dataDodania, dataAnulowania, netto, Original_ID, Original_ID); 
     38595        public virtual int Update(int ReklamaId, short Nr_Wydania, short status, bool zafakturowana, global::System.Nullable<int> idFaktury, global::System.Nullable<global::System.DateTime> dataDodania, global::System.Nullable<global::System.DateTime> dataAnulowania, global::System.Nullable<decimal> netto, global::System.Nullable<bool> DoDruku, global::System.Nullable<int> LokalizacjaId, global::System.Nullable<int> DzialId, global::System.Nullable<int> RozdzialId, decimal Original_ID) { 
     38596            return this.Update(ReklamaId, Nr_Wydania, status, zafakturowana, idFaktury, dataDodania, dataAnulowania, netto, DoDruku, LokalizacjaId, DzialId, RozdzialId, Original_ID, Original_ID); 
    3838238597        } 
    3838338598         
  • branches/Emisje/BazaReklam/REKLAMADataSet.xsd

    r761 r777  
    518518          <TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="UKAZE_SIE_W_NRTableAdapter" GeneratorDataComponentClassName="UKAZE_SIE_W_NRTableAdapter" Name="UKAZE_SIE_W_NR" UserDataComponentName="UKAZE_SIE_W_NRTableAdapter"> 
    519519            <MainSource> 
    520               <DbSource ConnectionRef="Baza_ReklamConnectionString (Settings)" DbObjectName="BAZA_REKLAM_TEST.dbo.[UKAŻE SIĘ W NR]" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="True" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="False" UserGetMethodName="GetData" UserSourceName="Fill"> 
     520              <DbSource ConnectionRef="Baza_ReklamConnectionString (Settings)" DbObjectName="Baza_Reklam.dbo.[UKAŻE SIĘ W NR]" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="True" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="False" UserGetMethodName="GetData" UserSourceName="Fill"> 
    521521                <DeleteCommand> 
    522522                  <DbCommand CommandType="Text" ModifiedByUser="False"> 
     
    530530                <InsertCommand> 
    531531                  <DbCommand CommandType="Text" ModifiedByUser="False"> 
    532                     <CommandText>INSERT INTO [UKAŻE SIĘ W NR] ([ReklamaId], [Nr Wydania], [status], [zafakturowana], [idFaktury], [dataDodania], [dataAnulowania], [netto]) VALUES (@ReklamaId, @Nr_Wydania, @status, @zafakturowana, @idFaktury, @dataDodania, @dataAnulowania, @netto); 
    533 SELECT ID, ReklamaId, [Nr Wydania], status, zafakturowana, idFaktury, dataDodania, dataAnulowania, netto FROM [UKAŻE SIĘ W NR] WHERE (ID = SCOPE_IDENTITY())</CommandText> 
     532                    <CommandText>INSERT INTO [UKAŻE SIĘ W NR] ([ReklamaId], [Nr Wydania], [status], [zafakturowana], [idFaktury], [dataDodania], [dataAnulowania], [netto], [DoDruku], [LokalizacjaId], [DzialId], [RozdzialId]) VALUES (@ReklamaId, @Nr_Wydania, @status, @zafakturowana, @idFaktury, @dataDodania, @dataAnulowania, @netto, @DoDruku, @LokalizacjaId, @DzialId, @RozdzialId); 
     533SELECT ID, ReklamaId, [Nr Wydania], status, zafakturowana, idFaktury, dataDodania, dataAnulowania, netto, DoDruku, LokalizacjaId, DzialId, RozdzialId FROM [UKAŻE SIĘ W NR] WHERE (ID = SCOPE_IDENTITY())</CommandText> 
    534534                    <Parameters> 
    535535                      <Parameter AllowDbNull="False" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@ReklamaId" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="ReklamaId" SourceColumnNullMapping="False" SourceVersion="Current"> 
     
    549549                      <Parameter AllowDbNull="True" AutogeneratedName="" DataSourceName="" DbType="Currency" Direction="Input" ParameterName="@netto" Precision="0" ProviderType="Money" Scale="0" Size="0" SourceColumn="netto" SourceColumnNullMapping="False" SourceVersion="Current"> 
    550550                      </Parameter> 
     551                      <Parameter AllowDbNull="True" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@DoDruku" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="DoDruku" SourceColumnNullMapping="False" SourceVersion="Current"> 
     552                      </Parameter> 
     553                      <Parameter AllowDbNull="True" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@LokalizacjaId" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="LokalizacjaId" SourceColumnNullMapping="False" SourceVersion="Current"> 
     554                      </Parameter> 
     555                      <Parameter AllowDbNull="True" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@DzialId" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="DzialId" SourceColumnNullMapping="False" SourceVersion="Current"> 
     556                      </Parameter> 
     557                      <Parameter AllowDbNull="True" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@RozdzialId" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="RozdzialId" SourceColumnNullMapping="False" SourceVersion="Current"> 
     558                      </Parameter> 
    551559                    </Parameters> 
    552560                  </DbCommand> 
    553561                </InsertCommand> 
    554562                <SelectCommand> 
    555                   <DbCommand CommandType="Text" ModifiedByUser="False"> 
    556                     <CommandText>SELECT     ID, ReklamaId, [Nr Wydania], status, zafakturowana, idFaktury, dataDodania, dataAnulowania, netto 
     563                  <DbCommand CommandType="Text" ModifiedByUser="True"> 
     564                    <CommandText>SELECT     ID, ReklamaId, [Nr Wydania], status, zafakturowana, idFaktury, dataDodania, dataAnulowania, netto, DoDruku, LokalizacjaId, DzialId, RozdzialId 
    557565FROM         [UKAŻE SIĘ W NR]</CommandText> 
    558566                    <Parameters> 
     
    562570                <UpdateCommand> 
    563571                  <DbCommand CommandType="Text" ModifiedByUser="False"> 
    564                     <CommandText>UPDATE [UKAŻE SIĘ W NR] SET [ReklamaId] = @ReklamaId, [Nr Wydania] = @Nr_Wydania, [status] = @status, [zafakturowana] = @zafakturowana, [idFaktury] = @idFaktury, [dataDodania] = @dataDodania, [dataAnulowania] = @dataAnulowania, [netto] = @netto WHERE (([ID] = @Original_ID)); 
    565 SELECT ID, ReklamaId, [Nr Wydania], status, zafakturowana, idFaktury, dataDodania, dataAnulowania, netto FROM [UKAŻE SIĘ W NR] WHERE (ID = @ID)</CommandText> 
     572                    <CommandText>UPDATE [UKAŻE SIĘ W NR] SET [ReklamaId] = @ReklamaId, [Nr Wydania] = @Nr_Wydania, [status] = @status, [zafakturowana] = @zafakturowana, [idFaktury] = @idFaktury, [dataDodania] = @dataDodania, [dataAnulowania] = @dataAnulowania, [netto] = @netto, [DoDruku] = @DoDruku, [LokalizacjaId] = @LokalizacjaId, [DzialId] = @DzialId, [RozdzialId] = @RozdzialId WHERE (([ID] = @Original_ID)); 
     573SELECT ID, ReklamaId, [Nr Wydania], status, zafakturowana, idFaktury, dataDodania, dataAnulowania, netto, DoDruku, LokalizacjaId, DzialId, RozdzialId FROM [UKAŻE SIĘ W NR] WHERE (ID = @ID)</CommandText> 
    566574                    <Parameters> 
    567575                      <Parameter AllowDbNull="False" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@ReklamaId" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="ReklamaId" SourceColumnNullMapping="False" SourceVersion="Current"> 
     
    581589                      <Parameter AllowDbNull="True" AutogeneratedName="" DataSourceName="" DbType="Currency" Direction="Input" ParameterName="@netto" Precision="0" ProviderType="Money" Scale="0" Size="0" SourceColumn="netto" SourceColumnNullMapping="False" SourceVersion="Current"> 
    582590                      </Parameter> 
     591                      <Parameter AllowDbNull="True" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@DoDruku" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="DoDruku" SourceColumnNullMapping="False" SourceVersion="Current"> 
     592                      </Parameter> 
     593                      <Parameter AllowDbNull="True" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@LokalizacjaId" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="LokalizacjaId" SourceColumnNullMapping="False" SourceVersion="Current"> 
     594                      </Parameter> 
     595                      <Parameter AllowDbNull="True" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@DzialId" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="DzialId" SourceColumnNullMapping="False" SourceVersion="Current"> 
     596                      </Parameter> 
     597                      <Parameter AllowDbNull="True" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@RozdzialId" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="RozdzialId" SourceColumnNullMapping="False" SourceVersion="Current"> 
     598                      </Parameter> 
    583599                      <Parameter AllowDbNull="False" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_ID" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="ID" SourceColumnNullMapping="False" SourceVersion="Original"> 
    584600                      </Parameter> 
    585                       <Parameter AllowDbNull="False" AutogeneratedName="ID" ColumnName="ID" DataSourceName="BAZA_REKLAM_TEST.dbo.[UKAŻE SIĘ W NR]" DataTypeServer="decimal" DbType="Decimal" Direction="Input" ParameterName="@ID" Precision="18" ProviderType="Decimal" Scale="0" Size="9" SourceColumn="ID" SourceColumnNullMapping="False" SourceVersion="Current"> 
     601                      <Parameter AllowDbNull="False" AutogeneratedName="ID" ColumnName="ID" DataSourceName="Baza_Reklam.dbo.[UKAŻE SIĘ W NR]" DataTypeServer="decimal" DbType="Decimal" Direction="Input" ParameterName="@ID" Precision="18" ProviderType="Decimal" Scale="0" Size="9" SourceColumn="ID" SourceColumnNullMapping="False" SourceVersion="Current"> 
    586602                      </Parameter> 
    587603                    </Parameters> 
     
    600616              <Mapping SourceColumn="dataAnulowania" DataSetColumn="dataAnulowania" /> 
    601617              <Mapping SourceColumn="netto" DataSetColumn="netto" /> 
     618              <Mapping SourceColumn="DoDruku" DataSetColumn="DoDruku" /> 
     619              <Mapping SourceColumn="LokalizacjaId" DataSetColumn="LokalizacjaId" /> 
     620              <Mapping SourceColumn="DzialId" DataSetColumn="DzialId" /> 
     621              <Mapping SourceColumn="RozdzialId" DataSetColumn="RozdzialId" /> 
    602622            </Mappings> 
    603623            <Sources> 
    604               <DbSource ConnectionRef="Baza_ReklamConnectionString (Settings)" DbObjectName="BAZA_REKLAM_TEST.dbo.[UKAŻE SIĘ W NR]" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="FillByIdFaktury" GenerateMethods="Both" GenerateShortCommands="True" GeneratorGetMethodName="GetDataByFaktury" GeneratorSourceName="FillByIdFaktury" GetMethodModifier="Public" GetMethodName="GetDataByFaktury" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="True" UserGetMethodName="GetDataByFaktury" UserSourceName="FillByIdFaktury"> 
    605                 <SelectCommand> 
    606                   <DbCommand CommandType="Text" ModifiedByUser="True"> 
    607                     <CommandText>SELECT ID, [Nr Wydania], ReklamaId, dataAnulowania, dataDodania, idFaktury, netto, status, zafakturowana FROM [UKAŻE SIĘ W NR] WHERE (idFaktury = @idFaktury)</CommandText> 
    608                     <Parameters> 
    609                       <Parameter AllowDbNull="True" AutogeneratedName="idFaktury" ColumnName="idFaktury" DataSourceName="BAZA_REKLAM_TEST.dbo.[UKAŻE SIĘ W NR]" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@idFaktury" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="idFaktury" SourceColumnNullMapping="False" SourceVersion="Current"> 
    610                       </Parameter> 
    611                     </Parameters> 
    612                   </DbCommand> 
    613                 </SelectCommand> 
    614               </DbSource> 
    615               <DbSource ConnectionRef="Baza_ReklamConnectionString (Settings)" DbObjectName="BAZA_REKLAM_TEST.dbo.[UKAŻE SIĘ W NR]" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="FillByNiezafakturowane" GenerateMethods="Both" GenerateShortCommands="True" GeneratorGetMethodName="GetDataByNiezafakturowane" GeneratorSourceName="FillByNiezafakturowane" GetMethodModifier="Public" GetMethodName="GetDataByNiezafakturowane" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="True" UserGetMethodName="GetDataByNiezafakturowane" UserSourceName="FillByNiezafakturowane"> 
    616                 <SelectCommand> 
    617                   <DbCommand CommandType="Text" ModifiedByUser="True"> 
    618                     <CommandText>SELECT ID, [Nr Wydania], ReklamaId, dataAnulowania, dataDodania, idFaktury, netto, status, zafakturowana FROM [UKAŻE SIĘ W NR] WHERE (ReklamaId = @param1) AND (zafakturowana = 0) ORDER BY [Nr Wydania]</CommandText> 
    619                     <Parameters> 
    620                       <Parameter AllowDbNull="False" AutogeneratedName="param1" ColumnName="ReklamaId" DataSourceName="BAZA_REKLAM_TEST.dbo.[UKAŻE SIĘ W NR]" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@param1" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="ReklamaId" SourceColumnNullMapping="False" SourceVersion="Current"> 
    621                       </Parameter> 
    622                     </Parameters> 
    623                   </DbCommand> 
    624                 </SelectCommand> 
    625               </DbSource> 
    626               <DbSource ConnectionRef="Baza_ReklamConnectionString (Settings)" DbObjectName="BAZA_REKLAM_TEST.dbo.[UKAŻE SIĘ W NR]" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="FillByNiezafakturowane1MSrekId" GenerateMethods="Both" GenerateShortCommands="True" GeneratorGetMethodName="GetDataByNiezafakturowane1MSrekId" GeneratorSourceName="FillByNiezafakturowane1MSrekId" GetMethodModifier="Public" GetMethodName="GetDataByNiezafakturowane1MSrekId" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="True" UserGetMethodName="GetDataByNiezafakturowane1MSrekId" UserSourceName="FillByNiezafakturowane1MSrekId"> 
    627                 <SelectCommand> 
    628                   <DbCommand CommandType="Text" ModifiedByUser="True"> 
    629                     <CommandText>SELECT EMISJE.ID, EMISJE.[Nr Wydania], EMISJE.ReklamaId, EMISJE.dataAnulowania, EMISJE.dataDodania, EMISJE.idFaktury, EMISJE.netto, EMISJE.status, EMISJE.zafakturowana FROM [UKAŻE SIĘ W NR] AS EMISJE LEFT OUTER JOIN REKLAMA AS R ON R.ReklamaID = EMISJE.ReklamaId LEFT OUTER JOIN NR AS nr ON EMISJE.[Nr Wydania] = nr.NRW AND nr.TYT = R.tytuł WHERE (R.ReklamaID = @rekId) AND (EMISJE.zafakturowana = 0) AND (MONTH(nr.DATA_W) = MONTH(@data)) AND (YEAR(nr.DATA_W) = YEAR(@data))</CommandText> 
    630                     <Parameters> 
    631                       <Parameter AllowDbNull="False" AutogeneratedName="rekId" ColumnName="ReklamaID" DataSourceName="BAZA_REKLAM_TEST.dbo.REKLAMA" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@rekId" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="ReklamaID" SourceColumnNullMapping="False" SourceVersion="Current"> 
     624              <DbSource ConnectionRef="Baza_ReklamConnectionString (Settings)" DbObjectName="Baza_Reklam.dbo.[UKAŻE SIĘ W NR]" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="FillByIdFaktury" GenerateMethods="Both" GenerateShortCommands="True" GeneratorGetMethodName="GetDataByFaktury" GeneratorSourceName="FillByIdFaktury" GetMethodModifier="Public" GetMethodName="GetDataByFaktury" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="True" UserGetMethodName="GetDataByFaktury" UserSourceName="FillByIdFaktury"> 
     625                <SelectCommand> 
     626                  <DbCommand CommandType="Text" ModifiedByUser="True"> 
     627                    <CommandText>SELECT ID, [Nr Wydania], ReklamaId, dataAnulowania, dataDodania, idFaktury, netto, status, zafakturowana, DoDruku, LokalizacjaId, DzialId, RozdzialId FROM [UKAŻE SIĘ W NR] WHERE (idFaktury = @idFaktury)</CommandText> 
     628                    <Parameters> 
     629                      <Parameter AllowDbNull="True" AutogeneratedName="idFaktury" ColumnName="idFaktury" DataSourceName="Baza_Reklam.dbo.[UKAŻE SIĘ W NR]" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@idFaktury" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="idFaktury" SourceColumnNullMapping="False" SourceVersion="Current"> 
     630                      </Parameter> 
     631                    </Parameters> 
     632                  </DbCommand> 
     633                </SelectCommand> 
     634              </DbSource> 
     635              <DbSource ConnectionRef="Baza_ReklamConnectionString (Settings)" DbObjectName="Baza_Reklam.dbo.[UKAŻE SIĘ W NR]" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="FillByNiezafakturowane" GenerateMethods="Both" GenerateShortCommands="True" GeneratorGetMethodName="GetDataByNiezafakturowane" GeneratorSourceName="FillByNiezafakturowane" GetMethodModifier="Public" GetMethodName="GetDataByNiezafakturowane" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="True" UserGetMethodName="GetDataByNiezafakturowane" UserSourceName="FillByNiezafakturowane"> 
     636                <SelectCommand> 
     637                  <DbCommand CommandType="Text" ModifiedByUser="True"> 
     638                    <CommandText>SELECT ID, [Nr Wydania], ReklamaId, dataAnulowania, dataDodania, idFaktury, netto, status, zafakturowana, DoDruku, LokalizacjaId, DzialId, RozdzialId FROM [UKAŻE SIĘ W NR] WHERE (ReklamaId = @param1) AND (zafakturowana = 0) ORDER BY [Nr Wydania]</CommandText> 
     639                    <Parameters> 
     640                      <Parameter AllowDbNull="False" AutogeneratedName="param1" ColumnName="ReklamaId" DataSourceName="Baza_Reklam.dbo.[UKAŻE SIĘ W NR]" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@param1" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="ReklamaId" SourceColumnNullMapping="False" SourceVersion="Current"> 
     641                      </Parameter> 
     642                    </Parameters> 
     643                  </DbCommand> 
     644                </SelectCommand> 
     645              </DbSource> 
     646              <DbSource ConnectionRef="Baza_ReklamConnectionString (Settings)" DbObjectName="Baza_Reklam.dbo.[UKAŻE SIĘ W NR]" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="FillByNiezafakturowane1MSrekId" GenerateMethods="Both" GenerateShortCommands="True" GeneratorGetMethodName="GetDataByNiezafakturowane1MSrekId" GeneratorSourceName="FillByNiezafakturowane1MSrekId" GetMethodModifier="Public" GetMethodName="GetDataByNiezafakturowane1MSrekId" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="True" UserGetMethodName="GetDataByNiezafakturowane1MSrekId" UserSourceName="FillByNiezafakturowane1MSrekId"> 
     647                <SelectCommand> 
     648                  <DbCommand CommandType="Text" ModifiedByUser="True"> 
     649                    <CommandText>SELECT EMISJE.ID, EMISJE.[Nr Wydania], EMISJE.ReklamaId, EMISJE.dataAnulowania, EMISJE.dataDodania, EMISJE.idFaktury, EMISJE.netto, EMISJE.status, EMISJE.zafakturowana, EMISJE.DoDruku, EMISJE.LokalizacjaId, EMISJE.DzialId, EMISJE.RozdzialId FROM [UKAŻE SIĘ W NR] AS EMISJE LEFT OUTER JOIN REKLAMA AS R ON R.ReklamaID = EMISJE.ReklamaId LEFT OUTER JOIN NR AS nr ON EMISJE.[Nr Wydania] = nr.NRW AND nr.TYT = R.tytuł WHERE (R.ReklamaID = @rekId) AND (EMISJE.zafakturowana = 0) AND (MONTH(nr.DATA_W) = MONTH(@data)) AND (YEAR(nr.DATA_W) = YEAR(@data))</CommandText> 
     650                    <Parameters> 
     651                      <Parameter AllowDbNull="False" AutogeneratedName="rekId" ColumnName="ReklamaID" DataSourceName="Baza_Reklam.dbo.REKLAMA" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@rekId" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="ReklamaID" SourceColumnNullMapping="False" SourceVersion="Current"> 
    632652                      </Parameter> 
    633653                      <Parameter AllowDbNull="False" AutogeneratedName="data" ColumnName="" DataSourceName="" DataTypeServer="unknown" DbType="DateTime" Direction="Input" ParameterName="@data" Precision="0" Scale="0" Size="0" SourceColumn="" SourceColumnNullMapping="False" SourceVersion="Current"> 
     
    637657                </SelectCommand> 
    638658              </DbSource> 
    639               <DbSource ConnectionRef="Baza_ReklamConnectionString (Settings)" DbObjectName="BAZA_REKLAM_TEST.dbo.[UKAŻE SIĘ W NR]" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="FillByNiezafakturowane3MSRekID" GenerateMethods="Both" GenerateShortCommands="True" GeneratorGetMethodName="GetDataByNiezafakturowane3MSRekID" GeneratorSourceName="FillByNiezafakturowane3MSRekID" GetMethodModifier="Public" GetMethodName="GetDataByNiezafakturowane3MSRekID" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="True" UserGetMethodName="GetDataByNiezafakturowane3MSRekID" UserSourceName="FillByNiezafakturowane3MSRekID"> 
    640                 <SelectCommand> 
    641                   <DbCommand CommandType="Text" ModifiedByUser="True"> 
    642                     <CommandText>SELECT EMISJE.ID, EMISJE.[Nr Wydania], EMISJE.ReklamaId, EMISJE.dataAnulowania, EMISJE.dataDodania, EMISJE.idFaktury, EMISJE.netto, EMISJE.status, EMISJE.zafakturowana FROM [UKAŻE SIĘ W NR] AS EMISJE LEFT OUTER JOIN REKLAMA AS R ON R.ReklamaID = EMISJE.ReklamaId LEFT OUTER JOIN NR AS nr ON EMISJE.[Nr Wydania] = nr.NRW AND nr.TYT = R.tytuł WHERE (EMISJE.zafakturowana = 0) AND (R.ReklamaID = @rekId) AND (MONTH(nr.DATA_W) = MONTH(@data)) AND (YEAR(nr.DATA_W) = YEAR(@data)) OR (EMISJE.zafakturowana = 0) AND (R.ReklamaID = @rekId) AND (MONTH(nr.DATA_W) = MONTH(DATEADD(month, 1, @data))) AND (YEAR(nr.DATA_W) = YEAR(DATEADD(month, 1, @data))) OR (EMISJE.zafakturowana = 0) AND (R.ReklamaID = @rekId) AND (MONTH(nr.DATA_W) = MONTH(DATEADD(month, 2, @data))) AND (YEAR(nr.DATA_W) = YEAR(DATEADD(month, 2, @data)))</CommandText> 
    643                     <Parameters> 
    644                       <Parameter AllowDbNull="False" AutogeneratedName="rekId" ColumnName="ReklamaID" DataSourceName="BAZA_REKLAM_TEST.dbo.REKLAMA" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@rekId" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="ReklamaID" SourceColumnNullMapping="False" SourceVersion="Current"> 
     659              <DbSource ConnectionRef="Baza_ReklamConnectionString (Settings)" DbObjectName="Baza_Reklam.dbo.[UKAŻE SIĘ W NR]" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="FillByNiezafakturowane3MSRekID" GenerateMethods="Both" GenerateShortCommands="True" GeneratorGetMethodName="GetDataByNiezafakturowane3MSRekID" GeneratorSourceName="FillByNiezafakturowane3MSRekID" GetMethodModifier="Public" GetMethodName="GetDataByNiezafakturowane3MSRekID" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="True" UserGetMethodName="GetDataByNiezafakturowane3MSRekID" UserSourceName="FillByNiezafakturowane3MSRekID"> 
     660                <SelectCommand> 
     661                  <DbCommand CommandType="Text" ModifiedByUser="True"> 
     662                    <CommandText>SELECT EMISJE.ID, EMISJE.[Nr Wydania], EMISJE.ReklamaId, EMISJE.dataAnulowania, EMISJE.dataDodania, EMISJE.idFaktury, EMISJE.netto, EMISJE.status, EMISJE.zafakturowana, EMISJE.DoDruku, EMISJE.LokalizacjaId, EMISJE.DzialId, EMISJE.RozdzialId FROM [UKAŻE SIĘ W NR] AS EMISJE LEFT OUTER JOIN REKLAMA AS R ON R.ReklamaID = EMISJE.ReklamaId LEFT OUTER JOIN NR AS nr ON EMISJE.[Nr Wydania] = nr.NRW AND nr.TYT = R.tytuł WHERE (EMISJE.zafakturowana = 0) AND (R.ReklamaID = @rekId) AND (MONTH(nr.DATA_W) = MONTH(@data)) AND (YEAR(nr.DATA_W) = YEAR(@data)) OR (EMISJE.zafakturowana = 0) AND (R.ReklamaID = @rekId) AND (MONTH(nr.DATA_W) = MONTH(DATEADD(month, 1, @data))) AND (YEAR(nr.DATA_W) = YEAR(DATEADD(month, 1, @data))) OR (EMISJE.zafakturowana = 0) AND (R.ReklamaID = @rekId) AND (MONTH(nr.DATA_W) = MONTH(DATEADD(month, 2, @data))) AND (YEAR(nr.DATA_W) = YEAR(DATEADD(month, 2, @data)))</CommandText> 
     663                    <Parameters> 
     664                      <Parameter AllowDbNull="False" AutogeneratedName="rekId" ColumnName="ReklamaID" DataSourceName="Baza_Reklam.dbo.REKLAMA" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@rekId" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="ReklamaID" SourceColumnNullMapping="False" SourceVersion="Current"> 
    645665                      </Parameter> 
    646666                      <Parameter AllowDbNull="False" AutogeneratedName="data" ColumnName="" DataSourceName="" DataTypeServer="unknown" DbType="DateTime" Direction="Input" ParameterName="@data" Precision="0" Scale="0" Size="0" SourceColumn="" SourceColumnNullMapping="False" SourceVersion="Current"> 
     
    650670                </SelectCommand> 
    651671              </DbSource> 
    652               <DbSource ConnectionRef="Baza_ReklamConnectionString (Settings)" DbObjectName="BAZA_REKLAM_TEST.dbo.[UKAŻE SIĘ W NR]" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="FillByReklamaId" GenerateMethods="Both" GenerateShortCommands="True" GeneratorGetMethodName="GetDataByReklamaId" GeneratorSourceName="FillByReklamaId" GetMethodModifier="Public" GetMethodName="GetDataByReklamaId" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="True" UserGetMethodName="GetDataByReklamaId" UserSourceName="FillByReklamaId"> 
    653                 <SelectCommand> 
    654                   <DbCommand CommandType="Text" ModifiedByUser="True"> 
    655                     <CommandText>SELECT ID, [Nr Wydania], ReklamaId, dataAnulowania, dataDodania, idFaktury, netto, status, zafakturowana FROM [UKAŻE SIĘ W NR] WHERE (ReklamaId = @param1) ORDER BY [Nr Wydania]</CommandText> 
    656                     <Parameters> 
    657                       <Parameter AllowDbNull="False" AutogeneratedName="param1" ColumnName="ReklamaId" DataSourceName="BAZA_REKLAM.dbo.[UKAŻE SIĘ W NR]" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@param1" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="ReklamaId" SourceColumnNullMapping="False" SourceVersion="Current"> 
     672              <DbSource ConnectionRef="Baza_ReklamConnectionString (Settings)" DbObjectName="Baza_Reklam.dbo.[UKAŻE SIĘ W NR]" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="FillByReklamaId" GenerateMethods="Both" GenerateShortCommands="True" GeneratorGetMethodName="GetDataByReklamaId" GeneratorSourceName="FillByReklamaId" GetMethodModifier="Public" GetMethodName="GetDataByReklamaId" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="True" UserGetMethodName="GetDataByReklamaId" UserSourceName="FillByReklamaId"> 
     673                <SelectCommand> 
     674                  <DbCommand CommandType="Text" ModifiedByUser="True"> 
     675                    <CommandText>SELECT ID, [Nr Wydania], ReklamaId, dataAnulowania, dataDodania, idFaktury, netto, status, zafakturowana, DoDruku, LokalizacjaId, DzialId, RozdzialId FROM [UKAŻE SIĘ W NR] WHERE (ReklamaId = @param1) ORDER BY [Nr Wydania]</CommandText> 
     676                    <Parameters> 
     677                      <Parameter AllowDbNull="False" AutogeneratedName="param1" ColumnName="ReklamaId" DataSourceName="Baza_Reklam.dbo.[UKAŻE SIĘ W NR]" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@param1" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="ReklamaId" SourceColumnNullMapping="False" SourceVersion="Current"> 
    658678                      </Parameter> 
    659679                    </Parameters> 
     
    46174637          <xs:complexType> 
    46184638            <xs:sequence> 
     4639              <xs:element name="ReklamaID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ReklamaID" msprop:Generator_ColumnVarNameInTable="columnReklamaID" msprop:Generator_ColumnPropNameInRow="ReklamaID" msprop:Generator_ColumnPropNameInTable="ReklamaIDColumn" type="xs:int" /> 
     4640              <xs:element name="CustomerID" msprop:Generator_UserColumnName="CustomerID" msprop:Generator_ColumnVarNameInTable="columnCustomerID" msprop:Generator_ColumnPropNameInRow="CustomerID" msprop:Generator_ColumnPropNameInTable="CustomerIDColumn" type="xs:int" minOccurs="0" /> 
     4641              <xs:element name="SYMBOL_x0020_AKWIZYTORA" msprop:Generator_UserColumnName="SYMBOL AKWIZYTORA" msprop:Generator_ColumnVarNameInTable="columnSYMBOL_AKWIZYTORA" msprop:Generator_ColumnPropNameInRow="SYMBOL_AKWIZYTORA" msprop:Generator_ColumnPropNameInTable="SYMBOL_AKWIZYTORAColumn" minOccurs="0"> 
     4642                <xs:simpleType> 
     4643                  <xs:restriction base="xs:string"> 
     4644                    <xs:maxLength value="50" /> 
     4645                  </xs:restriction> 
     4646                </xs:simpleType> 
     4647              </xs:element> 
     4648              <xs:element name="TYTUŁ" msprop:Generator_UserColumnName="TYTUŁ" msprop:Generator_ColumnVarNameInTable="columnTYTUŁ" msprop:Generator_ColumnPropNameInRow="TYTUŁ" msprop:Generator_ColumnPropNameInTable="TYTUŁColumn" default="AMT" minOccurs="0"> 
     4649                <xs:simpleType> 
     4650                  <xs:restriction base="xs:string"> 
     4651                    <xs:maxLength value="5" /> 
     4652                  </xs:restriction> 
     4653                </xs:simpleType> 
     4654              </xs:element> 
     4655              <xs:element name="TYP" msprop:Generator_UserColumnName="TYP" msprop:Generator_ColumnVarNameInTable="columnTYP" msprop:Generator_ColumnPropNameInRow="TYP" msprop:Generator_ColumnPropNameInTable="TYPColumn" default="PŁATNA" minOccurs="0"> 
     4656                <xs:simpleType> 
     4657                  <xs:restriction base="xs:string"> 
     4658                    <xs:maxLength value="10" /> 
     4659                  </xs:restriction> 
     4660                </xs:simpleType> 
     4661              </xs:element> 
     4662              <xs:element name="ID_x0020_REKLAMY" msprop:Generator_UserColumnName="ID REKLAMY" msprop:Generator_ColumnVarNameInTable="columnID_REKLAMY" msprop:Generator_ColumnPropNameInRow="ID_REKLAMY" msprop:Generator_ColumnPropNameInTable="ID_REKLAMYColumn" default="test" minOccurs="0"> 
     4663                <xs:simpleType> 
     4664                  <xs:restriction base="xs:string"> 
     4665                    <xs:maxLength value="10" /> 
     4666                  </xs:restriction> 
     4667                </xs:simpleType> 
     4668              </xs:element> 
     4669              <xs:element name="NICK_x0020_NAME" msprop:Generator_UserColumnName="NICK NAME" msprop:Generator_ColumnVarNameInTable="columnNICK_NAME" msprop:Generator_ColumnPropNameInRow="NICK_NAME" msprop:Generator_ColumnPropNameInTable="NICK_NAMEColumn" minOccurs="0"> 
     4670                <xs:simpleType> 
     4671                  <xs:restriction base="xs:string"> 
     4672                    <xs:maxLength value="50" /> 
     4673                  </xs:restriction> 
     4674                </xs:simpleType> 
     4675              </xs:element> 
     4676              <xs:element name="DATA_x0020_ZAMÓWIENIA" msprop:Generator_UserColumnName="DATA ZAMÓWIENIA" msprop:Generator_ColumnVarNameInTable="columnDATA_ZAMÓWIENIA" msprop:Generator_ColumnPropNameInRow="DATA_ZAMÓWIENIA" msprop:Generator_ColumnPropNameInTable="DATA_ZAMÓWIENIAColumn" type="xs:dateTime" minOccurs="0" /> 
     4677              <xs:element name="SZER" msprop:Generator_UserColumnName="SZER" msprop:Generator_ColumnVarNameInTable="columnSZER" msprop:Generator_ColumnPropNameInRow="SZER" msprop:Generator_ColumnPropNameInTable="SZERColumn" type="xs:double" default="1" minOccurs="0" /> 
     4678              <xs:element name="WYS" msprop:Generator_UserColumnName="WYS" msprop:Generator_ColumnVarNameInTable="columnWYS" msprop:Generator_ColumnPropNameInRow="WYS" msprop:Generator_ColumnPropNameInTable="WYSColumn" type="xs:double" default="1" minOccurs="0" /> 
     4679              <xs:element name="MOD_TYP" msprop:Generator_UserColumnName="MOD_TYP" msprop:Generator_ColumnVarNameInTable="columnMOD_TYP" msprop:Generator_ColumnPropNameInRow="MOD_TYP" msprop:Generator_ColumnPropNameInTable="MOD_TYPColumn" minOccurs="0"> 
     4680                <xs:simpleType> 
     4681                  <xs:restriction base="xs:string"> 
     4682                    <xs:maxLength value="50" /> 
     4683                  </xs:restriction> 
     4684                </xs:simpleType> 
     4685              </xs:element> 
     4686              <xs:element name="STRONA" msprop:Generator_UserColumnName="STRONA" msprop:Generator_ColumnVarNameInTable="columnSTRONA" msprop:Generator_ColumnPropNameInRow="STRONA" msprop:Generator_ColumnPropNameInTable="STRONAColumn" minOccurs="0"> 
     4687                <xs:simpleType> 
     4688                  <xs:restriction base="xs:string"> 
     4689                    <xs:maxLength value="100" /> 
     4690                  </xs:restriction> 
     4691                </xs:simpleType> 
     4692              </xs:element> 
     4693              <xs:element name="STR_x0020_NR_x0020_WT" msprop:Generator_UserColumnName="STR NR WT" msprop:Generator_ColumnVarNameInTable="columnSTR_NR_WT" msprop:Generator_ColumnPropNameInRow="STR_NR_WT" msprop:Generator_ColumnPropNameInTable="STR_NR_WTColumn" type="xs:short" minOccurs="0" /> 
     4694              <xs:element name="STR_x0020_NR_x0020_PT" msprop:Generator_UserColumnName="STR NR PT" msprop:Generator_ColumnVarNameInTable="columnSTR_NR_PT" msprop:Generator_ColumnPropNameInRow="STR_NR_PT" msprop:Generator_ColumnPropNameInTable="STR_NR_PTColumn" type="xs:short" minOccurs="0" /> 
     4695              <xs:element name="KROTNOŚĆ" msprop:Generator_UserColumnName="KROTNOŚĆ" msprop:Generator_ColumnVarNameInTable="columnKROTNOŚĆ" msprop:Generator_ColumnPropNameInRow="KROTNOŚĆ" msprop:Generator_ColumnPropNameInTable="KROTNOŚĆColumn" type="xs:short" default="0" minOccurs="0" /> 
     4696              <xs:element name="ODSTĘP" msprop:Generator_UserColumnName="ODSTĘP" msprop:Generator_ColumnVarNameInTable="columnODSTĘP" msprop:Generator_ColumnPropNameInRow="ODSTĘP" msprop:Generator_ColumnPropNameInTable="ODSTĘPColumn" type="xs:unsignedByte" default="1" minOccurs="0" /> 
     4697              <xs:element name="KOLOR" msprop:Generator_UserColumnName="KOLOR" msprop:Generator_ColumnVarNameInTable="columnKOLOR" msprop:Generator_ColumnPropNameInRow="KOLOR" msprop:Generator_ColumnPropNameInTable="KOLORColumn" default="B\W" minOccurs="0"> 
     4698                <xs:simpleType> 
     4699                  <xs:restriction base="xs:string"> 
     4700                    <xs:maxLength value="5" /> 
     4701                  </xs:restriction> 
     4702                </xs:simpleType> 
     4703              </xs:element> 
     4704              <xs:element name="WSKAZANIE_x0020_MIEJSCA" msprop:Generator_UserColumnName="WSKAZANIE MIEJSCA" msprop:Generator_ColumnVarNameInTable="columnWSKAZANIE_MIEJSCA" msprop:Generator_ColumnPropNameInRow="WSKAZANIE_MIEJSCA" msprop:Generator_ColumnPropNameInTable="WSKAZANIE_MIEJSCAColumn" type="xs:boolean" default="false" minOccurs="0" /> 
     4705              <xs:element name="RABAT" msprop:Generator_UserColumnName="RABAT" msprop:Generator_ColumnVarNameInTable="columnRABAT" msprop:Generator_ColumnPropNameInRow="RABAT" msprop:Generator_ColumnPropNameInTable="RABATColumn" type="xs:double" default="0" minOccurs="0" /> 
     4706              <xs:element name="RABAT_x0020_WARTOŚĆ" msprop:Generator_UserColumnName="RABAT WARTOŚĆ" msprop:Generator_ColumnVarNameInTable="columnRABAT_WARTOŚĆ" msprop:Generator_ColumnPropNameInRow="RABAT_WARTOŚĆ" msprop:Generator_ColumnPropNameInTable="RABAT_WARTOŚĆColumn" type="xs:double" default="0" minOccurs="0" /> 
     4707              <xs:element name="ZAPŁACONO" msprop:Generator_UserColumnName="ZAPŁACONO" msprop:Generator_ColumnVarNameInTable="columnZAPŁACONO" msprop:Generator_ColumnPropNameInRow="ZAPŁACONO" msprop:Generator_ColumnPropNameInTable="ZAPŁACONOColumn" type="xs:boolean" default="false" minOccurs="0" /> 
     4708              <xs:element name="ZATWIERDZONO_x0020_DO_x0020_DRUKU" msprop:Generator_UserColumnName="ZATWIERDZONO DO DRUKU" msprop:Generator_ColumnVarNameInTable="columnZATWIERDZONO_DO_DRUKU" msprop:Generator_ColumnPropNameInRow="ZATWIERDZONO_DO_DRUKU" msprop:Generator_ColumnPropNameInTable="ZATWIERDZONO_DO_DRUKUColumn" type="xs:boolean" default="false" minOccurs="0" /> 
     4709              <xs:element name="DATA_x0020_ZAPŁATY" msprop:Generator_UserColumnName="DATA ZAPŁATY" msprop:Generator_ColumnVarNameInTable="columnDATA_ZAPŁATY" msprop:Generator_ColumnPropNameInRow="DATA_ZAPŁATY" msprop:Generator_ColumnPropNameInTable="DATA_ZAPŁATYColumn" type="xs:dateTime" minOccurs="0" /> 
     4710              <xs:element name="SYMBOL_x0020_POTWIERDZENIA" msprop:Generator_UserColumnName="SYMBOL POTWIERDZENIA" msprop:Generator_ColumnVarNameInTable="columnSYMBOL_POTWIERDZENIA" msprop:Generator_ColumnPropNameInRow="SYMBOL_POTWIERDZENIA" msprop:Generator_ColumnPropNameInTable="SYMBOL_POTWIERDZENIAColumn" minOccurs="0"> 
     4711                <xs:simpleType> 
     4712                  <xs:restriction base="xs:string"> 
     4713                    <xs:maxLength value="25" /> 
     4714                  </xs:restriction> 
     4715                </xs:simpleType> 
     4716              </xs:element> 
     4717              <xs:element name="RODZAJ_x0020_POTWIERDZENIA" msprop:Generator_UserColumnName="RODZAJ POTWIERDZENIA" msprop:Generator_ColumnVarNameInTable="columnRODZAJ_POTWIERDZENIA" msprop:Generator_ColumnPropNameInRow="RODZAJ_POTWIERDZENIA" msprop:Generator_ColumnPropNameInTable="RODZAJ_POTWIERDZENIAColumn" minOccurs="0"> 
     4718                <xs:simpleType> 
     4719                  <xs:restriction base="xs:string"> 
     4720                    <xs:maxLength value="50" /> 
     4721                  </xs:restriction> 
     4722                </xs:simpleType> 
     4723              </xs:element> 
     4724              <xs:element name="CENA_x0020_JEDN" msprop:Generator_UserColumnName="CENA JEDN" msprop:Generator_ColumnVarNameInTable="columnCENA_JEDN" msprop:Generator_ColumnPropNameInRow="CENA_JEDN" msprop:Generator_ColumnPropNameInTable="CENA_JEDNColumn" type="xs:double" default="0" minOccurs="0" /> 
     4725              <xs:element name="NETTO" msprop:Generator_UserColumnName="NETTO" msprop:Generator_ColumnVarNameInTable="columnNETTO" msprop:Generator_ColumnPropNameInRow="NETTO" msprop:Generator_ColumnPropNameInTable="NETTOColumn" type="xs:double" default="0" minOccurs="0" /> 
     4726              <xs:element name="VAT" msprop:Generator_UserColumnName="VAT" msprop:Generator_ColumnVarNameInTable="columnVAT" msprop:Generator_ColumnPropNameInRow="VAT" msprop:Generator_ColumnPropNameInTable="VATColumn" type="xs:double" default="0.22" minOccurs="0" /> 
     4727              <xs:element name="PVAT" msprop:Generator_UserColumnName="PVAT" msprop:Generator_ColumnVarNameInTable="columnPVAT" msprop:Generator_ColumnPropNameInRow="PVAT" msprop:Generator_ColumnPropNameInTable="PVATColumn" type="xs:double" default="0" minOccurs="0" /> 
     4728              <xs:element name="BRUTTO" msprop:Generator_UserColumnName="BRUTTO" msprop:Generator_ColumnVarNameInTable="columnBRUTTO" msprop:Generator_ColumnPropNameInRow="BRUTTO" msprop:Generator_ColumnPropNameInTable="BRUTTOColumn" type="xs:double" default="0" minOccurs="0" /> 
     4729              <xs:element name="PROCENT_x0020_PROWIZJI" msprop:Generator_UserColumnName="PROCENT PROWIZJI" msprop:Generator_ColumnVarNameInTable="columnPROCENT_PROWIZJI" msprop:Generator_ColumnPropNameInRow="PROCENT_PROWIZJI" msprop:Generator_ColumnPropNameInTable="PROCENT_PROWIZJIColumn" type="xs:double" default="0" minOccurs="0" /> 
     4730              <xs:element name="PROWIZJA" msprop:Generator_UserColumnName="PROWIZJA" msprop:Generator_ColumnVarNameInTable="columnPROWIZJA" msprop:Generator_ColumnPropNameInRow="PROWIZJA" msprop:Generator_ColumnPropNameInTable="PROWIZJAColumn" type="xs:double" default="0" minOccurs="0" /> 
     4731              <xs:element name="INFO" msprop:Generator_UserColumnName="INFO" msprop:Generator_ColumnVarNameInTable="columnINFO" msprop:Generator_ColumnPropNameInRow="INFO" msprop:Generator_ColumnPropNameInTable="INFOColumn" minOccurs="0"> 
     4732                <xs:simpleType> 
     4733                  <xs:restriction base="xs:string"> 
     4734                    <xs:maxLength value="1000" /> 
     4735                  </xs:restriction> 
     4736                </xs:simpleType> 
     4737              </xs:element> 
     4738              <xs:element name="FAKTURA_x0020_NUMER" msprop:Generator_UserColumnName="FAKTURA NUMER" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_NUMER" msprop:Generator_ColumnPropNameInRow="FAKTURA_NUMER" msprop:Generator_ColumnPropNameInTable="FAKTURA_NUMERColumn" minOccurs="0"> 
     4739                <xs:simpleType> 
     4740                  <xs:restriction base="xs:string"> 
     4741                    <xs:maxLength value="50" /> 
     4742                  </xs:restriction> 
     4743                </xs:simpleType> 
     4744              </xs:element> 
     4745              <xs:element name="FAKTURA_x0020_ID_x0020_KONTA" msprop:Generator_UserColumnName="FAKTURA ID KONTA" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_ID_KONTA" msprop:Generator_ColumnPropNameInRow="FAKTURA_ID_KONTA" msprop:Generator_ColumnPropNameInTable="FAKTURA_ID_KONTAColumn" type="xs:int" default="1" minOccurs="0" /> 
     4746              <xs:element name="FAKTURA_x0020_DATA_x0020_WYSTAWIENIA" msprop:Generator_UserColumnName="FAKTURA DATA WYSTAWIENIA" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_DATA_WYSTAWIENIA" msprop:Generator_ColumnPropNameInRow="FAKTURA_DATA_WYSTAWIENIA" msprop:Generator_ColumnPropNameInTable="FAKTURA_DATA_WYSTAWIENIAColumn" type="xs:dateTime" minOccurs="0" /> 
     4747              <xs:element name="FAKTURA_x0020_DATA_x0020_SPRZEDAŻY" msprop:Generator_UserColumnName="FAKTURA DATA SPRZEDAŻY" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_DATA_SPRZEDAŻY" msprop:Generator_ColumnPropNameInRow="FAKTURA_DATA_SPRZEDAŻY" msprop:Generator_ColumnPropNameInTable="FAKTURA_DATA_SPRZEDAŻYColumn" type="xs:dateTime" minOccurs="0" /> 
     4748              <xs:element name="FAKTURA_x0020_TERMIN_x0020_ZAPŁATY" msprop:Generator_UserColumnName="FAKTURA TERMIN ZAPŁATY" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_TERMIN_ZAPŁATY" msprop:Generator_ColumnPropNameInRow="FAKTURA_TERMIN_ZAPŁATY" msprop:Generator_ColumnPropNameInTable="FAKTURA_TERMIN_ZAPŁATYColumn" type="xs:dateTime" minOccurs="0" /> 
     4749              <xs:element name="FAKTURA_x0020_FORMA_x0020_PŁATNOŚCI" msprop:Generator_UserColumnName="FAKTURA FORMA PŁATNOŚCI" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_FORMA_PŁATNOŚCI" msprop:Generator_ColumnPropNameInRow="FAKTURA_FORMA_PŁATNOŚCI" msprop:Generator_ColumnPropNameInTable="FAKTURA_FORMA_PŁATNOŚCIColumn" type="xs:unsignedByte" minOccurs="0" /> 
     4750              <xs:element name="FAKTURA_x0020_WYSTAWIONO" msprop:Generator_UserColumnName="FAKTURA WYSTAWIONO" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_WYSTAWIONO" msprop:Generator_ColumnPropNameInRow="FAKTURA_WYSTAWIONO" msprop:Generator_ColumnPropNameInTable="FAKTURA_WYSTAWIONOColumn" type="xs:boolean" default="false" minOccurs="0" /> 
     4751              <xs:element name="FAKTURA_x0020_RODZAJ" msprop:Generator_UserColumnName="FAKTURA RODZAJ" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_RODZAJ" msprop:Generator_ColumnPropNameInRow="FAKTURA_RODZAJ" msprop:Generator_ColumnPropNameInTable="FAKTURA_RODZAJColumn" minOccurs="0"> 
     4752                <xs:simpleType> 
     4753                  <xs:restriction base="xs:string"> 
     4754                    <xs:maxLength value="50" /> 
     4755                  </xs:restriction> 
     4756                </xs:simpleType> 
     4757              </xs:element> 
     4758              <xs:element name="USERID" msprop:Generator_UserColumnName="USERID" msprop:Generator_ColumnVarNameInTable="columnUSERID" msprop:Generator_ColumnPropNameInRow="USERID" msprop:Generator_ColumnPropNameInTable="USERIDColumn" minOccurs="0"> 
     4759                <xs:simpleType> 
     4760                  <xs:restriction base="xs:string"> 
     4761                    <xs:maxLength value="50" /> 
     4762                  </xs:restriction> 
     4763                </xs:simpleType> 
     4764              </xs:element> 
     4765              <xs:element name="DATA_x0020_OSTATNIEJ_x0020_MODYFIKACJI" msprop:Generator_UserColumnName="DATA OSTATNIEJ MODYFIKACJI" msprop:Generator_ColumnVarNameInTable="columnDATA_OSTATNIEJ_MODYFIKACJI" msprop:Generator_ColumnPropNameInRow="DATA_OSTATNIEJ_MODYFIKACJI" msprop:Generator_ColumnPropNameInTable="DATA_OSTATNIEJ_MODYFIKACJIColumn" type="xs:dateTime" minOccurs="0" /> 
     4766              <xs:element name="FK-TR" msprop:Generator_UserColumnName="FK-TR" msprop:Generator_ColumnVarNameInTable="_columnFK_TR" msprop:Generator_ColumnPropNameInRow="_FK_TR" msprop:Generator_ColumnPropNameInTable="_FK_TRColumn" minOccurs="0"> 
     4767                <xs:simpleType> 
     4768                  <xs:restriction base="xs:string"> 
     4769                    <xs:maxLength value="1" /> 
     4770                  </xs:restriction> 
     4771                </xs:simpleType> 
     4772              </xs:element> 
     4773              <xs:element name="F_NR" msprop:Generator_UserColumnName="F_NR" msprop:Generator_ColumnVarNameInTable="columnF_NR" msprop:Generator_ColumnPropNameInRow="F_NR" msprop:Generator_ColumnPropNameInTable="F_NRColumn" type="xs:int" minOccurs="0" /> 
     4774              <xs:element name="F_NR_ROZ" msprop:Generator_UserColumnName="F_NR_ROZ" msprop:Generator_ColumnVarNameInTable="columnF_NR_ROZ" msprop:Generator_ColumnPropNameInRow="F_NR_ROZ" msprop:Generator_ColumnPropNameInTable="F_NR_ROZColumn" minOccurs="0"> 
     4775                <xs:simpleType> 
     4776                  <xs:restriction base="xs:string"> 
     4777                    <xs:maxLength value="8" /> 
     4778                  </xs:restriction> 
     4779                </xs:simpleType> 
     4780              </xs:element> 
     4781              <xs:element name="F_NR_ROK" msprop:Generator_UserColumnName="F_NR_ROK" msprop:Generator_ColumnVarNameInTable="columnF_NR_ROK" msprop:Generator_ColumnPropNameInRow="F_NR_ROK" msprop:Generator_ColumnPropNameInTable="F_NR_ROKColumn" type="xs:int" minOccurs="0" /> 
     4782              <xs:element name="ID_FAKTURY" msprop:Generator_UserColumnName="ID_FAKTURY" msprop:Generator_ColumnVarNameInTable="columnID_FAKTURY" msprop:Generator_ColumnPropNameInRow="ID_FAKTURY" msprop:Generator_ColumnPropNameInTable="ID_FAKTURYColumn" type="xs:int" minOccurs="0" /> 
     4783              <xs:element name="PROMOCJA" msprop:Generator_UserColumnName="PROMOCJA" msprop:Generator_ColumnVarNameInTable="columnPROMOCJA" msprop:Generator_ColumnPropNameInRow="PROMOCJA" msprop:Generator_ColumnPropNameInTable="PROMOCJAColumn" type="xs:int" minOccurs="0" /> 
     4784              <xs:element name="GRZBIET" msprop:Generator_UserColumnName="GRZBIET" msprop:Generator_ColumnVarNameInTable="columnGRZBIET" msprop:Generator_ColumnPropNameInRow="GRZBIET" msprop:Generator_ColumnPropNameInTable="GRZBIETColumn" type="xs:int" minOccurs="0" /> 
     4785              <xs:element name="customerId_Sub" msprop:Generator_UserColumnName="customerId_Sub" msprop:Generator_ColumnVarNameInTable="columncustomerId_Sub" msprop:Generator_ColumnPropNameInRow="customerId_Sub" msprop:Generator_ColumnPropNameInTable="customerId_SubColumn" type="xs:int" minOccurs="0" /> 
     4786              <xs:element name="kier_notatka" msprop:Generator_UserColumnName="kier_notatka" msprop:Generator_ColumnVarNameInTable="columnkier_notatka" msprop:Generator_ColumnPropNameInRow="kier_notatka" msprop:Generator_ColumnPropNameInTable="kier_notatkaColumn" minOccurs="0"> 
     4787                <xs:simpleType> 
     4788                  <xs:restriction base="xs:string"> 
     4789                    <xs:maxLength value="200" /> 
     4790                  </xs:restriction> 
     4791                </xs:simpleType> 
     4792              </xs:element> 
     4793              <xs:element name="kier_zatwierdzil" msprop:Generator_UserColumnName="kier_zatwierdzil" msprop:Generator_ColumnVarNameInTable="columnkier_zatwierdzil" msprop:Generator_ColumnPropNameInRow="kier_zatwierdzil" msprop:Generator_ColumnPropNameInTable="kier_zatwierdzilColumn" type="xs:boolean" default="false" minOccurs="0" /> 
     4794              <xs:element name="zam_notatka" msprop:Generator_UserColumnName="zam_notatka" msprop:Generator_ColumnVarNameInTable="columnzam_notatka" msprop:Generator_ColumnPropNameInRow="zam_notatka" msprop:Generator_ColumnPropNameInTable="zam_notatkaColumn" minOccurs="0"> 
     4795                <xs:simpleType> 
     4796                  <xs:restriction base="xs:string"> 
     4797                    <xs:maxLength value="200" /> 
     4798                  </xs:restriction> 
     4799                </xs:simpleType> 
     4800              </xs:element> 
     4801              <xs:element name="zablokuj_prowizje" msprop:Generator_UserColumnName="zablokuj_prowizje" msprop:Generator_ColumnVarNameInTable="columnzablokuj_prowizje" msprop:Generator_ColumnPropNameInRow="zablokuj_prowizje" msprop:Generator_ColumnPropNameInTable="zablokuj_prowizjeColumn" type="xs:boolean" default="false" /> 
     4802              <xs:element name="Brutto_Euro" msprop:Generator_UserColumnName="Brutto_Euro" msprop:Generator_ColumnVarNameInTable="columnBrutto_Euro" msprop:Generator_ColumnPropNameInRow="Brutto_Euro" msprop:Generator_ColumnPropNameInTable="Brutto_EuroColumn" type="xs:double" minOccurs="0" /> 
     4803              <xs:element name="Zaliczka_Brutto" msprop:Generator_UserColumnName="Zaliczka_Brutto" msprop:Generator_ColumnVarNameInTable="columnZaliczka_Brutto" msprop:Generator_ColumnPropNameInRow="Zaliczka_Brutto" msprop:Generator_ColumnPropNameInTable="Zaliczka_BruttoColumn" type="xs:decimal" minOccurs="0" /> 
     4804              <xs:element name="Zaliczka_Data" msprop:Generator_UserColumnName="Zaliczka_Data" msprop:Generator_ColumnVarNameInTable="columnZaliczka_Data" msprop:Generator_ColumnPropNameInRow="Zaliczka_Data" msprop:Generator_ColumnPropNameInTable="Zaliczka_DataColumn" type="xs:dateTime" minOccurs="0" /> 
     4805              <xs:element name="Brutto_Euro_Miano" msprop:Generator_UserColumnName="Brutto_Euro_Miano" msprop:Generator_ColumnVarNameInTable="columnBrutto_Euro_Miano" msprop:Generator_ColumnPropNameInRow="Brutto_Euro_Miano" msprop:Generator_ColumnPropNameInTable="Brutto_Euro_MianoColumn" default="" minOccurs="0"> 
     4806                <xs:simpleType> 
     4807                  <xs:restriction base="xs:string"> 
     4808                    <xs:maxLength value="4" /> 
     4809                  </xs:restriction> 
     4810                </xs:simpleType> 
     4811              </xs:element> 
     4812              <xs:element name="waluta_kurs_z_dnia" msprop:Generator_UserColumnName="waluta_kurs_z_dnia" msprop:Generator_ColumnVarNameInTable="columnwaluta_kurs_z_dnia" msprop:Generator_ColumnPropNameInRow="waluta_kurs_z_dnia" msprop:Generator_ColumnPropNameInTable="waluta_kurs_z_dniaColumn" type="xs:dateTime" minOccurs="0" /> 
     4813              <xs:element name="waluta_kurs" msprop:Generator_UserColumnName="waluta_kurs" msprop:Generator_ColumnVarNameInTable="columnwaluta_kurs" msprop:Generator_ColumnPropNameInRow="waluta_kurs" msprop:Generator_ColumnPropNameInTable="waluta_kursColumn" type="xs:double" minOccurs="0" /> 
     4814              <xs:element name="waluta_Przelicznik" msprop:Generator_UserColumnName="waluta_Przelicznik" msprop:Generator_ColumnVarNameInTable="columnwaluta_Przelicznik" msprop:Generator_ColumnPropNameInRow="waluta_Przelicznik" msprop:Generator_ColumnPropNameInTable="waluta_PrzelicznikColumn" type="xs:int" default="1" minOccurs="0" /> 
     4815              <xs:element name="waluta_tabela_nr" msprop:Generator_UserColumnName="waluta_tabela_nr" msprop:Generator_ColumnVarNameInTable="columnwaluta_tabela_nr" msprop:Generator_ColumnPropNameInRow="waluta_tabela_nr" msprop:Generator_ColumnPropNameInTable="waluta_tabela_nrColumn" minOccurs="0"> 
     4816                <xs:simpleType> 
     4817                  <xs:restriction base="xs:string"> 
     4818                    <xs:maxLength value="15" /> 
     4819                  </xs:restriction> 
     4820                </xs:simpleType> 
     4821              </xs:element> 
     4822              <xs:element name="wyroznienie_procent" msprop:Generator_UserColumnName="wyroznienie_procent" msprop:Generator_ColumnVarNameInTable="columnwyroznienie_procent" msprop:Generator_ColumnPropNameInRow="wyroznienie_procent" msprop:Generator_ColumnPropNameInTable="wyroznienie_procentColumn" type="xs:double" default="0" minOccurs="0" /> 
     4823              <xs:element name="wyroznienie_kwota" msprop:Generator_UserColumnName="wyroznienie_kwota" msprop:Generator_ColumnVarNameInTable="columnwyroznienie_kwota" msprop:Generator_ColumnPropNameInRow="wyroznienie_kwota" msprop:Generator_ColumnPropNameInTable="wyroznienie_kwotaColumn" type="xs:double" default="0" minOccurs="0" /> 
     4824              <xs:element name="wyroznienie" msprop:Generator_UserColumnName="wyroznienie" msprop:Generator_ColumnVarNameInTable="columnwyroznienie" msprop:Generator_ColumnPropNameInRow="wyroznienie" msprop:Generator_ColumnPropNameInTable="wyroznienieColumn" type="xs:boolean" default="false" /> 
     4825              <xs:element name="wyroznienie_exported" msprop:Generator_UserColumnName="wyroznienie_exported" msprop:Generator_ColumnVarNameInTable="columnwyroznienie_exported" msprop:Generator_ColumnPropNameInRow="wyroznienie_exported" msprop:Generator_ColumnPropNameInTable="wyroznienie_exportedColumn" type="xs:boolean" default="false" /> 
     4826              <xs:element name="logo" msprop:Generator_UserColumnName="logo" msprop:Generator_ColumnPropNameInRow="logo" msprop:Generator_ColumnVarNameInTable="columnlogo" msprop:Generator_ColumnPropNameInTable="logoColumn" type="xs:boolean" default="false" /> 
     4827              <xs:element name="logoID" msprop:Generator_UserColumnName="logoID" msprop:Generator_ColumnPropNameInRow="logoID" msprop:Generator_ColumnVarNameInTable="columnlogoID" msprop:Generator_ColumnPropNameInTable="logoIDColumn" type="xs:int" minOccurs="0" /> 
     4828              <xs:element name="ogl_dzial" msprop:Generator_UserColumnName="ogl_dzial" msprop:Generator_ColumnVarNameInTable="columnogl_dzial" msprop:Generator_ColumnPropNameInRow="ogl_dzial" msprop:Generator_ColumnPropNameInTable="ogl_dzialColumn" type="xs:int" minOccurs="0" /> 
     4829              <xs:element name="ogl_rozdzial" msprop:Generator_UserColumnName="ogl_rozdzial" msprop:Generator_ColumnVarNameInTable="columnogl_rozdzial" msprop:Generator_ColumnPropNameInRow="ogl_rozdzial" msprop:Generator_ColumnPropNameInTable="ogl_rozdzialColumn" type="xs:int" minOccurs="0" /> 
     4830              <xs:element name="idZamowienia" msprop:Generator_UserColumnName="idZamowienia" msprop:Generator_ColumnPropNameInRow="idZamowienia" msprop:Generator_ColumnVarNameInTable="columnidZamowienia" msprop:Generator_ColumnPropNameInTable="idZamowieniaColumn" type="xs:int" minOccurs="0" /> 
     4831              <xs:element name="Data1Emisji" msdata:ReadOnly="true" msprop:Generator_UserColumnName="Data1Emisji" msprop:Generator_ColumnVarNameInTable="columnData1Emisji" msprop:Generator_ColumnPropNameInRow="Data1Emisji" msprop:Generator_ColumnPropNameInTable="Data1EmisjiColumn" type="xs:dateTime" minOccurs="0" /> 
     4832              <xs:element name="ModulePrice" msprop:Generator_UserColumnName="ModulePrice" msprop:Generator_ColumnVarNameInTable="columnModulePrice" msprop:Generator_ColumnPropNameInRow="ModulePrice" msprop:Generator_ColumnPropNameInTable="ModulePriceColumn" type="xs:decimal" minOccurs="0" /> 
     4833              <xs:element name="AdLocationId" msprop:Generator_UserColumnName="AdLocationId" msprop:Generator_ColumnVarNameInTable="columnAdLocationId" msprop:Generator_ColumnPropNameInRow="AdLocationId" msprop:Generator_ColumnPropNameInTable="AdLocationIdColumn" type="xs:int" default="1" minOccurs="0" /> 
     4834            </xs:sequence> 
     4835          </xs:complexType> 
     4836        </xs:element> 
     4837        <xs:element name="UKAZE_SIE_W_NR" msprop:Generator_UserTableName="UKAZE_SIE_W_NR" msprop:Generator_RowDeletedName="UKAZE_SIE_W_NRRowDeleted" msprop:Generator_RowChangedName="UKAZE_SIE_W_NRRowChanged" msprop:Generator_RowClassName="UKAZE_SIE_W_NRRow" msprop:Generator_RowChangingName="UKAZE_SIE_W_NRRowChanging" msprop:Generator_RowEvArgName="UKAZE_SIE_W_NRRowChangeEvent" msprop:Generator_RowEvHandlerName="UKAZE_SIE_W_NRRowChangeEventHandler" msprop:Generator_TableClassName="UKAZE_SIE_W_NRDataTable" msprop:Generator_TableVarName="tableUKAZE_SIE_W_NR" msprop:Generator_RowDeletingName="UKAZE_SIE_W_NRRowDeleting" msprop:Generator_TablePropName="UKAZE_SIE_W_NR"> 
     4838          <xs:complexType> 
     4839            <xs:sequence> 
     4840              <xs:element name="ID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_UserColumnName="ID" msprop:Generator_ColumnVarNameInTable="columnID" msprop:Generator_ColumnPropNameInRow="ID" msprop:Generator_ColumnPropNameInTable="IDColumn" type="xs:decimal" /> 
     4841              <xs:element name="ReklamaId" msprop:Generator_UserColumnName="ReklamaId" msprop:Generator_ColumnVarNameInTable="columnReklamaId" msprop:Generator_ColumnPropNameInRow="ReklamaId" msprop:Generator_ColumnPropNameInTable="ReklamaIdColumn" type="xs:int" /> 
     4842              <xs:element name="Nr_x0020_Wydania" msprop:Generator_UserColumnName="Nr Wydania" msprop:Generator_ColumnVarNameInTable="columnNr_Wydania" msprop:Generator_ColumnPropNameInRow="Nr_Wydania" msprop:Generator_ColumnPropNameInTable="Nr_WydaniaColumn" type="xs:short" /> 
     4843              <xs:element name="status" msprop:Generator_UserColumnName="status" msprop:Generator_ColumnVarNameInTable="columnstatus" msprop:Generator_ColumnPropNameInRow="status" msprop:Generator_ColumnPropNameInTable="statusColumn" type="xs:short" default="0" /> 
     4844              <xs:element name="zafakturowana" msprop:Generator_UserColumnName="zafakturowana" msprop:Generator_ColumnVarNameInTable="columnzafakturowana" msprop:Generator_ColumnPropNameInRow="zafakturowana" msprop:Generator_ColumnPropNameInTable="zafakturowanaColumn" type="xs:boolean" default="false" /> 
     4845              <xs:element name="idFaktury" msprop:Generator_UserColumnName="idFaktury" msprop:Generator_ColumnVarNameInTable="columnidFaktury" msprop:Generator_ColumnPropNameInRow="idFaktury" msprop:Generator_ColumnPropNameInTable="idFakturyColumn" type="xs:int" minOccurs="0" /> 
     4846              <xs:element name="dataDodania" msprop:Generator_UserColumnName="dataDodania" msprop:Generator_ColumnVarNameInTable="columndataDodania" msprop:Generator_ColumnPropNameInRow="dataDodania" msprop:Generator_ColumnPropNameInTable="dataDodaniaColumn" type="xs:dateTime" minOccurs="0" /> 
     4847              <xs:element name="dataAnulowania" msprop:Generator_UserColumnName="dataAnulowania" msprop:Generator_ColumnVarNameInTable="columndataAnulowania" msprop:Generator_ColumnPropNameInRow="dataAnulowania" msprop:Generator_ColumnPropNameInTable="dataAnulowaniaColumn" type="xs:dateTime" minOccurs="0" /> 
     4848              <xs:element name="netto" msprop:Generator_UserColumnName="netto" msprop:Generator_ColumnPropNameInRow="netto" msprop:Generator_ColumnVarNameInTable="columnnetto" msprop:Generator_ColumnPropNameInTable="nettoColumn" type="xs:decimal" default="0" minOccurs="0" /> 
     4849              <xs:element name="DoDruku" msprop:Generator_UserColumnName="DoDruku" msprop:Generator_ColumnPropNameInRow="DoDruku" msprop:Generator_ColumnVarNameInTable="columnDoDruku" msprop:Generator_ColumnPropNameInTable="DoDrukuColumn" type="xs:boolean" minOccurs="0" /> 
     4850              <xs:element name="LokalizacjaId" msprop:Generator_UserColumnName="LokalizacjaId" msprop:Generator_ColumnPropNameInRow="LokalizacjaId" msprop:Generator_ColumnVarNameInTable="columnLokalizacjaId" msprop:Generator_ColumnPropNameInTable="LokalizacjaIdColumn" type="xs:int" minOccurs="0" /> 
     4851              <xs:element name="DzialId" msprop:Generator_UserColumnName="DzialId" msprop:Generator_ColumnPropNameInRow="DzialId" msprop:Generator_ColumnVarNameInTable="columnDzialId" msprop:Generator_ColumnPropNameInTable="DzialIdColumn" type="xs:int" minOccurs="0" /> 
     4852              <xs:element name="RozdzialId" msprop:Generator_UserColumnName="RozdzialId" msprop:Generator_ColumnPropNameInRow="RozdzialId" msprop:Generator_ColumnVarNameInTable="columnRozdzialId" msprop:Generator_ColumnPropNameInTable="RozdzialIdColumn" type="xs:int" minOccurs="0" /> 
     4853            </xs:sequence> 
     4854          </xs:complexType> 
     4855        </xs:element> 
     4856        <xs:element name="KLIENCI" msprop:Generator_UserTableName="KLIENCI" msprop:Generator_RowDeletedName="KLIENCIRowDeleted" msprop:Generator_RowChangedName="KLIENCIRowChanged" msprop:Generator_RowClassName="KLIENCIRow" msprop:Generator_RowChangingName="KLIENCIRowChanging" msprop:Generator_RowEvArgName="KLIENCIRowChangeEvent" msprop:Generator_RowEvHandlerName="KLIENCIRowChangeEventHandler" msprop:Generator_TableClassName="KLIENCIDataTable" msprop:Generator_TableVarName="tableKLIENCI" msprop:Generator_RowDeletingName="KLIENCIRowDeleting" msprop:Generator_TablePropName="KLIENCI"> 
     4857          <xs:complexType> 
     4858            <xs:sequence> 
     4859              <xs:element name="LastName" msprop:Generator_UserColumnName="LastName" msprop:Generator_ColumnVarNameInTable="columnLastName" msprop:Generator_ColumnPropNameInRow="LastName" msprop:Generator_ColumnPropNameInTable="LastNameColumn" minOccurs="0"> 
     4860                <xs:simpleType> 
     4861                  <xs:restriction base="xs:string"> 
     4862                    <xs:maxLength value="50" /> 
     4863                  </xs:restriction> 
     4864                </xs:simpleType> 
     4865              </xs:element> 
     4866              <xs:element name="OrganizationName" msprop:Generator_UserColumnName="OrganizationName" msprop:Generator_ColumnVarNameInTable="columnOrganizationName" msprop:Generator_ColumnPropNameInRow="OrganizationName" msprop:Generator_ColumnPropNameInTable="OrganizationNameColumn" minOccurs="0"> 
     4867                <xs:simpleType> 
     4868                  <xs:restriction base="xs:string"> 
     4869                    <xs:maxLength value="50" /> 
     4870                  </xs:restriction> 
     4871                </xs:simpleType> 
     4872              </xs:element> 
     4873              <xs:element name="Address" msprop:Generator_UserColumnName="Address" msprop:Generator_ColumnVarNameInTable="columnAddress" msprop:Generator_ColumnPropNameInRow="Address" msprop:Generator_ColumnPropNameInTable="AddressColumn" minOccurs="0"> 
     4874                <xs:simpleType> 
     4875                  <xs:restriction base="xs:string"> 
     4876                    <xs:maxLength value="50" /> 
     4877                  </xs:restriction> 
     4878                </xs:simpleType> 
     4879              </xs:element> 
     4880              <xs:element name="City" msprop:Generator_UserColumnName="City" msprop:Generator_ColumnVarNameInTable="columnCity" msprop:Generator_ColumnPropNameInRow="City" msprop:Generator_ColumnPropNameInTable="CityColumn" minOccurs="0"> 
     4881                <xs:simpleType> 
     4882                  <xs:restriction base="xs:string"> 
     4883                    <xs:maxLength value="50" /> 
     4884                  </xs:restriction> 
     4885                </xs:simpleType> 
     4886              </xs:element> 
     4887              <xs:element name="PostalCode" msprop:Generator_UserColumnName="PostalCode" msprop:Generator_ColumnVarNameInTable="columnPostalCode" msprop:Generator_ColumnPropNameInRow="PostalCode" msprop:Generator_ColumnPropNameInTable="PostalCodeColumn" minOccurs="0"> 
     4888                <xs:simpleType> 
     4889                  <xs:restriction base="xs:string"> 
     4890                    <xs:maxLength value="20" /> 
     4891                  </xs:restriction> 
     4892                </xs:simpleType> 
     4893              </xs:element> 
     4894              <xs:element name="Country" msprop:Generator_UserColumnName="Country" msprop:Generator_ColumnVarNameInTable="columnCountry" msprop:Generator_ColumnPropNameInRow="Country" msprop:Generator_ColumnPropNameInTable="CountryColumn" minOccurs="0"> 
     4895                <xs:simpleType> 
     4896                  <xs:restriction base="xs:string"> 
     4897                    <xs:maxLength value="50" /> 
     4898                  </xs:restriction> 
     4899                </xs:simpleType> 
     4900              </xs:element> 
     4901              <xs:element name="Nip" msprop:Generator_UserColumnName="Nip" msprop:Generator_ColumnVarNameInTable="columnNip" msprop:Generator_ColumnPropNameInRow="Nip" msprop:Generator_ColumnPropNameInTable="NipColumn" minOccurs="0"> 
     4902                <xs:simpleType> 
     4903                  <xs:restriction base="xs:string"> 
     4904                    <xs:maxLength value="50" /> 
     4905                  </xs:restriction> 
     4906                </xs:simpleType> 
     4907              </xs:element> 
     4908              <xs:element name="ContactName" msprop:Generator_UserColumnName="ContactName" msprop:Generator_ColumnVarNameInTable="columnContactName" msprop:Generator_ColumnPropNameInRow="ContactName" msprop:Generator_ColumnPropNameInTable="ContactNameColumn" minOccurs="0"> 
     4909                <xs:simpleType> 
     4910                  <xs:restriction base="xs:string"> 
     4911                    <xs:maxLength value="50" /> 
     4912                  </xs:restriction> 
     4913                </xs:simpleType> 
     4914              </xs:element> 
     4915              <xs:element name="State" msprop:Generator_UserColumnName="State" msprop:Generator_ColumnVarNameInTable="columnState" msprop:Generator_ColumnPropNameInRow="State" msprop:Generator_ColumnPropNameInTable="StateColumn" minOccurs="0"> 
     4916                <xs:simpleType> 
     4917                  <xs:restriction base="xs:string"> 
     4918                    <xs:maxLength value="50" /> 
     4919                  </xs:restriction> 
     4920                </xs:simpleType> 
     4921              </xs:element> 
     4922              <xs:element name="PhoneNumber" msprop:Generator_UserColumnName="PhoneNumber" msprop:Generator_ColumnVarNameInTable="columnPhoneNumber" msprop:Generator_ColumnPropNameInRow="PhoneNumber" msprop:Generator_ColumnPropNameInTable="PhoneNumberColumn" minOccurs="0"> 
     4923                <xs:simpleType> 
     4924                  <xs:restriction base="xs:string"> 
     4925                    <xs:maxLength value="30" /> 
     4926                  </xs:restriction> 
     4927                </xs:simpleType> 
     4928              </xs:element> 
     4929              <xs:element name="FaxNumber" msprop:Generator_UserColumnName="FaxNumber" msprop:Generator_ColumnVarNameInTable="columnFaxNumber" msprop:Generator_ColumnPropNameInRow="FaxNumber" msprop:Generator_ColumnPropNameInTable="FaxNumberColumn" minOccurs="0"> 
     4930                <xs:simpleType> 
     4931                  <xs:restriction base="xs:string"> 
     4932                    <xs:maxLength value="30" /> 
     4933                  </xs:restriction> 
     4934                </xs:simpleType> 
     4935              </xs:element> 
     4936              <xs:element name="Note" msprop:Generator_UserColumnName="Note" msprop:Generator_ColumnVarNameInTable="columnNote" msprop:Generator_ColumnPropNameInRow="Note" msprop:Generator_ColumnPropNameInTable="NoteColumn" minOccurs="0"> 
     4937                <xs:simpleType> 
     4938                  <xs:restriction base="xs:string"> 
     4939                    <xs:maxLength value="200" /> 
     4940                  </xs:restriction> 
     4941                </xs:simpleType> 
     4942              </xs:element> 
     4943              <xs:element name="data" msprop:Generator_UserColumnName="data" msprop:Generator_ColumnVarNameInTable="columndata" msprop:Generator_ColumnPropNameInRow="data" msprop:Generator_ColumnPropNameInTable="dataColumn" type="xs:dateTime" minOccurs="0" /> 
     4944              <xs:element name="Adres_Fkatura" msprop:Generator_UserColumnName="Adres_Fkatura" msprop:Generator_ColumnVarNameInTable="columnAdres_Fkatura" msprop:Generator_ColumnPropNameInRow="Adres_Fkatura" msprop:Generator_ColumnPropNameInTable="Adres_FkaturaColumn" minOccurs="0"> 
     4945                <xs:simpleType> 
     4946                  <xs:restriction base="xs:string"> 
     4947                    <xs:maxLength value="200" /> 
     4948                  </xs:restriction> 
     4949                </xs:simpleType> 
     4950              </xs:element> 
     4951              <xs:element name="Adres_Kor" msprop:Generator_UserColumnName="Adres_Kor" msprop:Generator_ColumnVarNameInTable="columnAdres_Kor" msprop:Generator_ColumnPropNameInRow="Adres_Kor" msprop:Generator_ColumnPropNameInTable="Adres_KorColumn" minOccurs="0"> 
     4952                <xs:simpleType> 
     4953                  <xs:restriction base="xs:string"> 
     4954                    <xs:maxLength value="200" /> 
     4955                  </xs:restriction> 
     4956                </xs:simpleType> 
     4957              </xs:element> 
     4958              <xs:element name="Email" msprop:Generator_UserColumnName="Email" msprop:Generator_ColumnVarNameInTable="columnEmail" msprop:Generator_ColumnPropNameInRow="Email" msprop:Generator_ColumnPropNameInTable="EmailColumn" minOccurs="0"> 
     4959                <xs:simpleType> 
     4960                  <xs:restriction base="xs:string"> 
     4961                    <xs:maxLength value="50" /> 
     4962                  </xs:restriction> 
     4963                </xs:simpleType> 
     4964              </xs:element> 
     4965              <xs:element name="Aktywny" msprop:Generator_UserColumnName="Aktywny" msprop:Generator_ColumnVarNameInTable="columnAktywny" msprop:Generator_ColumnPropNameInRow="Aktywny" msprop:Generator_ColumnPropNameInTable="AktywnyColumn" type="xs:boolean" default="true" /> 
     4966              <xs:element name="Platnik_VAT" msprop:Generator_UserColumnName="Platnik_VAT" msprop:Generator_ColumnVarNameInTable="columnPlatnik_VAT" msprop:Generator_ColumnPropNameInRow="Platnik_VAT" msprop:Generator_ColumnPropNameInTable="Platnik_VATColumn" type="xs:boolean" default="true" /> 
     4967              <xs:element name="UserName" msprop:Generator_UserColumnName="UserName" msprop:Generator_ColumnVarNameInTable="columnUserName" msprop:Generator_ColumnPropNameInRow="UserName" msprop:Generator_ColumnPropNameInTable="UserNameColumn" minOccurs="0"> 
     4968                <xs:simpleType> 
     4969                  <xs:restriction base="xs:string"> 
     4970                    <xs:maxLength value="25" /> 
     4971                  </xs:restriction> 
     4972                </xs:simpleType> 
     4973              </xs:element> 
     4974              <xs:element name="http" msprop:Generator_UserColumnName="http" msprop:Generator_ColumnVarNameInTable="columnhttp" msprop:Generator_ColumnPropNameInRow="http" msprop:Generator_ColumnPropNameInTable="httpColumn" minOccurs="0"> 
     4975                <xs:simpleType> 
     4976                  <xs:restriction base="xs:string"> 
     4977                    <xs:maxLength value="60" /> 
     4978                  </xs:restriction> 
     4979                </xs:simpleType> 
     4980              </xs:element> 
     4981              <xs:element name="regon" msprop:Generator_UserColumnName="regon" msprop:Generator_ColumnVarNameInTable="columnregon" msprop:Generator_ColumnPropNameInRow="regon" msprop:Generator_ColumnPropNameInTable="regonColumn" minOccurs="0"> 
     4982                <xs:simpleType> 
     4983                  <xs:restriction base="xs:string"> 
     4984                    <xs:maxLength value="50" /> 
     4985                  </xs:restriction> 
     4986                </xs:simpleType> 
     4987              </xs:element> 
     4988              <xs:element name="VIES" msprop:Generator_UserColumnName="VIES" msprop:Generator_ColumnVarNameInTable="columnVIES" msprop:Generator_ColumnPropNameInRow="VIES" msprop:Generator_ColumnPropNameInTable="VIESColumn" type="xs:short" minOccurs="0" /> 
     4989              <xs:element name="krs" msprop:Generator_UserColumnName="krs" msprop:Generator_ColumnVarNameInTable="columnkrs" msprop:Generator_ColumnPropNameInRow="krs" msprop:Generator_ColumnPropNameInTable="krsColumn" minOccurs="0"> 
     4990                <xs:simpleType> 
     4991                  <xs:restriction base="xs:string"> 
     4992                    <xs:maxLength value="50" /> 
     4993                  </xs:restriction> 
     4994                </xs:simpleType> 
     4995              </xs:element> 
     4996              <xs:element name="Modify_User" msprop:Generator_UserColumnName="Modify_User" msprop:Generator_ColumnVarNameInTable="columnModify_User" msprop:Generator_ColumnPropNameInRow="Modify_User" msprop:Generator_ColumnPropNameInTable="Modify_UserColumn" minOccurs="0"> 
     4997                <xs:simpleType> 
     4998                  <xs:restriction base="xs:string"> 
     4999                    <xs:maxLength value="25" /> 
     5000                  </xs:restriction> 
     5001                </xs:simpleType> 
     5002              </xs:element> 
     5003              <xs:element name="Last_Modify" msprop:Generator_UserColumnName="Last_Modify" msprop:Generator_ColumnVarNameInTable="columnLast_Modify" msprop:Generator_ColumnPropNameInRow="Last_Modify" msprop:Generator_ColumnPropNameInTable="Last_ModifyColumn" type="xs:dateTime" minOccurs="0" /> 
     5004              <xs:element name="CustomerID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="CustomerID" msprop:Generator_ColumnVarNameInTable="columnCustomerID" msprop:Generator_ColumnPropNameInRow="CustomerID" msprop:Generator_ColumnPropNameInTable="CustomerIDColumn" type="xs:int" /> 
     5005              <xs:element name="FirstName" msprop:Generator_UserColumnName="FirstName" msprop:Generator_ColumnVarNameInTable="columnFirstName" msprop:Generator_ColumnPropNameInRow="FirstName" msprop:Generator_ColumnPropNameInTable="FirstNameColumn" minOccurs="0"> 
     5006                <xs:simpleType> 
     5007                  <xs:restriction base="xs:string"> 
     5008                    <xs:maxLength value="50" /> 
     5009                  </xs:restriction> 
     5010                </xs:simpleType> 
     5011              </xs:element> 
     5012              <xs:element name="nipKraj" msprop:Generator_UserColumnName="nipKraj" msprop:Generator_ColumnVarNameInTable="columnnipKraj" msprop:Generator_ColumnPropNameInRow="nipKraj" msprop:Generator_ColumnPropNameInTable="nipKrajColumn" minOccurs="0"> 
     5013                <xs:simpleType> 
     5014                  <xs:restriction base="xs:string"> 
     5015                    <xs:maxLength value="3" /> 
     5016                  </xs:restriction> 
     5017                </xs:simpleType> 
     5018              </xs:element> 
     5019              <xs:element name="kodKlienta" msprop:Generator_UserColumnName="kodKlienta" msprop:Generator_ColumnPropNameInRow="kodKlienta" msprop:Generator_ColumnVarNameInTable="columnkodKlienta" msprop:Generator_ColumnPropNameInTable="kodKlientaColumn" minOccurs="0"> 
     5020                <xs:simpleType> 
     5021                  <xs:restriction base="xs:string"> 
     5022                    <xs:maxLength value="10" /> 
     5023                  </xs:restriction> 
     5024                </xs:simpleType> 
     5025              </xs:element> 
     5026              <xs:element name="AgentExpo" msprop:Generator_UserColumnName="AgentExpo" msprop:Generator_ColumnPropNameInRow="AgentExpo" msprop:Generator_ColumnVarNameInTable="columnAgentExpo" msprop:Generator_ColumnPropNameInTable="AgentExpoColumn" type="xs:string" minOccurs="0" /> 
     5027              <xs:element name="NameInMagazine" msprop:Generator_UserColumnName="NameInMagazine" msprop:Generator_ColumnPropNameInRow="NameInMagazine" msprop:Generator_ColumnVarNameInTable="columnNameInMagazine" msprop:Generator_ColumnPropNameInTable="NameInMagazineColumn" minOccurs="0"> 
     5028                <xs:simpleType> 
     5029                  <xs:restriction base="xs:string"> 
     5030                    <xs:maxLength value="50" /> 
     5031                  </xs:restriction> 
     5032                </xs:simpleType> 
     5033              </xs:element> 
     5034            </xs:sequence> 
     5035          </xs:complexType> 
     5036        </xs:element> 
     5037        <xs:element name="REKLAMA_STRONA" msprop:Generator_UserTableName="REKLAMA_STRONA" msprop:Generator_RowDeletedName="REKLAMA_STRONARowDeleted" msprop:Generator_RowChangedName="REKLAMA_STRONARowChanged" msprop:Generator_RowClassName="REKLAMA_STRONARow" msprop:Generator_RowChangingName="REKLAMA_STRONARowChanging" msprop:Generator_RowEvArgName="REKLAMA_STRONARowChangeEvent" msprop:Generator_RowEvHandlerName="REKLAMA_STRONARowChangeEventHandler" msprop:Generator_TableClassName="REKLAMA_STRONADataTable" msprop:Generator_TableVarName="tableREKLAMA_STRONA" msprop:Generator_RowDeletingName="REKLAMA_STRONARowDeleting" msprop:Generator_TablePropName="REKLAMA_STRONA"> 
     5038          <xs:complexType> 
     5039            <xs:sequence> 
     5040              <xs:element name="ID_REKLAMA_STRONA" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ID_REKLAMA_STRONA" msprop:Generator_ColumnVarNameInTable="columnID_REKLAMA_STRONA" msprop:Generator_ColumnPropNameInRow="ID_REKLAMA_STRONA" msprop:Generator_ColumnPropNameInTable="ID_REKLAMA_STRONAColumn" type="xs:int" /> 
     5041              <xs:element name="ReklamaId" msprop:Generator_UserColumnName="ReklamaId" msprop:Generator_ColumnVarNameInTable="columnReklamaId" msprop:Generator_ColumnPropNameInRow="ReklamaId" msprop:Generator_ColumnPropNameInTable="ReklamaIdColumn" type="xs:int" /> 
     5042              <xs:element name="NR_WYDANIA" msprop:Generator_UserColumnName="NR_WYDANIA" msprop:Generator_ColumnVarNameInTable="columnNR_WYDANIA" msprop:Generator_ColumnPropNameInRow="NR_WYDANIA" msprop:Generator_ColumnPropNameInTable="NR_WYDANIAColumn" type="xs:short" /> 
     5043              <xs:element name="ID_GRZBIETU" msprop:Generator_UserColumnName="ID_GRZBIETU" msprop:Generator_ColumnVarNameInTable="columnID_GRZBIETU" msprop:Generator_ColumnPropNameInRow="ID_GRZBIETU" msprop:Generator_ColumnPropNameInTable="ID_GRZBIETUColumn" type="xs:int" minOccurs="0" /> 
     5044              <xs:element name="STRONA" msprop:Generator_UserColumnName="STRONA" msprop:Generator_ColumnVarNameInTable="columnSTRONA" msprop:Generator_ColumnPropNameInRow="STRONA" msprop:Generator_ColumnPropNameInTable="STRONAColumn" type="xs:short" /> 
     5045            </xs:sequence> 
     5046          </xs:complexType> 
     5047        </xs:element> 
     5048        <xs:element name="KLIENCI_OSOBY_DO_KONTAKTU" msprop:Generator_UserTableName="KLIENCI_OSOBY_DO_KONTAKTU" msprop:Generator_RowDeletedName="KLIENCI_OSOBY_DO_KONTAKTURowDeleted" msprop:Generator_RowChangedName="KLIENCI_OSOBY_DO_KONTAKTURowChanged" msprop:Generator_RowClassName="KLIENCI_OSOBY_DO_KONTAKTURow" msprop:Generator_RowChangingName="KLIENCI_OSOBY_DO_KONTAKTURowChanging" msprop:Generator_RowEvArgName="KLIENCI_OSOBY_DO_KONTAKTURowChangeEvent" msprop:Generator_RowEvHandlerName="KLIENCI_OSOBY_DO_KONTAKTURowChangeEventHandler" msprop:Generator_TableClassName="KLIENCI_OSOBY_DO_KONTAKTUDataTable" msprop:Generator_TableVarName="tableKLIENCI_OSOBY_DO_KONTAKTU" msprop:Generator_RowDeletingName="KLIENCI_OSOBY_DO_KONTAKTURowDeleting" msprop:Generator_TablePropName="KLIENCI_OSOBY_DO_KONTAKTU"> 
     5049          <xs:complexType> 
     5050            <xs:sequence> 
     5051              <xs:element name="id_klienci_os_kontakt" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="id_klienci_os_kontakt" msprop:Generator_ColumnVarNameInTable="columnid_klienci_os_kontakt" msprop:Generator_ColumnPropNameInRow="id_klienci_os_kontakt" msprop:Generator_ColumnPropNameInTable="id_klienci_os_kontaktColumn" type="xs:int" /> 
     5052              <xs:element name="customerid" msprop:Generator_UserColumnName="customerid" msprop:Generator_ColumnVarNameInTable="columncustomerid" msprop:Generator_ColumnPropNameInRow="customerid" msprop:Generator_ColumnPropNameInTable="customeridColumn" type="xs:int" /> 
     5053              <xs:element name="Imie_Nazwisko" msprop:Generator_UserColumnName="Imie_Nazwisko" msprop:Generator_ColumnVarNameInTable="columnImie_Nazwisko" msprop:Generator_ColumnPropNameInRow="Imie_Nazwisko" msprop:Generator_ColumnPropNameInTable="Imie_NazwiskoColumn" minOccurs="0"> 
     5054                <xs:simpleType> 
     5055                  <xs:restriction base="xs:string"> 
     5056                    <xs:maxLength value="50" /> 
     5057                  </xs:restriction> 
     5058                </xs:simpleType> 
     5059              </xs:element> 
     5060              <xs:element name="stanowisko" msprop:Generator_UserColumnName="stanowisko" msprop:Generator_ColumnVarNameInTable="columnstanowisko" msprop:Generator_ColumnPropNameInRow="stanowisko" msprop:Generator_ColumnPropNameInTable="stanowiskoColumn" minOccurs="0"> 
     5061                <xs:simpleType> 
     5062                  <xs:restriction base="xs:string"> 
     5063                    <xs:maxLength value="50" /> 
     5064                  </xs:restriction> 
     5065                </xs:simpleType> 
     5066              </xs:element> 
     5067              <xs:element name="Tel" msprop:Generator_UserColumnName="Tel" msprop:Generator_ColumnVarNameInTable="columnTel" msprop:Generator_ColumnPropNameInRow="Tel" msprop:Generator_ColumnPropNameInTable="TelColumn" minOccurs="0"> 
     5068                <xs:simpleType> 
     5069                  <xs:restriction base="xs:string"> 
     5070                    <xs:maxLength value="50" /> 
     5071                  </xs:restriction> 
     5072                </xs:simpleType> 
     5073              </xs:element> 
     5074              <xs:element name="email" msprop:Generator_UserColumnName="email" msprop:Generator_ColumnVarNameInTable="columnemail" msprop:Generator_ColumnPropNameInRow="email" msprop:Generator_ColumnPropNameInTable="emailColumn" minOccurs="0"> 
     5075                <xs:simpleType> 
     5076                  <xs:restriction base="xs:string"> 
     5077                    <xs:maxLength value="50" /> 
     5078                  </xs:restriction> 
     5079                </xs:simpleType> 
     5080              </xs:element> 
     5081              <xs:element name="opis" msprop:Generator_UserColumnName="opis" msprop:Generator_ColumnVarNameInTable="columnopis" msprop:Generator_ColumnPropNameInRow="opis" msprop:Generator_ColumnPropNameInTable="opisColumn" minOccurs="0"> 
     5082                <xs:simpleType> 
     5083                  <xs:restriction base="xs:string"> 
     5084                    <xs:maxLength value="50" /> 
     5085                  </xs:restriction> 
     5086                </xs:simpleType> 
     5087              </xs:element> 
     5088            </xs:sequence> 
     5089          </xs:complexType> 
     5090        </xs:element> 
     5091        <xs:element name="PRODUKCJA" msprop:Generator_UserTableName="PRODUKCJA" msprop:Generator_RowDeletedName="PRODUKCJARowDeleted" msprop:Generator_RowChangedName="PRODUKCJARowChanged" msprop:Generator_RowClassName="PRODUKCJARow" msprop:Generator_RowChangingName="PRODUKCJARowChanging" msprop:Generator_RowEvArgName="PRODUKCJARowChangeEvent" msprop:Generator_RowEvHandlerName="PRODUKCJARowChangeEventHandler" msprop:Generator_TableClassName="PRODUKCJADataTable" msprop:Generator_TableVarName="tablePRODUKCJA" msprop:Generator_RowDeletingName="PRODUKCJARowDeleting" msprop:Generator_TablePropName="PRODUKCJA"> 
     5092          <xs:complexType> 
     5093            <xs:sequence> 
     5094              <xs:element name="ID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ID" msprop:Generator_ColumnPropNameInRow="ID" msprop:Generator_ColumnVarNameInTable="columnID" msprop:Generator_ColumnPropNameInTable="IDColumn" type="xs:int" /> 
     5095              <xs:element name="ReklamaId" msprop:Generator_UserColumnName="ReklamaId" msprop:Generator_ColumnPropNameInRow="ReklamaId" msprop:Generator_ColumnVarNameInTable="columnReklamaId" msprop:Generator_ColumnPropNameInTable="ReklamaIdColumn" type="xs:int" minOccurs="0" /> 
     5096              <xs:element name="TYP_PROJEKTU" msprop:Generator_UserColumnName="TYP_PROJEKTU" msprop:Generator_ColumnPropNameInRow="TYP_PROJEKTU" msprop:Generator_ColumnVarNameInTable="columnTYP_PROJEKTU" msprop:Generator_ColumnPropNameInTable="TYP_PROJEKTUColumn" default="NOWY" minOccurs="0"> 
     5097                <xs:simpleType> 
     5098                  <xs:restriction base="xs:string"> 
     5099                    <xs:maxLength value="50" /> 
     5100                  </xs:restriction> 
     5101                </xs:simpleType> 
     5102              </xs:element> 
     5103              <xs:element name="NAZWA_ZAMOWIENIA" msprop:Generator_UserColumnName="NAZWA_ZAMOWIENIA" msprop:Generator_ColumnPropNameInRow="NAZWA_ZAMOWIENIA" msprop:Generator_ColumnVarNameInTable="columnNAZWA_ZAMOWIENIA" msprop:Generator_ColumnPropNameInTable="NAZWA_ZAMOWIENIAColumn" minOccurs="0"> 
     5104                <xs:simpleType> 
     5105                  <xs:restriction base="xs:string"> 
     5106                    <xs:maxLength value="50" /> 
     5107                  </xs:restriction> 
     5108                </xs:simpleType> 
     5109              </xs:element> 
     5110              <xs:element name="STAN" msprop:Generator_UserColumnName="STAN" msprop:Generator_ColumnPropNameInRow="STAN" msprop:Generator_ColumnVarNameInTable="columnSTAN" msprop:Generator_ColumnPropNameInTable="STANColumn" default="ZAMAWIAM"> 
     5111                <xs:simpleType> 
     5112                  <xs:restriction base="xs:string"> 
     5113                    <xs:maxLength value="20" /> 
     5114                  </xs:restriction> 
     5115                </xs:simpleType> 
     5116              </xs:element> 
     5117              <xs:element name="AGENT" msprop:Generator_UserColumnName="AGENT" msprop:Generator_ColumnPropNameInRow="AGENT" msprop:Generator_ColumnVarNameInTable="columnAGENT" msprop:Generator_ColumnPropNameInTable="AGENTColumn" minOccurs="0"> 
     5118                <xs:simpleType> 
     5119                  <xs:restriction base="xs:string"> 
     5120                    <xs:maxLength value="50" /> 
     5121                  </xs:restriction> 
     5122                </xs:simpleType> 
     5123              </xs:element> 
     5124              <xs:element name="DATA_AGENT" msprop:Generator_UserColumnName="DATA_AGENT" msprop:Generator_ColumnPropNameInRow="DATA_AGENT" msprop:Generator_ColumnVarNameInTable="columnDATA_AGENT" msprop:Generator_ColumnPropNameInTable="DATA_AGENTColumn" type="xs:dateTime" minOccurs="0" /> 
     5125              <xs:element name="ZAMAWIAM_NA" msprop:Generator_UserColumnName="ZAMAWIAM_NA" msprop:Generator_ColumnPropNameInRow="ZAMAWIAM_NA" msprop:Generator_ColumnVarNameInTable="columnZAMAWIAM_NA" msprop:Generator_ColumnPropNameInTable="ZAMAWIAM_NAColumn" type="xs:dateTime" minOccurs="0" /> 
     5126              <xs:element name="PRIORYTET" msprop:Generator_UserColumnName="PRIORYTET" msprop:Generator_ColumnPropNameInRow="PRIORYTET" msprop:Generator_ColumnVarNameInTable="columnPRIORYTET" msprop:Generator_ColumnPropNameInTable="PRIORYTETColumn" default="NORMALNY" minOccurs="0"> 
     5127                <xs:simpleType> 
     5128                  <xs:restriction base="xs:string"> 
     5129                    <xs:maxLength value="50" /> 
     5130                  </xs:restriction> 
     5131                </xs:simpleType> 
     5132              </xs:element> 
     5133              <xs:element name="PRODUKCJA" msprop:Generator_UserColumnName="PRODUKCJA" msprop:Generator_ColumnPropNameInRow="PRODUKCJA" msprop:Generator_ColumnVarNameInTable="columnPRODUKCJA" msprop:Generator_ColumnPropNameInTable="PRODUKCJAColumn" minOccurs="0"> 
     5134                <xs:simpleType> 
     5135                  <xs:restriction base="xs:string"> 
     5136                    <xs:maxLength value="50" /> 
     5137                  </xs:restriction> 
     5138                </xs:simpleType> 
     5139              </xs:element> 
     5140              <xs:element name="DATA_PRODUKCJA" msprop:Generator_UserColumnName="DATA_PRODUKCJA" msprop:Generator_ColumnPropNameInRow="DATA_PRODUKCJA" msprop:Generator_ColumnVarNameInTable="columnDATA_PRODUKCJA" msprop:Generator_ColumnPropNameInTable="DATA_PRODUKCJAColumn" type="xs:dateTime" minOccurs="0" /> 
     5141              <xs:element name="DTP" msprop:Generator_UserColumnName="DTP" msprop:Generator_ColumnPropNameInRow="DTP" msprop:Generator_ColumnVarNameInTable="columnDTP" msprop:Generator_ColumnPropNameInTable="DTPColumn" minOccurs="0"> 
     5142                <xs:simpleType> 
     5143                  <xs:restriction base="xs:string"> 
     5144                    <xs:maxLength value="50" /> 
     5145                  </xs:restriction> 
     5146                </xs:simpleType> 
     5147              </xs:element> 
     5148              <xs:element name="DATA_DTP" msprop:Generator_UserColumnName="DATA_DTP" msprop:Generator_ColumnPropNameInRow="DATA_DTP" msprop:Generator_ColumnVarNameInTable="columnDATA_DTP" msprop:Generator_ColumnPropNameInTable="DATA_DTPColumn" type="xs:dateTime" minOccurs="0" /> 
     5149              <xs:element name="KOREKTA" msprop:Generator_UserColumnName="KOREKTA" msprop:Generator_ColumnPropNameInRow="KOREKTA" msprop:Generator_ColumnVarNameInTable="columnKOREKTA" msprop:Generator_ColumnPropNameInTable="KOREKTAColumn" minOccurs="0"> 
     5150                <xs:simpleType> 
     5151                  <xs:restriction base="xs:string"> 
     5152                    <xs:maxLength value="50" /> 
     5153                  </xs:restriction> 
     5154                </xs:simpleType> 
     5155              </xs:element> 
     5156              <xs:element name="DATA_KOREKTA" msprop:Generator_UserColumnName="DATA_KOREKTA" msprop:Generator_ColumnPropNameInRow="DATA_KOREKTA" msprop:Generator_ColumnVarNameInTable="columnDATA_KOREKTA" msprop:Generator_ColumnPropNameInTable="DATA_KOREKTAColumn" type="xs:dateTime" minOccurs="0" /> 
     5157              <xs:element name="DTP_PO_KOR" msprop:Generator_UserColumnName="DTP_PO_KOR" msprop:Generator_ColumnPropNameInRow="DTP_PO_KOR" msprop:Generator_ColumnVarNameInTable="columnDTP_PO_KOR" msprop:Generator_ColumnPropNameInTable="DTP_PO_KORColumn" minOccurs="0"> 
     5158                <xs:simpleType> 
     5159                  <xs:restriction base="xs:string"> 
     5160                    <xs:maxLength value="50" /> 
     5161                  </xs:restriction> 
     5162                </xs:simpleType> 
     5163              </xs:element> 
     5164              <xs:element name="DATA_DTP_PO_KOR" msprop:Generator_UserColumnName="DATA_DTP_PO_KOR" msprop:Generator_ColumnPropNameInRow="DATA_DTP_PO_KOR" msprop:Generator_ColumnVarNameInTable="columnDATA_DTP_PO_KOR" msprop:Generator_ColumnPropNameInTable="DATA_DTP_PO_KORColumn" type="xs:dateTime" minOccurs="0" /> 
     5165              <xs:element name="DATA_AKCEPTACJI" msprop:Generator_UserColumnName="DATA_AKCEPTACJI" msprop:Generator_ColumnPropNameInRow="DATA_AKCEPTACJI" msprop:Generator_ColumnVarNameInTable="columnDATA_AKCEPTACJI" msprop:Generator_ColumnPropNameInTable="DATA_AKCEPTACJIColumn" type="xs:dateTime" minOccurs="0" /> 
     5166              <xs:element name="OCENA" msprop:Generator_UserColumnName="OCENA" msprop:Generator_ColumnPropNameInRow="OCENA" msprop:Generator_ColumnVarNameInTable="columnOCENA" msprop:Generator_ColumnPropNameInTable="OCENAColumn" type="xs:short" default="0" /> 
     5167              <xs:element name="OPIS" msprop:Generator_UserColumnName="OPIS" msprop:Generator_ColumnPropNameInRow="OPIS" msprop:Generator_ColumnVarNameInTable="columnOPIS" msprop:Generator_ColumnPropNameInTable="OPISColumn" minOccurs="0"> 
     5168                <xs:simpleType> 
     5169                  <xs:restriction base="xs:string"> 
     5170                    <xs:maxLength value="1024" /> 
     5171                  </xs:restriction> 
     5172                </xs:simpleType> 
     5173              </xs:element> 
     5174              <xs:element name="PLIK" msprop:Generator_UserColumnName="PLIK" msprop:Generator_ColumnPropNameInRow="PLIK" msprop:Generator_ColumnVarNameInTable="columnPLIK" msprop:Generator_ColumnPropNameInTable="PLIKColumn" minOccurs="0"> 
     5175                <xs:simpleType> 
     5176                  <xs:restriction base="xs:string"> 
     5177                    <xs:maxLength value="200" /> 
     5178                  </xs:restriction> 
     5179                </xs:simpleType> 
     5180              </xs:element> 
     5181              <xs:element name="uwagi" msprop:Generator_UserColumnName="uwagi" msprop:Generator_ColumnPropNameInRow="uwagi" msprop:Generator_ColumnVarNameInTable="columnuwagi" msprop:Generator_ColumnPropNameInTable="uwagiColumn" minOccurs="0"> 
     5182                <xs:simpleType> 
     5183                  <xs:restriction base="xs:string"> 
     5184                    <xs:maxLength value="200" /> 
     5185                  </xs:restriction> 
     5186                </xs:simpleType> 
     5187              </xs:element> 
     5188              <xs:element name="DataEmisji" msprop:Generator_UserColumnName="DataEmisji" msprop:Generator_ColumnPropNameInRow="DataEmisji" msprop:Generator_ColumnVarNameInTable="columnDataEmisji" msprop:Generator_ColumnPropNameInTable="DataEmisjiColumn" minOccurs="0"> 
     5189                <xs:simpleType> 
     5190                  <xs:restriction base="xs:string"> 
     5191                    <xs:maxLength value="50" /> 
     5192                  </xs:restriction> 
     5193                </xs:simpleType> 
     5194              </xs:element> 
     5195              <xs:element name="Moduł" msprop:Generator_UserColumnName="Moduł" msprop:Generator_ColumnPropNameInRow="Moduł" msprop:Generator_ColumnVarNameInTable="columnModuł" msprop:Generator_ColumnPropNameInTable="ModułColumn" minOccurs="0"> 
     5196                <xs:simpleType> 
     5197                  <xs:restriction base="xs:string"> 
     5198                    <xs:maxLength value="20" /> 
     5199                  </xs:restriction> 
     5200                </xs:simpleType> 
     5201              </xs:element> 
     5202              <xs:element name="szer" msprop:Generator_UserColumnName="szer" msprop:Generator_ColumnPropNameInRow="szer" msprop:Generator_ColumnVarNameInTable="columnszer" msprop:Generator_ColumnPropNameInTable="szerColumn" type="xs:short" minOccurs="0" /> 
     5203              <xs:element name="wys" msprop:Generator_UserColumnName="wys" msprop:Generator_ColumnPropNameInRow="wys" msprop:Generator_ColumnVarNameInTable="columnwys" msprop:Generator_ColumnPropNameInTable="wysColumn" type="xs:short" minOccurs="0" /> 
     5204              <xs:element name="lokalizacja" msprop:Generator_UserColumnName="lokalizacja" msprop:Generator_ColumnPropNameInRow="lokalizacja" msprop:Generator_ColumnVarNameInTable="columnlokalizacja" msprop:Generator_ColumnPropNameInTable="lokalizacjaColumn" minOccurs="0"> 
     5205                <xs:simpleType> 
     5206                  <xs:restriction base="xs:string"> 
     5207                    <xs:maxLength value="100" /> 
     5208                  </xs:restriction> 
     5209                </xs:simpleType> 
     5210              </xs:element> 
     5211              <xs:element name="kolor" msprop:Generator_UserColumnName="kolor" msprop:Generator_ColumnPropNameInRow="kolor" msprop:Generator_ColumnVarNameInTable="columnkolor" msprop:Generator_ColumnPropNameInTable="kolorColumn" minOccurs="0"> 
     5212                <xs:simpleType> 
     5213                  <xs:restriction base="xs:string"> 
     5214                    <xs:maxLength value="10" /> 
     5215                  </xs:restriction> 
     5216                </xs:simpleType> 
     5217              </xs:element> 
     5218              <xs:element name="szkic" msprop:Generator_UserColumnName="szkic" msprop:Generator_ColumnPropNameInRow="szkic" msprop:Generator_ColumnVarNameInTable="columnszkic" msprop:Generator_ColumnPropNameInTable="szkicColumn" minOccurs="0"> 
     5219                <xs:simpleType> 
     5220                  <xs:restriction base="xs:string"> 
     5221                    <xs:maxLength value="50" /> 
     5222                  </xs:restriction> 
     5223                </xs:simpleType> 
     5224              </xs:element> 
     5225              <xs:element name="kurier" msprop:Generator_UserColumnName="kurier" msprop:Generator_ColumnPropNameInRow="kurier" msprop:Generator_ColumnVarNameInTable="columnkurier" msprop:Generator_ColumnPropNameInTable="kurierColumn" minOccurs="0"> 
     5226                <xs:simpleType> 
     5227                  <xs:restriction base="xs:string"> 
     5228                    <xs:maxLength value="50" /> 
     5229                  </xs:restriction> 
     5230                </xs:simpleType> 
     5231              </xs:element> 
     5232              <xs:element name="path_to_material" msprop:Generator_UserColumnName="path_to_material" msprop:Generator_ColumnPropNameInRow="path_to_material" msprop:Generator_ColumnVarNameInTable="columnpath_to_material" msprop:Generator_ColumnPropNameInTable="path_to_materialColumn" minOccurs="0"> 
     5233                <xs:simpleType> 
     5234                  <xs:restriction base="xs:string"> 
     5235                    <xs:maxLength value="100" /> 
     5236                  </xs:restriction> 
     5237                </xs:simpleType> 
     5238              </xs:element> 
     5239            </xs:sequence> 
     5240          </xs:complexType> 
     5241        </xs:element> 
     5242        <xs:element name="FAKTURY" msprop:Generator_UserTableName="FAKTURY" msprop:Generator_RowDeletedName="FAKTURYRowDeleted" msprop:Generator_RowChangedName="FAKTURYRowChanged" msprop:Generator_RowClassName="FAKTURYRow" msprop:Generator_RowChangingName="FAKTURYRowChanging" msprop:Generator_RowEvArgName="FAKTURYRowChangeEvent" msprop:Generator_RowEvHandlerName="FAKTURYRowChangeEventHandler" msprop:Generator_TableClassName="FAKTURYDataTable" msprop:Generator_TableVarName="tableFAKTURY" msprop:Generator_RowDeletingName="FAKTURYRowDeleting" msprop:Generator_TablePropName="FAKTURY"> 
     5243          <xs:complexType> 
     5244            <xs:sequence> 
     5245              <xs:element name="ID_FAKTURY" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ID_FAKTURY" msprop:Generator_ColumnVarNameInTable="columnID_FAKTURY" msprop:Generator_ColumnPropNameInRow="ID_FAKTURY" msprop:Generator_ColumnPropNameInTable="ID_FAKTURYColumn" type="xs:int" /> 
     5246              <xs:element name="NUMER" msprop:Generator_UserColumnName="NUMER" msprop:Generator_ColumnVarNameInTable="columnNUMER" msprop:Generator_ColumnPropNameInRow="NUMER" msprop:Generator_ColumnPropNameInTable="NUMERColumn" type="xs:int" minOccurs="0" /> 
     5247              <xs:element name="NUMER_ROZ" msprop:Generator_UserColumnName="NUMER_ROZ" msprop:Generator_ColumnVarNameInTable="columnNUMER_ROZ" msprop:Generator_ColumnPropNameInRow="NUMER_ROZ" msprop:Generator_ColumnPropNameInTable="NUMER_ROZColumn" minOccurs="0"> 
     5248                <xs:simpleType> 
     5249                  <xs:restriction base="xs:string"> 
     5250                    <xs:maxLength value="8" /> 
     5251                  </xs:restriction> 
     5252                </xs:simpleType> 
     5253              </xs:element> 
     5254              <xs:element name="NUMER_ROK" msprop:Generator_UserColumnName="NUMER_ROK" msprop:Generator_ColumnVarNameInTable="columnNUMER_ROK" msprop:Generator_ColumnPropNameInRow="NUMER_ROK" msprop:Generator_ColumnPropNameInTable="NUMER_ROKColumn" type="xs:int" minOccurs="0" /> 
     5255              <xs:element name="DATA_WYSTAWIENIA" msprop:Generator_UserColumnName="DATA_WYSTAWIENIA" msprop:Generator_ColumnVarNameInTable="columnDATA_WYSTAWIENIA" msprop:Generator_ColumnPropNameInRow="DATA_WYSTAWIENIA" msprop:Generator_ColumnPropNameInTable="DATA_WYSTAWIENIAColumn" type="xs:dateTime" minOccurs="0" /> 
     5256              <xs:element name="MIEJSCOWOSC_WYSTAWIENIA" msprop:Generator_UserColumnName="MIEJSCOWOSC_WYSTAWIENIA" msprop:Generator_ColumnVarNameInTable="columnMIEJSCOWOSC_WYSTAWIENIA" msprop:Generator_ColumnPropNameInRow="MIEJSCOWOSC_WYSTAWIENIA" msprop:Generator_ColumnPropNameInTable="MIEJSCOWOSC_WYSTAWIENIAColumn" minOccurs="0"> 
     5257                <xs:simpleType> 
     5258                  <xs:restriction base="xs:string"> 
     5259                    <xs:maxLength value="30" /> 
     5260                  </xs:restriction> 
     5261                </xs:simpleType> 
     5262              </xs:element> 
     5263              <xs:element name="ID_SPRZEDAWCY" msprop:Generator_UserColumnName="ID_SPRZEDAWCY" msprop:Generator_ColumnVarNameInTable="columnID_SPRZEDAWCY" msprop:Generator_ColumnPropNameInRow="ID_SPRZEDAWCY" msprop:Generator_ColumnPropNameInTable="ID_SPRZEDAWCYColumn" type="xs:int" minOccurs="0" /> 
     5264              <xs:element name="ID_NABYWCY" msprop:Generator_UserColumnName="ID_NABYWCY" msprop:Generator_ColumnVarNameInTable="columnID_NABYWCY" msprop:Generator_ColumnPropNameInRow="ID_NABYWCY" msprop:Generator_ColumnPropNameInTable="ID_NABYWCYColumn" type="xs:int" minOccurs="0" /> 
     5265              <xs:element name="DATA_SPRZEDAZY" msprop:Generator_UserColumnName="DATA_SPRZEDAZY" msprop:Generator_ColumnVarNameInTable="columnDATA_SPRZEDAZY" msprop:Generator_ColumnPropNameInRow="DATA_SPRZEDAZY" msprop:Generator_ColumnPropNameInTable="DATA_SPRZEDAZYColumn" type="xs:dateTime" minOccurs="0" /> 
     5266              <xs:element name="PODPIS_WYSTAWIL" msprop:Generator_UserColumnName="PODPIS_WYSTAWIL" msprop:Generator_ColumnVarNameInTable="columnPODPIS_WYSTAWIL" msprop:Generator_ColumnPropNameInRow="PODPIS_WYSTAWIL" msprop:Generator_ColumnPropNameInTable="PODPIS_WYSTAWILColumn" minOccurs="0"> 
     5267                <xs:simpleType> 
     5268                  <xs:restriction base="xs:string"> 
     5269                    <xs:maxLength value="30" /> 
     5270                  </xs:restriction> 
     5271                </xs:simpleType> 
     5272              </xs:element> 
     5273              <xs:element name="PODPIS_ODEBRAL" msprop:Generator_UserColumnName="PODPIS_ODEBRAL" msprop:Generator_ColumnVarNameInTable="columnPODPIS_ODEBRAL" msprop:Generator_ColumnPropNameInRow="PODPIS_ODEBRAL" msprop:Generator_ColumnPropNameInTable="PODPIS_ODEBRALColumn" minOccurs="0"> 
     5274                <xs:simpleType> 
     5275                  <xs:restriction base="xs:string"> 
     5276                    <xs:maxLength value="30" /> 
     5277                  </xs:restriction> 
     5278                </xs:simpleType> 
     5279              </xs:element> 
     5280              <xs:element name="opis" msprop:Generator_UserColumnName="opis" msprop:Generator_ColumnVarNameInTable="columnopis" msprop:Generator_ColumnPropNameInRow="opis" msprop:Generator_ColumnPropNameInTable="opisColumn" minOccurs="0"> 
     5281                <xs:simpleType> 
     5282                  <xs:restriction base="xs:string"> 
     5283                    <xs:maxLength value="1073741823" /> 
     5284                  </xs:restriction> 
     5285                </xs:simpleType> 
     5286              </xs:element> 
     5287              <xs:element name="SPOSOB_ZAPLATY" msprop:Generator_UserColumnName="SPOSOB_ZAPLATY" msprop:Generator_ColumnVarNameInTable="columnSPOSOB_ZAPLATY" msprop:Generator_ColumnPropNameInRow="SPOSOB_ZAPLATY" msprop:Generator_ColumnPropNameInTable="SPOSOB_ZAPLATYColumn" minOccurs="0"> 
     5288                <xs:simpleType> 
     5289                  <xs:restriction base="xs:string"> 
     5290                    <xs:maxLength value="20" /> 
     5291                  </xs:restriction> 
     5292                </xs:simpleType> 
     5293              </xs:element> 
     5294              <xs:element name="TERMIN_ZAPLATY" msprop:Generator_UserColumnName="TERMIN_ZAPLATY" msprop:Generator_ColumnVarNameInTable="columnTERMIN_ZAPLATY" msprop:Generator_ColumnPropNameInRow="TERMIN_ZAPLATY" msprop:Generator_ColumnPropNameInTable="TERMIN_ZAPLATYColumn" type="xs:dateTime" minOccurs="0" /> 
     5295              <xs:element name="ZAPLACONO" msprop:Generator_UserColumnName="ZAPLACONO" msprop:Generator_ColumnVarNameInTable="columnZAPLACONO" msprop:Generator_ColumnPropNameInRow="ZAPLACONO" msprop:Generator_ColumnPropNameInTable="ZAPLACONOColumn" type="xs:boolean" minOccurs="0" /> 
     5296              <xs:element name="BYL_WYDRUK" msprop:Generator_UserColumnName="BYL_WYDRUK" msprop:Generator_ColumnVarNameInTable="columnBYL_WYDRUK" msprop:Generator_ColumnPropNameInRow="BYL_WYDRUK" msprop:Generator_ColumnPropNameInTable="BYL_WYDRUKColumn" type="xs:boolean" minOccurs="0" /> 
     5297              <xs:element name="NABYWCA_ADRES" msprop:Generator_UserColumnName="NABYWCA_ADRES" msprop:Generator_ColumnVarNameInTable="columnNABYWCA_ADRES" msprop:Generator_ColumnPropNameInRow="NABYWCA_ADRES" msprop:Generator_ColumnPropNameInTable="NABYWCA_ADRESColumn" minOccurs="0"> 
     5298                <xs:simpleType> 
     5299                  <xs:restriction base="xs:string"> 
     5300                    <xs:maxLength value="1073741823" /> 
     5301                  </xs:restriction> 
     5302                </xs:simpleType> 
     5303              </xs:element> 
     5304              <xs:element name="SPRZEDAWCA_ADRES" msprop:Generator_UserColumnName="SPRZEDAWCA_ADRES" msprop:Generator_ColumnVarNameInTable="columnSPRZEDAWCA_ADRES" msprop:Generator_ColumnPropNameInRow="SPRZEDAWCA_ADRES" msprop:Generator_ColumnPropNameInTable="SPRZEDAWCA_ADRESColumn" minOccurs="0"> 
     5305                <xs:simpleType> 
     5306                  <xs:restriction base="xs:string"> 
     5307                    <xs:maxLength value="1073741823" /> 
     5308                  </xs:restriction> 
     5309                </xs:simpleType> 
     5310              </xs:element> 
     5311              <xs:element name="SPRZEDAWCA_NIP" msprop:Generator_UserColumnName="SPRZEDAWCA_NIP" msprop:Generator_ColumnVarNameInTable="columnSPRZEDAWCA_NIP" msprop:Generator_ColumnPropNameInRow="SPRZEDAWCA_NIP" msprop:Generator_ColumnPropNameInTable="SPRZEDAWCA_NIPColumn" minOccurs="0"> 
     5312                <xs:simpleType> 
     5313                  <xs:restriction base="xs:string"> 
     5314                    <xs:maxLength value="50" /> 
     5315                  </xs:restriction> 
     5316                </xs:simpleType> 
     5317              </xs:element> 
     5318              <xs:element name="NABYWCA_NIP" msprop:Generator_UserColumnName="NABYWCA_NIP" msprop:Generator_ColumnVarNameInTable="columnNABYWCA_NIP" msprop:Generator_ColumnPropNameInRow="NABYWCA_NIP" msprop:Generator_ColumnPropNameInTable="NABYWCA_NIPColumn" minOccurs="0"> 
     5319                <xs:simpleType> 
     5320                  <xs:restriction base="xs:string"> 
     5321                    <xs:maxLength value="50" /> 
     5322                  </xs:restriction> 
     5323                </xs:simpleType> 
     5324              </xs:element> 
     5325              <xs:element name="FAKTURA_TYP" msprop:Generator_UserColumnName="FAKTURA_TYP" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_TYP" msprop:Generator_ColumnPropNameInRow="FAKTURA_TYP" msprop:Generator_ColumnPropNameInTable="FAKTURA_TYPColumn" type="xs:short" minOccurs="0" /> 
     5326              <xs:element name="FAKTURA_PODTYP" msprop:Generator_UserColumnName="FAKTURA_PODTYP" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_PODTYP" msprop:Generator_ColumnPropNameInRow="FAKTURA_PODTYP" msprop:Generator_ColumnPropNameInTable="FAKTURA_PODTYPColumn" type="xs:short" minOccurs="0" /> 
     5327              <xs:element name="ID_KONTA" msprop:Generator_UserColumnName="ID_KONTA" msprop:Generator_ColumnVarNameInTable="columnID_KONTA" msprop:Generator_ColumnPropNameInRow="ID_KONTA" msprop:Generator_ColumnPropNameInTable="ID_KONTAColumn" type="xs:short" minOccurs="0" /> 
     5328              <xs:element name="EKSPORT" msprop:Generator_UserColumnName="EKSPORT" msprop:Generator_ColumnVarNameInTable="columnEKSPORT" msprop:Generator_ColumnPropNameInRow="EKSPORT" msprop:Generator_ColumnPropNameInTable="EKSPORTColumn" type="xs:boolean" default="false" /> 
     5329              <xs:element name="EXPORTED" msprop:Generator_UserColumnName="EXPORTED" msprop:Generator_ColumnVarNameInTable="columnEXPORTED" msprop:Generator_ColumnPropNameInRow="EXPORTED" msprop:Generator_ColumnPropNameInTable="EXPORTEDColumn" type="xs:boolean" default="false" /> 
     5330              <xs:element name="ID_TYTUL" msprop:Generator_UserColumnName="ID_TYTUL" msprop:Generator_ColumnVarNameInTable="columnID_TYTUL" msprop:Generator_ColumnPropNameInRow="ID_TYTUL" msprop:Generator_ColumnPropNameInTable="ID_TYTULColumn" type="xs:short" minOccurs="0" /> 
     5331              <xs:element name="EXPORTED_DATA" msprop:Generator_UserColumnName="EXPORTED_DATA" msprop:Generator_ColumnVarNameInTable="columnEXPORTED_DATA" msprop:Generator_ColumnPropNameInRow="EXPORTED_DATA" msprop:Generator_ColumnPropNameInTable="EXPORTED_DATAColumn" type="xs:dateTime" minOccurs="0" /> 
     5332              <xs:element name="suma_zaplat" msprop:Generator_UserColumnName="suma_zaplat" msprop:Generator_ColumnVarNameInTable="columnsuma_zaplat" msprop:Generator_ColumnPropNameInRow="suma_zaplat" msprop:Generator_ColumnPropNameInTable="suma_zaplatColumn" type="xs:decimal" minOccurs="0" /> 
     5333              <xs:element name="ID_FK_KOR" msprop:Generator_UserColumnName="ID_FK_KOR" msprop:Generator_ColumnVarNameInTable="columnID_FK_KOR" msprop:Generator_ColumnPropNameInRow="ID_FK_KOR" msprop:Generator_ColumnPropNameInTable="ID_FK_KORColumn" type="xs:int" minOccurs="0" /> 
     5334              <xs:element name="zaplata_data" msprop:Generator_UserColumnName="zaplata_data" msprop:Generator_ColumnVarNameInTable="columnzaplata_data" msprop:Generator_ColumnPropNameInRow="zaplata_data" msprop:Generator_ColumnPropNameInTable="zaplata_dataColumn" type="xs:dateTime" minOccurs="0" /> 
     5335              <xs:element name="zaplata_opis" msprop:Generator_UserColumnName="zaplata_opis" msprop:Generator_ColumnVarNameInTable="columnzaplata_opis" msprop:Generator_ColumnPropNameInRow="zaplata_opis" msprop:Generator_ColumnPropNameInTable="zaplata_opisColumn" minOccurs="0"> 
     5336                <xs:simpleType> 
     5337                  <xs:restriction base="xs:string"> 
     5338                    <xs:maxLength value="50" /> 
     5339                  </xs:restriction> 
     5340                </xs:simpleType> 
     5341              </xs:element> 
     5342              <xs:element name="Zaliczka_Brutto" msprop:Generator_UserColumnName="Zaliczka_Brutto" msprop:Generator_ColumnVarNameInTable="columnZaliczka_Brutto" msprop:Generator_ColumnPropNameInRow="Zaliczka_Brutto" msprop:Generator_ColumnPropNameInTable="Zaliczka_BruttoColumn" type="xs:decimal" minOccurs="0" /> 
     5343              <xs:element name="Zaliczka_Data" msprop:Generator_UserColumnName="Zaliczka_Data" msprop:Generator_ColumnVarNameInTable="columnZaliczka_Data" msprop:Generator_ColumnPropNameInRow="Zaliczka_Data" msprop:Generator_ColumnPropNameInTable="Zaliczka_DataColumn" type="xs:dateTime" minOccurs="0" /> 
     5344              <xs:element name="waluta_brutto" msprop:Generator_UserColumnName="waluta_brutto" msprop:Generator_ColumnVarNameInTable="columnwaluta_brutto" msprop:Generator_ColumnPropNameInRow="waluta_brutto" msprop:Generator_ColumnPropNameInTable="waluta_bruttoColumn" type="xs:double" minOccurs="0" /> 
     5345              <xs:element name="waluta_miano" msprop:Generator_UserColumnName="waluta_miano" msprop:Generator_ColumnVarNameInTable="columnwaluta_miano" msprop:Generator_ColumnPropNameInRow="waluta_miano" msprop:Generator_ColumnPropNameInTable="waluta_mianoColumn" minOccurs="0"> 
     5346                <xs:simpleType> 
     5347                  <xs:restriction base="xs:string"> 
     5348                    <xs:maxLength value="4" /> 
     5349                  </xs:restriction> 
     5350                </xs:simpleType> 
     5351              </xs:element> 
     5352              <xs:element name="waluta_kurs" msprop:Generator_UserColumnName="waluta_kurs" msprop:Generator_ColumnVarNameInTable="columnwaluta_kurs" msprop:Generator_ColumnPropNameInRow="waluta_kurs" msprop:Generator_ColumnPropNameInTable="waluta_kursColumn" type="xs:double" minOccurs="0" /> 
     5353              <xs:element name="waluta_przelicznik" msprop:Generator_UserColumnName="waluta_przelicznik" msprop:Generator_ColumnVarNameInTable="columnwaluta_przelicznik" msprop:Generator_ColumnPropNameInRow="waluta_przelicznik" msprop:Generator_ColumnPropNameInTable="waluta_przelicznikColumn" type="xs:int" minOccurs="0" /> 
     5354              <xs:element name="waluta_kurs_z_dnia" msprop:Generator_UserColumnName="waluta_kurs_z_dnia" msprop:Generator_ColumnVarNameInTable="columnwaluta_kurs_z_dnia" msprop:Generator_ColumnPropNameInRow="waluta_kurs_z_dnia" msprop:Generator_ColumnPropNameInTable="waluta_kurs_z_dniaColumn" type="xs:dateTime" minOccurs="0" /> 
     5355              <xs:element name="waluta_tabela_nr" msprop:Generator_UserColumnName="waluta_tabela_nr" msprop:Generator_ColumnVarNameInTable="columnwaluta_tabela_nr" msprop:Generator_ColumnPropNameInRow="waluta_tabela_nr" msprop:Generator_ColumnPropNameInTable="waluta_tabela_nrColumn" minOccurs="0"> 
     5356                <xs:simpleType> 
     5357                  <xs:restriction base="xs:string"> 
     5358                    <xs:maxLength value="15" /> 
     5359                  </xs:restriction> 
     5360                </xs:simpleType> 
     5361              </xs:element> 
     5362              <xs:element name="idZamowienia" msprop:Generator_UserColumnName="idZamowienia" msprop:Generator_ColumnPropNameInRow="idZamowienia" msprop:Generator_ColumnVarNameInTable="columnidZamowienia" msprop:Generator_ColumnPropNameInTable="idZamowieniaColumn" type="xs:int" minOccurs="0" /> 
     5363              <xs:element name="idFakturyKorekta" msprop:Generator_UserColumnName="idFakturyKorekta" msprop:Generator_ColumnVarNameInTable="columnidFakturyKorekta" msprop:Generator_ColumnPropNameInRow="idFakturyKorekta" msprop:Generator_ColumnPropNameInTable="idFakturyKorektaColumn" type="xs:int" minOccurs="0" /> 
     5364              <xs:element name="idFakturyVAT" msprop:Generator_UserColumnName="idFakturyVAT" msprop:Generator_ColumnVarNameInTable="columnidFakturyVAT" msprop:Generator_ColumnPropNameInRow="idFakturyVAT" msprop:Generator_ColumnPropNameInTable="idFakturyVATColumn" type="xs:int" minOccurs="0" /> 
     5365              <xs:element name="NrTygodnia" msdata:ReadOnly="true" msprop:Generator_UserColumnName="NrTygodnia" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="NrTygodnia" msprop:Generator_ColumnPropNameInTable="NrTygodniaColumn" msprop:Generator_ColumnVarNameInTable="columnNrTygodnia" type="xs:string" minOccurs="0" /> 
     5366              <xs:element name="SystemKsiegowyId" msprop:Generator_UserColumnName="SystemKsiegowyId" msprop:Generator_ColumnPropNameInRow="SystemKsiegowyId" msprop:Generator_ColumnVarNameInTable="columnSystemKsiegowyId" msprop:Generator_ColumnPropNameInTable="SystemKsiegowyIdColumn" type="xs:unsignedByte" minOccurs="0" /> 
     5367              <xs:element name="KOREKTA" msprop:Generator_UserColumnName="KOREKTA" msprop:Generator_ColumnPropNameInRow="KOREKTA" msprop:Generator_ColumnVarNameInTable="columnKOREKTA" msprop:Generator_ColumnPropNameInTable="KOREKTAColumn" type="xs:boolean" /> 
     5368            </xs:sequence> 
     5369          </xs:complexType> 
     5370        </xs:element> 
     5371        <xs:element name="FAKTURA_DETAILS" msprop:Generator_UserTableName="FAKTURA_DETAILS" msprop:Generator_RowDeletedName="FAKTURA_DETAILSRowDeleted" msprop:Generator_RowChangedName="FAKTURA_DETAILSRowChanged" msprop:Generator_RowClassName="FAKTURA_DETAILSRow" msprop:Generator_RowChangingName="FAKTURA_DETAILSRowChanging" msprop:Generator_RowEvArgName="FAKTURA_DETAILSRowChangeEvent" msprop:Generator_RowEvHandlerName="FAKTURA_DETAILSRowChangeEventHandler" msprop:Generator_TableClassName="FAKTURA_DETAILSDataTable" msprop:Generator_TableVarName="tableFAKTURA_DETAILS" msprop:Generator_RowDeletingName="FAKTURA_DETAILSRowDeleting" msprop:Generator_TablePropName="FAKTURA_DETAILS"> 
     5372          <xs:complexType> 
     5373            <xs:sequence> 
     5374              <xs:element name="ID_FAKTURA_DETAILS" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ID_FAKTURA_DETAILS" msprop:Generator_ColumnVarNameInTable="columnID_FAKTURA_DETAILS" msprop:Generator_ColumnPropNameInRow="ID_FAKTURA_DETAILS" msprop:Generator_ColumnPropNameInTable="ID_FAKTURA_DETAILSColumn" type="xs:int" /> 
     5375              <xs:element name="ID_FAKTURY" msprop:Generator_UserColumnName="ID_FAKTURY" msprop:Generator_ColumnVarNameInTable="columnID_FAKTURY" msprop:Generator_ColumnPropNameInRow="ID_FAKTURY" msprop:Generator_ColumnPropNameInTable="ID_FAKTURYColumn" type="xs:int" minOccurs="0" /> 
     5376              <xs:element name="ROK" msprop:Generator_UserColumnName="ROK" msprop:Generator_ColumnVarNameInTable="columnROK" msprop:Generator_ColumnPropNameInRow="ROK" msprop:Generator_ColumnPropNameInTable="ROKColumn" type="xs:int" minOccurs="0" /> 
     5377              <xs:element name="MIESIAC" msprop:Generator_UserColumnName="MIESIAC" msprop:Generator_ColumnVarNameInTable="columnMIESIAC" msprop:Generator_ColumnPropNameInRow="MIESIAC" msprop:Generator_ColumnPropNameInTable="MIESIACColumn" type="xs:short" minOccurs="0" /> 
     5378              <xs:element name="NAZWA_USLUGI" msprop:Generator_UserColumnName="NAZWA_USLUGI" msprop:Generator_ColumnVarNameInTable="columnNAZWA_USLUGI" msprop:Generator_ColumnPropNameInRow="NAZWA_USLUGI" msprop:Generator_ColumnPropNameInTable="NAZWA_USLUGIColumn" minOccurs="0"> 
     5379                <xs:simpleType> 
     5380                  <xs:restriction base="xs:string"> 
     5381                    <xs:maxLength value="100" /> 
     5382                  </xs:restriction> 
     5383                </xs:simpleType> 
     5384              </xs:element> 
     5385              <xs:element name="SYMBOL_SWW" msprop:Generator_UserColumnName="SYMBOL_SWW" msprop:Generator_ColumnVarNameInTable="columnSYMBOL_SWW" msprop:Generator_ColumnPropNameInRow="SYMBOL_SWW" msprop:Generator_ColumnPropNameInTable="SYMBOL_SWWColumn" minOccurs="0"> 
     5386                <xs:simpleType> 
     5387                  <xs:restriction base="xs:string"> 
     5388                    <xs:maxLength value="30" /> 
     5389                  </xs:restriction> 
     5390                </xs:simpleType> 
     5391              </xs:element> 
     5392              <xs:element name="JM" msprop:Generator_UserColumnName="JM" msprop:Generator_ColumnVarNameInTable="columnJM" msprop:Generator_ColumnPropNameInRow="JM" msprop:Generator_ColumnPropNameInTable="JMColumn" minOccurs="0"> 
     5393                <xs:simpleType> 
     5394                  <xs:restriction base="xs:string"> 
     5395                    <xs:maxLength value="5" /> 
     5396                  </xs:restriction> 
     5397                </xs:simpleType> 
     5398              </xs:element> 
     5399              <xs:element name="ILOSC" msprop:Generator_UserColumnName="ILOSC" msprop:Generator_ColumnVarNameInTable="columnILOSC" msprop:Generator_ColumnPropNameInRow="ILOSC" msprop:Generator_ColumnPropNameInTable="ILOSCColumn" type="xs:int" minOccurs="0" /> 
     5400              <xs:element name="CENA_JEDN" msprop:Generator_UserColumnName="CENA_JEDN" msprop:Generator_ColumnVarNameInTable="columnCENA_JEDN" msprop:Generator_ColumnPropNameInRow="CENA_JEDN" msprop:Generator_ColumnPropNameInTable="CENA_JEDNColumn" type="xs:decimal" minOccurs="0" /> 
     5401              <xs:element name="UPUST_PR" msprop:Generator_UserColumnName="UPUST_PR" msprop:Generator_ColumnVarNameInTable="columnUPUST_PR" msprop:Generator_ColumnPropNameInRow="UPUST_PR" msprop:Generator_ColumnPropNameInTable="UPUST_PRColumn" type="xs:double" minOccurs="0" /> 
     5402              <xs:element name="UPUST_NETTO" msprop:Generator_UserColumnName="UPUST_NETTO" msprop:Generator_ColumnVarNameInTable="columnUPUST_NETTO" msprop:Generator_ColumnPropNameInRow="UPUST_NETTO" msprop:Generator_ColumnPropNameInTable="UPUST_NETTOColumn" type="xs:decimal" minOccurs="0" /> 
     5403              <xs:element name="NETTO" msprop:Generator_UserColumnName="NETTO" msprop:Generator_ColumnVarNameInTable="columnNETTO" msprop:Generator_ColumnPropNameInRow="NETTO" msprop:Generator_ColumnPropNameInTable="NETTOColumn" type="xs:decimal" minOccurs="0" /> 
     5404              <xs:element name="S_VAT" msprop:Generator_UserColumnName="S_VAT" msprop:Generator_ColumnVarNameInTable="columnS_VAT" msprop:Generator_ColumnPropNameInRow="S_VAT" msprop:Generator_ColumnPropNameInTable="S_VATColumn" type="xs:double" minOccurs="0" /> 
     5405              <xs:element name="VAT" msprop:Generator_UserColumnName="VAT" msprop:Generator_ColumnVarNameInTable="columnVAT" msprop:Generator_ColumnPropNameInRow="VAT" msprop:Generator_ColumnPropNameInTable="VATColumn" type="xs:decimal" minOccurs="0" /> 
     5406              <xs:element name="BRUTTO" msprop:Generator_UserColumnName="BRUTTO" msprop:Generator_ColumnVarNameInTable="columnBRUTTO" msprop:Generator_ColumnPropNameInRow="BRUTTO" msprop:Generator_ColumnPropNameInTable="BRUTTOColumn" type="xs:decimal" minOccurs="0" /> 
     5407              <xs:element name="TYTUL" msprop:Generator_UserColumnName="TYTUL" msprop:Generator_ColumnVarNameInTable="columnTYTUL" msprop:Generator_ColumnPropNameInRow="TYTUL" msprop:Generator_ColumnPropNameInTable="TYTULColumn" type="xs:short" minOccurs="0" /> 
     5408              <xs:element name="NR_WYDANIA" msprop:Generator_UserColumnName="NR_WYDANIA" msprop:Generator_ColumnVarNameInTable="columnNR_WYDANIA" msprop:Generator_ColumnPropNameInRow="NR_WYDANIA" msprop:Generator_ColumnPropNameInTable="NR_WYDANIAColumn" type="xs:short" minOccurs="0" /> 
     5409              <xs:element name="TYP" msprop:Generator_UserColumnName="TYP" msprop:Generator_ColumnVarNameInTable="columnTYP" msprop:Generator_ColumnPropNameInRow="TYP" msprop:Generator_ColumnPropNameInTable="TYPColumn" type="xs:short" minOccurs="0" /> 
     5410              <xs:element name="PODTYP" msprop:Generator_UserColumnName="PODTYP" msprop:Generator_ColumnVarNameInTable="columnPODTYP" msprop:Generator_ColumnPropNameInRow="PODTYP" msprop:Generator_ColumnPropNameInTable="PODTYPColumn" type="xs:short" minOccurs="0" /> 
     5411              <xs:element name="wyroznienie" msprop:Generator_UserColumnName="wyroznienie" msprop:Generator_ColumnPropNameInRow="wyroznienie" msprop:Generator_ColumnVarNameInTable="columnwyroznienie" msprop:Generator_ColumnPropNameInTable="wyroznienieColumn" type="xs:boolean" default="false" minOccurs="0" /> 
     5412              <xs:element name="reklamaId" msprop:Generator_UserColumnName="reklamaId" msprop:Generator_ColumnVarNameInTable="columnreklamaId" msprop:Generator_ColumnPropNameInRow="reklamaId" msprop:Generator_ColumnPropNameInTable="reklamaIdColumn" type="xs:int" minOccurs="0" /> 
     5413            </xs:sequence> 
     5414          </xs:complexType> 
     5415        </xs:element> 
     5416        <xs:element name="KL_KLIENCI" msprop:Generator_UserTableName="KL_KLIENCI" msprop:Generator_RowDeletedName="KL_KLIENCIRowDeleted" msprop:Generator_RowChangedName="KL_KLIENCIRowChanged" msprop:Generator_RowClassName="KL_KLIENCIRow" msprop:Generator_RowChangingName="KL_KLIENCIRowChanging" msprop:Generator_RowEvArgName="KL_KLIENCIRowChangeEvent" msprop:Generator_RowEvHandlerName="KL_KLIENCIRowChangeEventHandler" msprop:Generator_TableClassName="KL_KLIENCIDataTable" msprop:Generator_TableVarName="tableKL_KLIENCI" msprop:Generator_RowDeletingName="KL_KLIENCIRowDeleting" msprop:Generator_TablePropName="KL_KLIENCI"> 
     5417          <xs:complexType> 
     5418            <xs:sequence> 
     5419              <xs:element name="ID_KL_KLIENCI" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ID_KL_KLIENCI" msprop:Generator_ColumnVarNameInTable="columnID_KL_KLIENCI" msprop:Generator_ColumnPropNameInRow="ID_KL_KLIENCI" msprop:Generator_ColumnPropNameInTable="ID_KL_KLIENCIColumn" type="xs:int" /> 
     5420              <xs:element name="ID_KL_1" msprop:Generator_UserColumnName="ID_KL_1" msprop:Generator_ColumnVarNameInTable="columnID_KL_1" msprop:Generator_ColumnPropNameInRow="ID_KL_1" msprop:Generator_ColumnPropNameInTable="ID_KL_1Column" type="xs:int" default="1" /> 
     5421              <xs:element name="ID_KL_2" msprop:Generator_UserColumnName="ID_KL_2" msprop:Generator_ColumnVarNameInTable="columnID_KL_2" msprop:Generator_ColumnPropNameInRow="ID_KL_2" msprop:Generator_ColumnPropNameInTable="ID_KL_2Column" type="xs:int" default="2" /> 
     5422              <xs:element name="ID_KL_3" msprop:Generator_UserColumnName="ID_KL_3" msprop:Generator_ColumnVarNameInTable="columnID_KL_3" msprop:Generator_ColumnPropNameInRow="ID_KL_3" msprop:Generator_ColumnPropNameInTable="ID_KL_3Column" type="xs:int" default="1" /> 
     5423              <xs:element name="Customerid" msprop:Generator_UserColumnName="Customerid" msprop:Generator_ColumnVarNameInTable="columnCustomerid" msprop:Generator_ColumnPropNameInRow="Customerid" msprop:Generator_ColumnPropNameInTable="CustomeridColumn" type="xs:int" /> 
     5424              <xs:element name="username" msprop:Generator_UserColumnName="username" msprop:Generator_ColumnVarNameInTable="columnusername" msprop:Generator_ColumnPropNameInRow="username" msprop:Generator_ColumnPropNameInTable="usernameColumn"> 
     5425                <xs:simpleType> 
     5426                  <xs:restriction base="xs:string"> 
     5427                    <xs:maxLength value="20" /> 
     5428                  </xs:restriction> 
     5429                </xs:simpleType> 
     5430              </xs:element> 
     5431              <xs:element name="data" msprop:Generator_UserColumnName="data" msprop:Generator_ColumnVarNameInTable="columndata" msprop:Generator_ColumnPropNameInRow="data" msprop:Generator_ColumnPropNameInTable="dataColumn" type="xs:dateTime" /> 
     5432            </xs:sequence> 
     5433          </xs:complexType> 
     5434        </xs:element> 
     5435        <xs:element name="ReklamyZestawienie" msprop:Generator_UserTableName="ReklamyZestawienie" msprop:Generator_RowDeletedName="ReklamyZestawienieRowDeleted" msprop:Generator_RowChangedName="ReklamyZestawienieRowChanged" msprop:Generator_RowClassName="ReklamyZestawienieRow" msprop:Generator_RowChangingName="ReklamyZestawienieRowChanging" msprop:Generator_RowEvArgName="ReklamyZestawienieRowChangeEvent" msprop:Generator_RowEvHandlerName="ReklamyZestawienieRowChangeEventHandler" msprop:Generator_TableClassName="ReklamyZestawienieDataTable" msprop:Generator_TableVarName="tableReklamyZestawienie" msprop:Generator_RowDeletingName="ReklamyZestawienieRowDeleting" msprop:Generator_TablePropName="ReklamyZestawienie"> 
     5436          <xs:complexType> 
     5437            <xs:sequence> 
    46195438              <xs:element name="ReklamaID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ReklamaID" msprop:Generator_ColumnPropNameInRow="ReklamaID" msprop:Generator_ColumnVarNameInTable="columnReklamaID" msprop:Generator_ColumnPropNameInTable="ReklamaIDColumn" type="xs:int" /> 
    46205439              <xs:element name="CustomerID" msprop:Generator_UserColumnName="CustomerID" msprop:Generator_ColumnPropNameInRow="CustomerID" msprop:Generator_ColumnVarNameInTable="columnCustomerID" msprop:Generator_ColumnPropNameInTable="CustomerIDColumn" type="xs:int" minOccurs="0" /> 
     
    46225441                <xs:simpleType> 
    46235442                  <xs:restriction base="xs:string"> 
    4624                     <xs:maxLength value="50" /> 
    4625                   </xs:restriction> 
    4626                 </xs:simpleType> 
    4627               </xs:element> 
    4628               <xs:element name="TYTUŁ" msprop:Generator_UserColumnName="TYTUŁ" msprop:Generator_ColumnPropNameInRow="TYTUŁ" msprop:Generator_ColumnVarNameInTable="columnTYTUŁ" msprop:Generator_ColumnPropNameInTable="TYTUŁColumn" default="AMT" minOccurs="0"> 
     5443                    <xs:maxLength value="25" /> 
     5444                  </xs:restriction> 
     5445                </xs:simpleType> 
     5446              </xs:element> 
     5447              <xs:element name="TYTUŁ" msprop:Generator_UserColumnName="TYTUŁ" msprop:Generator_ColumnPropNameInRow="TYTUŁ" msprop:Generator_ColumnVarNameInTable="columnTYTUŁ" msprop:Generator_ColumnPropNameInTable="TYTUŁColumn" minOccurs="0"> 
    46295448                <xs:simpleType> 
    46305449                  <xs:restriction base="xs:string"> 
     
    46335452                </xs:simpleType> 
    46345453              </xs:element> 
    4635               <xs:element name="TYP" msprop:Generator_UserColumnName="TYP" msprop:Generator_ColumnPropNameInRow="TYP" msprop:Generator_ColumnVarNameInTable="columnTYP" msprop:Generator_ColumnPropNameInTable="TYPColumn" default="PŁATNA" minOccurs="0"> 
     5454              <xs:element name="TYP" msprop:Generator_UserColumnName="TYP" msprop:Generator_ColumnPropNameInRow="TYP" msprop:Generator_ColumnVarNameInTable="columnTYP" msprop:Generator_ColumnPropNameInTable="TYPColumn" minOccurs="0"> 
    46365455                <xs:simpleType> 
    46375456                  <xs:restriction base="xs:string"> 
     
    46405459                </xs:simpleType> 
    46415460              </xs:element> 
    4642               <xs:element name="ID_x0020_REKLAMY" msprop:Generator_UserColumnName="ID REKLAMY" msprop:Generator_ColumnPropNameInRow="ID_REKLAMY" msprop:Generator_ColumnVarNameInTable="columnID_REKLAMY" msprop:Generator_ColumnPropNameInTable="ID_REKLAMYColumn" default="test" minOccurs="0"> 
     5461              <xs:element name="ID_x0020_REKLAMY" msprop:Generator_UserColumnName="ID REKLAMY" msprop:Generator_ColumnPropNameInRow="ID_REKLAMY" msprop:Generator_ColumnVarNameInTable="columnID_REKLAMY" msprop:Generator_ColumnPropNameInTable="ID_REKLAMYColumn" minOccurs="0"> 
    46435462                <xs:simpleType> 
    46445463                  <xs:restriction base="xs:string"> 
     
    46555474              </xs:element> 
    46565475              <xs:element name="DATA_x0020_ZAMÓWIENIA" msprop:Generator_UserColumnName="DATA ZAMÓWIENIA" msprop:Generator_ColumnPropNameInRow="DATA_ZAMÓWIENIA" msprop:Generator_ColumnVarNameInTable="columnDATA_ZAMÓWIENIA" msprop:Generator_ColumnPropNameInTable="DATA_ZAMÓWIENIAColumn" type="xs:dateTime" minOccurs="0" /> 
    4657               <xs:element name="SZER" msprop:Generator_UserColumnName="SZER" msprop:Generator_ColumnPropNameInRow="SZER" msprop:Generator_ColumnVarNameInTable="columnSZER" msprop:Generator_ColumnPropNameInTable="SZERColumn" type="xs:double" default="1" minOccurs="0" /> 
    4658               <xs:element name="WYS" msprop:Generator_UserColumnName="WYS" msprop:Generator_ColumnPropNameInRow="WYS" msprop:Generator_ColumnVarNameInTable="columnWYS" msprop:Generator_ColumnPropNameInTable="WYSColumn" type="xs:double" default="1" minOccurs="0" /> 
     5476              <xs:element name="SZER" msprop:Generator_UserColumnName="SZER" msprop:Generator_ColumnPropNameInRow="SZER" msprop:Generator_ColumnVarNameInTable="columnSZER" msprop:Generator_ColumnPropNameInTable="SZERColumn" type="xs:double" minOccurs="0" /> 
     5477              <xs:element name="WYS" msprop:Generator_UserColumnName="WYS" msprop:Generator_ColumnPropNameInRow="WYS" msprop:Generator_ColumnVarNameInTable="columnWYS" msprop:Generator_ColumnPropNameInTable="WYSColumn" type="xs:double" minOccurs="0" /> 
    46595478              <xs:element name="MOD_TYP" msprop:Generator_UserColumnName="MOD_TYP" msprop:Generator_ColumnPropNameInRow="MOD_TYP" msprop:Generator_ColumnVarNameInTable="columnMOD_TYP" msprop:Generator_ColumnPropNameInTable="MOD_TYPColumn" minOccurs="0"> 
    46605479                <xs:simpleType> 
    46615480                  <xs:restriction base="xs:string"> 
    4662                     <xs:maxLength value="50" /> 
     5481                    <xs:maxLength value="15" /> 
    46635482                  </xs:restriction> 
    46645483                </xs:simpleType> 
     
    46675486                <xs:simpleType> 
    46685487                  <xs:restriction base="xs:string"> 
    4669                     <xs:maxLength value="100" /> 
     5488                    <xs:maxLength value="25" /> 
    46705489                  </xs:restriction> 
    46715490                </xs:simpleType> 
     
    46735492              <xs:element name="STR_x0020_NR_x0020_WT" msprop:Generator_UserColumnName="STR NR WT" msprop:Generator_ColumnPropNameInRow="STR_NR_WT" msprop:Generator_ColumnVarNameInTable="columnSTR_NR_WT" msprop:Generator_ColumnPropNameInTable="STR_NR_WTColumn" type="xs:short" minOccurs="0" /> 
    46745493              <xs:element name="STR_x0020_NR_x0020_PT" msprop:Generator_UserColumnName="STR NR PT" msprop:Generator_ColumnPropNameInRow="STR_NR_PT" msprop:Generator_ColumnVarNameInTable="columnSTR_NR_PT" msprop:Generator_ColumnPropNameInTable="STR_NR_PTColumn" type="xs:short" minOccurs="0" /> 
    4675               <xs:element name="KROTNOŚĆ" msprop:Generator_UserColumnName="KROTNOŚĆ" msprop:Generator_ColumnPropNameInRow="KROTNOŚĆ" msprop:Generator_ColumnVarNameInTable="columnKROTNOŚĆ" msprop:Generator_ColumnPropNameInTable="KROTNOŚĆColumn" type="xs:short" default="0" minOccurs="0" /> 
    4676               <xs:element name="ODSTĘP" msprop:Generator_UserColumnName="ODSTĘP" msprop:Generator_ColumnPropNameInRow="ODSTĘP" msprop:Generator_ColumnVarNameInTable="columnODSTĘP" msprop:Generator_ColumnPropNameInTable="ODSTĘPColumn" type="xs:unsignedByte" default="1" minOccurs="0" /> 
    4677               <xs:element name="KOLOR" msprop:Generator_UserColumnName="KOLOR" msprop:Generator_ColumnPropNameInRow="KOLOR" msprop:Generator_ColumnVarNameInTable="columnKOLOR" msprop:Generator_ColumnPropNameInTable="KOLORColumn" default="B\W" minOccurs="0"> 
     5494              <xs:element name="KROTNOŚĆ" msprop:Generator_UserColumnName="KROTNOŚĆ" msprop:Generator_ColumnPropNameInRow="KROTNOŚĆ" msprop:Generator_ColumnVarNameInTable="columnKROTNOŚĆ" msprop:Generator_ColumnPropNameInTable="KROTNOŚĆColumn" type="xs:short" minOccurs="0" /> 
     5495              <xs:element name="ODSTĘP" msprop:Generator_UserColumnName="ODSTĘP" msprop:Generator_ColumnPropNameInRow="ODSTĘP" msprop:Generator_ColumnVarNameInTable="columnODSTĘP" msprop:Generator_ColumnPropNameInTable="ODSTĘPColumn" type="xs:unsignedByte" minOccurs="0" /> 
     5496              <xs:element name="KOLOR" msprop:Generator_UserColumnName="KOLOR" msprop:Generator_ColumnPropNameInRow="KOLOR" msprop:Generator_ColumnVarNameInTable="columnKOLOR" msprop:Generator_ColumnPropNameInTable="KOLORColumn" minOccurs="0"> 
    46785497                <xs:simpleType> 
    46795498                  <xs:restriction base="xs:string"> 
     
    46825501                </xs:simpleType> 
    46835502              </xs:element> 
    4684               <xs:element name="WSKAZANIE_x0020_MIEJSCA" msprop:Generator_UserColumnName="WSKAZANIE MIEJSCA" msprop:Generator_ColumnPropNameInRow="WSKAZANIE_MIEJSCA" msprop:Generator_ColumnVarNameInTable="columnWSKAZANIE_MIEJSCA" msprop:Generator_ColumnPropNameInTable="WSKAZANIE_MIEJSCAColumn" type="xs:boolean" default="false" minOccurs="0" /> 
    4685               <xs:element name="RABAT" msprop:Generator_UserColumnName="RABAT" msprop:Generator_ColumnPropNameInRow="RABAT" msprop:Generator_ColumnVarNameInTable="columnRABAT" msprop:Generator_ColumnPropNameInTable="RABATColumn" type="xs:double" default="0" minOccurs="0" /> 
    4686               <xs:element name="RABAT_x0020_WARTOŚĆ" msprop:Generator_UserColumnName="RABAT WARTOŚĆ" msprop:Generator_ColumnPropNameInRow="RABAT_WARTOŚĆ" msprop:Generator_ColumnVarNameInTable="columnRABAT_WARTOŚĆ" msprop:Generator_ColumnPropNameInTable="RABAT_WARTOŚĆColumn" type="xs:double" default="0" minOccurs="0" /> 
    4687               <xs:element name="ZAPŁACONO" msprop:Generator_UserColumnName="ZAPŁACONO" msprop:Generator_ColumnPropNameInRow="ZAPŁACONO" msprop:Generator_ColumnVarNameInTable="columnZAPŁACONO" msprop:Generator_ColumnPropNameInTable="ZAPŁACONOColumn" type="xs:boolean" default="false" minOccurs="0" /> 
    4688               <xs:element name="ZATWIERDZONO_x0020_DO_x0020_DRUKU" msprop:Generator_UserColumnName="ZATWIERDZONO DO DRUKU" msprop:Generator_ColumnPropNameInRow="ZATWIERDZONO_DO_DRUKU" msprop:Generator_ColumnVarNameInTable="columnZATWIERDZONO_DO_DRUKU" msprop:Generator_ColumnPropNameInTable="ZATWIERDZONO_DO_DRUKUColumn" type="xs:boolean" default="false" minOccurs="0" /> 
     5503              <xs:element name="WSKAZANIE_x0020_MIEJSCA" msprop:Generator_UserColumnName="WSKAZANIE MIEJSCA" msprop:Generator_ColumnPropNameInRow="WSKAZANIE_MIEJSCA" msprop:Generator_ColumnVarNameInTable="columnWSKAZANIE_MIEJSCA" msprop:Generator_ColumnPropNameInTable="WSKAZANIE_MIEJSCAColumn" type="xs:boolean" minOccurs="0" /> 
     5504              <xs:element name="RABAT" msprop:Generator_UserColumnName="RABAT" msprop:Generator_ColumnPropNameInRow="RABAT" msprop:Generator_ColumnVarNameInTable="columnRABAT" msprop:Generator_ColumnPropNameInTable="RABATColumn" type="xs:double" minOccurs="0" /> 
     5505              <xs:element name="RABAT_x0020_WARTOŚĆ" msprop:Generator_UserColumnName="RABAT WARTOŚĆ" msprop:Generator_ColumnPropNameInRow="RABAT_WARTOŚĆ" msprop:Generator_ColumnVarNameInTable="columnRABAT_WARTOŚĆ" msprop:Generator_ColumnPropNameInTable="RABAT_WARTOŚĆColumn" type="xs:double" minOccurs="0" /> 
     5506              <xs:element name="ZAPŁACONO" msprop:Generator_UserColumnName="ZAPŁACONO" msprop:Generator_ColumnPropNameInRow="ZAPŁACONO" msprop:Generator_ColumnVarNameInTable="columnZAPŁACONO" msprop:Generator_ColumnPropNameInTable="ZAPŁACONOColumn" type="xs:boolean" minOccurs="0" /> 
     5507              <xs:element name="ZATWIERDZONO_x0020_DO_x0020_DRUKU" msprop:Generator_UserColumnName="ZATWIERDZONO DO DRUKU" msprop:Generator_ColumnPropNameInRow="ZATWIERDZONO_DO_DRUKU" msprop:Generator_ColumnVarNameInTable="columnZATWIERDZONO_DO_DRUKU" msprop:Generator_ColumnPropNameInTable="ZATWIERDZONO_DO_DRUKUColumn" type="xs:boolean" minOccurs="0" /> 
    46895508              <xs:element name="DATA_x0020_ZAPŁATY" msprop:Generator_UserColumnName="DATA ZAPŁATY" msprop:Generator_ColumnPropNameInRow="DATA_ZAPŁATY" msprop:Generator_ColumnVarNameInTable="columnDATA_ZAPŁATY" msprop:Generator_ColumnPropNameInTable="DATA_ZAPŁATYColumn" type="xs:dateTime" minOccurs="0" /> 
    46905509              <xs:element name="SYMBOL_x0020_POTWIERDZENIA" msprop:Generator_UserColumnName="SYMBOL POTWIERDZENIA" msprop:Generator_ColumnPropNameInRow="SYMBOL_POTWIERDZENIA" msprop:Generator_ColumnVarNameInTable="columnSYMBOL_POTWIERDZENIA" msprop:Generator_ColumnPropNameInTable="SYMBOL_POTWIERDZENIAColumn" minOccurs="0"> 
     
    47025521                </xs:simpleType> 
    47035522              </xs:element> 
    4704               <xs:element name="CENA_x0020_JEDN" msprop:Generator_UserColumnName="CENA JEDN" msprop:Generator_ColumnPropNameInRow="CENA_JEDN" msprop:Generator_ColumnVarNameInTable="columnCENA_JEDN" msprop:Generator_ColumnPropNameInTable="CENA_JEDNColumn" type="xs:double" default="0" minOccurs="0" /> 
    4705               <xs:element name="NETTO" msprop:Generator_UserColumnName="NETTO" msprop:Generator_ColumnPropNameInRow="NETTO" msprop:Generator_ColumnVarNameInTable="columnNETTO" msprop:Generator_ColumnPropNameInTable="NETTOColumn" type="xs:double" default="0" minOccurs="0" /> 
    4706               <xs:element name="VAT" msprop:Generator_UserColumnName="VAT" msprop:Generator_ColumnPropNameInRow="VAT" msprop:Generator_ColumnVarNameInTable="columnVAT" msprop:Generator_ColumnPropNameInTable="VATColumn" type="xs:double" default="0.22" minOccurs="0" /> 
    4707               <xs:element name="PVAT" msprop:Generator_UserColumnName="PVAT" msprop:Generator_ColumnPropNameInRow="PVAT" msprop:Generator_ColumnVarNameInTable="columnPVAT" msprop:Generator_ColumnPropNameInTable="PVATColumn" type="xs:double" default="0" minOccurs="0" /> 
    4708               <xs:element name="BRUTTO" msprop:Generator_UserColumnName="BRUTTO" msprop:Generator_ColumnPropNameInRow="BRUTTO" msprop:Generator_ColumnVarNameInTable="columnBRUTTO" msprop:Generator_ColumnPropNameInTable="BRUTTOColumn" type="xs:double" default="0" minOccurs="0" /> 
    4709               <xs:element name="PROCENT_x0020_PROWIZJI" msprop:Generator_UserColumnName="PROCENT PROWIZJI" msprop:Generator_ColumnPropNameInRow="PROCENT_PROWIZJI" msprop:Generator_ColumnVarNameInTable="columnPROCENT_PROWIZJI" msprop:Generator_ColumnPropNameInTable="PROCENT_PROWIZJIColumn" type="xs:double" default="0" minOccurs="0" /> 
    4710               <xs:element name="PROWIZJA" msprop:Generator_UserColumnName="PROWIZJA" msprop:Generator_ColumnPropNameInRow="PROWIZJA" msprop:Generator_ColumnVarNameInTable="columnPROWIZJA" msprop:Generator_ColumnPropNameInTable="PROWIZJAColumn" type="xs:double" default="0" minOccurs="0" /> 
     5523              <xs:element name="CENA_x0020_JEDN" msprop:Generator_UserColumnName="CENA JEDN" msprop:Generator_ColumnPropNameInRow="CENA_JEDN" msprop:Generator_ColumnVarNameInTable="columnCENA_JEDN" msprop:Generator_ColumnPropNameInTable="CENA_JEDNColumn" type="xs:double" minOccurs="0" /> 
     5524              <xs:element name="NETTO" msprop:Generator_UserColumnName="NETTO" msprop:Generator_ColumnPropNameInRow="NETTO" msprop:Generator_ColumnVarNameInTable="columnNETTO" msprop:Generator_ColumnPropNameInTable="NETTOColumn" type="xs:double" minOccurs="0" /> 
     5525              <xs:element name="VAT" msprop:Generator_UserColumnName="VAT" msprop:Generator_ColumnPropNameInRow="VAT" msprop:Generator_ColumnVarNameInTable="columnVAT" msprop:Generator_ColumnPropNameInTable="VATColumn" type="xs:double" minOccurs="0" /> 
     5526              <xs:element name="PVAT" msprop:Generator_UserColumnName="PVAT" msprop:Generator_ColumnPropNameInRow="PVAT" msprop:Generator_ColumnVarNameInTable="columnPVAT" msprop:Generator_ColumnPropNameInTable="PVATColumn" type="xs:double" minOccurs="0" /> 
     5527              <xs:element name="BRUTTO" msprop:Generator_UserColumnName="BRUTTO" msprop:Generator_ColumnPropNameInRow="BRUTTO" msprop:Generator_ColumnVarNameInTable="columnBRUTTO" msprop:Generator_ColumnPropNameInTable="BRUTTOColumn" type="xs:double" minOccurs="0" /> 
     5528              <xs:element name="PROCENT_x0020_PROWIZJI" msprop:Generator_UserColumnName="PROCENT PROWIZJI" msprop:Generator_ColumnPropNameInRow="PROCENT_PROWIZJI" msprop:Generator_ColumnVarNameInTable="columnPROCENT_PROWIZJI" msprop:Generator_ColumnPropNameInTable="PROCENT_PROWIZJIColumn" type="xs:double" minOccurs="0" /> 
     5529              <xs:element name="PROWIZJA" msprop:Generator_UserColumnName="PROWIZJA" msprop:Generator_ColumnPropNameInRow="PROWIZJA" msprop:Generator_ColumnVarNameInTable="columnPROWIZJA" msprop:Generator_ColumnPropNameInTable="PROWIZJAColumn" type="xs:double" minOccurs="0" /> 
    47115530              <xs:element name="INFO" msprop:Generator_UserColumnName="INFO" msprop:Generator_ColumnPropNameInRow="INFO" msprop:Generator_ColumnVarNameInTable="columnINFO" msprop:Generator_ColumnPropNameInTable="INFOColumn" minOccurs="0"> 
    47125531                <xs:simpleType> 
     
    47235542                </xs:simpleType> 
    47245543              </xs:element> 
    4725               <xs:element name="FAKTURA_x0020_ID_x0020_KONTA" msprop:Generator_UserColumnName="FAKTURA ID KONTA" msprop:Generator_ColumnPropNameInRow="FAKTURA_ID_KONTA" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_ID_KONTA" msprop:Generator_ColumnPropNameInTable="FAKTURA_ID_KONTAColumn" type="xs:int" default="1" minOccurs="0" /> 
     5544              <xs:element name="FAKTURA_x0020_ID_x0020_KONTA" msprop:Generator_UserColumnName="FAKTURA ID KONTA" msprop:Generator_ColumnPropNameInRow="FAKTURA_ID_KONTA" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_ID_KONTA" msprop:Generator_ColumnPropNameInTable="FAKTURA_ID_KONTAColumn" type="xs:int" minOccurs="0" /> 
    47265545              <xs:element name="FAKTURA_x0020_DATA_x0020_WYSTAWIENIA" msprop:Generator_UserColumnName="FAKTURA DATA WYSTAWIENIA" msprop:Generator_ColumnPropNameInRow="FAKTURA_DATA_WYSTAWIENIA" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_DATA_WYSTAWIENIA" msprop:Generator_ColumnPropNameInTable="FAKTURA_DATA_WYSTAWIENIAColumn" type="xs:dateTime" minOccurs="0" /> 
    47275546              <xs:element name="FAKTURA_x0020_DATA_x0020_SPRZEDAŻY" msprop:Generator_UserColumnName="FAKTURA DATA SPRZEDAŻY" msprop:Generator_ColumnPropNameInRow="FAKTURA_DATA_SPRZEDAŻY" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_DATA_SPRZEDAŻY" msprop:Generator_ColumnPropNameInTable="FAKTURA_DATA_SPRZEDAŻYColumn" type="xs:dateTime" minOccurs="0" /> 
    47285547              <xs:element name="FAKTURA_x0020_TERMIN_x0020_ZAPŁATY" msprop:Generator_UserColumnName="FAKTURA TERMIN ZAPŁATY" msprop:Generator_ColumnPropNameInRow="FAKTURA_TERMIN_ZAPŁATY" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_TERMIN_ZAPŁATY" msprop:Generator_ColumnPropNameInTable="FAKTURA_TERMIN_ZAPŁATYColumn" type="xs:dateTime" minOccurs="0" /> 
    47295548              <xs:element name="FAKTURA_x0020_FORMA_x0020_PŁATNOŚCI" msprop:Generator_UserColumnName="FAKTURA FORMA PŁATNOŚCI" msprop:Generator_ColumnPropNameInRow="FAKTURA_FORMA_PŁATNOŚCI" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_FORMA_PŁATNOŚCI" msprop:Generator_ColumnPropNameInTable="FAKTURA_FORMA_PŁATNOŚCIColumn" type="xs:unsignedByte" minOccurs="0" /> 
    4730               <xs:element name="FAKTURA_x0020_WYSTAWIONO" msprop:Generator_UserColumnName="FAKTURA WYSTAWIONO" msprop:Generator_ColumnPropNameInRow="FAKTURA_WYSTAWIONO" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_WYSTAWIONO" msprop:Generator_ColumnPropNameInTable="FAKTURA_WYSTAWIONOColumn" type="xs:boolean" default="false" minOccurs="0" /> 
     5549              <xs:element name="FAKTURA_x0020_WYSTAWIONO" msprop:Generator_UserColumnName="FAKTURA WYSTAWIONO" msprop:Generator_ColumnPropNameInRow="FAKTURA_WYSTAWIONO" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_WYSTAWIONO" msprop:Generator_ColumnPropNameInTable="FAKTURA_WYSTAWIONOColumn" type="xs:boolean" minOccurs="0" /> 
    47315550              <xs:element name="FAKTURA_x0020_RODZAJ" msprop:Generator_UserColumnName="FAKTURA RODZAJ" msprop:Generator_ColumnPropNameInRow="FAKTURA_RODZAJ" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_RODZAJ" msprop:Generator_ColumnPropNameInTable="FAKTURA_RODZAJColumn" minOccurs="0"> 
    47325551                <xs:simpleType> 
     
    47715590                </xs:simpleType> 
    47725591              </xs:element> 
    4773               <xs:element name="kier_zatwierdzil" msprop:Generator_UserColumnName="kier_zatwierdzil" msprop:Generator_ColumnPropNameInRow="kier_zatwierdzil" msprop:Generator_ColumnVarNameInTable="columnkier_zatwierdzil" msprop:Generator_ColumnPropNameInTable="kier_zatwierdzilColumn" type="xs:boolean" default="false" minOccurs="0" /> 
     5592              <xs:element name="kier_zatwierdzil" msprop:Generator_UserColumnName="kier_zatwierdzil" msprop:Generator_ColumnPropNameInRow="kier_zatwierdzil" msprop:Generator_ColumnVarNameInTable="columnkier_zatwierdzil" msprop:Generator_ColumnPropNameInTable="kier_zatwierdzilColumn" type="xs:boolean" minOccurs="0" /> 
    47745593              <xs:element name="zam_notatka" msprop:Generator_UserColumnName="zam_notatka" msprop:Generator_ColumnPropNameInRow="zam_notatka" msprop:Generator_ColumnVarNameInTable="columnzam_notatka" msprop:Generator_ColumnPropNameInTable="zam_notatkaColumn" minOccurs="0"> 
    47755594                <xs:simpleType> 
     
    47795598                </xs:simpleType> 
    47805599              </xs:element> 
    4781               <xs:element name="zablokuj_prowizje" msprop:Generator_UserColumnName="zablokuj_prowizje" msprop:Generator_ColumnPropNameInRow="zablokuj_prowizje" msprop:Generator_ColumnVarNameInTable="columnzablokuj_prowizje" msprop:Generator_ColumnPropNameInTable="zablokuj_prowizjeColumn" type="xs:boolean" default="false" /> 
     5600              <xs:element name="zablokuj_prowizje" msprop:Generator_UserColumnName="zablokuj_prowizje" msprop:Generator_ColumnPropNameInRow="zablokuj_prowizje" msprop:Generator_ColumnVarNameInTable="columnzablokuj_prowizje" msprop:Generator_ColumnPropNameInTable="zablokuj_prowizjeColumn" type="xs:boolean" /> 
    47825601              <xs:element name="Brutto_Euro" msprop:Generator_UserColumnName="Brutto_Euro" msprop:Generator_ColumnPropNameInRow="Brutto_Euro" msprop:Generator_ColumnVarNameInTable="columnBrutto_Euro" msprop:Generator_ColumnPropNameInTable="Brutto_EuroColumn" type="xs:double" minOccurs="0" /> 
    47835602              <xs:element name="Zaliczka_Brutto" msprop:Generator_UserColumnName="Zaliczka_Brutto" msprop:Generator_ColumnPropNameInRow="Zaliczka_Brutto" msprop:Generator_ColumnVarNameInTable="columnZaliczka_Brutto" msprop:Generator_ColumnPropNameInTable="Zaliczka_BruttoColumn" type="xs:decimal" minOccurs="0" /> 
    47845603              <xs:element name="Zaliczka_Data" msprop:Generator_UserColumnName="Zaliczka_Data" msprop:Generator_ColumnPropNameInRow="Zaliczka_Data" msprop:Generator_ColumnVarNameInTable="columnZaliczka_Data" msprop:Generator_ColumnPropNameInTable="Zaliczka_DataColumn" type="xs:dateTime" minOccurs="0" /> 
    4785               <xs:element name="Brutto_Euro_Miano" msprop:Generator_UserColumnName="Brutto_Euro_Miano" msprop:Generator_ColumnPropNameInRow="Brutto_Euro_Miano" msprop:Generator_ColumnVarNameInTable="columnBrutto_Euro_Miano" msprop:Generator_ColumnPropNameInTable="Brutto_Euro_MianoColumn" default="" minOccurs="0"> 
     5604              <xs:element name="Brutto_Euro_Miano" msprop:Generator_UserColumnName="Brutto_Euro_Miano" msprop:Generator_ColumnPropNameInRow="Brutto_Euro_Miano" msprop:Generator_ColumnVarNameInTable="columnBrutto_Euro_Miano" msprop:Generator_ColumnPropNameInTable="Brutto_Euro_MianoColumn" minOccurs="0"> 
    47865605                <xs:simpleType> 
    47875606                  <xs:restriction base="xs:string"> 
     
    47925611              <xs:element name="waluta_kurs_z_dnia" msprop:Generator_UserColumnName="waluta_kurs_z_dnia" msprop:Generator_ColumnPropNameInRow="waluta_kurs_z_dnia" msprop:Generator_ColumnVarNameInTable="columnwaluta_kurs_z_dnia" msprop:Generator_ColumnPropNameInTable="waluta_kurs_z_dniaColumn" type="xs:dateTime" minOccurs="0" /> 
    47935612              <xs:element name="waluta_kurs" msprop:Generator_UserColumnName="waluta_kurs" msprop:Generator_ColumnPropNameInRow="waluta_kurs" msprop:Generator_ColumnVarNameInTable="columnwaluta_kurs" msprop:Generator_ColumnPropNameInTable="waluta_kursColumn" type="xs:double" minOccurs="0" /> 
    4794               <xs:element name="waluta_Przelicznik" msprop:Generator_UserColumnName="waluta_Przelicznik" msprop:Generator_ColumnPropNameInRow="waluta_Przelicznik" msprop:Generator_ColumnVarNameInTable="columnwaluta_Przelicznik" msprop:Generator_ColumnPropNameInTable="waluta_PrzelicznikColumn" type="xs:int" default="1" minOccurs="0" /> 
     5613              <xs:element name="waluta_Przelicznik" msprop:Generator_UserColumnName="waluta_Przelicznik" msprop:Generator_ColumnPropNameInRow="waluta_Przelicznik" msprop:Generator_ColumnVarNameInTable="columnwaluta_Przelicznik" msprop:Generator_ColumnPropNameInTable="waluta_PrzelicznikColumn" type="xs:int" minOccurs="0" /> 
    47955614              <xs:element name="waluta_tabela_nr" msprop:Generator_UserColumnName="waluta_tabela_nr" msprop:Generator_ColumnPropNameInRow="waluta_tabela_nr" msprop:Generator_ColumnVarNameInTable="columnwaluta_tabela_nr" msprop:Generator_ColumnPropNameInTable="waluta_tabela_nrColumn" minOccurs="0"> 
    47965615                <xs:simpleType> 
     
    48005619                </xs:simpleType> 
    48015620              </xs:element> 
    4802               <xs:element name="wyroznienie_procent" msprop:Generator_UserColumnName="wyroznienie_procent" msprop:Generator_ColumnPropNameInRow="wyroznienie_procent" msprop:Generator_ColumnVarNameInTable="columnwyroznienie_procent" msprop:Generator_ColumnPropNameInTable="wyroznienie_procentColumn" type="xs:double" default="0" minOccurs="0" /> 
    4803               <xs:element name="wyroznienie_kwota" msprop:Generator_UserColumnName="wyroznienie_kwota" msprop:Generator_ColumnPropNameInRow="wyroznienie_kwota" msprop:Generator_ColumnVarNameInTable="columnwyroznienie_kwota" msprop:Generator_ColumnPropNameInTable="wyroznienie_kwotaColumn" type="xs:double" default="0" minOccurs="0" /> 
    4804               <xs:element name="wyroznienie" msprop:Generator_UserColumnName="wyroznienie" msprop:Generator_ColumnPropNameInRow="wyroznienie" msprop:Generator_ColumnVarNameInTable="columnwyroznienie" msprop:Generator_ColumnPropNameInTable="wyroznienieColumn" type="xs:boolean" default="false" /> 
    4805               <xs:element name="wyroznienie_exported" msprop:Generator_UserColumnName="wyroznienie_exported" msprop:Generator_ColumnPropNameInRow="wyroznienie_exported" msprop:Generator_ColumnVarNameInTable="columnwyroznienie_exported" msprop:Generator_ColumnPropNameInTable="wyroznienie_exportedColumn" type="xs:boolean" default="false" /> 
    4806               <xs:element name="logo" msprop:Generator_UserColumnName="logo" msprop:Generator_ColumnVarNameInTable="columnlogo" msprop:Generator_ColumnPropNameInRow="logo" msprop:Generator_ColumnPropNameInTable="logoColumn" type="xs:boolean" default="false" /> 
    4807               <xs:element name="logoID" msprop:Generator_UserColumnName="logoID" msprop:Generator_ColumnVarNameInTable="columnlogoID" msprop:Generator_ColumnPropNameInRow="logoID" msprop:Generator_ColumnPropNameInTable="logoIDColumn" type="xs:int" minOccurs="0" /> 
    4808               <xs:element name="ogl_dzial" msprop:Generator_UserColumnName="ogl_dzial" msprop:Generator_ColumnPropNameInRow="ogl_dzial" msprop:Generator_ColumnVarNameInTable="columnogl_dzial" msprop:Generator_ColumnPropNameInTable="ogl_dzialColumn" type="xs:int" minOccurs="0" /> 
    4809               <xs:element name="ogl_rozdzial" msprop:Generator_UserColumnName="ogl_rozdzial" msprop:Generator_ColumnPropNameInRow="ogl_rozdzial" msprop:Generator_ColumnVarNameInTable="columnogl_rozdzial" msprop:Generator_ColumnPropNameInTable="ogl_rozdzialColumn" type="xs:int" minOccurs="0" /> 
    4810               <xs:element name="idZamowienia" msprop:Generator_UserColumnName="idZamowienia" msprop:Generator_ColumnVarNameInTable="columnidZamowienia" msprop:Generator_ColumnPropNameInRow="idZamowienia" msprop:Generator_ColumnPropNameInTable="idZamowieniaColumn" type="xs:int" minOccurs="0" /> 
    4811               <xs:element name="Data1Emisji" msdata:ReadOnly="true" msprop:Generator_UserColumnName="Data1Emisji" msprop:Generator_ColumnPropNameInRow="Data1Emisji" msprop:Generator_ColumnVarNameInTable="columnData1Emisji" msprop:Generator_ColumnPropNameInTable="Data1EmisjiColumn" type="xs:dateTime" minOccurs="0" /> 
    4812               <xs:element name="ModulePrice" msprop:Generator_UserColumnName="ModulePrice" msprop:Generator_ColumnPropNameInRow="ModulePrice" msprop:Generator_ColumnVarNameInTable="columnModulePrice" msprop:Generator_ColumnPropNameInTable="ModulePriceColumn" type="xs:decimal" minOccurs="0" /> 
    4813               <xs:element name="AdLocationId" msprop:Generator_UserColumnName="AdLocationId" msprop:Generator_ColumnPropNameInRow="AdLocationId" msprop:Generator_ColumnVarNameInTable="columnAdLocationId" msprop:Generator_ColumnPropNameInTable="AdLocationIdColumn" type="xs:int" default="1" minOccurs="0" /> 
    4814             </xs:sequence> 
    4815           </xs:complexType> 
    4816         </xs:element> 
    4817         <xs:element name="UKAZE_SIE_W_NR" msprop:Generator_UserTableName="UKAZE_SIE_W_NR" msprop:Generator_RowDeletedName="UKAZE_SIE_W_NRRowDeleted" msprop:Generator_RowChangedName="UKAZE_SIE_W_NRRowChanged" msprop:Generator_RowClassName="UKAZE_SIE_W_NRRow" msprop:Generator_RowChangingName="UKAZE_SIE_W_NRRowChanging" msprop:Generator_RowEvArgName="UKAZE_SIE_W_NRRowChangeEvent" msprop:Generator_RowEvHandlerName="UKAZE_SIE_W_NRRowChangeEventHandler" msprop:Generator_TableClassName="UKAZE_SIE_W_NRDataTable" msprop:Generator_TableVarName="tableUKAZE_SIE_W_NR" msprop:Generator_RowDeletingName="UKAZE_SIE_W_NRRowDeleting" msprop:Generator_TablePropName="UKAZE_SIE_W_NR"> 
    4818           <xs:complexType> 
    4819             <xs:sequence> 
    4820               <xs:element name="ID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_UserColumnName="ID" msprop:Generator_ColumnPropNameInRow="ID" msprop:Generator_ColumnVarNameInTable="columnID" msprop:Generator_ColumnPropNameInTable="IDColumn" type="xs:decimal" /> 
    4821               <xs:element name="ReklamaId" msprop:Generator_UserColumnName="ReklamaId" msprop:Generator_ColumnPropNameInRow="ReklamaId" msprop:Generator_ColumnVarNameInTable="columnReklamaId" msprop:Generator_ColumnPropNameInTable="ReklamaIdColumn" type="xs:int" /> 
    4822               <xs:element name="Nr_x0020_Wydania" msprop:Generator_UserColumnName="Nr Wydania" msprop:Generator_ColumnPropNameInRow="Nr_Wydania" msprop:Generator_ColumnVarNameInTable="columnNr_Wydania" msprop:Generator_ColumnPropNameInTable="Nr_WydaniaColumn" type="xs:short" /> 
    4823               <xs:element name="status" msprop:Generator_UserColumnName="status" msprop:Generator_ColumnPropNameInRow="status" msprop:Generator_ColumnVarNameInTable="columnstatus" msprop:Generator_ColumnPropNameInTable="statusColumn" type="xs:short" default="0" /> 
    4824               <xs:element name="zafakturowana" msprop:Generator_UserColumnName="zafakturowana" msprop:Generator_ColumnPropNameInRow="zafakturowana" msprop:Generator_ColumnVarNameInTable="columnzafakturowana" msprop:Generator_ColumnPropNameInTable="zafakturowanaColumn" type="xs:boolean" default="false" /> 
    4825               <xs:element name="idFaktury" msprop:Generator_UserColumnName="idFaktury" msprop:Generator_ColumnPropNameInRow="idFaktury" msprop:Generator_ColumnVarNameInTable="columnidFaktury" msprop:Generator_ColumnPropNameInTable="idFakturyColumn" type="xs:int" minOccurs="0" /> 
    4826               <xs:element name="dataDodania" msprop:Generator_UserColumnName="dataDodania" msprop:Generator_ColumnPropNameInRow="dataDodania" msprop:Generator_ColumnVarNameInTable="columndataDodania" msprop:Generator_ColumnPropNameInTable="dataDodaniaColumn" type="xs:dateTime" minOccurs="0" /> 
    4827               <xs:element name="dataAnulowania" msprop:Generator_UserColumnName="dataAnulowania" msprop:Generator_ColumnPropNameInRow="dataAnulowania" msprop:Generator_ColumnVarNameInTable="columndataAnulowania" msprop:Generator_ColumnPropNameInTable="dataAnulowaniaColumn" type="xs:dateTime" minOccurs="0" /> 
    4828               <xs:element name="netto" msprop:Generator_UserColumnName="netto" msprop:Generator_ColumnVarNameInTable="columnnetto" msprop:Generator_ColumnPropNameInRow="netto" msprop:Generator_ColumnPropNameInTable="nettoColumn" type="xs:decimal" default="0" minOccurs="0" /> 
    4829             </xs:sequence> 
    4830           </xs:complexType> 
    4831         </xs:element> 
    4832         <xs:element name="KLIENCI" msprop:Generator_UserTableName="KLIENCI" msprop:Generator_RowDeletedName="KLIENCIRowDeleted" msprop:Generator_RowChangedName="KLIENCIRowChanged" msprop:Generator_RowClassName="KLIENCIRow" msprop:Generator_RowChangingName="KLIENCIRowChanging" msprop:Generator_RowEvArgName="KLIENCIRowChangeEvent" msprop:Generator_RowEvHandlerName="KLIENCIRowChangeEventHandler" msprop:Generator_TableClassName="KLIENCIDataTable" msprop:Generator_TableVarName="tableKLIENCI" msprop:Generator_RowDeletingName="KLIENCIRowDeleting" msprop:Generator_TablePropName="KLIENCI"> 
    4833           <xs:complexType> 
    4834             <xs:sequence> 
    4835               <xs:element name="LastName" msprop:Generator_UserColumnName="LastName" msprop:Generator_ColumnPropNameInRow="LastName" msprop:Generator_ColumnVarNameInTable="columnLastName" msprop:Generator_ColumnPropNameInTable="LastNameColumn" minOccurs="0"> 
    4836                 <xs:simpleType> 
    4837                   <xs:restriction base="xs:string"> 
    4838                     <xs:maxLength value="50" /> 
    4839                   </xs:restriction> 
    4840                 </xs:simpleType> 
    4841               </xs:element> 
    4842               <xs:element name="OrganizationName" msprop:Generator_UserColumnName="OrganizationName" msprop:Generator_ColumnPropNameInRow="OrganizationName" msprop:Generator_ColumnVarNameInTable="columnOrganizationName" msprop:Generator_ColumnPropNameInTable="OrganizationNameColumn" minOccurs="0"> 
    4843                 <xs:simpleType> 
    4844                   <xs:restriction base="xs:string"> 
    4845                     <xs:maxLength value="50" /> 
    4846                   </xs:restriction> 
    4847                 </xs:simpleType> 
    4848               </xs:element> 
    4849               <xs:element name="Address" msprop:Generator_UserColumnName="Address" msprop:Generator_ColumnPropNameInRow="Address" msprop:Generator_ColumnVarNameInTable="columnAddress" msprop:Generator_ColumnPropNameInTable="AddressColumn" minOccurs="0"> 
    4850                 <xs:simpleType> 
    4851                   <xs:restriction base="xs:string"> 
    4852                     <xs:maxLength value="50" /> 
    4853                   </xs:restriction> 
    4854                 </xs:simpleType> 
    4855               </xs:element> 
    4856               <xs:element name="City" msprop:Generator_UserColumnName="City" msprop:Generator_ColumnPropNameInRow="City" msprop:Generator_ColumnVarNameInTable="columnCity" msprop:Generator_ColumnPropNameInTable="CityColumn" minOccurs="0"> 
    4857                 <xs:simpleType> 
    4858                   <xs:restriction base="xs:string"> 
    4859                     <xs:maxLength value="50" /> 
    4860                   </xs:restriction> 
    4861                 </xs:simpleType> 
    4862               </xs:element> 
    4863               <xs:element name="PostalCode" msprop:Generator_UserColumnName="PostalCode" msprop:Generator_ColumnPropNameInRow="PostalCode" msprop:Generator_ColumnVarNameInTable="columnPostalCode" msprop:Generator_ColumnPropNameInTable="PostalCodeColumn" minOccurs="0"> 
    4864                 <xs:simpleType> 
    4865                   <xs:restriction base="xs:string"> 
    4866                     <xs:maxLength value="20" /> 
    4867                   </xs:restriction> 
    4868                 </xs:simpleType> 
    4869               </xs:element> 
    4870               <xs:element name="Country" msprop:Generator_UserColumnName="Country" msprop:Generator_ColumnPropNameInRow="Country" msprop:Generator_ColumnVarNameInTable="columnCountry" msprop:Generator_ColumnPropNameInTable="CountryColumn" minOccurs="0"> 
    4871                 <xs:simpleType> 
    4872                   <xs:restriction base="xs:string"> 
    4873                     <xs:maxLength value="50" /> 
    4874                   </xs:restriction> 
    4875                 </xs:simpleType> 
    4876               </xs:element> 
    4877               <xs:element name="Nip" msprop:Generator_UserColumnName="Nip" msprop:Generator_ColumnPropNameInRow="Nip" msprop:Generator_ColumnVarNameInTable="columnNip" msprop:Generator_ColumnPropNameInTable="NipColumn" minOccurs="0"> 
    4878                 <xs:simpleType> 
    4879                   <xs:restriction base="xs:string"> 
    4880                     <xs:maxLength value="50" /> 
    4881                   </xs:restriction> 
    4882                 </xs:simpleType> 
    4883               </xs:element> 
    4884               <xs:element name="ContactName" msprop:Generator_UserColumnName="ContactName" msprop:Generator_ColumnPropNameInRow="ContactName" msprop:Generator_ColumnVarNameInTable="columnContactName" msprop:Generator_ColumnPropNameInTable="ContactNameColumn" minOccurs="0"> 
    4885                 <xs:simpleType> 
    4886                   <xs:restriction base="xs:string"> 
    4887                     <xs:maxLength value="50" /> 
    4888                   </xs:restriction> 
    4889                 </xs:simpleType> 
    4890               </xs:element> 
    4891               <xs:element name="State" msprop:Generator_UserColumnName="State" msprop:Generator_ColumnPropNameInRow="State" msprop:Generator_ColumnVarNameInTable="columnState" msprop:Generator_ColumnPropNameInTable="StateColumn" minOccurs="0"> 
    4892                 <xs:simpleType> 
    4893                   <xs:restriction base="xs:string"> 
    4894                     <xs:maxLength value="50" /> 
    4895                   </xs:restriction> 
    4896                 </xs:simpleType> 
    4897               </xs:element> 
    4898               <xs:element name="PhoneNumber" msprop:Generator_UserColumnName="PhoneNumber" msprop:Generator_ColumnPropNameInRow="PhoneNumber" msprop:Generator_ColumnVarNameInTable="columnPhoneNumber" msprop:Generator_ColumnPropNameInTable="PhoneNumberColumn" minOccurs="0"> 
    4899                 <xs:simpleType> 
    4900                   <xs:restriction base="xs:string"> 
    4901                     <xs:maxLength value="30" /> 
    4902                   </xs:restriction> 
    4903                 </xs:simpleType> 
    4904               </xs:element> 
    4905               <xs:element name="FaxNumber" msprop:Generator_UserColumnName="FaxNumber" msprop:Generator_ColumnPropNameInRow="FaxNumber" msprop:Generator_ColumnVarNameInTable="columnFaxNumber" msprop:Generator_ColumnPropNameInTable="FaxNumberColumn" minOccurs="0"> 
    4906                 <xs:simpleType> 
    4907                   <xs:restriction base="xs:string"> 
    4908                     <xs:maxLength value="30" /> 
    4909                   </xs:restriction> 
    4910                 </xs:simpleType> 
    4911               </xs:element> 
    4912               <xs:element name="Note" msprop:Generator_UserColumnName="Note" msprop:Generator_ColumnPropNameInRow="Note" msprop:Generator_ColumnVarNameInTable="columnNote" msprop:Generator_ColumnPropNameInTable="NoteColumn" minOccurs="0"> 
    4913                 <xs:simpleType> 
    4914                   <xs:restriction base="xs:string"> 
    4915                     <xs:maxLength value="200" /> 
    4916                   </xs:restriction> 
    4917                 </xs:simpleType> 
    4918               </xs:element> 
    4919               <xs:element name="data" msprop:Generator_UserColumnName="data" msprop:Generator_ColumnPropNameInRow="data" msprop:Generator_ColumnVarNameInTable="columndata" msprop:Generator_ColumnPropNameInTable="dataColumn" type="xs:dateTime" minOccurs="0" /> 
    4920               <xs:element name="Adres_Fkatura" msprop:Generator_UserColumnName="Adres_Fkatura" msprop:Generator_ColumnPropNameInRow="Adres_Fkatura" msprop:Generator_ColumnVarNameInTable="columnAdres_Fkatura" msprop:Generator_ColumnPropNameInTable="Adres_FkaturaColumn" minOccurs="0"> 
    4921                 <xs:simpleType> 
    4922                   <xs:restriction base="xs:string"> 
    4923                     <xs:maxLength value="200" /> 
    4924                   </xs:restriction> 
    4925                 </xs:simpleType> 
    4926               </xs:element> 
    4927               <xs:element name="Adres_Kor" msprop:Generator_UserColumnName="Adres_Kor" msprop:Generator_ColumnPropNameInRow="Adres_Kor" msprop:Generator_ColumnVarNameInTable="columnAdres_Kor" msprop:Generator_ColumnPropNameInTable="Adres_KorColumn" minOccurs="0"> 
    4928                 <xs:simpleType> 
    4929                   <xs:restriction base="xs:string"> 
    4930                     <xs:maxLength value="200" /> 
    4931                   </xs:restriction> 
    4932                 </xs:simpleType> 
    4933               </xs:element> 
    4934               <xs:element name="Email" msprop:Generator_UserColumnName="Email" msprop:Generator_ColumnPropNameInRow="Email" msprop:Generator_ColumnVarNameInTable="columnEmail" msprop:Generator_ColumnPropNameInTable="EmailColumn" minOccurs="0"> 
    4935                 <xs:simpleType> 
    4936                   <xs:restriction base="xs:string"> 
    4937                     <xs:maxLength value="50" /> 
    4938                   </xs:restriction> 
    4939                 </xs:simpleType> 
    4940               </xs:element> 
    4941               <xs:element name="Aktywny" msprop:Generator_UserColumnName="Aktywny" msprop:Generator_ColumnPropNameInRow="Aktywny" msprop:Generator_ColumnVarNameInTable="columnAktywny" msprop:Generator_ColumnPropNameInTable="AktywnyColumn" type="xs:boolean" default="true" /> 
    4942               <xs:element name="Platnik_VAT" msprop:Generator_UserColumnName="Platnik_VAT" msprop:Generator_ColumnPropNameInRow="Platnik_VAT" msprop:Generator_ColumnVarNameInTable="columnPlatnik_VAT" msprop:Generator_ColumnPropNameInTable="Platnik_VATColumn" type="xs:boolean" default="true" /> 
    4943               <xs:element name="UserName" msprop:Generator_UserColumnName="UserName" msprop:Generator_ColumnPropNameInRow="UserName" msprop:Generator_ColumnVarNameInTable="columnUserName" msprop:Generator_ColumnPropNameInTable="UserNameColumn" minOccurs="0"> 
    4944                 <xs:simpleType> 
    4945                   <xs:restriction base="xs:string"> 
    4946                     <xs:maxLength value="25" /> 
    4947                   </xs:restriction> 
    4948                 </xs:simpleType> 
    4949               </xs:element> 
    4950               <xs:element name="http" msprop:Generator_UserColumnName="http" msprop:Generator_ColumnPropNameInRow="http" msprop:Generator_ColumnVarNameInTable="columnhttp" msprop:Generator_ColumnPropNameInTable="httpColumn" minOccurs="0"> 
    4951                 <xs:simpleType> 
    4952                   <xs:restriction base="xs:string"> 
    4953                     <xs:maxLength value="60" /> 
    4954                   </xs:restriction> 
    4955                 </xs:simpleType> 
    4956               </xs:element> 
    4957               <xs:element name="regon" msprop:Generator_UserColumnName="regon" msprop:Generator_ColumnPropNameInRow="regon" msprop:Generator_ColumnVarNameInTable="columnregon" msprop:Generator_ColumnPropNameInTable="regonColumn" minOccurs="0"> 
    4958                 <xs:simpleType> 
    4959                   <xs:restriction base="xs:string"> 
    4960                     <xs:maxLength value="50" /> 
    4961                   </xs:restriction> 
    4962                 </xs:simpleType> 
    4963               </xs:element> 
    4964               <xs:element name="VIES" msprop:Generator_UserColumnName="VIES" msprop:Generator_ColumnPropNameInRow="VIES" msprop:Generator_ColumnVarNameInTable="columnVIES" msprop:Generator_ColumnPropNameInTable="VIESColumn" type="xs:short" minOccurs="0" /> 
    4965               <xs:element name="krs" msprop:Generator_UserColumnName="krs" msprop:Generator_ColumnPropNameInRow="krs" msprop:Generator_ColumnVarNameInTable="columnkrs" msprop:Generator_ColumnPropNameInTable="krsColumn" minOccurs="0"> 
    4966                 <xs:simpleType> 
    4967                   <xs:restriction base="xs:string"> 
    4968                     <xs:maxLength value="50" /> 
    4969                   </xs:restriction> 
    4970                 </xs:simpleType> 
    4971               </xs:element> 
    4972               <xs:element name="Modify_User" msprop:Generator_UserColumnName="Modify_User" msprop:Generator_ColumnPropNameInRow="Modify_User" msprop:Generator_ColumnVarNameInTable="columnModify_User" msprop:Generator_ColumnPropNameInTable="Modify_UserColumn" minOccurs="0"> 
    4973                 <xs:simpleType> 
    4974                   <xs:restriction base="xs:string"> 
    4975                     <xs:maxLength value="25" /> 
    4976                   </xs:restriction> 
    4977                 </xs:simpleType> 
    4978               </xs:element> 
    4979               <xs:element name="Last_Modify" msprop:Generator_UserColumnName="Last_Modify" msprop:Generator_ColumnPropNameInRow="Last_Modify" msprop:Generator_ColumnVarNameInTable="columnLast_Modify" msprop:Generator_ColumnPropNameInTable="Last_ModifyColumn" type="xs:dateTime" minOccurs="0" /> 
    4980               <xs:element name="CustomerID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="CustomerID" msprop:Generator_ColumnPropNameInRow="CustomerID" msprop:Generator_ColumnVarNameInTable="columnCustomerID" msprop:Generator_ColumnPropNameInTable="CustomerIDColumn" type="xs:int" /> 
    4981               <xs:element name="FirstName" msprop:Generator_UserColumnName="FirstName" msprop:Generator_ColumnPropNameInRow="FirstName" msprop:Generator_ColumnVarNameInTable="columnFirstName" msprop:Generator_ColumnPropNameInTable="FirstNameColumn" minOccurs="0"> 
    4982                 <xs:simpleType> 
    4983                   <xs:restriction base="xs:string"> 
    4984                     <xs:maxLength value="50" /> 
    4985                   </xs:restriction> 
    4986                 </xs:simpleType> 
    4987               </xs:element> 
    4988               <xs:element name="nipKraj" msprop:Generator_UserColumnName="nipKraj" msprop:Generator_ColumnPropNameInRow="nipKraj" msprop:Generator_ColumnVarNameInTable="columnnipKraj" msprop:Generator_ColumnPropNameInTable="nipKrajColumn" minOccurs="0"> 
    4989                 <xs:simpleType> 
    4990                   <xs:restriction base="xs:string"> 
    4991                     <xs:maxLength value="3" /> 
    4992                   </xs:restriction> 
    4993                 </xs:simpleType> 
    4994               </xs:element> 
    4995               <xs:element name="kodKlienta" msprop:Generator_UserColumnName="kodKlienta" msprop:Generator_ColumnVarNameInTable="columnkodKlienta" msprop:Generator_ColumnPropNameInRow="kodKlienta" msprop:Generator_ColumnPropNameInTable="kodKlientaColumn" minOccurs="0"> 
    4996                 <xs:simpleType> 
    4997                   <xs:restriction base="xs:string"> 
    4998                     <xs:maxLength value="10" /> 
    4999                   </xs:restriction> 
    5000                 </xs:simpleType> 
    5001               </xs:element> 
    5002               <xs:element name="AgentExpo" msprop:Generator_UserColumnName="AgentExpo" msprop:Generator_ColumnVarNameInTable="columnAgentExpo" msprop:Generator_ColumnPropNameInRow="AgentExpo" msprop:Generator_ColumnPropNameInTable="AgentExpoColumn" type="xs:string" minOccurs="0" /> 
    5003               <xs:element name="NameInMagazine" msprop:Generator_UserColumnName="NameInMagazine" msprop:Generator_ColumnVarNameInTable="columnNameInMagazine" msprop:Generator_ColumnPropNameInRow="NameInMagazine" msprop:Generator_ColumnPropNameInTable="NameInMagazineColumn" minOccurs="0"> 
    5004                 <xs:simpleType> 
    5005                   <xs:restriction base="xs:string"> 
    5006                     <xs:maxLength value="50" /> 
    5007                   </xs:restriction> 
    5008                 </xs:simpleType> 
    5009               </xs:element> 
    5010             </xs:sequence> 
    5011           </xs:complexType> 
    5012         </xs:element> 
    5013         <xs:element name="REKLAMA_STRONA" msprop:Generator_UserTableName="REKLAMA_STRONA" msprop:Generator_RowDeletedName="REKLAMA_STRONARowDeleted" msprop:Generator_RowChangedName="REKLAMA_STRONARowChanged" msprop:Generator_RowClassName="REKLAMA_STRONARow" msprop:Generator_RowChangingName="REKLAMA_STRONARowChanging" msprop:Generator_RowEvArgName="REKLAMA_STRONARowChangeEvent" msprop:Generator_RowEvHandlerName="REKLAMA_STRONARowChangeEventHandler" msprop:Generator_TableClassName="REKLAMA_STRONADataTable" msprop:Generator_TableVarName="tableREKLAMA_STRONA" msprop:Generator_RowDeletingName="REKLAMA_STRONARowDeleting" msprop:Generator_TablePropName="REKLAMA_STRONA"> 
    5014           <xs:complexType> 
    5015             <xs:sequence> 
    5016               <xs:element name="ID_REKLAMA_STRONA" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ID_REKLAMA_STRONA" msprop:Generator_ColumnPropNameInRow="ID_REKLAMA_STRONA" msprop:Generator_ColumnVarNameInTable="columnID_REKLAMA_STRONA" msprop:Generator_ColumnPropNameInTable="ID_REKLAMA_STRONAColumn" type="xs:int" /> 
    5017               <xs:element name="ReklamaId" msprop:Generator_UserColumnName="ReklamaId" msprop:Generator_ColumnPropNameInRow="ReklamaId" msprop:Generator_ColumnVarNameInTable="columnReklamaId" msprop:Generator_ColumnPropNameInTable="ReklamaIdColumn" type="xs:int" /> 
    5018               <xs:element name="NR_WYDANIA" msprop:Generator_UserColumnName="NR_WYDANIA" msprop:Generator_ColumnPropNameInRow="NR_WYDANIA" msprop:Generator_ColumnVarNameInTable="columnNR_WYDANIA" msprop:Generator_ColumnPropNameInTable="NR_WYDANIAColumn" type="xs:short" /> 
    5019               <xs:element name="ID_GRZBIETU" msprop:Generator_UserColumnName="ID_GRZBIETU" msprop:Generator_ColumnPropNameInRow="ID_GRZBIETU" msprop:Generator_ColumnVarNameInTable="columnID_GRZBIETU" msprop:Generator_ColumnPropNameInTable="ID_GRZBIETUColumn" type="xs:int" minOccurs="0" /> 
    5020               <xs:element name="STRONA" msprop:Generator_UserColumnName="STRONA" msprop:Generator_ColumnPropNameInRow="STRONA" msprop:Generator_ColumnVarNameInTable="columnSTRONA" msprop:Generator_ColumnPropNameInTable="STRONAColumn" type="xs:short" /> 
    5021             </xs:sequence> 
    5022           </xs:complexType> 
    5023         </xs:element> 
    5024         <xs:element name="KLIENCI_OSOBY_DO_KONTAKTU" msprop:Generator_UserTableName="KLIENCI_OSOBY_DO_KONTAKTU" msprop:Generator_RowDeletedName="KLIENCI_OSOBY_DO_KONTAKTURowDeleted" msprop:Generator_RowChangedName="KLIENCI_OSOBY_DO_KONTAKTURowChanged" msprop:Generator_RowClassName="KLIENCI_OSOBY_DO_KONTAKTURow" msprop:Generator_RowChangingName="KLIENCI_OSOBY_DO_KONTAKTURowChanging" msprop:Generator_RowEvArgName="KLIENCI_OSOBY_DO_KONTAKTURowChangeEvent" msprop:Generator_RowEvHandlerName="KLIENCI_OSOBY_DO_KONTAKTURowChangeEventHandler" msprop:Generator_TableClassName="KLIENCI_OSOBY_DO_KONTAKTUDataTable" msprop:Generator_TableVarName="tableKLIENCI_OSOBY_DO_KONTAKTU" msprop:Generator_RowDeletingName="KLIENCI_OSOBY_DO_KONTAKTURowDeleting" msprop:Generator_TablePropName="KLIENCI_OSOBY_DO_KONTAKTU"> 
    5025           <xs:complexType> 
    5026             <xs:sequence> 
    5027               <xs:element name="id_klienci_os_kontakt" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="id_klienci_os_kontakt" msprop:Generator_ColumnPropNameInRow="id_klienci_os_kontakt" msprop:Generator_ColumnVarNameInTable="columnid_klienci_os_kontakt" msprop:Generator_ColumnPropNameInTable="id_klienci_os_kontaktColumn" type="xs:int" /> 
    5028               <xs:element name="customerid" msprop:Generator_UserColumnName="customerid" msprop:Generator_ColumnPropNameInRow="customerid" msprop:Generator_ColumnVarNameInTable="columncustomerid" msprop:Generator_ColumnPropNameInTable="customeridColumn" type="xs:int" /> 
    5029               <xs:element name="Imie_Nazwisko" msprop:Generator_UserColumnName="Imie_Nazwisko" msprop:Generator_ColumnPropNameInRow="Imie_Nazwisko" msprop:Generator_ColumnVarNameInTable="columnImie_Nazwisko" msprop:Generator_ColumnPropNameInTable="Imie_NazwiskoColumn" minOccurs="0"> 
    5030                 <xs:simpleType> 
    5031                   <xs:restriction base="xs:string"> 
    5032                     <xs:maxLength value="50" /> 
    5033                   </xs:restriction> 
    5034                 </xs:simpleType> 
    5035               </xs:element> 
    5036               <xs:element name="stanowisko" msprop:Generator_UserColumnName="stanowisko" msprop:Generator_ColumnPropNameInRow="stanowisko" msprop:Generator_ColumnVarNameInTable="columnstanowisko" msprop:Generator_ColumnPropNameInTable="stanowiskoColumn" minOccurs="0"> 
    5037                 <xs:simpleType> 
    5038                   <xs:restriction base="xs:string"> 
    5039                     <xs:maxLength value="50" /> 
    5040                   </xs:restriction> 
    5041                 </xs:simpleType> 
    5042               </xs:element> 
    5043               <xs:element name="Tel" msprop:Generator_UserColumnName="Tel" msprop:Generator_ColumnPropNameInRow="Tel" msprop:Generator_ColumnVarNameInTable="columnTel" msprop:Generator_ColumnPropNameInTable="TelColumn" minOccurs="0"> 
    5044                 <xs:simpleType> 
    5045                   <xs:restriction base="xs:string"> 
    5046                     <xs:maxLength value="50" /> 
    5047                   </xs:restriction> 
    5048                 </xs:simpleType> 
    5049               </xs:element> 
    5050               <xs:element name="email" msprop:Generator_UserColumnName="email" msprop:Generator_ColumnPropNameInRow="email" msprop:Generator_ColumnVarNameInTable="columnemail" msprop:Generator_ColumnPropNameInTable="emailColumn" minOccurs="0"> 
    5051                 <xs:simpleType> 
    5052                   <xs:restriction base="xs:string"> 
    5053                     <xs:maxLength value="50" /> 
    5054                   </xs:restriction> 
    5055                 </xs:simpleType> 
    5056               </xs:element> 
    5057               <xs:element name="opis" msprop:Generator_UserColumnName="opis" msprop:Generator_ColumnPropNameInRow="opis" msprop:Generator_ColumnVarNameInTable="columnopis" msprop:Generator_ColumnPropNameInTable="opisColumn" minOccurs="0"> 
    5058                 <xs:simpleType> 
    5059                   <xs:restriction base="xs:string"> 
    5060                     <xs:maxLength value="50" /> 
    5061                   </xs:restriction> 
    5062                 </xs:simpleType> 
    5063               </xs:element> 
    5064             </xs:sequence> 
    5065           </xs:complexType> 
    5066         </xs:element> 
    5067         <xs:element name="PRODUKCJA" msprop:Generator_UserTableName="PRODUKCJA" msprop:Generator_RowDeletedName="PRODUKCJARowDeleted" msprop:Generator_RowChangedName="PRODUKCJARowChanged" msprop:Generator_RowClassName="PRODUKCJARow" msprop:Generator_RowChangingName="PRODUKCJARowChanging" msprop:Generator_RowEvArgName="PRODUKCJARowChangeEvent" msprop:Generator_RowEvHandlerName="PRODUKCJARowChangeEventHandler" msprop:Generator_TableClassName="PRODUKCJADataTable" msprop:Generator_TableVarName="tablePRODUKCJA" msprop:Generator_RowDeletingName="PRODUKCJARowDeleting" msprop:Generator_TablePropName="PRODUKCJA"> 
    5068           <xs:complexType> 
    5069             <xs:sequence> 
    5070               <xs:element name="ID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ID" msprop:Generator_ColumnVarNameInTable="columnID" msprop:Generator_ColumnPropNameInRow="ID" msprop:Generator_ColumnPropNameInTable="IDColumn" type="xs:int" /> 
    5071               <xs:element name="ReklamaId" msprop:Generator_UserColumnName="ReklamaId" msprop:Generator_ColumnVarNameInTable="columnReklamaId" msprop:Generator_ColumnPropNameInRow="ReklamaId" msprop:Generator_ColumnPropNameInTable="ReklamaIdColumn" type="xs:int" minOccurs="0" /> 
    5072               <xs:element name="TYP_PROJEKTU" msprop:Generator_UserColumnName="TYP_PROJEKTU" msprop:Generator_ColumnVarNameInTable="columnTYP_PROJEKTU" msprop:Generator_ColumnPropNameInRow="TYP_PROJEKTU" msprop:Generator_ColumnPropNameInTable="TYP_PROJEKTUColumn" default="NOWY" minOccurs="0"> 
    5073                 <xs:simpleType> 
    5074                   <xs:restriction base="xs:string"> 
    5075                     <xs:maxLength value="50" /> 
    5076                   </xs:restriction> 
    5077                 </xs:simpleType> 
    5078               </xs:element> 
    5079               <xs:element name="NAZWA_ZAMOWIENIA" msprop:Generator_UserColumnName="NAZWA_ZAMOWIENIA" msprop:Generator_ColumnVarNameInTable="columnNAZWA_ZAMOWIENIA" msprop:Generator_ColumnPropNameInRow="NAZWA_ZAMOWIENIA" msprop:Generator_ColumnPropNameInTable="NAZWA_ZAMOWIENIAColumn" minOccurs="0"> 
    5080                 <xs:simpleType> 
    5081                   <xs:restriction base="xs:string"> 
    5082                     <xs:maxLength value="50" /> 
    5083                   </xs:restriction> 
    5084                 </xs:simpleType> 
    5085               </xs:element> 
    5086               <xs:element name="STAN" msprop:Generator_UserColumnName="STAN" msprop:Generator_ColumnVarNameInTable="columnSTAN" msprop:Generator_ColumnPropNameInRow="STAN" msprop:Generator_ColumnPropNameInTable="STANColumn" default="ZAMAWIAM"> 
    5087                 <xs:simpleType> 
    5088                   <xs:restriction base="xs:string"> 
    5089                     <xs:maxLength value="20" /> 
    5090                   </xs:restriction> 
    5091                 </xs:simpleType> 
    5092               </xs:element> 
    5093               <xs:element name="AGENT" msprop:Generator_UserColumnName="AGENT" msprop:Generator_ColumnVarNameInTable="columnAGENT" msprop:Generator_ColumnPropNameInRow="AGENT" msprop:Generator_ColumnPropNameInTable="AGENTColumn" minOccurs="0"> 
    5094                 <xs:simpleType> 
    5095                   <xs:restriction base="xs:string"> 
    5096                     <xs:maxLength value="50" /> 
    5097                   </xs:restriction> 
    5098                 </xs:simpleType> 
    5099               </xs:element> 
    5100               <xs:element name="DATA_AGENT" msprop:Generator_UserColumnName="DATA_AGENT" msprop:Generator_ColumnVarNameInTable="columnDATA_AGENT" msprop:Generator_ColumnPropNameInRow="DATA_AGENT" msprop:Generator_ColumnPropNameInTable="DATA_AGENTColumn" type="xs:dateTime" minOccurs="0" /> 
    5101               <xs:element name="ZAMAWIAM_NA" msprop:Generator_UserColumnName="ZAMAWIAM_NA" msprop:Generator_ColumnVarNameInTable="columnZAMAWIAM_NA" msprop:Generator_ColumnPropNameInRow="ZAMAWIAM_NA" msprop:Generator_ColumnPropNameInTable="ZAMAWIAM_NAColumn" type="xs:dateTime" minOccurs="0" /> 
    5102               <xs:element name="PRIORYTET" msprop:Generator_UserColumnName="PRIORYTET" msprop:Generator_ColumnVarNameInTable="columnPRIORYTET" msprop:Generator_ColumnPropNameInRow="PRIORYTET" msprop:Generator_ColumnPropNameInTable="PRIORYTETColumn" default="NORMALNY" minOccurs="0"> 
    5103                 <xs:simpleType> 
    5104                   <xs:restriction base="xs:string"> 
    5105                     <xs:maxLength value="50" /> 
    5106                   </xs:restriction> 
    5107                 </xs:simpleType> 
    5108               </xs:element> 
    5109               <xs:element name="PRODUKCJA" msprop:Generator_UserColumnName="PRODUKCJA" msprop:Generator_ColumnVarNameInTable="columnPRODUKCJA" msprop:Generator_ColumnPropNameInRow="PRODUKCJA" msprop:Generator_ColumnPropNameInTable="PRODUKCJAColumn" minOccurs="0"> 
    5110                 <xs:simpleType> 
    5111                   <xs:restriction base="xs:string"> 
    5112                     <xs:maxLength value="50" /> 
    5113                   </xs:restriction> 
    5114                 </xs:simpleType> 
    5115               </xs:element> 
    5116               <xs:element name="DATA_PRODUKCJA" msprop:Generator_UserColumnName="DATA_PRODUKCJA" msprop:Generator_ColumnVarNameInTable="columnDATA_PRODUKCJA" msprop:Generator_ColumnPropNameInRow="DATA_PRODUKCJA" msprop:Generator_ColumnPropNameInTable="DATA_PRODUKCJAColumn" type="xs:dateTime" minOccurs="0" /> 
    5117               <xs:element name="DTP" msprop:Generator_UserColumnName="DTP" msprop:Generator_ColumnVarNameInTable="columnDTP" msprop:Generator_ColumnPropNameInRow="DTP" msprop:Generator_ColumnPropNameInTable="DTPColumn" minOccurs="0"> 
    5118                 <xs:simpleType> 
    5119                   <xs:restriction base="xs:string"> 
    5120                     <xs:maxLength value="50" /> 
    5121                   </xs:restriction> 
    5122                 </xs:simpleType> 
    5123               </xs:element> 
    5124               <xs:element name="DATA_DTP" msprop:Generator_UserColumnName="DATA_DTP" msprop:Generator_ColumnVarNameInTable="columnDATA_DTP" msprop:Generator_ColumnPropNameInRow="DATA_DTP" msprop:Generator_ColumnPropNameInTable="DATA_DTPColumn" type="xs:dateTime" minOccurs="0" /> 
    5125               <xs:element name="KOREKTA" msprop:Generator_UserColumnName="KOREKTA" msprop:Generator_ColumnVarNameInTable="columnKOREKTA" msprop:Generator_ColumnPropNameInRow="KOREKTA" msprop:Generator_ColumnPropNameInTable="KOREKTAColumn" minOccurs="0"> 
    5126                 <xs:simpleType> 
    5127                   <xs:restriction base="xs:string"> 
    5128                     <xs:maxLength value="50" /> 
    5129                   </xs:restriction> 
    5130                 </xs:simpleType> 
    5131               </xs:element> 
    5132               <xs:element name="DATA_KOREKTA" msprop:Generator_UserColumnName="DATA_KOREKTA" msprop:Generator_ColumnVarNameInTable="columnDATA_KOREKTA" msprop:Generator_ColumnPropNameInRow="DATA_KOREKTA" msprop:Generator_ColumnPropNameInTable="DATA_KOREKTAColumn" type="xs:dateTime" minOccurs="0" /> 
    5133               <xs:element name="DTP_PO_KOR" msprop:Generator_UserColumnName="DTP_PO_KOR" msprop:Generator_ColumnVarNameInTable="columnDTP_PO_KOR" msprop:Generator_ColumnPropNameInRow="DTP_PO_KOR" msprop:Generator_ColumnPropNameInTable="DTP_PO_KORColumn" minOccurs="0"> 
    5134                 <xs:simpleType> 
    5135                   <xs:restriction base="xs:string"> 
    5136                     <xs:maxLength value="50" /> 
    5137                   </xs:restriction> 
    5138                 </xs:simpleType> 
    5139               </xs:element> 
    5140               <xs:element name="DATA_DTP_PO_KOR" msprop:Generator_UserColumnName="DATA_DTP_PO_KOR" msprop:Generator_ColumnVarNameInTable="columnDATA_DTP_PO_KOR" msprop:Generator_ColumnPropNameInRow="DATA_DTP_PO_KOR" msprop:Generator_ColumnPropNameInTable="DATA_DTP_PO_KORColumn" type="xs:dateTime" minOccurs="0" /> 
    5141               <xs:element name="DATA_AKCEPTACJI" msprop:Generator_UserColumnName="DATA_AKCEPTACJI" msprop:Generator_ColumnVarNameInTable="columnDATA_AKCEPTACJI" msprop:Generator_ColumnPropNameInRow="DATA_AKCEPTACJI" msprop:Generator_ColumnPropNameInTable="DATA_AKCEPTACJIColumn" type="xs:dateTime" minOccurs="0" /> 
    5142               <xs:element name="OCENA" msprop:Generator_UserColumnName="OCENA" msprop:Generator_ColumnVarNameInTable="columnOCENA" msprop:Generator_ColumnPropNameInRow="OCENA" msprop:Generator_ColumnPropNameInTable="OCENAColumn" type="xs:short" default="0" /> 
    5143               <xs:element name="OPIS" msprop:Generator_UserColumnName="OPIS" msprop:Generator_ColumnVarNameInTable="columnOPIS" msprop:Generator_ColumnPropNameInRow="OPIS" msprop:Generator_ColumnPropNameInTable="OPISColumn" minOccurs="0"> 
    5144                 <xs:simpleType> 
    5145                   <xs:restriction base="xs:string"> 
    5146                     <xs:maxLength value="1024" /> 
    5147                   </xs:restriction> 
    5148                 </xs:simpleType> 
    5149               </xs:element> 
    5150               <xs:element name="PLIK" msprop:Generator_UserColumnName="PLIK" msprop:Generator_ColumnVarNameInTable="columnPLIK" msprop:Generator_ColumnPropNameInRow="PLIK" msprop:Generator_ColumnPropNameInTable="PLIKColumn" minOccurs="0"> 
    5151                 <xs:simpleType> 
    5152                   <xs:restriction base="xs:string"> 
    5153                     <xs:maxLength value="200" /> 
    5154                   </xs:restriction> 
    5155                 </xs:simpleType> 
    5156               </xs:element> 
    5157               <xs:element name="uwagi" msprop:Generator_UserColumnName="uwagi" msprop:Generator_ColumnVarNameInTable="columnuwagi" msprop:Generator_ColumnPropNameInRow="uwagi" msprop:Generator_ColumnPropNameInTable="uwagiColumn" minOccurs="0"> 
    5158                 <xs:simpleType> 
    5159                   <xs:restriction base="xs:string"> 
    5160                     <xs:maxLength value="200" /> 
    5161                   </xs:restriction> 
    5162                 </xs:simpleType> 
    5163               </xs:element> 
    5164               <xs:element name="DataEmisji" msprop:Generator_UserColumnName="DataEmisji" msprop:Generator_ColumnVarNameInTable="columnDataEmisji" msprop:Generator_ColumnPropNameInRow="DataEmisji" msprop:Generator_ColumnPropNameInTable="DataEmisjiColumn" minOccurs="0"> 
    5165                 <xs:simpleType> 
    5166                   <xs:restriction base="xs:string"> 
    5167                     <xs:maxLength value="50" /> 
    5168                   </xs:restriction> 
    5169                 </xs:simpleType> 
    5170               </xs:element> 
    5171               <xs:element name="Moduł" msprop:Generator_UserColumnName="Moduł" msprop:Generator_ColumnVarNameInTable="columnModuł" msprop:Generator_ColumnPropNameInRow="Moduł" msprop:Generator_ColumnPropNameInTable="ModułColumn" minOccurs="0"> 
    5172                 <xs:simpleType> 
    5173                   <xs:restriction base="xs:string"> 
    5174                     <xs:maxLength value="20" /> 
    5175                   </xs:restriction> 
    5176                 </xs:simpleType> 
    5177               </xs:element> 
    5178               <xs:element name="szer" msprop:Generator_UserColumnName="szer" msprop:Generator_ColumnVarNameInTable="columnszer" msprop:Generator_ColumnPropNameInRow="szer" msprop:Generator_ColumnPropNameInTable="szerColumn" type="xs:short" minOccurs="0" /> 
    5179               <xs:element name="wys" msprop:Generator_UserColumnName="wys" msprop:Generator_ColumnVarNameInTable="columnwys" msprop:Generator_ColumnPropNameInRow="wys" msprop:Generator_ColumnPropNameInTable="wysColumn" type="xs:short" minOccurs="0" /> 
    5180               <xs:element name="lokalizacja" msprop:Generator_UserColumnName="lokalizacja" msprop:Generator_ColumnVarNameInTable="columnlokalizacja" msprop:Generator_ColumnPropNameInRow="lokalizacja" msprop:Generator_ColumnPropNameInTable="lokalizacjaColumn" minOccurs="0"> 
    5181                 <xs:simpleType> 
    5182                   <xs:restriction base="xs:string"> 
    5183                     <xs:maxLength value="100" /> 
    5184                   </xs:restriction> 
    5185                 </xs:simpleType> 
    5186               </xs:element> 
    5187               <xs:element name="kolor" msprop:Generator_UserColumnName="kolor" msprop:Generator_ColumnVarNameInTable="columnkolor" msprop:Generator_ColumnPropNameInRow="kolor" msprop:Generator_ColumnPropNameInTable="kolorColumn" minOccurs="0"> 
    5188                 <xs:simpleType> 
    5189                   <xs:restriction base="xs:string"> 
    5190                     <xs:maxLength value="10" /> 
    5191                   </xs:restriction> 
    5192                 </xs:simpleType> 
    5193               </xs:element> 
    5194               <xs:element name="szkic" msprop:Generator_UserColumnName="szkic" msprop:Generator_ColumnVarNameInTable="columnszkic" msprop:Generator_ColumnPropNameInRow="szkic" msprop:Generator_ColumnPropNameInTable="szkicColumn" minOccurs="0"> 
    5195                 <xs:simpleType> 
    5196                   <xs:restriction base="xs:string"> 
    5197                     <xs:maxLength value="50" /> 
    5198                   </xs:restriction> 
    5199                 </xs:simpleType> 
    5200               </xs:element> 
    5201               <xs:element name="kurier" msprop:Generator_UserColumnName="kurier" msprop:Generator_ColumnVarNameInTable="columnkurier" msprop:Generator_ColumnPropNameInRow="kurier" msprop:Generator_ColumnPropNameInTable="kurierColumn" minOccurs="0"> 
    5202                 <xs:simpleType> 
    5203                   <xs:restriction base="xs:string"> 
    5204                     <xs:maxLength value="50" /> 
    5205                   </xs:restriction> 
    5206                 </xs:simpleType> 
    5207               </xs:element> 
    5208               <xs:element name="path_to_material" msprop:Generator_UserColumnName="path_to_material" msprop:Generator_ColumnVarNameInTable="columnpath_to_material" msprop:Generator_ColumnPropNameInRow="path_to_material" msprop:Generator_ColumnPropNameInTable="path_to_materialColumn" minOccurs="0"> 
    5209                 <xs:simpleType> 
    5210                   <xs:restriction base="xs:string"> 
    5211                     <xs:maxLength value="100" /> 
    5212                   </xs:restriction> 
    5213                 </xs:simpleType> 
    5214               </xs:element> 
    5215             </xs:sequence> 
    5216           </xs:complexType> 
    5217         </xs:element> 
    5218         <xs:element name="FAKTURY" msprop:Generator_UserTableName="FAKTURY" msprop:Generator_RowDeletedName="FAKTURYRowDeleted" msprop:Generator_RowChangedName="FAKTURYRowChanged" msprop:Generator_RowClassName="FAKTURYRow" msprop:Generator_RowChangingName="FAKTURYRowChanging" msprop:Generator_RowEvArgName="FAKTURYRowChangeEvent" msprop:Generator_RowEvHandlerName="FAKTURYRowChangeEventHandler" msprop:Generator_TableClassName="FAKTURYDataTable" msprop:Generator_TableVarName="tableFAKTURY" msprop:Generator_RowDeletingName="FAKTURYRowDeleting" msprop:Generator_TablePropName="FAKTURY"> 
    5219           <xs:complexType> 
    5220             <xs:sequence> 
    5221               <xs:element name="ID_FAKTURY" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ID_FAKTURY" msprop:Generator_ColumnPropNameInRow="ID_FAKTURY" msprop:Generator_ColumnVarNameInTable="columnID_FAKTURY" msprop:Generator_ColumnPropNameInTable="ID_FAKTURYColumn" type="xs:int" /> 
    5222               <xs:element name="NUMER" msprop:Generator_UserColumnName="NUMER" msprop:Generator_ColumnPropNameInRow="NUMER" msprop:Generator_ColumnVarNameInTable="columnNUMER" msprop:Generator_ColumnPropNameInTable="NUMERColumn" type="xs:int" minOccurs="0" /> 
    5223               <xs:element name="NUMER_ROZ" msprop:Generator_UserColumnName="NUMER_ROZ" msprop:Generator_ColumnPropNameInRow="NUMER_ROZ" msprop:Generator_ColumnVarNameInTable="columnNUMER_ROZ" msprop:Generator_ColumnPropNameInTable="NUMER_ROZColumn" minOccurs="0"> 
    5224                 <xs:simpleType> 
    5225                   <xs:restriction base="xs:string"> 
    5226                     <xs:maxLength value="8" /> 
    5227                   </xs:restriction> 
    5228                 </xs:simpleType> 
    5229               </xs:element> 
    5230               <xs:element name="NUMER_ROK" msprop:Generator_UserColumnName="NUMER_ROK" msprop:Generator_ColumnPropNameInRow="NUMER_ROK" msprop:Generator_ColumnVarNameInTable="columnNUMER_ROK" msprop:Generator_ColumnPropNameInTable="NUMER_ROKColumn" type="xs:int" minOccurs="0" /> 
    5231               <xs:element name="DATA_WYSTAWIENIA" msprop:Generator_UserColumnName="DATA_WYSTAWIENIA" msprop:Generator_ColumnPropNameInRow="DATA_WYSTAWIENIA" msprop:Generator_ColumnVarNameInTable="columnDATA_WYSTAWIENIA" msprop:Generator_ColumnPropNameInTable="DATA_WYSTAWIENIAColumn" type="xs:dateTime" minOccurs="0" /> 
    5232               <xs:element name="MIEJSCOWOSC_WYSTAWIENIA" msprop:Generator_UserColumnName="MIEJSCOWOSC_WYSTAWIENIA" msprop:Generator_ColumnPropNameInRow="MIEJSCOWOSC_WYSTAWIENIA" msprop:Generator_ColumnVarNameInTable="columnMIEJSCOWOSC_WYSTAWIENIA" msprop:Generator_ColumnPropNameInTable="MIEJSCOWOSC_WYSTAWIENIAColumn" minOccurs="0"> 
    5233                 <xs:simpleType> 
    5234                   <xs:restriction base="xs:string"> 
    5235                     <xs:maxLength value="30" /> 
    5236                   </xs:restriction> 
    5237                 </xs:simpleType> 
    5238               </xs:element> 
    5239               <xs:element name="ID_SPRZEDAWCY" msprop:Generator_UserColumnName="ID_SPRZEDAWCY" msprop:Generator_ColumnPropNameInRow="ID_SPRZEDAWCY" msprop:Generator_ColumnVarNameInTable="columnID_SPRZEDAWCY" msprop:Generator_ColumnPropNameInTable="ID_SPRZEDAWCYColumn" type="xs:int" minOccurs="0" /> 
    5240               <xs:element name="ID_NABYWCY" msprop:Generator_UserColumnName="ID_NABYWCY" msprop:Generator_ColumnPropNameInRow="ID_NABYWCY" msprop:Generator_ColumnVarNameInTable="columnID_NABYWCY" msprop:Generator_ColumnPropNameInTable="ID_NABYWCYColumn" type="xs:int" minOccurs="0" /> 
    5241               <xs:element name="DATA_SPRZEDAZY" msprop:Generator_UserColumnName="DATA_SPRZEDAZY" msprop:Generator_ColumnPropNameInRow="DATA_SPRZEDAZY" msprop:Generator_ColumnVarNameInTable="columnDATA_SPRZEDAZY" msprop:Generator_ColumnPropNameInTable="DATA_SPRZEDAZYColumn" type="xs:dateTime" minOccurs="0" /> 
    5242               <xs:element name="PODPIS_WYSTAWIL" msprop:Generator_UserColumnName="PODPIS_WYSTAWIL" msprop:Generator_ColumnPropNameInRow="PODPIS_WYSTAWIL" msprop:Generator_ColumnVarNameInTable="columnPODPIS_WYSTAWIL" msprop:Generator_ColumnPropNameInTable="PODPIS_WYSTAWILColumn" minOccurs="0"> 
    5243                 <xs:simpleType> 
    5244                   <xs:restriction base="xs:string"> 
    5245                     <xs:maxLength value="30" /> 
    5246                   </xs:restriction> 
    5247                 </xs:simpleType> 
    5248               </xs:element> 
    5249               <xs:element name="PODPIS_ODEBRAL" msprop:Generator_UserColumnName="PODPIS_ODEBRAL" msprop:Generator_ColumnPropNameInRow="PODPIS_ODEBRAL" msprop:Generator_ColumnVarNameInTable="columnPODPIS_ODEBRAL" msprop:Generator_ColumnPropNameInTable="PODPIS_ODEBRALColumn" minOccurs="0"> 
    5250                 <xs:simpleType> 
    5251                   <xs:restriction base="xs:string"> 
    5252                     <xs:maxLength value="30" /> 
    5253                   </xs:restriction> 
    5254                 </xs:simpleType> 
    5255               </xs:element> 
    5256               <xs:element name="opis" msprop:Generator_UserColumnName="opis" msprop:Generator_ColumnPropNameInRow="opis" msprop:Generator_ColumnVarNameInTable="columnopis" msprop:Generator_ColumnPropNameInTable="opisColumn" minOccurs="0"> 
    5257                 <xs:simpleType> 
    5258                   <xs:restriction base="xs:string"> 
    5259                     <xs:maxLength value="1073741823" /> 
    5260                   </xs:restriction> 
    5261                 </xs:simpleType> 
    5262               </xs:element> 
    5263               <xs:element name="SPOSOB_ZAPLATY" msprop:Generator_UserColumnName="SPOSOB_ZAPLATY" msprop:Generator_ColumnPropNameInRow="SPOSOB_ZAPLATY" msprop:Generator_ColumnVarNameInTable="columnSPOSOB_ZAPLATY" msprop:Generator_ColumnPropNameInTable="SPOSOB_ZAPLATYColumn" minOccurs="0"> 
    5264                 <xs:simpleType> 
    5265                   <xs:restriction base="xs:string"> 
    5266                     <xs:maxLength value="20" /> 
    5267                   </xs:restriction> 
    5268                 </xs:simpleType> 
    5269               </xs:element> 
    5270               <xs:element name="TERMIN_ZAPLATY" msprop:Generator_UserColumnName="TERMIN_ZAPLATY" msprop:Generator_ColumnPropNameInRow="TERMIN_ZAPLATY" msprop:Generator_ColumnVarNameInTable="columnTERMIN_ZAPLATY" msprop:Generator_ColumnPropNameInTable="TERMIN_ZAPLATYColumn" type="xs:dateTime" minOccurs="0" /> 
    5271               <xs:element name="ZAPLACONO" msprop:Generator_UserColumnName="ZAPLACONO" msprop:Generator_ColumnPropNameInRow="ZAPLACONO" msprop:Generator_ColumnVarNameInTable="columnZAPLACONO" msprop:Generator_ColumnPropNameInTable="ZAPLACONOColumn" type="xs:boolean" minOccurs="0" /> 
    5272               <xs:element name="BYL_WYDRUK" msprop:Generator_UserColumnName="BYL_WYDRUK" msprop:Generator_ColumnPropNameInRow="BYL_WYDRUK" msprop:Generator_ColumnVarNameInTable="columnBYL_WYDRUK" msprop:Generator_ColumnPropNameInTable="BYL_WYDRUKColumn" type="xs:boolean" minOccurs="0" /> 
    5273               <xs:element name="NABYWCA_ADRES" msprop:Generator_UserColumnName="NABYWCA_ADRES" msprop:Generator_ColumnPropNameInRow="NABYWCA_ADRES" msprop:Generator_ColumnVarNameInTable="columnNABYWCA_ADRES" msprop:Generator_ColumnPropNameInTable="NABYWCA_ADRESColumn" minOccurs="0"> 
    5274                 <xs:simpleType> 
    5275                   <xs:restriction base="xs:string"> 
    5276                     <xs:maxLength value="1073741823" /> 
    5277                   </xs:restriction> 
    5278                 </xs:simpleType> 
    5279               </xs:element> 
    5280               <xs:element name="SPRZEDAWCA_ADRES" msprop:Generator_UserColumnName="SPRZEDAWCA_ADRES" msprop:Generator_ColumnPropNameInRow="SPRZEDAWCA_ADRES" msprop:Generator_ColumnVarNameInTable="columnSPRZEDAWCA_ADRES" msprop:Generator_ColumnPropNameInTable="SPRZEDAWCA_ADRESColumn" minOccurs="0"> 
    5281                 <xs:simpleType> 
    5282                   <xs:restriction base="xs:string"> 
    5283                     <xs:maxLength value="1073741823" /> 
    5284                   </xs:restriction> 
    5285                 </xs:simpleType> 
    5286               </xs:element> 
    5287               <xs:element name="SPRZEDAWCA_NIP" msprop:Generator_UserColumnName="SPRZEDAWCA_NIP" msprop:Generator_ColumnPropNameInRow="SPRZEDAWCA_NIP" msprop:Generator_ColumnVarNameInTable="columnSPRZEDAWCA_NIP" msprop:Generator_ColumnPropNameInTable="SPRZEDAWCA_NIPColumn" minOccurs="0"> 
    5288                 <xs:simpleType> 
    5289                   <xs:restriction base="xs:string"> 
    5290                     <xs:maxLength value="50" /> 
    5291                   </xs:restriction> 
    5292                 </xs:simpleType> 
    5293               </xs:element> 
    5294               <xs:element name="NABYWCA_NIP" msprop:Generator_UserColumnName="NABYWCA_NIP" msprop:Generator_ColumnPropNameInRow="NABYWCA_NIP" msprop:Generator_ColumnVarNameInTable="columnNABYWCA_NIP" msprop:Generator_ColumnPropNameInTable="NABYWCA_NIPColumn" minOccurs="0"> 
    5295                 <xs:simpleType> 
    5296                   <xs:restriction base="xs:string"> 
    5297                     <xs:maxLength value="50" /> 
    5298                   </xs:restriction> 
    5299                 </xs:simpleType> 
    5300               </xs:element> 
    5301               <xs:element name="FAKTURA_TYP" msprop:Generator_UserColumnName="FAKTURA_TYP" msprop:Generator_ColumnPropNameInRow="FAKTURA_TYP" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_TYP" msprop:Generator_ColumnPropNameInTable="FAKTURA_TYPColumn" type="xs:short" minOccurs="0" /> 
    5302               <xs:element name="FAKTURA_PODTYP" msprop:Generator_UserColumnName="FAKTURA_PODTYP" msprop:Generator_ColumnPropNameInRow="FAKTURA_PODTYP" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_PODTYP" msprop:Generator_ColumnPropNameInTable="FAKTURA_PODTYPColumn" type="xs:short" minOccurs="0" /> 
    5303               <xs:element name="ID_KONTA" msprop:Generator_UserColumnName="ID_KONTA" msprop:Generator_ColumnPropNameInRow="ID_KONTA" msprop:Generator_ColumnVarNameInTable="columnID_KONTA" msprop:Generator_ColumnPropNameInTable="ID_KONTAColumn" type="xs:short" minOccurs="0" /> 
    5304               <xs:element name="EKSPORT" msprop:Generator_UserColumnName="EKSPORT" msprop:Generator_ColumnPropNameInRow="EKSPORT" msprop:Generator_ColumnVarNameInTable="columnEKSPORT" msprop:Generator_ColumnPropNameInTable="EKSPORTColumn" type="xs:boolean" default="false" /> 
    5305               <xs:element name="EXPORTED" msprop:Generator_UserColumnName="EXPORTED" msprop:Generator_ColumnPropNameInRow="EXPORTED" msprop:Generator_ColumnVarNameInTable="columnEXPORTED" msprop:Generator_ColumnPropNameInTable="EXPORTEDColumn" type="xs:boolean" default="false" /> 
    5306               <xs:element name="ID_TYTUL" msprop:Generator_UserColumnName="ID_TYTUL" msprop:Generator_ColumnPropNameInRow="ID_TYTUL" msprop:Generator_ColumnVarNameInTable="columnID_TYTUL" msprop:Generator_ColumnPropNameInTable="ID_TYTULColumn" type="xs:short" minOccurs="0" /> 
    5307               <xs:element name="EXPORTED_DATA" msprop:Generator_UserColumnName="EXPORTED_DATA" msprop:Generator_ColumnPropNameInRow="EXPORTED_DATA" msprop:Generator_ColumnVarNameInTable="columnEXPORTED_DATA" msprop:Generator_ColumnPropNameInTable="EXPORTED_DATAColumn" type="xs:dateTime" minOccurs="0" /> 
    5308               <xs:element name="suma_zaplat" msprop:Generator_UserColumnName="suma_zaplat" msprop:Generator_ColumnPropNameInRow="suma_zaplat" msprop:Generator_ColumnVarNameInTable="columnsuma_zaplat" msprop:Generator_ColumnPropNameInTable="suma_zaplatColumn" type="xs:decimal" minOccurs="0" /> 
    5309               <xs:element name="ID_FK_KOR" msprop:Generator_UserColumnName="ID_FK_KOR" msprop:Generator_ColumnPropNameInRow="ID_FK_KOR" msprop:Generator_ColumnVarNameInTable="columnID_FK_KOR" msprop:Generator_ColumnPropNameInTable="ID_FK_KORColumn" type="xs:int" minOccurs="0" /> 
    5310               <xs:element name="zaplata_data" msprop:Generator_UserColumnName="zaplata_data" msprop:Generator_ColumnPropNameInRow="zaplata_data" msprop:Generator_ColumnVarNameInTable="columnzaplata_data" msprop:Generator_ColumnPropNameInTable="zaplata_dataColumn" type="xs:dateTime" minOccurs="0" /> 
    5311               <xs:element name="zaplata_opis" msprop:Generator_UserColumnName="zaplata_opis" msprop:Generator_ColumnPropNameInRow="zaplata_opis" msprop:Generator_ColumnVarNameInTable="columnzaplata_opis" msprop:Generator_ColumnPropNameInTable="zaplata_opisColumn" minOccurs="0"> 
    5312                 <xs:simpleType> 
    5313                   <xs:restriction base="xs:string"> 
    5314                     <xs:maxLength value="50" /> 
    5315                   </xs:restriction> 
    5316                 </xs:simpleType> 
    5317               </xs:element> 
    5318               <xs:element name="Zaliczka_Brutto" msprop:Generator_UserColumnName="Zaliczka_Brutto" msprop:Generator_ColumnPropNameInRow="Zaliczka_Brutto" msprop:Generator_ColumnVarNameInTable="columnZaliczka_Brutto" msprop:Generator_ColumnPropNameInTable="Zaliczka_BruttoColumn" type="xs:decimal" minOccurs="0" /> 
    5319               <xs:element name="Zaliczka_Data" msprop:Generator_UserColumnName="Zaliczka_Data" msprop:Generator_ColumnPropNameInRow="Zaliczka_Data" msprop:Generator_ColumnVarNameInTable="columnZaliczka_Data" msprop:Generator_ColumnPropNameInTable="Zaliczka_DataColumn" type="xs:dateTime" minOccurs="0" /> 
    5320               <xs:element name="waluta_brutto" msprop:Generator_UserColumnName="waluta_brutto" msprop:Generator_ColumnPropNameInRow="waluta_brutto" msprop:Generator_ColumnVarNameInTable="columnwaluta_brutto" msprop:Generator_ColumnPropNameInTable="waluta_bruttoColumn" type="xs:double" minOccurs="0" /> 
    5321               <xs:element name="waluta_miano" msprop:Generator_UserColumnName="waluta_miano" msprop:Generator_ColumnPropNameInRow="waluta_miano" msprop:Generator_ColumnVarNameInTable="columnwaluta_miano" msprop:Generator_ColumnPropNameInTable="waluta_mianoColumn" minOccurs="0"> 
    5322                 <xs:simpleType> 
    5323                   <xs:restriction base="xs:string"> 
    5324                     <xs:maxLength value="4" /> 
    5325                   </xs:restriction> 
    5326                 </xs:simpleType> 
    5327               </xs:element> 
    5328               <xs:element name="waluta_kurs" msprop:Generator_UserColumnName="waluta_kurs" msprop:Generator_ColumnPropNameInRow="waluta_kurs" msprop:Generator_ColumnVarNameInTable="columnwaluta_kurs" msprop:Generator_ColumnPropNameInTable="waluta_kursColumn" type="xs:double" minOccurs="0" /> 
    5329               <xs:element name="waluta_przelicznik" msprop:Generator_UserColumnName="waluta_przelicznik" msprop:Generator_ColumnPropNameInRow="waluta_przelicznik" msprop:Generator_ColumnVarNameInTable="columnwaluta_przelicznik" msprop:Generator_ColumnPropNameInTable="waluta_przelicznikColumn" type="xs:int" minOccurs="0" /> 
    5330               <xs:element name="waluta_kurs_z_dnia" msprop:Generator_UserColumnName="waluta_kurs_z_dnia" msprop:Generator_ColumnPropNameInRow="waluta_kurs_z_dnia" msprop:Generator_ColumnVarNameInTable="columnwaluta_kurs_z_dnia" msprop:Generator_ColumnPropNameInTable="waluta_kurs_z_dniaColumn" type="xs:dateTime" minOccurs="0" /> 
    5331               <xs:element name="waluta_tabela_nr" msprop:Generator_UserColumnName="waluta_tabela_nr" msprop:Generator_ColumnPropNameInRow="waluta_tabela_nr" msprop:Generator_ColumnVarNameInTable="columnwaluta_tabela_nr" msprop:Generator_ColumnPropNameInTable="waluta_tabela_nrColumn" minOccurs="0"> 
    5332                 <xs:simpleType> 
    5333                   <xs:restriction base="xs:string"> 
    5334                     <xs:maxLength value="15" /> 
    5335                   </xs:restriction> 
    5336                 </xs:simpleType> 
    5337               </xs:element> 
    5338               <xs:element name="idZamowienia" msprop:Generator_UserColumnName="idZamowienia" msprop:Generator_ColumnVarNameInTable="columnidZamowienia" msprop:Generator_ColumnPropNameInRow="idZamowienia" msprop:Generator_ColumnPropNameInTable="idZamowieniaColumn" type="xs:int" minOccurs="0" /> 
    5339               <xs:element name="idFakturyKorekta" msprop:Generator_UserColumnName="idFakturyKorekta" msprop:Generator_ColumnPropNameInRow="idFakturyKorekta" msprop:Generator_ColumnVarNameInTable="columnidFakturyKorekta" msprop:Generator_ColumnPropNameInTable="idFakturyKorektaColumn" type="xs:int" minOccurs="0" /> 
    5340               <xs:element name="idFakturyVAT" msprop:Generator_UserColumnName="idFakturyVAT" msprop:Generator_ColumnPropNameInRow="idFakturyVAT" msprop:Generator_ColumnVarNameInTable="columnidFakturyVAT" msprop:Generator_ColumnPropNameInTable="idFakturyVATColumn" type="xs:int" minOccurs="0" /> 
    5341               <xs:element name="NrTygodnia" msdata:ReadOnly="true" msprop:Generator_UserColumnName="NrTygodnia" msprop:nullValue="_empty" msprop:Generator_ColumnPropNameInRow="NrTygodnia" msprop:Generator_ColumnPropNameInTable="NrTygodniaColumn" msprop:Generator_ColumnVarNameInTable="columnNrTygodnia" type="xs:string" minOccurs="0" /> 
    5342               <xs:element name="SystemKsiegowyId" msprop:Generator_UserColumnName="SystemKsiegowyId" msprop:Generator_ColumnVarNameInTable="columnSystemKsiegowyId" msprop:Generator_ColumnPropNameInRow="SystemKsiegowyId" msprop:Generator_ColumnPropNameInTable="SystemKsiegowyIdColumn" type="xs:unsignedByte" minOccurs="0" /> 
    5343               <xs:element name="KOREKTA" msprop:Generator_UserColumnName="KOREKTA" msprop:Generator_ColumnVarNameInTable="columnKOREKTA" msprop:Generator_ColumnPropNameInRow="KOREKTA" msprop:Generator_ColumnPropNameInTable="KOREKTAColumn" type="xs:boolean" /> 
    5344             </xs:sequence> 
    5345           </xs:complexType> 
    5346         </xs:element> 
    5347         <xs:element name="FAKTURA_DETAILS" msprop:Generator_UserTableName="FAKTURA_DETAILS" msprop:Generator_RowDeletedName="FAKTURA_DETAILSRowDeleted" msprop:Generator_RowChangedName="FAKTURA_DETAILSRowChanged" msprop:Generator_RowClassName="FAKTURA_DETAILSRow" msprop:Generator_RowChangingName="FAKTURA_DETAILSRowChanging" msprop:Generator_RowEvArgName="FAKTURA_DETAILSRowChangeEvent" msprop:Generator_RowEvHandlerName="FAKTURA_DETAILSRowChangeEventHandler" msprop:Generator_TableClassName="FAKTURA_DETAILSDataTable" msprop:Generator_TableVarName="tableFAKTURA_DETAILS" msprop:Generator_RowDeletingName="FAKTURA_DETAILSRowDeleting" msprop:Generator_TablePropName="FAKTURA_DETAILS"> 
    5348           <xs:complexType> 
    5349             <xs:sequence> 
    5350               <xs:element name="ID_FAKTURA_DETAILS" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ID_FAKTURA_DETAILS" msprop:Generator_ColumnPropNameInRow="ID_FAKTURA_DETAILS" msprop:Generator_ColumnVarNameInTable="columnID_FAKTURA_DETAILS" msprop:Generator_ColumnPropNameInTable="ID_FAKTURA_DETAILSColumn" type="xs:int" /> 
    5351               <xs:element name="ID_FAKTURY" msprop:Generator_UserColumnName="ID_FAKTURY" msprop:Generator_ColumnPropNameInRow="ID_FAKTURY" msprop:Generator_ColumnVarNameInTable="columnID_FAKTURY" msprop:Generator_ColumnPropNameInTable="ID_FAKTURYColumn" type="xs:int" minOccurs="0" /> 
    5352               <xs:element name="ROK" msprop:Generator_UserColumnName="ROK" msprop:Generator_ColumnPropNameInRow="ROK" msprop:Generator_ColumnVarNameInTable="columnROK" msprop:Generator_ColumnPropNameInTable="ROKColumn" type="xs:int" minOccurs="0" /> 
    5353               <xs:element name="MIESIAC" msprop:Generator_UserColumnName="MIESIAC" msprop:Generator_ColumnPropNameInRow="MIESIAC" msprop:Generator_ColumnVarNameInTable="columnMIESIAC" msprop:Generator_ColumnPropNameInTable="MIESIACColumn" type="xs:short" minOccurs="0" /> 
    5354               <xs:element name="NAZWA_USLUGI" msprop:Generator_UserColumnName="NAZWA_USLUGI" msprop:Generator_ColumnPropNameInRow="NAZWA_USLUGI" msprop:Generator_ColumnVarNameInTable="columnNAZWA_USLUGI" msprop:Generator_ColumnPropNameInTable="NAZWA_USLUGIColumn" minOccurs="0"> 
    5355                 <xs:simpleType> 
    5356                   <xs:restriction base="xs:string"> 
    5357                     <xs:maxLength value="100" /> 
    5358                   </xs:restriction> 
    5359                 </xs:simpleType> 
    5360               </xs:element> 
    5361               <xs:element name="SYMBOL_SWW" msprop:Generator_UserColumnName="SYMBOL_SWW" msprop:Generator_ColumnPropNameInRow="SYMBOL_SWW" msprop:Generator_ColumnVarNameInTable="columnSYMBOL_SWW" msprop:Generator_ColumnPropNameInTable="SYMBOL_SWWColumn" minOccurs="0"> 
    5362                 <xs:simpleType> 
    5363                   <xs:restriction base="xs:string"> 
    5364                     <xs:maxLength value="30" /> 
    5365                   </xs:restriction> 
    5366                 </xs:simpleType> 
    5367               </xs:element> 
    5368               <xs:element name="JM" msprop:Generator_UserColumnName="JM" msprop:Generator_ColumnPropNameInRow="JM" msprop:Generator_ColumnVarNameInTable="columnJM" msprop:Generator_ColumnPropNameInTable="JMColumn" minOccurs="0"> 
    5369                 <xs:simpleType> 
    5370                   <xs:restriction base="xs:string"> 
    5371                     <xs:maxLength value="5" /> 
    5372                   </xs:restriction> 
    5373                 </xs:simpleType> 
    5374               </xs:element> 
    5375               <xs:element name="ILOSC" msprop:Generator_UserColumnName="ILOSC" msprop:Generator_ColumnPropNameInRow="ILOSC" msprop:Generator_ColumnVarNameInTable="columnILOSC" msprop:Generator_ColumnPropNameInTable="ILOSCColumn" type="xs:int" minOccurs="0" /> 
    5376               <xs:element name="CENA_JEDN" msprop:Generator_UserColumnName="CENA_JEDN" msprop:Generator_ColumnPropNameInRow="CENA_JEDN" msprop:Generator_ColumnVarNameInTable="columnCENA_JEDN" msprop:Generator_ColumnPropNameInTable="CENA_JEDNColumn" type="xs:decimal" minOccurs="0" /> 
    5377               <xs:element name="UPUST_PR" msprop:Generator_UserColumnName="UPUST_PR" msprop:Generator_ColumnPropNameInRow="UPUST_PR" msprop:Generator_ColumnVarNameInTable="columnUPUST_PR" msprop:Generator_ColumnPropNameInTable="UPUST_PRColumn" type="xs:double" minOccurs="0" /> 
    5378               <xs:element name="UPUST_NETTO" msprop:Generator_UserColumnName="UPUST_NETTO" msprop:Generator_ColumnPropNameInRow="UPUST_NETTO" msprop:Generator_ColumnVarNameInTable="columnUPUST_NETTO" msprop:Generator_ColumnPropNameInTable="UPUST_NETTOColumn" type="xs:decimal" minOccurs="0" /> 
    5379               <xs:element name="NETTO" msprop:Generator_UserColumnName="NETTO" msprop:Generator_ColumnPropNameInRow="NETTO" msprop:Generator_ColumnVarNameInTable="columnNETTO" msprop:Generator_ColumnPropNameInTable="NETTOColumn" type="xs:decimal" minOccurs="0" /> 
    5380               <xs:element name="S_VAT" msprop:Generator_UserColumnName="S_VAT" msprop:Generator_ColumnPropNameInRow="S_VAT" msprop:Generator_ColumnVarNameInTable="columnS_VAT" msprop:Generator_ColumnPropNameInTable="S_VATColumn" type="xs:double" minOccurs="0" /> 
    5381               <xs:element name="VAT" msprop:Generator_UserColumnName="VAT" msprop:Generator_ColumnPropNameInRow="VAT" msprop:Generator_ColumnVarNameInTable="columnVAT" msprop:Generator_ColumnPropNameInTable="VATColumn" type="xs:decimal" minOccurs="0" /> 
    5382               <xs:element name="BRUTTO" msprop:Generator_UserColumnName="BRUTTO" msprop:Generator_ColumnPropNameInRow="BRUTTO" msprop:Generator_ColumnVarNameInTable="columnBRUTTO" msprop:Generator_ColumnPropNameInTable="BRUTTOColumn" type="xs:decimal" minOccurs="0" /> 
    5383               <xs:element name="TYTUL" msprop:Generator_UserColumnName="TYTUL" msprop:Generator_ColumnPropNameInRow="TYTUL" msprop:Generator_ColumnVarNameInTable="columnTYTUL" msprop:Generator_ColumnPropNameInTable="TYTULColumn" type="xs:short" minOccurs="0" /> 
    5384               <xs:element name="NR_WYDANIA" msprop:Generator_UserColumnName="NR_WYDANIA" msprop:Generator_ColumnPropNameInRow="NR_WYDANIA" msprop:Generator_ColumnVarNameInTable="columnNR_WYDANIA" msprop:Generator_ColumnPropNameInTable="NR_WYDANIAColumn" type="xs:short" minOccurs="0" /> 
    5385               <xs:element name="TYP" msprop:Generator_UserColumnName="TYP" msprop:Generator_ColumnPropNameInRow="TYP" msprop:Generator_ColumnVarNameInTable="columnTYP" msprop:Generator_ColumnPropNameInTable="TYPColumn" type="xs:short" minOccurs="0" /> 
    5386               <xs:element name="PODTYP" msprop:Generator_UserColumnName="PODTYP" msprop:Generator_ColumnPropNameInRow="PODTYP" msprop:Generator_ColumnVarNameInTable="columnPODTYP" msprop:Generator_ColumnPropNameInTable="PODTYPColumn" type="xs:short" minOccurs="0" /> 
    5387               <xs:element name="wyroznienie" msprop:Generator_UserColumnName="wyroznienie" msprop:Generator_ColumnVarNameInTable="columnwyroznienie" msprop:Generator_ColumnPropNameInRow="wyroznienie" msprop:Generator_ColumnPropNameInTable="wyroznienieColumn" type="xs:boolean" default="false" minOccurs="0" /> 
    5388               <xs:element name="reklamaId" msprop:Generator_UserColumnName="reklamaId" msprop:Generator_ColumnPropNameInRow="reklamaId" msprop:Generator_ColumnVarNameInTable="columnreklamaId" msprop:Generator_ColumnPropNameInTable="reklamaIdColumn" type="xs:int" minOccurs="0" /> 
    5389             </xs:sequence> 
    5390           </xs:complexType> 
    5391         </xs:element> 
    5392         <xs:element name="KL_KLIENCI" msprop:Generator_UserTableName="KL_KLIENCI" msprop:Generator_RowDeletedName="KL_KLIENCIRowDeleted" msprop:Generator_RowChangedName="KL_KLIENCIRowChanged" msprop:Generator_RowClassName="KL_KLIENCIRow" msprop:Generator_RowChangingName="KL_KLIENCIRowChanging" msprop:Generator_RowEvArgName="KL_KLIENCIRowChangeEvent" msprop:Generator_RowEvHandlerName="KL_KLIENCIRowChangeEventHandler" msprop:Generator_TableClassName="KL_KLIENCIDataTable" msprop:Generator_TableVarName="tableKL_KLIENCI" msprop:Generator_RowDeletingName="KL_KLIENCIRowDeleting" msprop:Generator_TablePropName="KL_KLIENCI"> 
    5393           <xs:complexType> 
    5394             <xs:sequence> 
    5395               <xs:element name="ID_KL_KLIENCI" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ID_KL_KLIENCI" msprop:Generator_ColumnPropNameInRow="ID_KL_KLIENCI" msprop:Generator_ColumnVarNameInTable="columnID_KL_KLIENCI" msprop:Generator_ColumnPropNameInTable="ID_KL_KLIENCIColumn" type="xs:int" /> 
    5396               <xs:element name="ID_KL_1" msprop:Generator_UserColumnName="ID_KL_1" msprop:Generator_ColumnPropNameInRow="ID_KL_1" msprop:Generator_ColumnVarNameInTable="columnID_KL_1" msprop:Generator_ColumnPropNameInTable="ID_KL_1Column" type="xs:int" default="1" /> 
    5397               <xs:element name="ID_KL_2" msprop:Generator_UserColumnName="ID_KL_2" msprop:Generator_ColumnPropNameInRow="ID_KL_2" msprop:Generator_ColumnVarNameInTable="columnID_KL_2" msprop:Generator_ColumnPropNameInTable="ID_KL_2Column" type="xs:int" default="2" /> 
    5398               <xs:element name="ID_KL_3" msprop:Generator_UserColumnName="ID_KL_3" msprop:Generator_ColumnPropNameInRow="ID_KL_3" msprop:Generator_ColumnVarNameInTable="columnID_KL_3" msprop:Generator_ColumnPropNameInTable="ID_KL_3Column" type="xs:int" default="1" /> 
    5399               <xs:element name="Customerid" msprop:Generator_UserColumnName="Customerid" msprop:Generator_ColumnPropNameInRow="Customerid" msprop:Generator_ColumnVarNameInTable="columnCustomerid" msprop:Generator_ColumnPropNameInTable="CustomeridColumn" type="xs:int" /> 
    5400               <xs:element name="username" msprop:Generator_UserColumnName="username" msprop:Generator_ColumnPropNameInRow="username" msprop:Generator_ColumnVarNameInTable="columnusername" msprop:Generator_ColumnPropNameInTable="usernameColumn"> 
    5401                 <xs:simpleType> 
    5402                   <xs:restriction base="xs:string"> 
    5403                     <xs:maxLength value="20" /> 
    5404                   </xs:restriction> 
    5405                 </xs:simpleType> 
    5406               </xs:element> 
    5407               <xs:element name="data" msprop:Generator_UserColumnName="data" msprop:Generator_ColumnPropNameInRow="data" msprop:Generator_ColumnVarNameInTable="columndata" msprop:Generator_ColumnPropNameInTable="dataColumn" type="xs:dateTime" /> 
    5408             </xs:sequence> 
    5409           </xs:complexType> 
    5410         </xs:element> 
    5411         <xs:element name="ReklamyZestawienie" msprop:Generator_UserTableName="ReklamyZestawienie" msprop:Generator_RowDeletedName="ReklamyZestawienieRowDeleted" msprop:Generator_RowChangedName="ReklamyZestawienieRowChanged" msprop:Generator_RowClassName="ReklamyZestawienieRow" msprop:Generator_RowChangingName="ReklamyZestawienieRowChanging" msprop:Generator_RowEvArgName="ReklamyZestawienieRowChangeEvent" msprop:Generator_RowEvHandlerName="ReklamyZestawienieRowChangeEventHandler" msprop:Generator_TableClassName="ReklamyZestawienieDataTable" msprop:Generator_TableVarName="tableReklamyZestawienie" msprop:Generator_RowDeletingName="ReklamyZestawienieRowDeleting" msprop:Generator_TablePropName="ReklamyZestawienie"> 
    5412           <xs:complexType> 
    5413             <xs:sequence> 
    5414               <xs:element name="ReklamaID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ReklamaID" msprop:Generator_ColumnVarNameInTable="columnReklamaID" msprop:Generator_ColumnPropNameInRow="ReklamaID" msprop:Generator_ColumnPropNameInTable="ReklamaIDColumn" type="xs:int" /> 
    5415               <xs:element name="CustomerID" msprop:Generator_UserColumnName="CustomerID" msprop:Generator_ColumnVarNameInTable="columnCustomerID" msprop:Generator_ColumnPropNameInRow="CustomerID" msprop:Generator_ColumnPropNameInTable="CustomerIDColumn" type="xs:int" minOccurs="0" /> 
    5416               <xs:element name="SYMBOL_x0020_AKWIZYTORA" msprop:Generator_UserColumnName="SYMBOL AKWIZYTORA" msprop:Generator_ColumnVarNameInTable="columnSYMBOL_AKWIZYTORA" msprop:Generator_ColumnPropNameInRow="SYMBOL_AKWIZYTORA" msprop:Generator_ColumnPropNameInTable="SYMBOL_AKWIZYTORAColumn" minOccurs="0"> 
    5417                 <xs:simpleType> 
    5418                   <xs:restriction base="xs:string"> 
    5419                     <xs:maxLength value="25" /> 
    5420                   </xs:restriction> 
    5421                 </xs:simpleType> 
    5422               </xs:element> 
    5423               <xs:element name="TYTUŁ" msprop:Generator_UserColumnName="TYTUŁ" msprop:Generator_ColumnVarNameInTable="columnTYTUŁ" msprop:Generator_ColumnPropNameInRow="TYTUŁ" msprop:Generator_ColumnPropNameInTable="TYTUŁColumn" minOccurs="0"> 
    5424                 <xs:simpleType> 
    5425                   <xs:restriction base="xs:string"> 
    5426                     <xs:maxLength value="5" /> 
    5427                   </xs:restriction> 
    5428                 </xs:simpleType> 
    5429               </xs:element> 
    5430               <xs:element name="TYP" msprop:Generator_UserColumnName="TYP" msprop:Generator_ColumnVarNameInTable="columnTYP" msprop:Generator_ColumnPropNameInRow="TYP" msprop:Generator_ColumnPropNameInTable="TYPColumn" minOccurs="0"> 
    5431                 <xs:simpleType> 
    5432                   <xs:restriction base="xs:string"> 
    5433                     <xs:maxLength value="10" /> 
    5434                   </xs:restriction> 
    5435                 </xs:simpleType> 
    5436               </xs:element> 
    5437               <xs:element name="ID_x0020_REKLAMY" msprop:Generator_UserColumnName="ID REKLAMY" msprop:Generator_ColumnVarNameInTable="columnID_REKLAMY" msprop:Generator_ColumnPropNameInRow="ID_REKLAMY" msprop:Generator_ColumnPropNameInTable="ID_REKLAMYColumn" minOccurs="0"> 
    5438                 <xs:simpleType> 
    5439                   <xs:restriction base="xs:string"> 
    5440                     <xs:maxLength value="10" /> 
    5441                   </xs:restriction> 
    5442                 </xs:simpleType> 
    5443               </xs:element> 
    5444               <xs:element name="NICK_x0020_NAME" msprop:Generator_UserColumnName="NICK NAME" msprop:Generator_ColumnVarNameInTable="columnNICK_NAME" msprop:Generator_ColumnPropNameInRow="NICK_NAME" msprop:Generator_ColumnPropNameInTable="NICK_NAMEColumn" minOccurs="0"> 
    5445                 <xs:simpleType> 
    5446                   <xs:restriction base="xs:string"> 
    5447                     <xs:maxLength value="50" /> 
    5448                   </xs:restriction> 
    5449                 </xs:simpleType> 
    5450               </xs:element> 
    5451               <xs:element name="DATA_x0020_ZAMÓWIENIA" msprop:Generator_UserColumnName="DATA ZAMÓWIENIA" msprop:Generator_ColumnVarNameInTable="columnDATA_ZAMÓWIENIA" msprop:Generator_ColumnPropNameInRow="DATA_ZAMÓWIENIA" msprop:Generator_ColumnPropNameInTable="DATA_ZAMÓWIENIAColumn" type="xs:dateTime" minOccurs="0" /> 
    5452               <xs:element name="SZER" msprop:Generator_UserColumnName="SZER" msprop:Generator_ColumnVarNameInTable="columnSZER" msprop:Generator_ColumnPropNameInRow="SZER" msprop:Generator_ColumnPropNameInTable="SZERColumn" type="xs:double" minOccurs="0" /> 
    5453               <xs:element name="WYS" msprop:Generator_UserColumnName="WYS" msprop:Generator_ColumnVarNameInTable="columnWYS" msprop:Generator_ColumnPropNameInRow="WYS" msprop:Generator_ColumnPropNameInTable="WYSColumn" type="xs:double" minOccurs="0" /> 
    5454               <xs:element name="MOD_TYP" msprop:Generator_UserColumnName="MOD_TYP" msprop:Generator_ColumnVarNameInTable="columnMOD_TYP" msprop:Generator_ColumnPropNameInRow="MOD_TYP" msprop:Generator_ColumnPropNameInTable="MOD_TYPColumn" minOccurs="0"> 
    5455                 <xs:simpleType> 
    5456                   <xs:restriction base="xs:string"> 
    5457                     <xs:maxLength value="15" /> 
    5458                   </xs:restriction> 
    5459                 </xs:simpleType> 
    5460               </xs:element> 
    5461               <xs:element name="STRONA" msprop:Generator_UserColumnName="STRONA" msprop:Generator_ColumnVarNameInTable="columnSTRONA" msprop:Generator_ColumnPropNameInRow="STRONA" msprop:Generator_ColumnPropNameInTable="STRONAColumn" minOccurs="0"> 
    5462                 <xs:simpleType> 
    5463                   <xs:restriction base="xs:string"> 
    5464                     <xs:maxLength value="25" /> 
    5465                   </xs:restriction> 
    5466                 </xs:simpleType> 
    5467               </xs:element> 
    5468               <xs:element name="STR_x0020_NR_x0020_WT" msprop:Generator_UserColumnName="STR NR WT" msprop:Generator_ColumnVarNameInTable="columnSTR_NR_WT" msprop:Generator_ColumnPropNameInRow="STR_NR_WT" msprop:Generator_ColumnPropNameInTable="STR_NR_WTColumn" type="xs:short" minOccurs="0" /> 
    5469               <xs:element name="STR_x0020_NR_x0020_PT" msprop:Generator_UserColumnName="STR NR PT" msprop:Generator_ColumnVarNameInTable="columnSTR_NR_PT" msprop:Generator_ColumnPropNameInRow="STR_NR_PT" msprop:Generator_ColumnPropNameInTable="STR_NR_PTColumn" type="xs:short" minOccurs="0" /> 
    5470               <xs:element name="KROTNOŚĆ" msprop:Generator_UserColumnName="KROTNOŚĆ" msprop:Generator_ColumnVarNameInTable="columnKROTNOŚĆ" msprop:Generator_ColumnPropNameInRow="KROTNOŚĆ" msprop:Generator_ColumnPropNameInTable="KROTNOŚĆColumn" type="xs:short" minOccurs="0" /> 
    5471               <xs:element name="ODSTĘP" msprop:Generator_UserColumnName="ODSTĘP" msprop:Generator_ColumnVarNameInTable="columnODSTĘP" msprop:Generator_ColumnPropNameInRow="ODSTĘP" msprop:Generator_ColumnPropNameInTable="ODSTĘPColumn" type="xs:unsignedByte" minOccurs="0" /> 
    5472               <xs:element name="KOLOR" msprop:Generator_UserColumnName="KOLOR" msprop:Generator_ColumnVarNameInTable="columnKOLOR" msprop:Generator_ColumnPropNameInRow="KOLOR" msprop:Generator_ColumnPropNameInTable="KOLORColumn" minOccurs="0"> 
    5473                 <xs:simpleType> 
    5474                   <xs:restriction base="xs:string"> 
    5475                     <xs:maxLength value="5" /> 
    5476                   </xs:restriction> 
    5477                 </xs:simpleType> 
    5478               </xs:element> 
    5479               <xs:element name="WSKAZANIE_x0020_MIEJSCA" msprop:Generator_UserColumnName="WSKAZANIE MIEJSCA" msprop:Generator_ColumnVarNameInTable="columnWSKAZANIE_MIEJSCA" msprop:Generator_ColumnPropNameInRow="WSKAZANIE_MIEJSCA" msprop:Generator_ColumnPropNameInTable="WSKAZANIE_MIEJSCAColumn" type="xs:boolean" minOccurs="0" /> 
    5480               <xs:element name="RABAT" msprop:Generator_UserColumnName="RABAT" msprop:Generator_ColumnVarNameInTable="columnRABAT" msprop:Generator_ColumnPropNameInRow="RABAT" msprop:Generator_ColumnPropNameInTable="RABATColumn" type="xs:double" minOccurs="0" /> 
    5481               <xs:element name="RABAT_x0020_WARTOŚĆ" msprop:Generator_UserColumnName="RABAT WARTOŚĆ" msprop:Generator_ColumnVarNameInTable="columnRABAT_WARTOŚĆ" msprop:Generator_ColumnPropNameInRow="RABAT_WARTOŚĆ" msprop:Generator_ColumnPropNameInTable="RABAT_WARTOŚĆColumn" type="xs:double" minOccurs="0" /> 
    5482               <xs:element name="ZAPŁACONO" msprop:Generator_UserColumnName="ZAPŁACONO" msprop:Generator_ColumnVarNameInTable="columnZAPŁACONO" msprop:Generator_ColumnPropNameInRow="ZAPŁACONO" msprop:Generator_ColumnPropNameInTable="ZAPŁACONOColumn" type="xs:boolean" minOccurs="0" /> 
    5483               <xs:element name="ZATWIERDZONO_x0020_DO_x0020_DRUKU" msprop:Generator_UserColumnName="ZATWIERDZONO DO DRUKU" msprop:Generator_ColumnVarNameInTable="columnZATWIERDZONO_DO_DRUKU" msprop:Generator_ColumnPropNameInRow="ZATWIERDZONO_DO_DRUKU" msprop:Generator_ColumnPropNameInTable="ZATWIERDZONO_DO_DRUKUColumn" type="xs:boolean" minOccurs="0" /> 
    5484               <xs:element name="DATA_x0020_ZAPŁATY" msprop:Generator_UserColumnName="DATA ZAPŁATY" msprop:Generator_ColumnVarNameInTable="columnDATA_ZAPŁATY" msprop:Generator_ColumnPropNameInRow="DATA_ZAPŁATY" msprop:Generator_ColumnPropNameInTable="DATA_ZAPŁATYColumn" type="xs:dateTime" minOccurs="0" /> 
    5485               <xs:element name="SYMBOL_x0020_POTWIERDZENIA" msprop:Generator_UserColumnName="SYMBOL POTWIERDZENIA" msprop:Generator_ColumnVarNameInTable="columnSYMBOL_POTWIERDZENIA" msprop:Generator_ColumnPropNameInRow="SYMBOL_POTWIERDZENIA" msprop:Generator_ColumnPropNameInTable="SYMBOL_POTWIERDZENIAColumn" minOccurs="0"> 
    5486                 <xs:simpleType> 
    5487                   <xs:restriction base="xs:string"> 
    5488                     <xs:maxLength value="25" /> 
    5489                   </xs:restriction> 
    5490                 </xs:simpleType> 
    5491               </xs:element> 
    5492               <xs:element name="RODZAJ_x0020_POTWIERDZENIA" msprop:Generator_UserColumnName="RODZAJ POTWIERDZENIA" msprop:Generator_ColumnVarNameInTable="columnRODZAJ_POTWIERDZENIA" msprop:Generator_ColumnPropNameInRow="RODZAJ_POTWIERDZENIA" msprop:Generator_ColumnPropNameInTable="RODZAJ_POTWIERDZENIAColumn" minOccurs="0"> 
    5493                 <xs:simpleType> 
    5494                   <xs:restriction base="xs:string"> 
    5495                     <xs:maxLength value="50" /> 
    5496                   </xs:restriction> 
    5497                 </xs:simpleType> 
    5498               </xs:element> 
    5499               <xs:element name="CENA_x0020_JEDN" msprop:Generator_UserColumnName="CENA JEDN" msprop:Generator_ColumnVarNameInTable="columnCENA_JEDN" msprop:Generator_ColumnPropNameInRow="CENA_JEDN" msprop:Generator_ColumnPropNameInTable="CENA_JEDNColumn" type="xs:double" minOccurs="0" /> 
    5500               <xs:element name="NETTO" msprop:Generator_UserColumnName="NETTO" msprop:Generator_ColumnVarNameInTable="columnNETTO" msprop:Generator_ColumnPropNameInRow="NETTO" msprop:Generator_ColumnPropNameInTable="NETTOColumn" type="xs:double" minOccurs="0" /> 
    5501               <xs:element name="VAT" msprop:Generator_UserColumnName="VAT" msprop:Generator_ColumnVarNameInTable="columnVAT" msprop:Generator_ColumnPropNameInRow="VAT" msprop:Generator_ColumnPropNameInTable="VATColumn" type="xs:double" minOccurs="0" /> 
    5502               <xs:element name="PVAT" msprop:Generator_UserColumnName="PVAT" msprop:Generator_ColumnVarNameInTable="columnPVAT" msprop:Generator_ColumnPropNameInRow="PVAT" msprop:Generator_ColumnPropNameInTable="PVATColumn" type="xs:double" minOccurs="0" /> 
    5503               <xs:element name="BRUTTO" msprop:Generator_UserColumnName="BRUTTO" msprop:Generator_ColumnVarNameInTable="columnBRUTTO" msprop:Generator_ColumnPropNameInRow="BRUTTO" msprop:Generator_ColumnPropNameInTable="BRUTTOColumn" type="xs:double" minOccurs="0" /> 
    5504               <xs:element name="PROCENT_x0020_PROWIZJI" msprop:Generator_UserColumnName="PROCENT PROWIZJI" msprop:Generator_ColumnVarNameInTable="columnPROCENT_PROWIZJI" msprop:Generator_ColumnPropNameInRow="PROCENT_PROWIZJI" msprop:Generator_ColumnPropNameInTable="PROCENT_PROWIZJIColumn" type="xs:double" minOccurs="0" /> 
    5505               <xs:element name="PROWIZJA" msprop:Generator_UserColumnName="PROWIZJA" msprop:Generator_ColumnVarNameInTable="columnPROWIZJA" msprop:Generator_ColumnPropNameInRow="PROWIZJA" msprop:Generator_ColumnPropNameInTable="PROWIZJAColumn" type="xs:double" minOccurs="0" /> 
    5506               <xs:element name="INFO" msprop:Generator_UserColumnName="INFO" msprop:Generator_ColumnVarNameInTable="columnINFO" msprop:Generator_ColumnPropNameInRow="INFO" msprop:Generator_ColumnPropNameInTable="INFOColumn" minOccurs="0"> 
    5507                 <xs:simpleType> 
    5508                   <xs:restriction base="xs:string"> 
    5509                     <xs:maxLength value="1000" /> 
    5510                   </xs:restriction> 
    5511                 </xs:simpleType> 
    5512               </xs:element> 
    5513               <xs:element name="FAKTURA_x0020_NUMER" msprop:Generator_UserColumnName="FAKTURA NUMER" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_NUMER" msprop:Generator_ColumnPropNameInRow="FAKTURA_NUMER" msprop:Generator_ColumnPropNameInTable="FAKTURA_NUMERColumn" minOccurs="0"> 
    5514                 <xs:simpleType> 
    5515                   <xs:restriction base="xs:string"> 
    5516                     <xs:maxLength value="50" /> 
    5517                   </xs:restriction> 
    5518                 </xs:simpleType> 
    5519               </xs:element> 
    5520               <xs:element name="FAKTURA_x0020_ID_x0020_KONTA" msprop:Generator_UserColumnName="FAKTURA ID KONTA" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_ID_KONTA" msprop:Generator_ColumnPropNameInRow="FAKTURA_ID_KONTA" msprop:Generator_ColumnPropNameInTable="FAKTURA_ID_KONTAColumn" type="xs:int" minOccurs="0" /> 
    5521               <xs:element name="FAKTURA_x0020_DATA_x0020_WYSTAWIENIA" msprop:Generator_UserColumnName="FAKTURA DATA WYSTAWIENIA" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_DATA_WYSTAWIENIA" msprop:Generator_ColumnPropNameInRow="FAKTURA_DATA_WYSTAWIENIA" msprop:Generator_ColumnPropNameInTable="FAKTURA_DATA_WYSTAWIENIAColumn" type="xs:dateTime" minOccurs="0" /> 
    5522               <xs:element name="FAKTURA_x0020_DATA_x0020_SPRZEDAŻY" msprop:Generator_UserColumnName="FAKTURA DATA SPRZEDAŻY" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_DATA_SPRZEDAŻY" msprop:Generator_ColumnPropNameInRow="FAKTURA_DATA_SPRZEDAŻY" msprop:Generator_ColumnPropNameInTable="FAKTURA_DATA_SPRZEDAŻYColumn" type="xs:dateTime" minOccurs="0" /> 
    5523               <xs:element name="FAKTURA_x0020_TERMIN_x0020_ZAPŁATY" msprop:Generator_UserColumnName="FAKTURA TERMIN ZAPŁATY" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_TERMIN_ZAPŁATY" msprop:Generator_ColumnPropNameInRow="FAKTURA_TERMIN_ZAPŁATY" msprop:Generator_ColumnPropNameInTable="FAKTURA_TERMIN_ZAPŁATYColumn" type="xs:dateTime" minOccurs="0" /> 
    5524               <xs:element name="FAKTURA_x0020_FORMA_x0020_PŁATNOŚCI" msprop:Generator_UserColumnName="FAKTURA FORMA PŁATNOŚCI" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_FORMA_PŁATNOŚCI" msprop:Generator_ColumnPropNameInRow="FAKTURA_FORMA_PŁATNOŚCI" msprop:Generator_ColumnPropNameInTable="FAKTURA_FORMA_PŁATNOŚCIColumn" type="xs:unsignedByte" minOccurs="0" /> 
    5525               <xs:element name="FAKTURA_x0020_WYSTAWIONO" msprop:Generator_UserColumnName="FAKTURA WYSTAWIONO" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_WYSTAWIONO" msprop:Generator_ColumnPropNameInRow="FAKTURA_WYSTAWIONO" msprop:Generator_ColumnPropNameInTable="FAKTURA_WYSTAWIONOColumn" type="xs:boolean" minOccurs="0" /> 
    5526               <xs:element name="FAKTURA_x0020_RODZAJ" msprop:Generator_UserColumnName="FAKTURA RODZAJ" msprop:Generator_ColumnVarNameInTable="columnFAKTURA_RODZAJ" msprop:Generator_ColumnPropNameInRow="FAKTURA_RODZAJ" msprop:Generator_ColumnPropNameInTable="FAKTURA_RODZAJColumn" minOccurs="0"> 
    5527                 <xs:simpleType> 
    5528                   <xs:restriction base="xs:string"> 
    5529                     <xs:maxLength value="50" /> 
    5530                   </xs:restriction> 
    5531                 </xs:simpleType> 
    5532               </xs:element> 
    5533               <xs:element name="USERID" msprop:Generator_UserColumnName="USERID" msprop:Generator_ColumnVarNameInTable="columnUSERID" msprop:Generator_ColumnPropNameInRow="USERID" msprop:Generator_ColumnPropNameInTable="USERIDColumn" minOccurs="0"> 
    5534                 <xs:simpleType> 
    5535                   <xs:restriction base="xs:string"> 
    5536                     <xs:maxLength value="50" /> 
    5537                   </xs:restriction> 
    5538                 </xs:simpleType> 
    5539               </xs:element> 
    5540               <xs:element name="DATA_x0020_OSTATNIEJ_x0020_MODYFIKACJI" msprop:Generator_UserColumnName="DATA OSTATNIEJ MODYFIKACJI" msprop:Generator_ColumnVarNameInTable="columnDATA_OSTATNIEJ_MODYFIKACJI" msprop:Generator_ColumnPropNameInRow="DATA_OSTATNIEJ_MODYFIKACJI" msprop:Generator_ColumnPropNameInTable="DATA_OSTATNIEJ_MODYFIKACJIColumn" type="xs:dateTime" minOccurs="0" /> 
    5541               <xs:element name="FK-TR" msprop:Generator_UserColumnName="FK-TR" msprop:Generator_ColumnVarNameInTable="_columnFK_TR" msprop:Generator_ColumnPropNameInRow="_FK_TR" msprop:Generator_ColumnPropNameInTable="_FK_TRColumn" minOccurs="0"> 
    5542                 <xs:simpleType> 
    5543                   <xs:restriction base="xs:string"> 
    5544                     <xs:maxLength value="1" /> 
    5545                   </xs:restriction> 
    5546                 </xs:simpleType> 
    5547               </xs:element> 
    5548               <xs:element name="F_NR" msprop:Generator_UserColumnName="F_NR" msprop:Generator_ColumnVarNameInTable="columnF_NR" msprop:Generator_ColumnPropNameInRow="F_NR" msprop:Generator_ColumnPropNameInTable="F_NRColumn" type="xs:int" minOccurs="0" /> 
    5549               <xs:element name="F_NR_ROZ" msprop:Generator_UserColumnName="F_NR_ROZ" msprop:Generator_ColumnVarNameInTable="columnF_NR_ROZ" msprop:Generator_ColumnPropNameInRow="F_NR_ROZ" msprop:Generator_ColumnPropNameInTable="F_NR_ROZColumn" minOccurs="0"> 
    5550                 <xs:simpleType> 
    5551                   <xs:restriction base="xs:string"> 
    5552                     <xs:maxLength value="8" /> 
    5553                   </xs:restriction> 
    5554                 </xs:simpleType> 
    5555               </xs:element> 
    5556               <xs:element name="F_NR_ROK" msprop:Generator_UserColumnName="F_NR_ROK" msprop:Generator_ColumnVarNameInTable="columnF_NR_ROK" msprop:Generator_ColumnPropNameInRow="F_NR_ROK" msprop:Generator_ColumnPropNameInTable="F_NR_ROKColumn" type="xs:int" minOccurs="0" /> 
    5557               <xs:element name="ID_FAKTURY" msprop:Generator_UserColumnName="ID_FAKTURY" msprop:Generator_ColumnVarNameInTable="columnID_FAKTURY" msprop:Generator_ColumnPropNameInRow="ID_FAKTURY" msprop:Generator_ColumnPropNameInTable="ID_FAKTURYColumn" type="xs:int" minOccurs="0" /> 
    5558               <xs:element name="PROMOCJA" msprop:Generator_UserColumnName="PROMOCJA" msprop:Generator_ColumnVarNameInTable="columnPROMOCJA" msprop:Generator_ColumnPropNameInRow="PROMOCJA" msprop:Generator_ColumnPropNameInTable="PROMOCJAColumn" type="xs:int" minOccurs="0" /> 
    5559               <xs:element name="GRZBIET" msprop:Generator_UserColumnName="GRZBIET" msprop:Generator_ColumnVarNameInTable="columnGRZBIET" msprop:Generator_ColumnPropNameInRow="GRZBIET" msprop:Generator_ColumnPropNameInTable="GRZBIETColumn" type="xs:int" minOccurs="0" /> 
    5560               <xs:element name="customerId_Sub" msprop:Generator_UserColumnName="customerId_Sub" msprop:Generator_ColumnVarNameInTable="columncustomerId_Sub" msprop:Generator_ColumnPropNameInRow="customerId_Sub" msprop:Generator_ColumnPropNameInTable="customerId_SubColumn" type="xs:int" minOccurs="0" /> 
    5561               <xs:element name="kier_notatka" msprop:Generator_UserColumnName="kier_notatka" msprop:Generator_ColumnVarNameInTable="columnkier_notatka" msprop:Generator_ColumnPropNameInRow="kier_notatka" msprop:Generator_ColumnPropNameInTable="kier_notatkaColumn" minOccurs="0"> 
    5562                 <xs:simpleType> 
    5563                   <xs:restriction base="xs:string"> 
    5564                     <xs:maxLength value="200" /> 
    5565                   </xs:restriction> 
    5566                 </xs:simpleType> 
    5567               </xs:element> 
    5568               <xs:element name="kier_zatwierdzil" msprop:Generator_UserColumnName="kier_zatwierdzil" msprop:Generator_ColumnVarNameInTable="columnkier_zatwierdzil" msprop:Generator_ColumnPropNameInRow="kier_zatwierdzil" msprop:Generator_ColumnPropNameInTable="kier_zatwierdzilColumn" type="xs:boolean" minOccurs="0" /> 
    5569               <xs:element name="zam_notatka" msprop:Generator_UserColumnName="zam_notatka" msprop:Generator_ColumnVarNameInTable="columnzam_notatka" msprop:Generator_ColumnPropNameInRow="zam_notatka" msprop:Generator_ColumnPropNameInTable="zam_notatkaColumn" minOccurs="0"> 
    5570                 <xs:simpleType> 
    5571                   <xs:restriction base="xs:string"> 
    5572                     <xs:maxLength value="200" /> 
    5573                   </xs:restriction> 
    5574                 </xs:simpleType> 
    5575               </xs:element> 
    5576               <xs:element name="zablokuj_prowizje" msprop:Generator_UserColumnName="zablokuj_prowizje" msprop:Generator_ColumnVarNameInTable="columnzablokuj_prowizje" msprop:Generator_ColumnPropNameInRow="zablokuj_prowizje" msprop:Generator_ColumnPropNameInTable="zablokuj_prowizjeColumn" type="xs:boolean" /> 
    5577               <xs:element name="Brutto_Euro" msprop:Generator_UserColumnName="Brutto_Euro" msprop:Generator_ColumnVarNameInTable="columnBrutto_Euro" msprop:Generator_ColumnPropNameInRow="Brutto_Euro" msprop:Generator_ColumnPropNameInTable="Brutto_EuroColumn" type="xs:double" minOccurs="0" /> 
    5578               <xs:element name="Zaliczka_Brutto" msprop:Generator_UserColumnName="Zaliczka_Brutto" msprop:Generator_ColumnVarNameInTable="columnZaliczka_Brutto" msprop:Generator_ColumnPropNameInRow="Zaliczka_Brutto" msprop:Generator_ColumnPropNameInTable="Zaliczka_BruttoColumn" type="xs:decimal" minOccurs="0" /> 
    5579               <xs:element name="Zaliczka_Data" msprop:Generator_UserColumnName="Zaliczka_Data" msprop:Generator_ColumnVarNameInTable="columnZaliczka_Data" msprop:Generator_ColumnPropNameInRow="Zaliczka_Data" msprop:Generator_ColumnPropNameInTable="Zaliczka_DataColumn" type="xs:dateTime" minOccurs="0" /> 
    5580               <xs:element name="Brutto_Euro_Miano" msprop:Generator_UserColumnName="Brutto_Euro_Miano" msprop:Generator_ColumnVarNameInTable="columnBrutto_Euro_Miano" msprop:Generator_ColumnPropNameInRow="Brutto_Euro_Miano" msprop:Generator_ColumnPropNameInTable="Brutto_Euro_MianoColumn" minOccurs="0"> 
    5581                 <xs:simpleType> 
    5582                   <xs:restriction base="xs:string"> 
    5583                     <xs:maxLength value="4" /> 
    5584                   </xs:restriction> 
    5585                 </xs:simpleType> 
    5586               </xs:element> 
    5587               <xs:element name="waluta_kurs_z_dnia" msprop:Generator_UserColumnName="waluta_kurs_z_dnia" msprop:Generator_ColumnVarNameInTable="columnwaluta_kurs_z_dnia" msprop:Generator_ColumnPropNameInRow="waluta_kurs_z_dnia" msprop:Generator_ColumnPropNameInTable="waluta_kurs_z_dniaColumn" type="xs:dateTime" minOccurs="0" /> 
    5588               <xs:element name="waluta_kurs" msprop:Generator_UserColumnName="waluta_kurs" msprop:Generator_ColumnVarNameInTable="columnwaluta_kurs" msprop:Generator_ColumnPropNameInRow="waluta_kurs" msprop:Generator_ColumnPropNameInTable="waluta_kursColumn" type="xs:double" minOccurs="0" /> 
    5589               <xs:element name="waluta_Przelicznik" msprop:Generator_UserColumnName="waluta_Przelicznik" msprop:Generator_ColumnVarNameInTable="columnwaluta_Przelicznik" msprop:Generator_ColumnPropNameInRow="waluta_Przelicznik" msprop:Generator_ColumnPropNameInTable="waluta_PrzelicznikColumn" type="xs:int" minOccurs="0" /> 
    5590               <xs:element name="waluta_tabela_nr" msprop:Generator_UserColumnName="waluta_tabela_nr" msprop:Generator_ColumnVarNameInTable="columnwaluta_tabela_nr" msprop:Generator_ColumnPropNameInRow="waluta_tabela_nr" msprop:Generator_ColumnPropNameInTable="waluta_tabela_nrColumn" minOccurs="0"> 
    5591                 <xs:simpleType> 
    5592                   <xs:restriction base="xs:string"> 
    5593                     <xs:maxLength value="15" /> 
    5594                   </xs:restriction> 
    5595                 </xs:simpleType> 
    5596               </xs:element> 
    5597               <xs:element name="OD" msprop:Generator_UserColumnName="OD" msprop:Generator_ColumnVarNameInTable="columnOD" msprop:Generator_ColumnPropNameInRow="OD" msprop:Generator_ColumnPropNameInTable="ODColumn" type="xs:short" minOccurs="0" /> 
    5598               <xs:element name="DO" msprop:Generator_UserColumnName="DO" msprop:Generator_ColumnVarNameInTable="columnDO" msprop:Generator_ColumnPropNameInRow="DO" msprop:Generator_ColumnPropNameInTable="DOColumn" type="xs:short" minOccurs="0" /> 
    5599               <xs:element name="rok" msdata:ReadOnly="true" msprop:Generator_UserColumnName="rok" msprop:Generator_ColumnVarNameInTable="columnrok" msprop:Generator_ColumnPropNameInRow="rok" msprop:Generator_ColumnPropNameInTable="rokColumn" type="xs:int" minOccurs="0" /> 
    5600               <xs:element name="miesiac" msdata:ReadOnly="true" msprop:Generator_UserColumnName="miesiac" msprop:Generator_ColumnVarNameInTable="columnmiesiac" msprop:Generator_ColumnPropNameInRow="miesiac" msprop:Generator_ColumnPropNameInTable="miesiacColumn" type="xs:int" minOccurs="0" /> 
    5601               <xs:element name="_x0031_emisja" msprop:Generator_UserColumnName="1emisja" msprop:Generator_ColumnVarNameInTable="column1emisja" msprop:Generator_ColumnPropNameInRow="_1emisja" msprop:Generator_ColumnPropNameInTable="_1emisjaColumn" type="xs:dateTime" minOccurs="0" /> 
    5602               <xs:element name="agencja" msprop:Generator_UserColumnName="agencja" msprop:Generator_ColumnVarNameInTable="columnagencja" msprop:Generator_ColumnPropNameInRow="agencja" msprop:Generator_ColumnPropNameInTable="agencjaColumn" minOccurs="0"> 
    5603                 <xs:simpleType> 
    5604                   <xs:restriction base="xs:string"> 
    5605                     <xs:maxLength value="50" /> 
    5606                   </xs:restriction> 
    5607                 </xs:simpleType> 
    5608               </xs:element> 
    5609               <xs:element name="CENA_x0020_MODUŁU" msdata:ReadOnly="true" msprop:Generator_UserColumnName="CENA MODUŁU" msprop:Generator_ColumnVarNameInTable="columnCENA_MODUŁU" msprop:Generator_ColumnPropNameInRow="CENA_MODUŁU" msprop:Generator_ColumnPropNameInTable="CENA_MODUŁUColumn" type="xs:double" minOccurs="0" /> 
    5610               <xs:element name="CENA_MIN" msprop:Generator_UserColumnName="CENA_MIN" msprop:Generator_ColumnVarNameInTable="columnCENA_MIN" msprop:Generator_ColumnPropNameInRow="CENA_MIN" msprop:Generator_ColumnPropNameInTable="CENA_MINColumn" type="xs:decimal" minOccurs="0" /> 
    5611               <xs:element name="CENA" msprop:Generator_UserColumnName="CENA" msprop:Generator_ColumnVarNameInTable="columnCENA" msprop:Generator_ColumnPropNameInRow="CENA" msprop:Generator_ColumnPropNameInTable="CENAColumn" type="xs:decimal" minOccurs="0" /> 
    5612               <xs:element name="FirstName" msprop:Generator_UserColumnName="FirstName" msprop:Generator_ColumnPropNameInRow="FirstName" msprop:Generator_ColumnVarNameInTable="columnFirstName" msprop:Generator_ColumnPropNameInTable="FirstNameColumn" minOccurs="0"> 
    5613                 <xs:simpleType> 
    5614                   <xs:restriction base="xs:string"> 
    5615                     <xs:maxLength value="50" /> 
    5616                   </xs:restriction> 
    5617                 </xs:simpleType> 
    5618               </xs:element> 
    5619               <xs:element name="wyroznienie" msprop:Generator_UserColumnName="wyroznienie" msprop:Generator_ColumnPropNameInRow="wyroznienie" msprop:Generator_ColumnVarNameInTable="columnwyroznienie" msprop:Generator_ColumnPropNameInTable="wyroznienieColumn" type="xs:boolean" /> 
    5620               <xs:element name="idZamowienia" msprop:Generator_UserColumnName="idZamowienia" msprop:Generator_ColumnVarNameInTable="columnidZamowienia" msprop:Generator_ColumnPropNameInRow="idZamowienia" msprop:Generator_ColumnPropNameInTable="idZamowieniaColumn" type="xs:int" minOccurs="0" /> 
     5621              <xs:element name="OD" msprop:Generator_UserColumnName="OD" msprop:Generator_ColumnPropNameInRow="OD" msprop:Generator_ColumnVarNameInTable="columnOD" msprop:Generator_ColumnPropNameInTable="ODColumn" type="xs:short" minOccurs="0" /> 
     5622              <xs:element name="DO" msprop:Generator_UserColumnName="DO" msprop:Generator_ColumnPropNameInRow="DO" msprop:Generator_ColumnVarNameInTable="columnDO" msprop:Generator_ColumnPropNameInTable="DOColumn" type="xs:short" minOccurs="0" /> 
     5623              <xs:element name="rok" msdata:ReadOnly="true" msprop:Generator_UserColumnName="rok" msprop:Generator_ColumnPropNameInRow="rok" msprop:Generator_ColumnVarNameInTable="columnrok" msprop:Generator_ColumnPropNameInTable="rokColumn" type="xs:int" minOccurs="0" /> 
     5624              <xs:element name="miesiac" msdata:ReadOnly="true" msprop:Generator_UserColumnName="miesiac" msprop:Generator_ColumnPropNameInRow="miesiac" msprop:Generator_ColumnVarNameInTable="columnmiesiac" msprop:Generator_ColumnPropNameInTable="miesiacColumn" type="xs:int" minOccurs="0" /> 
     5625              <xs:element name="_x0031_emisja" msprop:Generator_UserColumnName="1emisja" msprop:Generator_ColumnPropNameInRow="_1emisja" msprop:Generator_ColumnVarNameInTable="column1emisja" msprop:Generator_ColumnPropNameInTable="_1emisjaColumn" type="xs:dateTime" minOccurs="0" /> 
     5626              <xs:element name="agencja" msprop:Generator_UserColumnName="agencja" msprop:Generator_ColumnPropNameInRow="agencja" msprop:Generator_ColumnVarNameInTable="columnagencja" msprop:Generator_ColumnPropNameInTable="agencjaColumn" minOccurs="0"> 
     5627                <xs:simpleType> 
     5628                  <xs:restriction base="xs:string"> 
     5629                    <xs:maxLength value="50" /> 
     5630                  </xs:restriction> 
     5631                </xs:simpleType> 
     5632              </xs:element> 
     5633              <xs:element name="CENA_x0020_MODUŁU" msdata:ReadOnly="true" msprop:Generator_UserColumnName="CENA MODUŁU" msprop:Generator_ColumnPropNameInRow="CENA_MODUŁU" msprop:Generator_ColumnVarNameInTable="columnCENA_MODUŁU" msprop:Generator_ColumnPropNameInTable="CENA_MODUŁUColumn" type="xs:double" minOccurs="0" /> 
     5634              <xs:element name="CENA_MIN" msprop:Generator_UserColumnName="CENA_MIN" msprop:Generator_ColumnPropNameInRow="CENA_MIN" msprop:Generator_ColumnVarNameInTable="columnCENA_MIN" msprop:Generator_ColumnPropNameInTable="CENA_MINColumn" type="xs:decimal" minOccurs="0" /> 
     5635              <xs:element name="CENA" msprop:Generator_UserColumnName="CENA" msprop:Generator_ColumnPropNameInRow="CENA" msprop:Generator_ColumnVarNameInTable="columnCENA" msprop:Generator_ColumnPropNameInTable="CENAColumn" type="xs:decimal" minOccurs="0" /> 
     5636              <xs:element name="FirstName" msprop:Generator_UserColumnName="FirstName" msprop:Generator_ColumnVarNameInTable="columnFirstName" msprop:Generator_ColumnPropNameInRow="FirstName" msprop:Generator_ColumnPropNameInTable="FirstNameColumn" minOccurs="0"> 
     5637                <xs:simpleType> 
     5638                  <xs:restriction base="xs:string"> 
     5639                    <xs:maxLength value="50" /> 
     5640                  </xs:restriction> 
     5641                </xs:simpleType> 
     5642              </xs:element> 
     5643              <xs:element name="wyroznienie" msprop:Generator_UserColumnName="wyroznienie" msprop:Generator_ColumnVarNameInTable="columnwyroznienie" msprop:Generator_ColumnPropNameInRow="wyroznienie" msprop:Generator_ColumnPropNameInTable="wyroznienieColumn" type="xs:boolean" /> 
     5644              <xs:element name="idZamowienia" msprop:Generator_UserColumnName="idZamowienia" msprop:Generator_ColumnPropNameInRow="idZamowienia" msprop:Generator_ColumnVarNameInTable="columnidZamowienia" msprop:Generator_ColumnPropNameInTable="idZamowieniaColumn" type="xs:int" minOccurs="0" /> 
    56215645            </xs:sequence> 
    56225646          </xs:complexType> 
     
    56255649          <xs:complexType> 
    56265650            <xs:sequence> 
    5627               <xs:element name="ReklamaID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ReklamaID" msprop:Generator_ColumnPropNameInRow="ReklamaID" msprop:Generator_ColumnVarNameInTable="columnReklamaID" msprop:Generator_ColumnPropNameInTable="ReklamaIDColumn" type="xs:int" /> 
    5628               <xs:element name="TYTUŁ" msprop:Generator_UserColumnName="TYTUŁ" msprop:Generator_ColumnPropNameInRow="TYTUŁ" msprop:Generator_ColumnVarNameInTable="columnTYTUŁ" msprop:Generator_ColumnPropNameInTable="TYTUŁColumn" minOccurs="0"> 
     5651              <xs:element name="ReklamaID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ReklamaID" msprop:Generator_ColumnVarNameInTable="columnReklamaID" msprop:Generator_ColumnPropNameInRow="ReklamaID" msprop:Generator_ColumnPropNameInTable="ReklamaIDColumn" type="xs:int" /> 
     5652              <xs:element name="TYTUŁ" msprop:Generator_UserColumnName="TYTUŁ" msprop:Generator_ColumnVarNameInTable="columnTYTUŁ" msprop:Generator_ColumnPropNameInRow="TYTUŁ" msprop:Generator_ColumnPropNameInTable="TYTUŁColumn" minOccurs="0"> 
    56295653                <xs:simpleType> 
    56305654                  <xs:restriction base="xs:string"> 
     
    56335657                </xs:simpleType> 
    56345658              </xs:element> 
    5635               <xs:element name="ID_x0020_REKLAMY" msprop:Generator_UserColumnName="ID REKLAMY" msprop:Generator_ColumnPropNameInRow="ID_REKLAMY" msprop:Generator_ColumnVarNameInTable="columnID_REKLAMY" msprop:Generator_ColumnPropNameInTable="ID_REKLAMYColumn" minOccurs="0"> 
     5659              <xs:element name="ID_x0020_REKLAMY" msprop:Generator_UserColumnName="ID REKLAMY" msprop:Generator_ColumnVarNameInTable="columnID_REKLAMY" msprop:Generator_ColumnPropNameInRow="ID_REKLAMY" msprop:Generator_ColumnPropNameInTable="ID_REKLAMYColumn" minOccurs="0"> 
    56365660                <xs:simpleType> 
    56375661                  <xs:restriction base="xs:string"> 
     
    56405664                </xs:simpleType> 
    56415665              </xs:element> 
    5642               <xs:element name="NICK_x0020_NAME" msprop:Generator_UserColumnName="NICK NAME" msprop:Generator_ColumnPropNameInRow="NICK_NAME" msprop:Generator_ColumnVarNameInTable="columnNICK_NAME" msprop:Generator_ColumnPropNameInTable="NICK_NAMEColumn" minOccurs="0"> 
    5643                 <xs:simpleType> 
    5644                   <xs:restriction base="xs:string"> 
    5645                     <xs:maxLength value="50" /> 
    5646                   </xs:restriction> 
    5647                 </xs:simpleType> 
    5648               </xs:element> 
    5649               <xs:element name="NR" msprop:Generator_UserColumnName="NR" msprop:Generator_ColumnPropNameInRow="NR" msprop:Generator_ColumnVarNameInTable="columnNR" msprop:Generator_ColumnPropNameInTable="NRColumn" type="xs:short" /> 
    5650               <xs:element name="ZATWIERDZONO_x0020_DO_x0020_DRUKU" msprop:Generator_UserColumnName="ZATWIERDZONO DO DRUKU" msprop:Generator_ColumnPropNameInRow="ZATWIERDZONO_DO_DRUKU" msprop:Generator_ColumnVarNameInTable="columnZATWIERDZONO_DO_DRUKU" msprop:Generator_ColumnPropNameInTable="ZATWIERDZONO_DO_DRUKUColumn" type="xs:boolean" minOccurs="0" /> 
    5651               <xs:element name="agencja" msprop:Generator_UserColumnName="agencja" msprop:Generator_ColumnPropNameInRow="agencja" msprop:Generator_ColumnVarNameInTable="columnagencja" msprop:Generator_ColumnPropNameInTable="agencjaColumn" minOccurs="0"> 
    5652                 <xs:simpleType> 
    5653                   <xs:restriction base="xs:string"> 
    5654                     <xs:maxLength value="50" /> 
    5655                   </xs:restriction> 
    5656                 </xs:simpleType> 
    5657               </xs:element> 
    5658               <xs:element name="SYMBOL_x0020_AKWIZYTORA" msprop:Generator_UserColumnName="SYMBOL AKWIZYTORA" msprop:Generator_ColumnVarNameInTable="columnSYMBOL_AKWIZYTORA" msprop:Generator_ColumnPropNameInRow="SYMBOL_AKWIZYTORA" msprop:Generator_ColumnPropNameInTable="SYMBOL_AKWIZYTORAColumn" minOccurs="0"> 
     5666              <xs:element name="NICK_x0020_NAME" msprop:Generator_UserColumnName="NICK NAME" msprop:Generator_ColumnVarNameInTable="columnNICK_NAME" msprop:Generator_ColumnPropNameInRow="NICK_NAME" msprop:Generator_ColumnPropNameInTable="NICK_NAMEColumn" minOccurs="0"> 
     5667                <xs:simpleType> 
     5668                  <xs:restriction base="xs:string"> 
     5669                    <xs:maxLength value="50" /> 
     5670                  </xs:restriction> 
     5671                </xs:simpleType> 
     5672              </xs:element> 
     5673              <xs:element name="NR" msprop:Generator_UserColumnName="NR" msprop:Generator_ColumnVarNameInTable="columnNR" msprop:Generator_ColumnPropNameInRow="NR" msprop:Generator_ColumnPropNameInTable="NRColumn" type="xs:short" /> 
     5674              <xs:element name="ZATWIERDZONO_x0020_DO_x0020_DRUKU" msprop:Generator_UserColumnName="ZATWIERDZONO DO DRUKU" msprop:Generator_ColumnVarNameInTable="columnZATWIERDZONO_DO_DRUKU" msprop:Generator_ColumnPropNameInRow="ZATWIERDZONO_DO_DRUKU" msprop:Generator_ColumnPropNameInTable="ZATWIERDZONO_DO_DRUKUColumn" type="xs:boolean" minOccurs="0" /> 
     5675              <xs:element name="agencja" msprop:Generator_UserColumnName="agencja" msprop:Generator_ColumnVarNameInTable="columnagencja" msprop:Generator_ColumnPropNameInRow="agencja" msprop:Generator_ColumnPropNameInTable="agencjaColumn" minOccurs="0"> 
     5676                <xs:simpleType> 
     5677                  <xs:restriction base="xs:string"> 
     5678                    <xs:maxLength value="50" /> 
     5679                  </xs:restriction> 
     5680                </xs:simpleType> 
     5681              </xs:element> 
     5682              <xs:element name="SYMBOL_x0020_AKWIZYTORA" msprop:Generator_UserColumnName="SYMBOL AKWIZYTORA" msprop:Generator_ColumnPropNameInRow="SYMBOL_AKWIZYTORA" msprop:Generator_ColumnVarNameInTable="columnSYMBOL_AKWIZYTORA" msprop:Generator_ColumnPropNameInTable="SYMBOL_AKWIZYTORAColumn" minOccurs="0"> 
    56595683                <xs:simpleType> 
    56605684                  <xs:restriction base="xs:string"> 
     
    56635687                </xs:simpleType> 
    56645688              </xs:element> 
    5665               <xs:element name="GRZBIET" msprop:Generator_UserColumnName="GRZBIET" msprop:Generator_ColumnVarNameInTable="columnGRZBIET" msprop:Generator_ColumnPropNameInRow="GRZBIET" msprop:Generator_ColumnPropNameInTable="GRZBIETColumn" type="xs:int" minOccurs="0" /> 
    5666               <xs:element name="miasto" msprop:Generator_UserColumnName="miasto" msprop:Generator_ColumnPropNameInRow="miasto" msprop:Generator_ColumnVarNameInTable="columnmiasto" msprop:Generator_ColumnPropNameInTable="miastoColumn" minOccurs="0"> 
    5667                 <xs:simpleType> 
    5668                   <xs:restriction base="xs:string"> 
    5669                     <xs:maxLength value="50" /> 
    5670                   </xs:restriction> 
    5671                 </xs:simpleType> 
    5672               </xs:element> 
    5673               <xs:element name="jestCDR" msprop:Generator_UserColumnName="jestCDR" msprop:Generator_ColumnVarNameInTable="columnjestCDR" msprop:Generator_ColumnPropNameInRow="jestCDR" msprop:Generator_ColumnPropNameInTable="jestCDRColumn" type="xs:boolean" minOccurs="0" /> 
    5674               <xs:element name="jestEPS" msprop:Generator_UserColumnName="jestEPS" msprop:Generator_ColumnVarNameInTable="columnjestEPS" msprop:Generator_ColumnPropNameInRow="jestEPS" msprop:Generator_ColumnPropNameInTable="jestEPSColumn" type="xs:boolean" minOccurs="0" /> 
    5675               <xs:element name="jestJPG" msprop:Generator_UserColumnName="jestJPG" msprop:Generator_ColumnVarNameInTable="columnjestJPG" msprop:Generator_ColumnPropNameInRow="jestJPG" msprop:Generator_ColumnPropNameInTable="jestJPGColumn" type="xs:boolean" minOccurs="0" /> 
    5676               <xs:element name="datyOK" msprop:Generator_UserColumnName="datyOK" msprop:Generator_ColumnVarNameInTable="columndatyOK" msprop:Generator_ColumnPropNameInRow="datyOK" msprop:Generator_ColumnPropNameInTable="datyOKColumn" type="xs:boolean" minOccurs="0" /> 
    5677               <xs:element name="strona_zlecenie" msprop:Generator_UserColumnName="strona_zlecenie" msprop:Generator_ColumnPropNameInRow="strona_zlecenie" msprop:Generator_ColumnVarNameInTable="columnstrona_zlecenie" msprop:Generator_ColumnPropNameInTable="strona_zlecenieColumn" type="xs:short" minOccurs="0" /> 
    5678               <xs:element name="CustomerID" msprop:Generator_UserColumnName="CustomerID" msprop:Generator_ColumnPropNameInRow="CustomerID" msprop:Generator_ColumnVarNameInTable="columnCustomerID" msprop:Generator_ColumnPropNameInTable="CustomerIDColumn" type="xs:int" minOccurs="0" /> 
    5679               <xs:element name="strona" msprop:Generator_UserColumnName="strona" msprop:Generator_ColumnVarNameInTable="columnstrona" msprop:Generator_ColumnPropNameInRow="strona" msprop:Generator_ColumnPropNameInTable="stronaColumn" type="xs:short" minOccurs="0" /> 
    5680               <xs:element name="ID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ID" msprop:Generator_ColumnVarNameInTable="columnID" msprop:Generator_ColumnPropNameInRow="ID" msprop:Generator_ColumnPropNameInTable="IDColumn" type="xs:decimal" /> 
    5681               <xs:element name="StaryGrzbiet" msdata:ReadOnly="true" msprop:Generator_UserColumnName="StaryGrzbiet" msprop:Generator_ColumnVarNameInTable="columnStaryGrzbiet" msprop:Generator_ColumnPropNameInRow="StaryGrzbiet" msprop:Generator_ColumnPropNameInTable="StaryGrzbietColumn" minOccurs="0"> 
     5689              <xs:element name="GRZBIET" msprop:Generator_UserColumnName="GRZBIET" msprop:Generator_ColumnPropNameInRow="GRZBIET" msprop:Generator_ColumnVarNameInTable="columnGRZBIET" msprop:Generator_ColumnPropNameInTable="GRZBIETColumn" type="xs:int" minOccurs="0" /> 
     5690              <xs:element name="miasto" msprop:Generator_UserColumnName="miasto" msprop:Generator_ColumnVarNameInTable="columnmiasto" msprop:Generator_ColumnPropNameInRow="miasto" msprop:Generator_ColumnPropNameInTable="miastoColumn" minOccurs="0"> 
     5691                <xs:simpleType> 
     5692                  <xs:restriction base="xs:string"> 
     5693                    <xs:maxLength value="50" /> 
     5694                  </xs:restriction> 
     5695                </xs:simpleType> 
     5696              </xs:element> 
     5697              <xs:element name="jestCDR" msprop:Generator_UserColumnName="jestCDR" msprop:Generator_ColumnPropNameInRow="jestCDR" msprop:Generator_ColumnVarNameInTable="columnjestCDR" msprop:Generator_ColumnPropNameInTable="jestCDRColumn" type="xs:boolean" minOccurs="0" /> 
     5698              <xs:element name="jestEPS" msprop:Generator_UserColumnName="jestEPS" msprop:Generator_ColumnPropNameInRow="jestEPS" msprop:Generator_ColumnVarNameInTable="columnjestEPS" msprop:Generator_ColumnPropNameInTable="jestEPSColumn" type="xs:boolean" minOccurs="0" /> 
     5699              <xs:element name="jestJPG" msprop:Generator_UserColumnName="jestJPG" msprop:Generator_ColumnPropNameInRow="jestJPG" msprop:Generator_ColumnVarNameInTable="columnjestJPG" msprop:Generator_ColumnPropNameInTable="jestJPGColumn" type="xs:boolean" minOccurs="0" /> 
     5700              <xs:element name="datyOK" msprop:Generator_UserColumnName="datyOK" msprop:Generator_ColumnPropNameInRow="datyOK" msprop:Generator_ColumnVarNameInTable="columndatyOK" msprop:Generator_ColumnPropNameInTable="datyOKColumn" type="xs:boolean" minOccurs="0" /> 
     5701              <xs:element name="strona_zlecenie" msprop:Generator_UserColumnName="strona_zlecenie" msprop:Generator_ColumnVarNameInTable="columnstrona_zlecenie" msprop:Generator_ColumnPropNameInRow="strona_zlecenie" msprop:Generator_ColumnPropNameInTable="strona_zlecenieColumn" type="xs:short" minOccurs="0" /> 
     5702              <xs:element name="CustomerID" msprop:Generator_UserColumnName="CustomerID" msprop:Generator_ColumnVarNameInTable="columnCustomerID" msprop:Generator_ColumnPropNameInRow="CustomerID" msprop:Generator_ColumnPropNameInTable="CustomerIDColumn" type="xs:int" minOccurs="0" /> 
     5703              <xs:element name="strona" msprop:Generator_UserColumnName="strona" msprop:Generator_ColumnPropNameInRow="strona" msprop:Generator_ColumnVarNameInTable="columnstrona" msprop:Generator_ColumnPropNameInTable="stronaColumn" type="xs:short" minOccurs="0" /> 
     5704              <xs:element name="ID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ID" msprop:Generator_ColumnPropNameInRow="ID" msprop:Generator_ColumnVarNameInTable="columnID" msprop:Generator_ColumnPropNameInTable="IDColumn" type="xs:decimal" /> 
     5705              <xs:element name="StaryGrzbiet" msdata:ReadOnly="true" msprop:Generator_UserColumnName="StaryGrzbiet" msprop:Generator_ColumnPropNameInRow="StaryGrzbiet" msprop:Generator_ColumnVarNameInTable="columnStaryGrzbiet" msprop:Generator_ColumnPropNameInTable="StaryGrzbietColumn" minOccurs="0"> 
    56825706                <xs:simpleType> 
    56835707                  <xs:restriction base="xs:string"> 
     
    56925716          <xs:complexType> 
    56935717            <xs:sequence> 
    5694               <xs:element name="Id_kontaktu" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_UserColumnName="Id_kontaktu" msprop:Generator_ColumnPropNameInRow="Id_kontaktu" msprop:Generator_ColumnVarNameInTable="columnId_kontaktu" msprop:Generator_ColumnPropNameInTable="Id_kontaktuColumn" type="xs:int" /> 
    5695               <xs:element name="customerId" msprop:Generator_UserColumnName="customerId" msprop:Generator_ColumnPropNameInRow="customerId" msprop:Generator_ColumnVarNameInTable="columncustomerId" msprop:Generator_ColumnPropNameInTable="customerIdColumn" type="xs:int" /> 
    5696               <xs:element name="symbol_agenta" msprop:Generator_UserColumnName="symbol_agenta" msprop:Generator_ColumnPropNameInRow="symbol_agenta" msprop:Generator_ColumnVarNameInTable="columnsymbol_agenta" msprop:Generator_ColumnPropNameInTable="symbol_agentaColumn"> 
    5697                 <xs:simpleType> 
    5698                   <xs:restriction base="xs:string"> 
    5699                     <xs:maxLength value="50" /> 
    5700                   </xs:restriction> 
    5701                 </xs:simpleType> 
    5702               </xs:element> 
    5703               <xs:element name="data" msprop:Generator_UserColumnName="data" msprop:Generator_ColumnPropNameInRow="data" msprop:Generator_ColumnVarNameInTable="columndata" msprop:Generator_ColumnPropNameInTable="dataColumn" type="xs:dateTime" /> 
    5704               <xs:element name="rodzaj" msprop:Generator_UserColumnName="rodzaj" msprop:Generator_ColumnPropNameInRow="rodzaj" msprop:Generator_ColumnVarNameInTable="columnrodzaj" msprop:Generator_ColumnPropNameInTable="rodzajColumn" minOccurs="0"> 
     5718              <xs:element name="Id_kontaktu" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_UserColumnName="Id_kontaktu" msprop:Generator_ColumnVarNameInTable="columnId_kontaktu" msprop:Generator_ColumnPropNameInRow="Id_kontaktu" msprop:Generator_ColumnPropNameInTable="Id_kontaktuColumn" type="xs:int" /> 
     5719              <xs:element name="customerId" msprop:Generator_UserColumnName="customerId" msprop:Generator_ColumnVarNameInTable="columncustomerId" msprop:Generator_ColumnPropNameInRow="customerId" msprop:Generator_ColumnPropNameInTable="customerIdColumn" type="xs:int" /> 
     5720              <xs:element name="symbol_agenta" msprop:Generator_UserColumnName="symbol_agenta" msprop:Generator_ColumnVarNameInTable="columnsymbol_agenta" msprop:Generator_ColumnPropNameInRow="symbol_agenta" msprop:Generator_ColumnPropNameInTable="symbol_agentaColumn"> 
     5721                <xs:simpleType> 
     5722                  <xs:restriction base="xs:string"> 
     5723                    <xs:maxLength value="50" /> 
     5724                  </xs:restriction> 
     5725                </xs:simpleType> 
     5726              </xs:element> 
     5727              <xs:element name="data" msprop:Generator_UserColumnName="data" msprop:Generator_ColumnVarNameInTable="columndata" msprop:Generator_ColumnPropNameInRow="data" msprop:Generator_ColumnPropNameInTable="dataColumn" type="xs:dateTime" /> 
     5728              <xs:element name="rodzaj" msprop:Generator_UserColumnName="rodzaj" msprop:Generator_ColumnVarNameInTable="columnrodzaj" msprop:Generator_ColumnPropNameInRow="rodzaj" msprop:Generator_ColumnPropNameInTable="rodzajColumn" minOccurs="0"> 
    57055729                <xs:simpleType> 
    57065730                  <xs:restriction base="xs:string"> 
     
    57095733                </xs:simpleType> 
    57105734              </xs:element> 
    5711               <xs:element name="opis" msprop:Generator_UserColumnName="opis" msprop:Generator_ColumnPropNameInRow="opis" msprop:Generator_ColumnVarNameInTable="columnopis" msprop:Generator_ColumnPropNameInTable="opisColumn" minOccurs="0"> 
     5735              <xs:element name="opis" msprop:Generator_UserColumnName="opis" msprop:Generator_ColumnVarNameInTable="columnopis" msprop:Generator_ColumnPropNameInRow="opis" msprop:Generator_ColumnPropNameInTable="opisColumn" minOccurs="0"> 
    57125736                <xs:simpleType> 
    57135737                  <xs:restriction base="xs:string"> 
     
    57165740                </xs:simpleType> 
    57175741              </xs:element> 
    5718               <xs:element name="KontaktTypId" msprop:Generator_UserColumnName="KontaktTypId" msprop:Generator_ColumnVarNameInTable="columnKontaktTypId" msprop:Generator_ColumnPropNameInRow="KontaktTypId" msprop:Generator_ColumnPropNameInTable="KontaktTypIdColumn" type="xs:unsignedByte" minOccurs="0" /> 
     5742              <xs:element name="KontaktTypId" msprop:Generator_UserColumnName="KontaktTypId" msprop:Generator_ColumnPropNameInRow="KontaktTypId" msprop:Generator_ColumnVarNameInTable="columnKontaktTypId" msprop:Generator_ColumnPropNameInTable="KontaktTypIdColumn" type="xs:unsignedByte" minOccurs="0" /> 
    57195743            </xs:sequence> 
    57205744          </xs:complexType> 
     
    57235747          <xs:complexType> 
    57245748            <xs:sequence> 
    5725               <xs:element name="ID_NABYWCY" msprop:Generator_UserColumnName="ID_NABYWCY" msprop:Generator_ColumnVarNameInTable="columnID_NABYWCY" msprop:Generator_ColumnPropNameInRow="ID_NABYWCY" msprop:Generator_ColumnPropNameInTable="ID_NABYWCYColumn" type="xs:int" minOccurs="0" /> 
    5726               <xs:element name="NUMER" msprop:Generator_UserColumnName="NUMER" msprop:Generator_ColumnPropNameInRow="NUMER" msprop:Generator_ColumnVarNameInTable="columnNUMER" msprop:Generator_ColumnPropNameInTable="NUMERColumn" type="xs:int" minOccurs="0" /> 
    5727               <xs:element name="NUMER_ROZ" msprop:Generator_UserColumnName="NUMER_ROZ" msprop:Generator_ColumnPropNameInRow="NUMER_ROZ" msprop:Generator_ColumnVarNameInTable="columnNUMER_ROZ" msprop:Generator_ColumnPropNameInTable="NUMER_ROZColumn" minOccurs="0"> 
     5749              <xs:element name="ID_NABYWCY" msprop:Generator_UserColumnName="ID_NABYWCY" msprop:Generator_ColumnPropNameInRow="ID_NABYWCY" msprop:Generator_ColumnVarNameInTable="columnID_NABYWCY" msprop:Generator_ColumnPropNameInTable="ID_NABYWCYColumn" type="xs:int" minOccurs="0" /> 
     5750              <xs:element name="NUMER" msprop:Generator_UserColumnName="NUMER" msprop:Generator_ColumnVarNameInTable="columnNUMER" msprop:Generator_ColumnPropNameInRow="NUMER" msprop:Generator_ColumnPropNameInTable="NUMERColumn" type="xs:int" minOccurs="0" /> 
     5751              <xs:element name="NUMER_ROZ" msprop:Generator_UserColumnName="NUMER_ROZ" msprop:Generator_ColumnVarNameInTable="columnNUMER_ROZ" msprop:Generator_ColumnPropNameInRow="NUMER_ROZ" msprop:Generator_ColumnPropNameInTable="NUMER_ROZColumn" minOccurs="0"> 
    57285752                <xs:simpleType> 
    57295753                  <xs:restriction base="xs:string"> 
     
    57325756                </xs:simpleType> 
    57335757              </xs:element> 
    5734               <xs:element name="ROK" msprop:Generator_UserColumnName="ROK" msprop:Generator_ColumnPropNameInRow="ROK" msprop:Generator_ColumnVarNameInTable="columnROK" msprop:Generator_ColumnPropNameInTable="ROKColumn" type="xs:int" minOccurs="0" /> 
    5735               <xs:element name="MS" msprop:Generator_UserColumnName="MS" msprop:Generator_ColumnPropNameInRow="MS" msprop:Generator_ColumnVarNameInTable="columnMS" msprop:Generator_ColumnPropNameInTable="MSColumn" type="xs:int" minOccurs="0" /> 
    5736               <xs:element name="DATA_SPRZEDAZY" msprop:Generator_UserColumnName="DATA_SPRZEDAZY" msprop:Generator_ColumnPropNameInRow="DATA_SPRZEDAZY" msprop:Generator_ColumnVarNameInTable="columnDATA_SPRZEDAZY" msprop:Generator_ColumnPropNameInTable="DATA_SPRZEDAZYColumn" type="xs:dateTime" minOccurs="0" /> 
    5737               <xs:element name="NR_FK" msprop:Generator_UserColumnName="NR_FK" msprop:Generator_ColumnPropNameInRow="NR_FK" msprop:Generator_ColumnVarNameInTable="columnNR_FK" msprop:Generator_ColumnPropNameInTable="NR_FKColumn" minOccurs="0"> 
     5758              <xs:element name="ROK" msprop:Generator_UserColumnName="ROK" msprop:Generator_ColumnVarNameInTable="columnROK" msprop:Generator_ColumnPropNameInRow="ROK" msprop:Generator_ColumnPropNameInTable="ROKColumn" type="xs:int" minOccurs="0" /> 
     5759              <xs:element name="MS" msprop:Generator_UserColumnName="MS" msprop:Generator_ColumnVarNameInTable="columnMS" msprop:Generator_ColumnPropNameInRow="MS" msprop:Generator_ColumnPropNameInTable="MSColumn" type="xs:int" minOccurs="0" /> 
     5760              <xs:element name="DATA_SPRZEDAZY" msprop:Generator_UserColumnName="DATA_SPRZEDAZY" msprop:Generator_ColumnVarNameInTable="columnDATA_SPRZEDAZY" msprop:Generator_ColumnPropNameInRow="DATA_SPRZEDAZY" msprop:Generator_ColumnPropNameInTable="DATA_SPRZEDAZYColumn" type="xs:dateTime" minOccurs="0" /> 
     5761              <xs:element name="NR_FK" msprop:Generator_UserColumnName="NR_FK" msprop:Generator_ColumnVarNameInTable="columnNR_FK" msprop:Generator_ColumnPropNameInRow="NR_FK" msprop:Generator_ColumnPropNameInTable="NR_FKColumn" minOccurs="0"> 
    57385762                <xs:simpleType> 
    57395763                  <xs:restriction base="xs:string"> 
     
    57425766                </xs:simpleType> 
    57435767              </xs:element> 
    5744               <xs:element name="TYTUL" msprop:Generator_UserColumnName="TYTUL" msprop:Generator_ColumnPropNameInRow="TYTUL" msprop:Generator_ColumnVarNameInTable="columnTYTUL" msprop:Generator_ColumnPropNameInTable="TYTULColumn" minOccurs="0"> 
     5768              <xs:element name="TYTUL" msprop:Generator_UserColumnName="TYTUL" msprop:Generator_ColumnVarNameInTable="columnTYTUL" msprop:Generator_ColumnPropNameInRow="TYTUL" msprop:Generator_ColumnPropNameInTable="TYTULColumn" minOccurs="0"> 
    57455769                <xs:simpleType> 
    57465770                  <xs:restriction base="xs:string"> 
     
    57495773                </xs:simpleType> 
    57505774              </xs:element> 
    5751               <xs:element name="NETTO" msprop:Generator_UserColumnName="NETTO" msprop:Generator_ColumnPropNameInRow="NETTO" msprop:Generator_ColumnVarNameInTable="columnNETTO" msprop:Generator_ColumnPropNameInTable="NETTOColumn" type="xs:decimal" minOccurs="0" /> 
    5752               <xs:element name="S_VAT" msprop:Generator_UserColumnName="S_VAT" msprop:Generator_ColumnPropNameInRow="S_VAT" msprop:Generator_ColumnVarNameInTable="columnS_VAT" msprop:Generator_ColumnPropNameInTable="S_VATColumn" type="xs:double" minOccurs="0" /> 
    5753               <xs:element name="VAT" msprop:Generator_UserColumnName="VAT" msprop:Generator_ColumnPropNameInRow="VAT" msprop:Generator_ColumnVarNameInTable="columnVAT" msprop:Generator_ColumnPropNameInTable="VATColumn" type="xs:decimal" minOccurs="0" /> 
    5754               <xs:element name="BRUTTO" msprop:Generator_UserColumnName="BRUTTO" msprop:Generator_ColumnPropNameInRow="BRUTTO" msprop:Generator_ColumnVarNameInTable="columnBRUTTO" msprop:Generator_ColumnPropNameInTable="BRUTTOColumn" type="xs:decimal" minOccurs="0" /> 
    5755               <xs:element name="waluta_brutto" msprop:Generator_UserColumnName="waluta_brutto" msprop:Generator_ColumnPropNameInRow="waluta_brutto" msprop:Generator_ColumnVarNameInTable="columnwaluta_brutto" msprop:Generator_ColumnPropNameInTable="waluta_bruttoColumn" type="xs:double" minOccurs="0" /> 
    5756               <xs:element name="waluta_miano" msprop:Generator_UserColumnName="waluta_miano" msprop:Generator_ColumnPropNameInRow="waluta_miano" msprop:Generator_ColumnVarNameInTable="columnwaluta_miano" msprop:Generator_ColumnPropNameInTable="waluta_mianoColumn" minOccurs="0"> 
     5775              <xs:element name="NETTO" msprop:Generator_UserColumnName="NETTO" msprop:Generator_ColumnVarNameInTable="columnNETTO" msprop:Generator_ColumnPropNameInRow="NETTO" msprop:Generator_ColumnPropNameInTable="NETTOColumn" type="xs:decimal" minOccurs="0" /> 
     5776              <xs:element name="S_VAT" msprop:Generator_UserColumnName="S_VAT" msprop:Generator_ColumnVarNameInTable="columnS_VAT" msprop:Generator_ColumnPropNameInRow="S_VAT" msprop:Generator_ColumnPropNameInTable="S_VATColumn" type="xs:double" minOccurs="0" /> 
     5777              <xs:element name="VAT" msprop:Generator_UserColumnName="VAT" msprop:Generator_ColumnVarNameInTable="columnVAT" msprop:Generator_ColumnPropNameInRow="VAT" msprop:Generator_ColumnPropNameInTable="VATColumn" type="xs:decimal" minOccurs="0" /> 
     5778              <xs:element name="BRUTTO" msprop:Generator_UserColumnName="BRUTTO" msprop:Generator_ColumnVarNameInTable="columnBRUTTO" msprop:Generator_ColumnPropNameInRow="BRUTTO" msprop:Generator_ColumnPropNameInTable="BRUTTOColumn" type="xs:decimal" minOccurs="0" /> 
     5779              <xs:element name="waluta_brutto" msprop:Generator_UserColumnName="waluta_brutto" msprop:Generator_ColumnVarNameInTable="columnwaluta_brutto" msprop:Generator_ColumnPropNameInRow="waluta_brutto" msprop:Generator_ColumnPropNameInTable="waluta_bruttoColumn" type="xs:double" minOccurs="0" /> 
     5780              <xs:element name="waluta_miano" msprop:Generator_UserColumnName="waluta_miano" msprop:Generator_ColumnVarNameInTable="columnwaluta_miano" msprop:Generator_ColumnPropNameInRow="waluta_miano" msprop:Generator_ColumnPropNameInTable="waluta_mianoColumn" minOccurs="0"> 
    57575781                <xs:simpleType> 
    57585782                  <xs:restriction base="xs:string"> 
     
    57615785                </xs:simpleType> 
    57625786              </xs:element> 
    5763               <xs:element name="suma_zaplat" msprop:Generator_UserColumnName="suma_zaplat" msprop:Generator_ColumnPropNameInRow="suma_zaplat" msprop:Generator_ColumnVarNameInTable="columnsuma_zaplat" msprop:Generator_ColumnPropNameInTable="suma_zaplatColumn" type="xs:decimal" minOccurs="0" /> 
    5764               <xs:element name="ID_FAKTURY" msprop:Generator_UserColumnName="ID_FAKTURY" msprop:Generator_ColumnPropNameInRow="ID_FAKTURY" msprop:Generator_ColumnVarNameInTable="columnID_FAKTURY" msprop:Generator_ColumnPropNameInTable="ID_FAKTURYColumn" type="xs:int" /> 
    5765               <xs:element name="Symbol" msprop:Generator_UserColumnName="Symbol" msprop:Generator_ColumnPropNameInRow="Symbol" msprop:Generator_ColumnVarNameInTable="columnSymbol" msprop:Generator_ColumnPropNameInTable="SymbolColumn" minOccurs="0"> 
    5766                 <xs:simpleType> 
    5767                   <xs:restriction base="xs:string"> 
    5768                     <xs:maxLength value="50" /> 
    5769                   </xs:restriction> 
    5770                 </xs:simpleType> 
    5771               </xs:element> 
    5772               <xs:element name="Agencja" msprop:Generator_UserColumnName="Agencja" msprop:Generator_ColumnPropNameInRow="Agencja" msprop:Generator_ColumnVarNameInTable="columnAgencja" msprop:Generator_ColumnPropNameInTable="AgencjaColumn" minOccurs="0"> 
    5773                 <xs:simpleType> 
    5774                   <xs:restriction base="xs:string"> 
    5775                     <xs:maxLength value="50" /> 
    5776                   </xs:restriction> 
    5777                 </xs:simpleType> 
    5778               </xs:element> 
    5779               <xs:element name="ZAPLACONO" msprop:Generator_UserColumnName="ZAPLACONO" msprop:Generator_ColumnPropNameInRow="ZAPLACONO" msprop:Generator_ColumnVarNameInTable="columnZAPLACONO" msprop:Generator_ColumnPropNameInTable="ZAPLACONOColumn" type="xs:boolean" minOccurs="0" /> 
    5780               <xs:element name="ZAPŁACONO" msprop:Generator_UserColumnName="ZAPŁACONO" msprop:Generator_ColumnPropNameInRow="ZAPŁACONO" msprop:Generator_ColumnVarNameInTable="columnZAPŁACONO" msprop:Generator_ColumnPropNameInTable="ZAPŁACONOColumn" type="xs:boolean" minOccurs="0" /> 
    5781               <xs:element name="DATA_x0020_ZAPŁATY" msprop:Generator_UserColumnName="DATA ZAPŁATY" msprop:Generator_ColumnPropNameInRow="DATA_ZAPŁATY" msprop:Generator_ColumnVarNameInTable="columnDATA_ZAPŁATY" msprop:Generator_ColumnPropNameInTable="DATA_ZAPŁATYColumn" type="xs:dateTime" minOccurs="0" /> 
    5782               <xs:element name="zaplata_data" msprop:Generator_UserColumnName="zaplata_data" msprop:Generator_ColumnPropNameInRow="zaplata_data" msprop:Generator_ColumnVarNameInTable="columnzaplata_data" msprop:Generator_ColumnPropNameInTable="zaplata_dataColumn" type="xs:dateTime" minOccurs="0" /> 
    5783               <xs:element name="reklamaId" msprop:Generator_UserColumnName="reklamaId" msprop:Generator_ColumnPropNameInRow="reklamaId" msprop:Generator_ColumnVarNameInTable="columnreklamaId" msprop:Generator_ColumnPropNameInTable="reklamaIdColumn" type="xs:int" minOccurs="0" /> 
    5784               <xs:element name="firstname" msprop:Generator_UserColumnName="firstname" msprop:Generator_ColumnPropNameInRow="firstname" msprop:Generator_ColumnVarNameInTable="columnfirstname" msprop:Generator_ColumnPropNameInTable="firstnameColumn" minOccurs="0"> 
    5785                 <xs:simpleType> 
    5786                   <xs:restriction base="xs:string"> 
    5787                     <xs:maxLength value="50" /> 
    5788                   </xs:restriction> 
    5789                 </xs:simpleType> 
    5790               </xs:element> 
    5791               <xs:element name="TERMIN_ZAPLATY" msprop:Generator_UserColumnName="TERMIN_ZAPLATY" msprop:Generator_ColumnPropNameInRow="TERMIN_ZAPLATY" msprop:Generator_ColumnVarNameInTable="columnTERMIN_ZAPLATY" msprop:Generator_ColumnPropNameInTable="TERMIN_ZAPLATYColumn" type="xs:dateTime" minOccurs="0" /> 
    5792               <xs:element name="GRZBIET" msprop:Generator_UserColumnName="GRZBIET" msprop:Generator_ColumnPropNameInRow="GRZBIET" msprop:Generator_ColumnVarNameInTable="columnGRZBIET" msprop:Generator_ColumnPropNameInTable="GRZBIETColumn" type="xs:int" minOccurs="0" /> 
    5793               <xs:element name="ID_TYTUL" msprop:Generator_UserColumnName="ID_TYTUL" msprop:Generator_ColumnPropNameInRow="ID_TYTUL" msprop:Generator_ColumnVarNameInTable="columnID_TYTUL" msprop:Generator_ColumnPropNameInTable="ID_TYTULColumn" type="xs:short" minOccurs="0" /> 
    5794               <xs:element name="dataWplaty" msprop:Generator_UserColumnName="dataWplaty" msprop:Generator_ColumnPropNameInRow="dataWplaty" msprop:Generator_ColumnVarNameInTable="columndataWplaty" msprop:Generator_ColumnPropNameInTable="dataWplatyColumn" type="xs:dateTime" minOccurs="0" /> 
    5795               <xs:element name="wplata_brutto" msprop:Generator_UserColumnName="wplata_brutto" msprop:Generator_ColumnPropNameInRow="wplata_brutto" msprop:Generator_ColumnVarNameInTable="columnwplata_brutto" msprop:Generator_ColumnPropNameInTable="wplata_bruttoColumn" type="xs:decimal" minOccurs="0" /> 
    5796               <xs:element name="wplata_waluta_brutto" msprop:Generator_UserColumnName="wplata_waluta_brutto" msprop:Generator_ColumnPropNameInRow="wplata_waluta_brutto" msprop:Generator_ColumnVarNameInTable="columnwplata_waluta_brutto" msprop:Generator_ColumnPropNameInTable="wplata_waluta_bruttoColumn" type="xs:decimal" minOccurs="0" /> 
    5797               <xs:element name="wplata_waluta_miano" msprop:Generator_UserColumnName="wplata_waluta_miano" msprop:Generator_ColumnPropNameInRow="wplata_waluta_miano" msprop:Generator_ColumnVarNameInTable="columnwplata_waluta_miano" msprop:Generator_ColumnPropNameInTable="wplata_waluta_mianoColumn" minOccurs="0"> 
     5787              <xs:element name="suma_zaplat" msprop:Generator_UserColumnName="suma_zaplat" msprop:Generator_ColumnVarNameInTable="columnsuma_zaplat" msprop:Generator_ColumnPropNameInRow="suma_zaplat" msprop:Generator_ColumnPropNameInTable="suma_zaplatColumn" type="xs:decimal" minOccurs="0" /> 
     5788              <xs:element name="ID_FAKTURY" msprop:Generator_UserColumnName="ID_FAKTURY" msprop:Generator_ColumnVarNameInTable="columnID_FAKTURY" msprop:Generator_ColumnPropNameInRow="ID_FAKTURY" msprop:Generator_ColumnPropNameInTable="ID_FAKTURYColumn" type="xs:int" /> 
     5789              <xs:element name="Symbol" msprop:Generator_UserColumnName="Symbol" msprop:Generator_ColumnVarNameInTable="columnSymbol" msprop:Generator_ColumnPropNameInRow="Symbol" msprop:Generator_ColumnPropNameInTable="SymbolColumn" minOccurs="0"> 
     5790                <xs:simpleType> 
     5791                  <xs:restriction base="xs:string"> 
     5792                    <xs:maxLength value="50" /> 
     5793                  </xs:restriction> 
     5794                </xs:simpleType> 
     5795              </xs:element> 
     5796              <xs:element name="Agencja" msprop:Generator_UserColumnName="Agencja" msprop:Generator_ColumnVarNameInTable="columnAgencja" msprop:Generator_ColumnPropNameInRow="Agencja" msprop:Generator_ColumnPropNameInTable="AgencjaColumn" minOccurs="0"> 
     5797                <xs:simpleType> 
     5798                  <xs:restriction base="xs:string"> 
     5799                    <xs:maxLength value="50" /> 
     5800                  </xs:restriction> 
     5801                </xs:simpleType> 
     5802              </xs:element> 
     5803              <xs:element name="ZAPLACONO" msprop:Generator_UserColumnName="ZAPLACONO" msprop:Generator_ColumnVarNameInTable="columnZAPLACONO" msprop:Generator_ColumnPropNameInRow="ZAPLACONO" msprop:Generator_ColumnPropNameInTable="ZAPLACONOColumn" type="xs:boolean" minOccurs="0" /> 
     5804              <xs:element name="ZAPŁACONO" msprop:Generator_UserColumnName="ZAPŁACONO" msprop:Generator_ColumnVarNameInTable="columnZAPŁACONO" msprop:Generator_ColumnPropNameInRow="ZAPŁACONO" msprop:Generator_ColumnPropNameInTable="ZAPŁACONOColumn" type="xs:boolean" minOccurs="0" /> 
     5805              <xs:element name="DATA_x0020_ZAPŁATY" msprop:Generator_UserColumnName="DATA ZAPŁATY" msprop:Generator_ColumnVarNameInTable="columnDATA_ZAPŁATY" msprop:Generator_ColumnPropNameInRow="DATA_ZAPŁATY" msprop:Generator_ColumnPropNameInTable="DATA_ZAPŁATYColumn" type="xs:dateTime" minOccurs="0" /> 
     5806              <xs:element name="zaplata_data" msprop:Generator_UserColumnName="zaplata_data" msprop:Generator_ColumnVarNameInTable="columnzaplata_data" msprop:Generator_ColumnPropNameInRow="zaplata_data" msprop:Generator_ColumnPropNameInTable="zaplata_dataColumn" type="xs:dateTime" minOccurs="0" /> 
     5807              <xs:element name="reklamaId" msprop:Generator_UserColumnName="reklamaId" msprop:Generator_ColumnVarNameInTable="columnreklamaId" msprop:Generator_ColumnPropNameInRow="reklamaId" msprop:Generator_ColumnPropNameInTable="reklamaIdColumn" type="xs:int" minOccurs="0" /> 
     5808              <xs:element name="firstname" msprop:Generator_UserColumnName="firstname" msprop:Generator_ColumnVarNameInTable="columnfirstname" msprop:Generator_ColumnPropNameInRow="firstname" msprop:Generator_ColumnPropNameInTable="firstnameColumn" minOccurs="0"> 
     5809                <xs:simpleType> 
     5810                  <xs:restriction base="xs:string"> 
     5811                    <xs:maxLength value="50" /> 
     5812                  </xs:restriction> 
     5813                </xs:simpleType> 
     5814              </xs:element> 
     5815              <xs:element name="TERMIN_ZAPLATY" msprop:Generator_UserColumnName="TERMIN_ZAPLATY" msprop:Generator_ColumnVarNameInTable="columnTERMIN_ZAPLATY" msprop:Generator_ColumnPropNameInRow="TERMIN_ZAPLATY" msprop:Generator_ColumnPropNameInTable="TERMIN_ZAPLATYColumn" type="xs:dateTime" minOccurs="0" /> 
     5816              <xs:element name="GRZBIET" msprop:Generator_UserColumnName="GRZBIET" msprop:Generator_ColumnVarNameInTable="columnGRZBIET" msprop:Generator_ColumnPropNameInRow="GRZBIET" msprop:Generator_ColumnPropNameInTable="GRZBIETColumn" type="xs:int" minOccurs="0" /> 
     5817              <xs:element name="ID_TYTUL" msprop:Generator_UserColumnName="ID_TYTUL" msprop:Generator_ColumnVarNameInTable="columnID_TYTUL" msprop:Generator_ColumnPropNameInRow="ID_TYTUL" msprop:Generator_ColumnPropNameInTable="ID_TYTULColumn" type="xs:short" minOccurs="0" /> 
     5818              <xs:element name="dataWplaty" msprop:Generator_UserColumnName="dataWplaty" msprop:Generator_ColumnVarNameInTable="columndataWplaty" msprop:Generator_ColumnPropNameInRow="dataWplaty" msprop:Generator_ColumnPropNameInTable="dataWplatyColumn" type="xs:dateTime" minOccurs="0" /> 
     5819              <xs:element name="wplata_brutto" msprop:Generator_UserColumnName="wplata_brutto" msprop:Generator_ColumnVarNameInTable="columnwplata_brutto" msprop:Generator_ColumnPropNameInRow="wplata_brutto" msprop:Generator_ColumnPropNameInTable="wplata_bruttoColumn" type="xs:decimal" minOccurs="0" /> 
     5820              <xs:element name="wplata_waluta_brutto" msprop:Generator_UserColumnName="wplata_waluta_brutto" msprop:Generator_ColumnVarNameInTable="columnwplata_waluta_brutto" msprop:Generator_ColumnPropNameInRow="wplata_waluta_brutto" msprop:Generator_ColumnPropNameInTable="wplata_waluta_bruttoColumn" type="xs:decimal" minOccurs="0" /> 
     5821              <xs:element name="wplata_waluta_miano" msprop:Generator_UserColumnName="wplata_waluta_miano" msprop:Generator_ColumnVarNameInTable="columnwplata_waluta_miano" msprop:Generator_ColumnPropNameInRow="wplata_waluta_miano" msprop:Generator_ColumnPropNameInTable="wplata_waluta_mianoColumn" minOccurs="0"> 
    57985822                <xs:simpleType> 
    57995823                  <xs:restriction base="xs:string"> 
     
    58025826                </xs:simpleType> 
    58035827              </xs:element> 
    5804               <xs:element name="idWplaty" msprop:Generator_UserColumnName="idWplaty" msprop:Generator_ColumnPropNameInRow="idWplaty" msprop:Generator_ColumnVarNameInTable="columnidWplaty" msprop:Generator_ColumnPropNameInTable="idWplatyColumn" type="xs:int" minOccurs="0" /> 
    5805               <xs:element name="Korekta" msprop:Generator_UserColumnName="Korekta" msprop:Generator_ColumnPropNameInRow="Korekta" msprop:Generator_ColumnVarNameInTable="columnKorekta" msprop:Generator_ColumnPropNameInTable="KorektaColumn" type="xs:boolean" minOccurs="0" /> 
    5806               <xs:element name="idZamowienia" msprop:Generator_UserColumnName="idZamowienia" msprop:Generator_ColumnPropNameInRow="idZamowienia" msprop:Generator_ColumnVarNameInTable="columnidZamowienia" msprop:Generator_ColumnPropNameInTable="idZamowieniaColumn" type="xs:int" minOccurs="0" /> 
     5828              <xs:element name="idWplaty" msprop:Generator_UserColumnName="idWplaty" msprop:Generator_ColumnVarNameInTable="columnidWplaty" msprop:Generator_ColumnPropNameInRow="idWplaty" msprop:Generator_ColumnPropNameInTable="idWplatyColumn" type="xs:int" minOccurs="0" /> 
     5829              <xs:element name="Korekta" msprop:Generator_UserColumnName="Korekta" msprop:Generator_ColumnVarNameInTable="columnKorekta" msprop:Generator_ColumnPropNameInRow="Korekta" msprop:Generator_ColumnPropNameInTable="KorektaColumn" type="xs:boolean" minOccurs="0" /> 
     5830              <xs:element name="idZamowienia" msprop:Generator_UserColumnName="idZamowienia" msprop:Generator_ColumnVarNameInTable="columnidZamowienia" msprop:Generator_ColumnPropNameInRow="idZamowienia" msprop:Generator_ColumnPropNameInTable="idZamowieniaColumn" type="xs:int" minOccurs="0" /> 
    58075831            </xs:sequence> 
    58085832          </xs:complexType> 
     
    58115835          <xs:complexType> 
    58125836            <xs:sequence> 
    5813               <xs:element name="ID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ID" msprop:Generator_ColumnVarNameInTable="columnID" msprop:Generator_ColumnPropNameInRow="ID" msprop:Generator_ColumnPropNameInTable="IDColumn" type="xs:int" /> 
    5814               <xs:element name="SYMBOL" msprop:Generator_UserColumnName="SYMBOL" msprop:Generator_ColumnVarNameInTable="columnSYMBOL" msprop:Generator_ColumnPropNameInRow="SYMBOL" msprop:Generator_ColumnPropNameInTable="SYMBOLColumn"> 
    5815                 <xs:simpleType> 
    5816                   <xs:restriction base="xs:string"> 
    5817                     <xs:maxLength value="50" /> 
    5818                   </xs:restriction> 
    5819                 </xs:simpleType> 
    5820               </xs:element> 
    5821               <xs:element name="ROK" msprop:Generator_UserColumnName="ROK" msprop:Generator_ColumnVarNameInTable="columnROK" msprop:Generator_ColumnPropNameInRow="ROK" msprop:Generator_ColumnPropNameInTable="ROKColumn" type="xs:short" /> 
    5822               <xs:element name="MS" msprop:Generator_UserColumnName="MS" msprop:Generator_ColumnVarNameInTable="columnMS" msprop:Generator_ColumnPropNameInRow="MS" msprop:Generator_ColumnPropNameInTable="MSColumn" type="xs:short" /> 
    5823               <xs:element name="BUDZET" msprop:Generator_UserColumnName="BUDZET" msprop:Generator_ColumnVarNameInTable="columnBUDZET" msprop:Generator_ColumnPropNameInRow="BUDZET" msprop:Generator_ColumnPropNameInTable="BUDZETColumn" type="xs:int" default="0" /> 
    5824               <xs:element name="SPOTKANIA" msprop:Generator_UserColumnName="SPOTKANIA" msprop:Generator_ColumnVarNameInTable="columnSPOTKANIA" msprop:Generator_ColumnPropNameInRow="SPOTKANIA" msprop:Generator_ColumnPropNameInTable="SPOTKANIAColumn" type="xs:int" default="0" /> 
    5825               <xs:element name="KONTAKTY" msprop:Generator_UserColumnName="KONTAKTY" msprop:Generator_ColumnVarNameInTable="columnKONTAKTY" msprop:Generator_ColumnPropNameInRow="KONTAKTY" msprop:Generator_ColumnPropNameInTable="KONTAKTYColumn" type="xs:int" default="0" /> 
    5826               <xs:element name="N_KLIENCI" msprop:Generator_UserColumnName="N_KLIENCI" msprop:Generator_ColumnVarNameInTable="columnN_KLIENCI" msprop:Generator_ColumnPropNameInRow="N_KLIENCI" msprop:Generator_ColumnPropNameInTable="N_KLIENCIColumn" type="xs:int" default="0" /> 
    5827               <xs:element name="KLIENCI" msprop:Generator_UserColumnName="KLIENCI" msprop:Generator_ColumnVarNameInTable="columnKLIENCI" msprop:Generator_ColumnPropNameInRow="KLIENCI" msprop:Generator_ColumnPropNameInTable="KLIENCIColumn" type="xs:int" default="0" /> 
    5828               <xs:element name="REKLAMY" msprop:Generator_UserColumnName="REKLAMY" msprop:Generator_ColumnVarNameInTable="columnREKLAMY" msprop:Generator_ColumnPropNameInRow="REKLAMY" msprop:Generator_ColumnPropNameInTable="REKLAMYColumn" type="xs:int" default="0" /> 
    5829               <xs:element name="WIEDZA_O_FIRMIE" msprop:Generator_UserColumnName="WIEDZA_O_FIRMIE" msprop:Generator_ColumnVarNameInTable="columnWIEDZA_O_FIRMIE" msprop:Generator_ColumnPropNameInRow="WIEDZA_O_FIRMIE" msprop:Generator_ColumnPropNameInTable="WIEDZA_O_FIRMIEColumn" type="xs:short" default="0" /> 
    5830               <xs:element name="WIEDZA_O_PRODUKCIE" msprop:Generator_UserColumnName="WIEDZA_O_PRODUKCIE" msprop:Generator_ColumnVarNameInTable="columnWIEDZA_O_PRODUKCIE" msprop:Generator_ColumnPropNameInRow="WIEDZA_O_PRODUKCIE" msprop:Generator_ColumnPropNameInTable="WIEDZA_O_PRODUKCIEColumn" type="xs:short" default="0" /> 
    5831               <xs:element name="WIEDZA_O_RYNKU" msprop:Generator_UserColumnName="WIEDZA_O_RYNKU" msprop:Generator_ColumnVarNameInTable="columnWIEDZA_O_RYNKU" msprop:Generator_ColumnPropNameInRow="WIEDZA_O_RYNKU" msprop:Generator_ColumnPropNameInTable="WIEDZA_O_RYNKUColumn" type="xs:short" default="0" /> 
    5832               <xs:element name="WIEDZA_OGOLNO_HANDLOWA" msprop:Generator_UserColumnName="WIEDZA_OGOLNO_HANDLOWA" msprop:Generator_ColumnVarNameInTable="columnWIEDZA_OGOLNO_HANDLOWA" msprop:Generator_ColumnPropNameInRow="WIEDZA_OGOLNO_HANDLOWA" msprop:Generator_ColumnPropNameInTable="WIEDZA_OGOLNO_HANDLOWAColumn" type="xs:short" default="0" /> 
    5833               <xs:element name="JAKOSC_ROZMOWY_TEL" msprop:Generator_UserColumnName="JAKOSC_ROZMOWY_TEL" msprop:Generator_ColumnVarNameInTable="columnJAKOSC_ROZMOWY_TEL" msprop:Generator_ColumnPropNameInRow="JAKOSC_ROZMOWY_TEL" msprop:Generator_ColumnPropNameInTable="JAKOSC_ROZMOWY_TELColumn" type="xs:short" default="0" /> 
    5834               <xs:element name="JAKOSC_SPOTKAN" msprop:Generator_UserColumnName="JAKOSC_SPOTKAN" msprop:Generator_ColumnVarNameInTable="columnJAKOSC_SPOTKAN" msprop:Generator_ColumnPropNameInRow="JAKOSC_SPOTKAN" msprop:Generator_ColumnPropNameInTable="JAKOSC_SPOTKANColumn" type="xs:short" default="0" /> 
    5835               <xs:element name="JAKOSC_KORESPONDENCJI" msprop:Generator_UserColumnName="JAKOSC_KORESPONDENCJI" msprop:Generator_ColumnVarNameInTable="columnJAKOSC_KORESPONDENCJI" msprop:Generator_ColumnPropNameInRow="JAKOSC_KORESPONDENCJI" msprop:Generator_ColumnPropNameInTable="JAKOSC_KORESPONDENCJIColumn" type="xs:short" default="0" /> 
    5836               <xs:element name="JAKOSC_OFERT" msprop:Generator_UserColumnName="JAKOSC_OFERT" msprop:Generator_ColumnVarNameInTable="columnJAKOSC_OFERT" msprop:Generator_ColumnPropNameInRow="JAKOSC_OFERT" msprop:Generator_ColumnPropNameInTable="JAKOSC_OFERTColumn" type="xs:short" default="0" /> 
    5837               <xs:element name="W_BUDZET" msprop:Generator_UserColumnName="W_BUDZET" msprop:Generator_ColumnVarNameInTable="columnW_BUDZET" msprop:Generator_ColumnPropNameInRow="W_BUDZET" msprop:Generator_ColumnPropNameInTable="W_BUDZETColumn" type="xs:int" default="0" /> 
    5838               <xs:element name="W_SPOTKANIA" msprop:Generator_UserColumnName="W_SPOTKANIA" msprop:Generator_ColumnVarNameInTable="columnW_SPOTKANIA" msprop:Generator_ColumnPropNameInRow="W_SPOTKANIA" msprop:Generator_ColumnPropNameInTable="W_SPOTKANIAColumn" type="xs:int" default="0" /> 
    5839               <xs:element name="W_TEL" msprop:Generator_UserColumnName="W_TEL" msprop:Generator_ColumnVarNameInTable="columnW_TEL" msprop:Generator_ColumnPropNameInRow="W_TEL" msprop:Generator_ColumnPropNameInTable="W_TELColumn" type="xs:int" default="0" /> 
    5840               <xs:element name="W_EMAIL" msprop:Generator_UserColumnName="W_EMAIL" msprop:Generator_ColumnVarNameInTable="columnW_EMAIL" msprop:Generator_ColumnPropNameInRow="W_EMAIL" msprop:Generator_ColumnPropNameInTable="W_EMAILColumn" type="xs:int" default="0" /> 
    5841               <xs:element name="W_LIST" msprop:Generator_UserColumnName="W_LIST" msprop:Generator_ColumnVarNameInTable="columnW_LIST" msprop:Generator_ColumnPropNameInRow="W_LIST" msprop:Generator_ColumnPropNameInTable="W_LISTColumn" type="xs:int" default="0" /> 
    5842               <xs:element name="W_FAX" msprop:Generator_UserColumnName="W_FAX" msprop:Generator_ColumnVarNameInTable="columnW_FAX" msprop:Generator_ColumnPropNameInRow="W_FAX" msprop:Generator_ColumnPropNameInTable="W_FAXColumn" type="xs:int" default="0" /> 
    5843               <xs:element name="W_N_KLIENCI" msprop:Generator_UserColumnName="W_N_KLIENCI" msprop:Generator_ColumnVarNameInTable="columnW_N_KLIENCI" msprop:Generator_ColumnPropNameInRow="W_N_KLIENCI" msprop:Generator_ColumnPropNameInTable="W_N_KLIENCIColumn" type="xs:int" default="0" /> 
    5844               <xs:element name="W_KLIENCI" msprop:Generator_UserColumnName="W_KLIENCI" msprop:Generator_ColumnVarNameInTable="columnW_KLIENCI" msprop:Generator_ColumnPropNameInRow="W_KLIENCI" msprop:Generator_ColumnPropNameInTable="W_KLIENCIColumn" type="xs:int" default="0" /> 
    5845               <xs:element name="W_REKLAMY" msprop:Generator_UserColumnName="W_REKLAMY" msprop:Generator_ColumnVarNameInTable="columnW_REKLAMY" msprop:Generator_ColumnPropNameInRow="W_REKLAMY" msprop:Generator_ColumnPropNameInTable="W_REKLAMYColumn" type="xs:int" default="0" /> 
    5846               <xs:element name="EP" msprop:Generator_UserColumnName="EP" msprop:Generator_ColumnVarNameInTable="columnEP" msprop:Generator_ColumnPropNameInRow="EP" msprop:Generator_ColumnPropNameInTable="EPColumn" type="xs:float" default="0" /> 
    5847               <xs:element name="ESP" msprop:Generator_UserColumnName="ESP" msprop:Generator_ColumnVarNameInTable="columnESP" msprop:Generator_ColumnPropNameInRow="ESP" msprop:Generator_ColumnPropNameInTable="ESPColumn" type="xs:float" default="0" /> 
    5848               <xs:element name="EPR" msprop:Generator_UserColumnName="EPR" msprop:Generator_ColumnVarNameInTable="columnEPR" msprop:Generator_ColumnPropNameInRow="EPR" msprop:Generator_ColumnPropNameInTable="EPRColumn" type="xs:float" default="0" /> 
    5849               <xs:element name="EPK" msprop:Generator_UserColumnName="EPK" msprop:Generator_ColumnVarNameInTable="columnEPK" msprop:Generator_ColumnPropNameInRow="EPK" msprop:Generator_ColumnPropNameInTable="EPKColumn" type="xs:float" default="0" /> 
    5850               <xs:element name="ECP" msprop:Generator_UserColumnName="ECP" msprop:Generator_ColumnVarNameInTable="columnECP" msprop:Generator_ColumnPropNameInRow="ECP" msprop:Generator_ColumnPropNameInTable="ECPColumn" type="xs:float" default="0" /> 
    5851               <xs:element name="ELK" msprop:Generator_UserColumnName="ELK" msprop:Generator_ColumnVarNameInTable="columnELK" msprop:Generator_ColumnPropNameInRow="ELK" msprop:Generator_ColumnPropNameInTable="ELKColumn" type="xs:float" default="0" /> 
    5852               <xs:element name="QO" msprop:Generator_UserColumnName="QO" msprop:Generator_ColumnVarNameInTable="columnQO" msprop:Generator_ColumnPropNameInRow="QO" msprop:Generator_ColumnPropNameInTable="QOColumn" type="xs:float" default="0" /> 
    5853               <xs:element name="WH" msprop:Generator_UserColumnName="WH" msprop:Generator_ColumnVarNameInTable="columnWH" msprop:Generator_ColumnPropNameInRow="WH" msprop:Generator_ColumnPropNameInTable="WHColumn" type="xs:float" default="0" /> 
    5854               <xs:element name="OCENA" msprop:Generator_UserColumnName="OCENA" msprop:Generator_ColumnVarNameInTable="columnOCENA" msprop:Generator_ColumnPropNameInRow="OCENA" msprop:Generator_ColumnPropNameInTable="OCENAColumn" type="xs:float" default="0" /> 
    5855               <xs:element name="PR_PROWIZJI" msprop:Generator_UserColumnName="PR_PROWIZJI" msprop:Generator_ColumnVarNameInTable="columnPR_PROWIZJI" msprop:Generator_ColumnPropNameInRow="PR_PROWIZJI" msprop:Generator_ColumnPropNameInTable="PR_PROWIZJIColumn" type="xs:float" default="0" /> 
     5837              <xs:element name="ID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ID" msprop:Generator_ColumnPropNameInRow="ID" msprop:Generator_ColumnVarNameInTable="columnID" msprop:Generator_ColumnPropNameInTable="IDColumn" type="xs:int" /> 
     5838              <xs:element name="SYMBOL" msprop:Generator_UserColumnName="SYMBOL" msprop:Generator_ColumnPropNameInRow="SYMBOL" msprop:Generator_ColumnVarNameInTable="columnSYMBOL" msprop:Generator_ColumnPropNameInTable="SYMBOLColumn"> 
     5839                <xs:simpleType> 
     5840                  <xs:restriction base="xs:string"> 
     5841                    <xs:maxLength value="50" /> 
     5842                  </xs:restriction> 
     5843                </xs:simpleType> 
     5844              </xs:element> 
     5845              <xs:element name="ROK" msprop:Generator_UserColumnName="ROK" msprop:Generator_ColumnPropNameInRow="ROK" msprop:Generator_ColumnVarNameInTable="columnROK" msprop:Generator_ColumnPropNameInTable="ROKColumn" type="xs:short" /> 
     5846              <xs:element name="MS" msprop:Generator_UserColumnName="MS" msprop:Generator_ColumnPropNameInRow="MS" msprop:Generator_ColumnVarNameInTable="columnMS" msprop:Generator_ColumnPropNameInTable="MSColumn" type="xs:short" /> 
     5847              <xs:element name="BUDZET" msprop:Generator_UserColumnName="BUDZET" msprop:Generator_ColumnPropNameInRow="BUDZET" msprop:Generator_ColumnVarNameInTable="columnBUDZET" msprop:Generator_ColumnPropNameInTable="BUDZETColumn" type="xs:int" default="0" /> 
     5848              <xs:element name="SPOTKANIA" msprop:Generator_UserColumnName="SPOTKANIA" msprop:Generator_ColumnPropNameInRow="SPOTKANIA" msprop:Generator_ColumnVarNameInTable="columnSPOTKANIA" msprop:Generator_ColumnPropNameInTable="SPOTKANIAColumn" type="xs:int" default="0" /> 
     5849              <xs:element name="KONTAKTY" msprop:Generator_UserColumnName="KONTAKTY" msprop:Generator_ColumnPropNameInRow="KONTAKTY" msprop:Generator_ColumnVarNameInTable="columnKONTAKTY" msprop:Generator_ColumnPropNameInTable="KONTAKTYColumn" type="xs:int" default="0" /> 
     5850              <xs:element name="N_KLIENCI" msprop:Generator_UserColumnName="N_KLIENCI" msprop:Generator_ColumnPropNameInRow="N_KLIENCI" msprop:Generator_ColumnVarNameInTable="columnN_KLIENCI" msprop:Generator_ColumnPropNameInTable="N_KLIENCIColumn" type="xs:int" default="0" /> 
     5851              <xs:element name="KLIENCI" msprop:Generator_UserColumnName="KLIENCI" msprop:Generator_ColumnPropNameInRow="KLIENCI" msprop:Generator_ColumnVarNameInTable="columnKLIENCI" msprop:Generator_ColumnPropNameInTable="KLIENCIColumn" type="xs:int" default="0" /> 
     5852              <xs:element name="REKLAMY" msprop:Generator_UserColumnName="REKLAMY" msprop:Generator_ColumnPropNameInRow="REKLAMY" msprop:Generator_ColumnVarNameInTable="columnREKLAMY" msprop:Generator_ColumnPropNameInTable="REKLAMYColumn" type="xs:int" default="0" /> 
     5853              <xs:element name="WIEDZA_O_FIRMIE" msprop:Generator_UserColumnName="WIEDZA_O_FIRMIE" msprop:Generator_ColumnPropNameInRow="WIEDZA_O_FIRMIE" msprop:Generator_ColumnVarNameInTable="columnWIEDZA_O_FIRMIE" msprop:Generator_ColumnPropNameInTable="WIEDZA_O_FIRMIEColumn" type="xs:short" default="0" /> 
     5854              <xs:element name="WIEDZA_O_PRODUKCIE" msprop:Generator_UserColumnName="WIEDZA_O_PRODUKCIE" msprop:Generator_ColumnPropNameInRow="WIEDZA_O_PRODUKCIE" msprop:Generator_ColumnVarNameInTable="columnWIEDZA_O_PRODUKCIE" msprop:Generator_ColumnPropNameInTable="WIEDZA_O_PRODUKCIEColumn" type="xs:short" default="0" /> 
     5855              <xs:element name="WIEDZA_O_RYNKU" msprop:Generator_UserColumnName="WIEDZA_O_RYNKU" msprop:Generator_ColumnPropNameInRow="WIEDZA_O_RYNKU" msprop:Generator_ColumnVarNameInTable="columnWIEDZA_O_RYNKU" msprop:Generator_ColumnPropNameInTable="WIEDZA_O_RYNKUColumn" type="xs:short" default="0" /> 
     5856              <xs:element name="WIEDZA_OGOLNO_HANDLOWA" msprop:Generator_UserColumnName="WIEDZA_OGOLNO_HANDLOWA" msprop:Generator_ColumnPropNameInRow="WIEDZA_OGOLNO_HANDLOWA" msprop:Generator_ColumnVarNameInTable="columnWIEDZA_OGOLNO_HANDLOWA" msprop:Generator_ColumnPropNameInTable="WIEDZA_OGOLNO_HANDLOWAColumn" type="xs:short" default="0" /> 
     5857              <xs:element name="JAKOSC_ROZMOWY_TEL" msprop:Generator_UserColumnName="JAKOSC_ROZMOWY_TEL" msprop:Generator_ColumnPropNameInRow="JAKOSC_ROZMOWY_TEL" msprop:Generator_ColumnVarNameInTable="columnJAKOSC_ROZMOWY_TEL" msprop:Generator_ColumnPropNameInTable="JAKOSC_ROZMOWY_TELColumn" type="xs:short" default="0" /> 
     5858              <xs:element name="JAKOSC_SPOTKAN" msprop:Generator_UserColumnName="JAKOSC_SPOTKAN" msprop:Generator_ColumnPropNameInRow="JAKOSC_SPOTKAN" msprop:Generator_ColumnVarNameInTable="columnJAKOSC_SPOTKAN" msprop:Generator_ColumnPropNameInTable="JAKOSC_SPOTKANColumn" type="xs:short" default="0" /> 
     5859              <xs:element name="JAKOSC_KORESPONDENCJI" msprop:Generator_UserColumnName="JAKOSC_KORESPONDENCJI" msprop:Generator_ColumnPropNameInRow="JAKOSC_KORESPONDENCJI" msprop:Generator_ColumnVarNameInTable="columnJAKOSC_KORESPONDENCJI" msprop:Generator_ColumnPropNameInTable="JAKOSC_KORESPONDENCJIColumn" type="xs:short" default="0" /> 
     5860              <xs:element name="JAKOSC_OFERT" msprop:Generator_UserColumnName="JAKOSC_OFERT" msprop:Generator_ColumnPropNameInRow="JAKOSC_OFERT" msprop:Generator_ColumnVarNameInTable="columnJAKOSC_OFERT" msprop:Generator_ColumnPropNameInTable="JAKOSC_OFERTColumn" type="xs:short" default="0" /> 
     5861              <xs:element name="W_BUDZET" msprop:Generator_UserColumnName="W_BUDZET" msprop:Generator_ColumnPropNameInRow="W_BUDZET" msprop:Generator_ColumnVarNameInTable="columnW_BUDZET" msprop:Generator_ColumnPropNameInTable="W_BUDZETColumn" type="xs:int" default="0" /> 
     5862              <xs:element name="W_SPOTKANIA" msprop:Generator_UserColumnName="W_SPOTKANIA" msprop:Generator_ColumnPropNameInRow="W_SPOTKANIA" msprop:Generator_ColumnVarNameInTable="columnW_SPOTKANIA" msprop:Generator_ColumnPropNameInTable="W_SPOTKANIAColumn" type="xs:int" default="0" /> 
     5863              <xs:element name="W_TEL" msprop:Generator_UserColumnName="W_TEL" msprop:Generator_ColumnPropNameInRow="W_TEL" msprop:Generator_ColumnVarNameInTable="columnW_TEL" msprop:Generator_ColumnPropNameInTable="W_TELColumn" type="xs:int" default="0" /> 
     5864              <xs:element name="W_EMAIL" msprop:Generator_UserColumnName="W_EMAIL" msprop:Generator_ColumnPropNameInRow="W_EMAIL" msprop:Generator_ColumnVarNameInTable="columnW_EMAIL" msprop:Generator_ColumnPropNameInTable="W_EMAILColumn" type="xs:int" default="0" /> 
     5865              <xs:element name="W_LIST" msprop:Generator_UserColumnName="W_LIST" msprop:Generator_ColumnPropNameInRow="W_LIST" msprop:Generator_ColumnVarNameInTable="columnW_LIST" msprop:Generator_ColumnPropNameInTable="W_LISTColumn" type="xs:int" default="0" /> 
     5866              <xs:element name="W_FAX" msprop:Generator_UserColumnName="W_FAX" msprop:Generator_ColumnPropNameInRow="W_FAX" msprop:Generator_ColumnVarNameInTable="columnW_FAX" msprop:Generator_ColumnPropNameInTable="W_FAXColumn" type="xs:int" default="0" /> 
     5867              <xs:element name="W_N_KLIENCI" msprop:Generator_UserColumnName="W_N_KLIENCI" msprop:Generator_ColumnPropNameInRow="W_N_KLIENCI" msprop:Generator_ColumnVarNameInTable="columnW_N_KLIENCI" msprop:Generator_ColumnPropNameInTable="W_N_KLIENCIColumn" type="xs:int" default="0" /> 
     5868              <xs:element name="W_KLIENCI" msprop:Generator_UserColumnName="W_KLIENCI" msprop:Generator_ColumnPropNameInRow="W_KLIENCI" msprop:Generator_ColumnVarNameInTable="columnW_KLIENCI" msprop:Generator_ColumnPropNameInTable="W_KLIENCIColumn" type="xs:int" default="0" /> 
     5869              <xs:element name="W_REKLAMY" msprop:Generator_UserColumnName="W_REKLAMY" msprop:Generator_ColumnPropNameInRow="W_REKLAMY" msprop:Generator_ColumnVarNameInTable="columnW_REKLAMY" msprop:Generator_ColumnPropNameInTable="W_REKLAMYColumn" type="xs:int" default="0" /> 
     5870              <xs:element name="EP" msprop:Generator_UserColumnName="EP" msprop:Generator_ColumnPropNameInRow="EP" msprop:Generator_ColumnVarNameInTable="columnEP" msprop:Generator_ColumnPropNameInTable="EPColumn" type="xs:float" default="0" /> 
     5871              <xs:element name="ESP" msprop:Generator_UserColumnName="ESP" msprop:Generator_ColumnPropNameInRow="ESP" msprop:Generator_ColumnVarNameInTable="columnESP" msprop:Generator_ColumnPropNameInTable="ESPColumn" type="xs:float" default="0" /> 
     5872              <xs:element name="EPR" msprop:Generator_UserColumnName="EPR" msprop:Generator_ColumnPropNameInRow="EPR" msprop:Generator_ColumnVarNameInTable="columnEPR" msprop:Generator_ColumnPropNameInTable="EPRColumn" type="xs:float" default="0" /> 
     5873              <xs:element name="EPK" msprop:Generator_UserColumnName="EPK" msprop:Generator_ColumnPropNameInRow="EPK" msprop:Generator_ColumnVarNameInTable="columnEPK" msprop:Generator_ColumnPropNameInTable="EPKColumn" type="xs:float" default="0" /> 
     5874              <xs:element name="ECP" msprop:Generator_UserColumnName="ECP" msprop:Generator_ColumnPropNameInRow="ECP" msprop:Generator_ColumnVarNameInTable="columnECP" msprop:Generator_ColumnPropNameInTable="ECPColumn" type="xs:float" default="0" /> 
     5875              <xs:element name="ELK" msprop:Generator_UserColumnName="ELK" msprop:Generator_ColumnPropNameInRow="ELK" msprop:Generator_ColumnVarNameInTable="columnELK" msprop:Generator_ColumnPropNameInTable="ELKColumn" type="xs:float" default="0" /> 
     5876              <xs:element name="QO" msprop:Generator_UserColumnName="QO" msprop:Generator_ColumnPropNameInRow="QO" msprop:Generator_ColumnVarNameInTable="columnQO" msprop:Generator_ColumnPropNameInTable="QOColumn" type="xs:float" default="0" /> 
     5877              <xs:element name="WH" msprop:Generator_UserColumnName="WH" msprop:Generator_ColumnPropNameInRow="WH" msprop:Generator_ColumnVarNameInTable="columnWH" msprop:Generator_ColumnPropNameInTable="WHColumn" type="xs:float" default="0" /> 
     5878              <xs:element name="OCENA" msprop:Generator_UserColumnName="OCENA" msprop:Generator_ColumnPropNameInRow="OCENA" msprop:Generator_ColumnVarNameInTable="columnOCENA" msprop:Generator_ColumnPropNameInTable="OCENAColumn" type="xs:float" default="0" /> 
     5879              <xs:element name="PR_PROWIZJI" msprop:Generator_UserColumnName="PR_PROWIZJI" msprop:Generator_ColumnPropNameInRow="PR_PROWIZJI" msprop:Generator_ColumnVarNameInTable="columnPR_PROWIZJI" msprop:Generator_ColumnPropNameInTable="PR_PROWIZJIColumn" type="xs:float" default="0" /> 
    58565880            </xs:sequence> 
    58575881          </xs:complexType> 
     
    58605884          <xs:complexType> 
    58615885            <xs:sequence> 
    5862               <xs:element name="ilosc" msdata:ReadOnly="true" msprop:Generator_UserColumnName="ilosc" msprop:Generator_ColumnVarNameInTable="columnilosc" msprop:Generator_ColumnPropNameInRow="ilosc" msprop:Generator_ColumnPropNameInTable="iloscColumn" type="xs:int" minOccurs="0" /> 
    5863               <xs:element name="drukuj" msprop:Generator_UserColumnName="drukuj" msprop:Generator_ColumnVarNameInTable="columndrukuj" msprop:Generator_ColumnPropNameInRow="drukuj" msprop:Generator_ColumnPropNameInTable="drukujColumn" type="xs:boolean" minOccurs="0" /> 
    5864               <xs:element name="custID" msprop:Generator_UserColumnName="custID" msprop:Generator_ColumnVarNameInTable="columncustID" msprop:Generator_ColumnPropNameInRow="custID" msprop:Generator_ColumnPropNameInTable="custIDColumn" type="xs:int" minOccurs="0" /> 
    5865               <xs:element name="klientNazwa" msprop:Generator_UserColumnName="klientNazwa" msprop:Generator_ColumnVarNameInTable="columnklientNazwa" msprop:Generator_ColumnPropNameInRow="klientNazwa" msprop:Generator_ColumnPropNameInTable="klientNazwaColumn" minOccurs="0"> 
    5866                 <xs:simpleType> 
    5867                   <xs:restriction base="xs:string"> 
    5868                     <xs:maxLength value="50" /> 
    5869                   </xs:restriction> 
    5870                 </xs:simpleType> 
    5871               </xs:element> 
    5872               <xs:element name="suma" msdata:ReadOnly="true" msprop:Generator_UserColumnName="suma" msprop:Generator_ColumnVarNameInTable="columnsuma" msprop:Generator_ColumnPropNameInRow="suma" msprop:Generator_ColumnPropNameInTable="sumaColumn" type="xs:int" minOccurs="0" /> 
     5886              <xs:element name="ilosc" msdata:ReadOnly="true" msprop:Generator_UserColumnName="ilosc" msprop:Generator_ColumnPropNameInRow="ilosc" msprop:Generator_ColumnVarNameInTable="columnilosc" msprop:Generator_ColumnPropNameInTable="iloscColumn" type="xs:int" minOccurs="0" /> 
     5887              <xs:element name="drukuj" msprop:Generator_UserColumnName="drukuj" msprop:Generator_ColumnPropNameInRow="drukuj" msprop:Generator_ColumnVarNameInTable="columndrukuj" msprop:Generator_ColumnPropNameInTable="drukujColumn" type="xs:boolean" minOccurs="0" /> 
     5888              <xs:element name="custID" msprop:Generator_UserColumnName="custID" msprop:Generator_ColumnPropNameInRow="custID" msprop:Generator_ColumnVarNameInTable="columncustID" msprop:Generator_ColumnPropNameInTable="custIDColumn" type="xs:int" minOccurs="0" /> 
     5889              <xs:element name="klientNazwa" msprop:Generator_UserColumnName="klientNazwa" msprop:Generator_ColumnPropNameInRow="klientNazwa" msprop:Generator_ColumnVarNameInTable="columnklientNazwa" msprop:Generator_ColumnPropNameInTable="klientNazwaColumn" minOccurs="0"> 
     5890                <xs:simpleType> 
     5891                  <xs:restriction base="xs:string"> 
     5892                    <xs:maxLength value="50" /> 
     5893                  </xs:restriction> 
     5894                </xs:simpleType> 
     5895              </xs:element> 
     5896              <xs:element name="suma" msdata:ReadOnly="true" msprop:Generator_UserColumnName="suma" msprop:Generator_ColumnPropNameInRow="suma" msprop:Generator_ColumnVarNameInTable="columnsuma" msprop:Generator_ColumnPropNameInTable="sumaColumn" type="xs:int" minOccurs="0" /> 
    58735897            </xs:sequence> 
    58745898          </xs:complexType> 
     
    58775901          <xs:complexType> 
    58785902            <xs:sequence> 
    5879               <xs:element name="Nr_x0020_Wydania" msprop:Generator_UserColumnName="Nr Wydania" msprop:Generator_ColumnPropNameInRow="Nr_Wydania" msprop:Generator_ColumnVarNameInTable="columnNr_Wydania" msprop:Generator_ColumnPropNameInTable="Nr_WydaniaColumn" type="xs:short" /> 
    5880               <xs:element name="tyt" msprop:Generator_UserColumnName="tyt" msprop:Generator_ColumnVarNameInTable="columntyt" msprop:Generator_ColumnPropNameInRow="tyt" msprop:Generator_ColumnPropNameInTable="tytColumn" minOccurs="0"> 
     5903              <xs:element name="Nr_x0020_Wydania" msprop:Generator_UserColumnName="Nr Wydania" msprop:Generator_ColumnVarNameInTable="columnNr_Wydania" msprop:Generator_ColumnPropNameInRow="Nr_Wydania" msprop:Generator_ColumnPropNameInTable="Nr_WydaniaColumn" type="xs:short" /> 
     5904              <xs:element name="tyt" msprop:Generator_UserColumnName="tyt" msprop:Generator_ColumnPropNameInRow="tyt" msprop:Generator_ColumnVarNameInTable="columntyt" msprop:Generator_ColumnPropNameInTable="tytColumn" minOccurs="0"> 
    58815905                <xs:simpleType> 
    58825906                  <xs:restriction base="xs:string"> 
     
    58855909                </xs:simpleType> 
    58865910              </xs:element> 
    5887               <xs:element name="Expr1" msdata:ReadOnly="true" msprop:Generator_UserColumnName="Expr1" msprop:Generator_ColumnVarNameInTable="columnExpr1" msprop:Generator_ColumnPropNameInRow="Expr1" msprop:Generator_ColumnPropNameInTable="Expr1Column" type="xs:int" minOccurs="0" /> 
     5911              <xs:element name="Expr1" msdata:ReadOnly="true" msprop:Generator_UserColumnName="Expr1" msprop:Generator_ColumnPropNameInRow="Expr1" msprop:Generator_ColumnVarNameInTable="columnExpr1" msprop:Generator_ColumnPropNameInTable="Expr1Column" type="xs:int" minOccurs="0" /> 
    58885912            </xs:sequence> 
    58895913          </xs:complexType> 
     
    58925916          <xs:complexType> 
    58935917            <xs:sequence> 
    5894               <xs:element name="id" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="id" msprop:Generator_ColumnPropNameInRow="id" msprop:Generator_ColumnVarNameInTable="columnid" msprop:Generator_ColumnPropNameInTable="idColumn" type="xs:int" /> 
    5895               <xs:element name="CustomerId" msprop:Generator_UserColumnName="CustomerId" msprop:Generator_ColumnPropNameInRow="CustomerId" msprop:Generator_ColumnVarNameInTable="columnCustomerId" msprop:Generator_ColumnPropNameInTable="CustomerIdColumn" type="xs:int" minOccurs="0" /> 
    5896               <xs:element name="CustomerName" msprop:Generator_UserColumnName="CustomerName" msprop:Generator_ColumnPropNameInRow="CustomerName" msprop:Generator_ColumnVarNameInTable="columnCustomerName" msprop:Generator_ColumnPropNameInTable="CustomerNameColumn" minOccurs="0"> 
    5897                 <xs:simpleType> 
    5898                   <xs:restriction base="xs:string"> 
    5899                     <xs:maxLength value="50" /> 
    5900                   </xs:restriction> 
    5901                 </xs:simpleType> 
    5902               </xs:element> 
    5903               <xs:element name="Akwizytor" msprop:Generator_UserColumnName="Akwizytor" msprop:Generator_ColumnPropNameInRow="Akwizytor" msprop:Generator_ColumnVarNameInTable="columnAkwizytor" msprop:Generator_ColumnPropNameInTable="AkwizytorColumn" minOccurs="0"> 
    5904                 <xs:simpleType> 
    5905                   <xs:restriction base="xs:string"> 
    5906                     <xs:maxLength value="50" /> 
    5907                   </xs:restriction> 
    5908                 </xs:simpleType> 
    5909               </xs:element> 
    5910               <xs:element name="DataWprowadzenia" msprop:Generator_UserColumnName="DataWprowadzenia" msprop:Generator_ColumnPropNameInRow="DataWprowadzenia" msprop:Generator_ColumnVarNameInTable="columnDataWprowadzenia" msprop:Generator_ColumnPropNameInTable="DataWprowadzeniaColumn" type="xs:dateTime" minOccurs="0" /> 
    5911               <xs:element name="DataPrzypomnienia" msprop:Generator_UserColumnName="DataPrzypomnienia" msprop:Generator_ColumnPropNameInRow="DataPrzypomnienia" msprop:Generator_ColumnVarNameInTable="columnDataPrzypomnienia" msprop:Generator_ColumnPropNameInTable="DataPrzypomnieniaColumn" type="xs:dateTime" minOccurs="0" /> 
    5912               <xs:element name="Opis" msprop:Generator_UserColumnName="Opis" msprop:Generator_ColumnPropNameInRow="Opis" msprop:Generator_ColumnVarNameInTable="columnOpis" msprop:Generator_ColumnPropNameInTable="OpisColumn" minOccurs="0"> 
     5918              <xs:element name="id" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="id" msprop:Generator_ColumnVarNameInTable="columnid" msprop:Generator_ColumnPropNameInRow="id" msprop:Generator_ColumnPropNameInTable="idColumn" type="xs:int" /> 
     5919              <xs:element name="CustomerId" msprop:Generator_UserColumnName="CustomerId" msprop:Generator_ColumnVarNameInTable="columnCustomerId" msprop:Generator_ColumnPropNameInRow="CustomerId" msprop:Generator_ColumnPropNameInTable="CustomerIdColumn" type="xs:int" minOccurs="0" /> 
     5920              <xs:element name="CustomerName" msprop:Generator_UserColumnName="CustomerName" msprop:Generator_ColumnVarNameInTable="columnCustomerName" msprop:Generator_ColumnPropNameInRow="CustomerName" msprop:Generator_ColumnPropNameInTable="CustomerNameColumn" minOccurs="0"> 
     5921                <xs:simpleType> 
     5922                  <xs:restriction base="xs:string"> 
     5923                    <xs:maxLength value="50" /> 
     5924                  </xs:restriction> 
     5925                </xs:simpleType> 
     5926              </xs:element> 
     5927              <xs:element name="Akwizytor" msprop:Generator_UserColumnName="Akwizytor" msprop:Generator_ColumnVarNameInTable="columnAkwizytor" msprop:Generator_ColumnPropNameInRow="Akwizytor" msprop:Generator_ColumnPropNameInTable="AkwizytorColumn" minOccurs="0"> 
     5928                <xs:simpleType> 
     5929                  <xs:restriction base="xs:string"> 
     5930                    <xs:maxLength value="50" /> 
     5931                  </xs:restriction> 
     5932                </xs:simpleType> 
     5933              </xs:element> 
     5934              <xs:element name="DataWprowadzenia" msprop:Generator_UserColumnName="DataWprowadzenia" msprop:Generator_ColumnVarNameInTable="columnDataWprowadzenia" msprop:Generator_ColumnPropNameInRow="DataWprowadzenia" msprop:Generator_ColumnPropNameInTable="DataWprowadzeniaColumn" type="xs:dateTime" minOccurs="0" /> 
     5935              <xs:element name="DataPrzypomnienia" msprop:Generator_UserColumnName="DataPrzypomnienia" msprop:Generator_ColumnVarNameInTable="columnDataPrzypomnienia" msprop:Generator_ColumnPropNameInRow="DataPrzypomnienia" msprop:Generator_ColumnPropNameInTable="DataPrzypomnieniaColumn" type="xs:dateTime" minOccurs="0" /> 
     5936              <xs:element name="Opis" msprop:Generator_UserColumnName="Opis" msprop:Generator_ColumnVarNameInTable="columnOpis" msprop:Generator_ColumnPropNameInRow="Opis" msprop:Generator_ColumnPropNameInTable="OpisColumn" minOccurs="0"> 
    59135937                <xs:simpleType> 
    59145938                  <xs:restriction base="xs:string"> 
     
    59175941                </xs:simpleType> 
    59185942              </xs:element> 
    5919               <xs:element name="zalatwione" msprop:Generator_UserColumnName="zalatwione" msprop:Generator_ColumnPropNameInRow="zalatwione" msprop:Generator_ColumnVarNameInTable="columnzalatwione" msprop:Generator_ColumnPropNameInTable="zalatwioneColumn" type="xs:boolean" default="true" minOccurs="0" /> 
     5943              <xs:element name="zalatwione" msprop:Generator_UserColumnName="zalatwione" msprop:Generator_ColumnVarNameInTable="columnzalatwione" msprop:Generator_ColumnPropNameInRow="zalatwione" msprop:Generator_ColumnPropNameInTable="zalatwioneColumn" type="xs:boolean" default="true" minOccurs="0" /> 
    59205944            </xs:sequence> 
    59215945          </xs:complexType> 
     
    59245948          <xs:complexType> 
    59255949            <xs:sequence> 
    5926               <xs:element name="id_oferty" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="id_oferty" msprop:Generator_ColumnVarNameInTable="columnid_oferty" msprop:Generator_ColumnPropNameInRow="id_oferty" msprop:Generator_ColumnPropNameInTable="id_ofertyColumn" type="xs:int" /> 
    5927               <xs:element name="Stan_Oferty" msprop:Generator_UserColumnName="Stan_Oferty" msprop:Generator_ColumnVarNameInTable="columnStan_Oferty" msprop:Generator_ColumnPropNameInRow="Stan_Oferty" msprop:Generator_ColumnPropNameInTable="Stan_OfertyColumn" default="Otwarta" minOccurs="0"> 
    5928                 <xs:simpleType> 
    5929                   <xs:restriction base="xs:string"> 
    5930                     <xs:maxLength value="50" /> 
    5931                   </xs:restriction> 
    5932                 </xs:simpleType> 
    5933               </xs:element> 
    5934               <xs:element name="Id_Wersje_Oferty" msprop:Generator_UserColumnName="Id_Wersje_Oferty" msprop:Generator_ColumnVarNameInTable="columnId_Wersje_Oferty" msprop:Generator_ColumnPropNameInRow="Id_Wersje_Oferty" msprop:Generator_ColumnPropNameInTable="Id_Wersje_OfertyColumn" type="xs:short" default="7" minOccurs="0" /> 
    5935               <xs:element name="CUSTOMER_ID" msprop:Generator_UserColumnName="CUSTOMER_ID" msprop:Generator_ColumnVarNameInTable="columnCUSTOMER_ID" msprop:Generator_ColumnPropNameInRow="CUSTOMER_ID" msprop:Generator_ColumnPropNameInTable="CUSTOMER_IDColumn" type="xs:int" /> 
    5936               <xs:element name="id_klienci_os_kontakt" msprop:Generator_UserColumnName="id_klienci_os_kontakt" msprop:Generator_ColumnVarNameInTable="columnid_klienci_os_kontakt" msprop:Generator_ColumnPropNameInRow="id_klienci_os_kontakt" msprop:Generator_ColumnPropNameInTable="id_klienci_os_kontaktColumn" type="xs:int" minOccurs="0" /> 
    5937               <xs:element name="id_tytul" msprop:Generator_UserColumnName="id_tytul" msprop:Generator_ColumnVarNameInTable="columnid_tytul" msprop:Generator_ColumnPropNameInRow="id_tytul" msprop:Generator_ColumnPropNameInTable="id_tytulColumn" type="xs:int" default="1" /> 
    5938               <xs:element name="AGENT" msprop:Generator_UserColumnName="AGENT" msprop:Generator_ColumnVarNameInTable="columnAGENT" msprop:Generator_ColumnPropNameInRow="AGENT" msprop:Generator_ColumnPropNameInTable="AGENTColumn" minOccurs="0"> 
    5939                 <xs:simpleType> 
    5940                   <xs:restriction base="xs:string"> 
    5941                     <xs:maxLength value="50" /> 
    5942                   </xs:restriction> 
    5943                 </xs:simpleType> 
    5944               </xs:element> 
    5945               <xs:element name="JEZYK" msprop:Generator_UserColumnName="JEZYK" msprop:Generator_ColumnVarNameInTable="columnJEZYK" msprop:Generator_ColumnPropNameInRow="JEZYK" msprop:Generator_ColumnPropNameInTable="JEZYKColumn" type="xs:short" default="1" /> 
    5946               <xs:element name="Data_Oferty" msprop:Generator_UserColumnName="Data_Oferty" msprop:Generator_ColumnVarNameInTable="columnData_Oferty" msprop:Generator_ColumnPropNameInRow="Data_Oferty" msprop:Generator_ColumnPropNameInTable="Data_OfertyColumn" type="xs:dateTime" /> 
    5947               <xs:element name="Opis_Dol" msprop:Generator_UserColumnName="Opis_Dol" msprop:Generator_ColumnVarNameInTable="columnOpis_Dol" msprop:Generator_ColumnPropNameInRow="Opis_Dol" msprop:Generator_ColumnPropNameInTable="Opis_DolColumn" minOccurs="0"> 
     5950              <xs:element name="id_oferty" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="id_oferty" msprop:Generator_ColumnPropNameInRow="id_oferty" msprop:Generator_ColumnVarNameInTable="columnid_oferty" msprop:Generator_ColumnPropNameInTable="id_ofertyColumn" type="xs:int" /> 
     5951              <xs:element name="Stan_Oferty" msprop:Generator_UserColumnName="Stan_Oferty" msprop:Generator_ColumnPropNameInRow="Stan_Oferty" msprop:Generator_ColumnVarNameInTable="columnStan_Oferty" msprop:Generator_ColumnPropNameInTable="Stan_OfertyColumn" default="Otwarta" minOccurs="0"> 
     5952                <xs:simpleType> 
     5953                  <xs:restriction base="xs:string"> 
     5954                    <xs:maxLength value="50" /> 
     5955                  </xs:restriction> 
     5956                </xs:simpleType> 
     5957              </xs:element> 
     5958              <xs:element name="Id_Wersje_Oferty" msprop:Generator_UserColumnName="Id_Wersje_Oferty" msprop:Generator_ColumnPropNameInRow="Id_Wersje_Oferty" msprop:Generator_ColumnVarNameInTable="columnId_Wersje_Oferty" msprop:Generator_ColumnPropNameInTable="Id_Wersje_OfertyColumn" type="xs:short" default="7" minOccurs="0" /> 
     5959              <xs:element name="CUSTOMER_ID" msprop:Generator_UserColumnName="CUSTOMER_ID" msprop:Generator_ColumnPropNameInRow="CUSTOMER_ID" msprop:Generator_ColumnVarNameInTable="columnCUSTOMER_ID" msprop:Generator_ColumnPropNameInTable="CUSTOMER_IDColumn" type="xs:int" /> 
     5960              <xs:element name="id_klienci_os_kontakt" msprop:Generator_UserColumnName="id_klienci_os_kontakt" msprop:Generator_ColumnPropNameInRow="id_klienci_os_kontakt" msprop:Generator_ColumnVarNameInTable="columnid_klienci_os_kontakt" msprop:Generator_ColumnPropNameInTable="id_klienci_os_kontaktColumn" type="xs:int" minOccurs="0" /> 
     5961              <xs:element name="id_tytul" msprop:Generator_UserColumnName="id_tytul" msprop:Generator_ColumnPropNameInRow="id_tytul" msprop:Generator_ColumnVarNameInTable="columnid_tytul" msprop:Generator_ColumnPropNameInTable="id_tytulColumn" type="xs:int" default="1" /> 
     5962              <xs:element name="AGENT" msprop:Generator_UserColumnName="AGENT" msprop:Generator_ColumnPropNameInRow="AGENT" msprop:Generator_ColumnVarNameInTable="columnAGENT" msprop:Generator_ColumnPropNameInTable="AGENTColumn" minOccurs="0"> 
     5963                <xs:simpleType> 
     5964                  <xs:restriction base="xs:string"> 
     5965                    <xs:maxLength value="50" /> 
     5966                  </xs:restriction> 
     5967                </xs:simpleType> 
     5968              </xs:element> 
     5969              <xs:element name="JEZYK" msprop:Generator_UserColumnName="JEZYK" msprop:Generator_ColumnPropNameInRow="JEZYK" msprop:Generator_ColumnVarNameInTable="columnJEZYK" msprop:Generator_ColumnPropNameInTable="JEZYKColumn" type="xs:short" default="1" /> 
     5970              <xs:element name="Data_Oferty" msprop:Generator_UserColumnName="Data_Oferty" msprop:Generator_ColumnPropNameInRow="Data_Oferty" msprop:Generator_ColumnVarNameInTable="columnData_Oferty" msprop:Generator_ColumnPropNameInTable="Data_OfertyColumn" type="xs:dateTime" /> 
     5971              <xs:element name="Opis_Dol" msprop:Generator_UserColumnName="Opis_Dol" msprop:Generator_ColumnPropNameInRow="Opis_Dol" msprop:Generator_ColumnVarNameInTable="columnOpis_Dol" msprop:Generator_ColumnPropNameInTable="Opis_DolColumn" minOccurs="0"> 
    59485972                <xs:simpleType> 
    59495973                  <xs:restriction base="xs:string"> 
     
    59525976                </xs:simpleType> 
    59535977              </xs:element> 
    5954               <xs:element name="Data_Wyslania" msprop:Generator_UserColumnName="Data_Wyslania" msprop:Generator_ColumnVarNameInTable="columnData_Wyslania" msprop:Generator_ColumnPropNameInRow="Data_Wyslania" msprop:Generator_ColumnPropNameInTable="Data_WyslaniaColumn" type="xs:dateTime" /> 
    5955               <xs:element name="Data_Modyfikacji" msprop:Generator_UserColumnName="Data_Modyfikacji" msprop:Generator_ColumnVarNameInTable="columnData_Modyfikacji" msprop:Generator_ColumnPropNameInRow="Data_Modyfikacji" msprop:Generator_ColumnPropNameInTable="Data_ModyfikacjiColumn" type="xs:dateTime" /> 
    5956               <xs:element name="Zmodyfikowal_User" msprop:Generator_UserColumnName="Zmodyfikowal_User" msprop:Generator_ColumnVarNameInTable="columnZmodyfikowal_User" msprop:Generator_ColumnPropNameInRow="Zmodyfikowal_User" msprop:Generator_ColumnPropNameInTable="Zmodyfikowal_UserColumn" minOccurs="0"> 
    5957                 <xs:simpleType> 
    5958                   <xs:restriction base="xs:string"> 
    5959                     <xs:maxLength value="50" /> 
    5960                   </xs:restriction> 
    5961                 </xs:simpleType> 
    5962               </xs:element> 
    5963               <xs:element name="zapisana" msprop:Generator_UserColumnName="zapisana" msprop:Generator_ColumnVarNameInTable="columnzapisana" msprop:Generator_ColumnPropNameInRow="zapisana" msprop:Generator_ColumnPropNameInTable="zapisanaColumn" type="xs:int" default="0" /> 
    5964               <xs:element name="ReklamaID" msprop:Generator_UserColumnName="ReklamaID" msprop:Generator_ColumnVarNameInTable="columnReklamaID" msprop:Generator_ColumnPropNameInRow="ReklamaID" msprop:Generator_ColumnPropNameInTable="ReklamaIDColumn" type="xs:int" minOccurs="0" /> 
    5965               <xs:element name="ProjektID" msprop:Generator_UserColumnName="ProjektID" msprop:Generator_ColumnVarNameInTable="columnProjektID" msprop:Generator_ColumnPropNameInRow="ProjektID" msprop:Generator_ColumnPropNameInTable="ProjektIDColumn" minOccurs="0"> 
     5978              <xs:element name="Data_Wyslania" msprop:Generator_UserColumnName="Data_Wyslania" msprop:Generator_ColumnPropNameInRow="Data_Wyslania" msprop:Generator_ColumnVarNameInTable="columnData_Wyslania" msprop:Generator_ColumnPropNameInTable="Data_WyslaniaColumn" type="xs:dateTime" /> 
     5979              <xs:element name="Data_Modyfikacji" msprop:Generator_UserColumnName="Data_Modyfikacji" msprop:Generator_ColumnPropNameInRow="Data_Modyfikacji" msprop:Generator_ColumnVarNameInTable="columnData_Modyfikacji" msprop:Generator_ColumnPropNameInTable="Data_ModyfikacjiColumn" type="xs:dateTime" /> 
     5980              <xs:element name="Zmodyfikowal_User" msprop:Generator_UserColumnName="Zmodyfikowal_User" msprop:Generator_ColumnPropNameInRow="Zmodyfikowal_User" msprop:Generator_ColumnVarNameInTable="columnZmodyfikowal_User" msprop:Generator_ColumnPropNameInTable="Zmodyfikowal_UserColumn" minOccurs="0"> 
     5981                <xs:simpleType> 
     5982                  <xs:restriction base="xs:string"> 
     5983                    <xs:maxLength value="50" /> 
     5984                  </xs:restriction> 
     5985                </xs:simpleType> 
     5986              </xs:element> 
     5987              <xs:element name="zapisana" msprop:Generator_UserColumnName="zapisana" msprop:Generator_ColumnPropNameInRow="zapisana" msprop:Generator_ColumnVarNameInTable="columnzapisana" msprop:Generator_ColumnPropNameInTable="zapisanaColumn" type="xs:int" default="0" /> 
     5988              <xs:element name="ReklamaID" msprop:Generator_UserColumnName="ReklamaID" msprop:Generator_ColumnPropNameInRow="ReklamaID" msprop:Generator_ColumnVarNameInTable="columnReklamaID" msprop:Generator_ColumnPropNameInTable="ReklamaIDColumn" type="xs:int" minOccurs="0" /> 
     5989              <xs:element name="ProjektID" msprop:Generator_UserColumnName="ProjektID" msprop:Generator_ColumnPropNameInRow="ProjektID" msprop:Generator_ColumnVarNameInTable="columnProjektID" msprop:Generator_ColumnPropNameInTable="ProjektIDColumn" minOccurs="0"> 
    59665990                <xs:simpleType> 
    59675991                  <xs:restriction base="xs:string"> 
     
    59766000          <xs:complexType> 
    59776001            <xs:sequence> 
    5978               <xs:element name="id_oferty_wersje" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="id_oferty_wersje" msprop:Generator_ColumnVarNameInTable="columnid_oferty_wersje" msprop:Generator_ColumnPropNameInRow="id_oferty_wersje" msprop:Generator_ColumnPropNameInTable="id_oferty_wersjeColumn" type="xs:int" /> 
    5979               <xs:element name="nazwa" msprop:Generator_UserColumnName="nazwa" msprop:Generator_ColumnVarNameInTable="columnnazwa" msprop:Generator_ColumnPropNameInRow="nazwa" msprop:Generator_ColumnPropNameInTable="nazwaColumn" minOccurs="0"> 
    5980                 <xs:simpleType> 
    5981                   <xs:restriction base="xs:string"> 
    5982                     <xs:maxLength value="50" /> 
    5983                   </xs:restriction> 
    5984                 </xs:simpleType> 
    5985               </xs:element> 
    5986               <xs:element name="id_jezyk" msprop:Generator_UserColumnName="id_jezyk" msprop:Generator_ColumnVarNameInTable="columnid_jezyk" msprop:Generator_ColumnPropNameInRow="id_jezyk" msprop:Generator_ColumnPropNameInTable="id_jezykColumn" type="xs:int" minOccurs="0" /> 
    5987               <xs:element name="id_tytul" msprop:Generator_UserColumnName="id_tytul" msprop:Generator_ColumnVarNameInTable="columnid_tytul" msprop:Generator_ColumnPropNameInRow="id_tytul" msprop:Generator_ColumnPropNameInTable="id_tytulColumn" type="xs:int" minOccurs="0" /> 
    5988               <xs:element name="nazwa_pliku" msprop:Generator_UserColumnName="nazwa_pliku" msprop:Generator_ColumnVarNameInTable="columnnazwa_pliku" msprop:Generator_ColumnPropNameInRow="nazwa_pliku" msprop:Generator_ColumnPropNameInTable="nazwa_plikuColumn" minOccurs="0"> 
     6002              <xs:element name="id_oferty_wersje" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="id_oferty_wersje" msprop:Generator_ColumnPropNameInRow="id_oferty_wersje" msprop:Generator_ColumnVarNameInTable="columnid_oferty_wersje" msprop:Generator_ColumnPropNameInTable="id_oferty_wersjeColumn" type="xs:int" /> 
     6003              <xs:element name="nazwa" msprop:Generator_UserColumnName="nazwa" msprop:Generator_ColumnPropNameInRow="nazwa" msprop:Generator_ColumnVarNameInTable="columnnazwa" msprop:Generator_ColumnPropNameInTable="nazwaColumn" minOccurs="0"> 
     6004                <xs:simpleType> 
     6005                  <xs:restriction base="xs:string"> 
     6006                    <xs:maxLength value="50" /> 
     6007                  </xs:restriction> 
     6008                </xs:simpleType> 
     6009              </xs:element> 
     6010              <xs:element name="id_jezyk" msprop:Generator_UserColumnName="id_jezyk" msprop:Generator_ColumnPropNameInRow="id_jezyk" msprop:Generator_ColumnVarNameInTable="columnid_jezyk" msprop:Generator_ColumnPropNameInTable="id_jezykColumn" type="xs:int" minOccurs="0" /> 
     6011              <xs:element name="id_tytul" msprop:Generator_UserColumnName="id_tytul" msprop:Generator_ColumnPropNameInRow="id_tytul" msprop:Generator_ColumnVarNameInTable="columnid_tytul" msprop:Generator_ColumnPropNameInTable="id_tytulColumn" type="xs:int" minOccurs="0" /> 
     6012              <xs:element name="nazwa_pliku" msprop:Generator_UserColumnName="nazwa_pliku" msprop:Generator_ColumnPropNameInRow="nazwa_pliku" msprop:Generator_ColumnVarNameInTable="columnnazwa_pliku" msprop:Generator_ColumnPropNameInTable="nazwa_plikuColumn" minOccurs="0"> 
    59896013                <xs:simpleType> 
    59906014                  <xs:restriction base="xs:string"> 
     
    59996023          <xs:complexType> 
    60006024            <xs:sequence> 
    6001               <xs:element name="FirstName" msprop:Generator_UserColumnName="FirstName" msprop:Generator_ColumnPropNameInRow="FirstName" msprop:Generator_ColumnVarNameInTable="columnFirstName" msprop:Generator_ColumnPropNameInTable="FirstNameColumn" minOccurs="0"> 
    6002                 <xs:simpleType> 
    6003                   <xs:restriction base="xs:string"> 
    6004                     <xs:maxLength value="50" /> 
    6005                   </xs:restriction> 
    6006                 </xs:simpleType> 
    6007               </xs:element> 
    6008               <xs:element name="symbol_agenta" msprop:Generator_UserColumnName="symbol_agenta" msprop:Generator_ColumnPropNameInRow="symbol_agenta" msprop:Generator_ColumnVarNameInTable="columnsymbol_agenta" msprop:Generator_ColumnPropNameInTable="symbol_agentaColumn"> 
    6009                 <xs:simpleType> 
    6010                   <xs:restriction base="xs:string"> 
    6011                     <xs:maxLength value="50" /> 
    6012                   </xs:restriction> 
    6013                 </xs:simpleType> 
    6014               </xs:element> 
    6015               <xs:element name="data" msprop:Generator_UserColumnName="data" msprop:Generator_ColumnPropNameInRow="data" msprop:Generator_ColumnVarNameInTable="columndata" msprop:Generator_ColumnPropNameInTable="dataColumn" type="xs:dateTime" /> 
    6016               <xs:element name="rodzaj" msprop:Generator_UserColumnName="rodzaj" msprop:Generator_ColumnPropNameInRow="rodzaj" msprop:Generator_ColumnVarNameInTable="columnrodzaj" msprop:Generator_ColumnPropNameInTable="rodzajColumn" minOccurs="0"> 
     6025              <xs:element name="FirstName" msprop:Generator_UserColumnName="FirstName" msprop:Generator_ColumnVarNameInTable="columnFirstName" msprop:Generator_ColumnPropNameInRow="FirstName" msprop:Generator_ColumnPropNameInTable="FirstNameColumn" minOccurs="0"> 
     6026                <xs:simpleType> 
     6027                  <xs:restriction base="xs:string"> 
     6028                    <xs:maxLength value="50" /> 
     6029                  </xs:restriction> 
     6030                </xs:simpleType> 
     6031              </xs:element> 
     6032              <xs:element name="symbol_agenta" msprop:Generator_UserColumnName="symbol_agenta" msprop:Generator_ColumnVarNameInTable="columnsymbol_agenta" msprop:Generator_ColumnPropNameInRow="symbol_agenta" msprop:Generator_ColumnPropNameInTable="symbol_agentaColumn"> 
     6033                <xs:simpleType> 
     6034                  <xs:restriction base="xs:string"> 
     6035                    <xs:maxLength value="50" /> 
     6036                  </xs:restriction> 
     6037                </xs:simpleType> 
     6038              </xs:element> 
     6039              <xs:element name="data" msprop:Generator_UserColumnName="data" msprop:Generator_ColumnVarNameInTable="columndata" msprop:Generator_ColumnPropNameInRow="data" msprop:Generator_ColumnPropNameInTable="dataColumn" type="xs:dateTime" /> 
     6040              <xs:element name="rodzaj" msprop:Generator_UserColumnName="rodzaj" msprop:Generator_ColumnVarNameInTable="columnrodzaj" msprop:Generator_ColumnPropNameInRow="rodzaj" msprop:Generator_ColumnPropNameInTable="rodzajColumn" minOccurs="0"> 
    60176041                <xs:simpleType> 
    60186042                  <xs:restriction base="xs:string"> 
     
    60216045                </xs:simpleType> 
    60226046              </xs:element> 
    6023               <xs:element name="opis" msprop:Generator_UserColumnName="opis" msprop:Generator_ColumnPropNameInRow="opis" msprop:Generator_ColumnVarNameInTable="columnopis" msprop:Generator_ColumnPropNameInTable="opisColumn" minOccurs="0"> 
     6047              <xs:element name="opis" msprop:Generator_UserColumnName="opis" msprop:Generator_ColumnVarNameInTable="columnopis" msprop:Generator_ColumnPropNameInRow="opis" msprop:Generator_ColumnPropNameInTable="opisColumn" minOccurs="0"> 
    60246048                <xs:simpleType> 
    60256049                  <xs:restriction base="xs:string"> 
     
    60286052                </xs:simpleType> 
    60296053              </xs:element> 
    6030               <xs:element name="CustomerID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="CustomerID" msprop:Generator_ColumnPropNameInRow="CustomerID" msprop:Generator_ColumnVarNameInTable="columnCustomerID" msprop:Generator_ColumnPropNameInTable="CustomerIDColumn" type="xs:int" minOccurs="0" /> 
    6031               <xs:element name="UserName" msprop:Generator_UserColumnName="UserName" msprop:Generator_ColumnPropNameInRow="UserName" msprop:Generator_ColumnVarNameInTable="columnUserName" msprop:Generator_ColumnPropNameInTable="UserNameColumn" minOccurs="0"> 
     6054              <xs:element name="CustomerID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="CustomerID" msprop:Generator_ColumnVarNameInTable="columnCustomerID" msprop:Generator_ColumnPropNameInRow="CustomerID" msprop:Generator_ColumnPropNameInTable="CustomerIDColumn" type="xs:int" minOccurs="0" /> 
     6055              <xs:element name="UserName" msprop:Generator_UserColumnName="UserName" msprop:Generator_ColumnVarNameInTable="columnUserName" msprop:Generator_ColumnPropNameInRow="UserName" msprop:Generator_ColumnPropNameInTable="UserNameColumn" minOccurs="0"> 
    60326056                <xs:simpleType> 
    60336057                  <xs:restriction base="xs:string"> 
     
    60426066          <xs:complexType> 
    60436067            <xs:sequence> 
    6044               <xs:element name="SYMBOL" msprop:Generator_UserColumnName="SYMBOL" msprop:Generator_ColumnVarNameInTable="columnSYMBOL" msprop:Generator_ColumnPropNameInRow="SYMBOL" msprop:Generator_ColumnPropNameInTable="SYMBOLColumn"> 
    6045                 <xs:simpleType> 
    6046                   <xs:restriction base="xs:string"> 
    6047                     <xs:maxLength value="50" /> 
    6048                   </xs:restriction> 
    6049                 </xs:simpleType> 
    6050               </xs:element> 
     6068              <xs:element name="SYMBOL" msprop:Generator_UserColumnName="SYMBOL" msprop:Generator_ColumnPropNameInRow="SYMBOL" msprop:Generator_ColumnVarNameInTable="columnSYMBOL" msprop:Generator_ColumnPropNameInTable="SYMBOLColumn"> 
     6069                <xs:simpleType> 
     6070                  <xs:restriction base="xs:string"> 
     6071                    <xs:maxLength value="50" /> 
     6072                  </xs:restriction> 
     6073                </xs:simpleType> 
     6074              </xs:element> 
     6075              <xs:element name="ROK" msprop:Generator_UserColumnName="ROK" msprop:Generator_ColumnPropNameInRow="ROK" msprop:Generator_ColumnVarNameInTable="columnROK" msprop:Generator_ColumnPropNameInTable="ROKColumn" type="xs:short" /> 
     6076              <xs:element name="MS" msprop:Generator_UserColumnName="MS" msprop:Generator_ColumnPropNameInRow="MS" msprop:Generator_ColumnVarNameInTable="columnMS" msprop:Generator_ColumnPropNameInTable="MSColumn" type="xs:short" /> 
     6077              <xs:element name="BUDZET" msprop:Generator_UserColumnName="BUDZET" msprop:Generator_ColumnPropNameInRow="BUDZET" msprop:Generator_ColumnVarNameInTable="columnBUDZET" msprop:Generator_ColumnPropNameInTable="BUDZETColumn" type="xs:int" /> 
     6078              <xs:element name="SPOTKANIA" msprop:Generator_UserColumnName="SPOTKANIA" msprop:Generator_ColumnPropNameInRow="SPOTKANIA" msprop:Generator_ColumnVarNameInTable="columnSPOTKANIA" msprop:Generator_ColumnPropNameInTable="SPOTKANIAColumn" type="xs:int" /> 
     6079              <xs:element name="KONTAKTY" msprop:Generator_UserColumnName="KONTAKTY" msprop:Generator_ColumnPropNameInRow="KONTAKTY" msprop:Generator_ColumnVarNameInTable="columnKONTAKTY" msprop:Generator_ColumnPropNameInTable="KONTAKTYColumn" type="xs:int" /> 
     6080              <xs:element name="N_KLIENCI" msprop:Generator_UserColumnName="N_KLIENCI" msprop:Generator_ColumnPropNameInRow="N_KLIENCI" msprop:Generator_ColumnVarNameInTable="columnN_KLIENCI" msprop:Generator_ColumnPropNameInTable="N_KLIENCIColumn" type="xs:int" /> 
     6081              <xs:element name="KLIENCI" msprop:Generator_UserColumnName="KLIENCI" msprop:Generator_ColumnPropNameInRow="KLIENCI" msprop:Generator_ColumnVarNameInTable="columnKLIENCI" msprop:Generator_ColumnPropNameInTable="KLIENCIColumn" type="xs:int" /> 
     6082              <xs:element name="REKLAMY" msprop:Generator_UserColumnName="REKLAMY" msprop:Generator_ColumnPropNameInRow="REKLAMY" msprop:Generator_ColumnVarNameInTable="columnREKLAMY" msprop:Generator_ColumnPropNameInTable="REKLAMYColumn" type="xs:int" /> 
     6083              <xs:element name="W_BUDZET" msprop:Generator_UserColumnName="W_BUDZET" msprop:Generator_ColumnPropNameInRow="W_BUDZET" msprop:Generator_ColumnVarNameInTable="columnW_BUDZET" msprop:Generator_ColumnPropNameInTable="W_BUDZETColumn" type="xs:int" /> 
     6084              <xs:element name="W_SPOTKANIA" msprop:Generator_UserColumnName="W_SPOTKANIA" msprop:Generator_ColumnPropNameInRow="W_SPOTKANIA" msprop:Generator_ColumnVarNameInTable="columnW_SPOTKANIA" msprop:Generator_ColumnPropNameInTable="W_SPOTKANIAColumn" type="xs:int" /> 
     6085              <xs:element name="w_kontakty" msdata:ReadOnly="true" msprop:Generator_UserColumnName="w_kontakty" msprop:Generator_ColumnPropNameInRow="w_kontakty" msprop:Generator_ColumnVarNameInTable="columnw_kontakty" msprop:Generator_ColumnPropNameInTable="w_kontaktyColumn" type="xs:int" minOccurs="0" /> 
     6086              <xs:element name="W_N_KLIENCI" msprop:Generator_UserColumnName="W_N_KLIENCI" msprop:Generator_ColumnPropNameInRow="W_N_KLIENCI" msprop:Generator_ColumnVarNameInTable="columnW_N_KLIENCI" msprop:Generator_ColumnPropNameInTable="W_N_KLIENCIColumn" type="xs:int" /> 
     6087              <xs:element name="W_KLIENCI" msprop:Generator_UserColumnName="W_KLIENCI" msprop:Generator_ColumnPropNameInRow="W_KLIENCI" msprop:Generator_ColumnVarNameInTable="columnW_KLIENCI" msprop:Generator_ColumnPropNameInTable="W_KLIENCIColumn" type="xs:int" /> 
     6088              <xs:element name="W_REKLAMY" msprop:Generator_UserColumnName="W_REKLAMY" msprop:Generator_ColumnPropNameInRow="W_REKLAMY" msprop:Generator_ColumnVarNameInTable="columnW_REKLAMY" msprop:Generator_ColumnPropNameInTable="W_REKLAMYColumn" type="xs:int" /> 
     6089              <xs:element name="il_ms" msprop:Generator_UserColumnName="il_ms" msprop:Generator_ColumnPropNameInRow="il_ms" msprop:Generator_ColumnVarNameInTable="columnil_ms" msprop:Generator_ColumnPropNameInTable="il_msColumn" type="xs:int" minOccurs="0" /> 
     6090              <xs:element name="r_budzet" msprop:Generator_UserColumnName="r_budzet" msprop:Generator_ColumnPropNameInRow="r_budzet" msprop:Generator_ColumnVarNameInTable="columnr_budzet" msprop:Generator_ColumnPropNameInTable="r_budzetColumn" type="xs:int" minOccurs="0" /> 
     6091              <xs:element name="r_spotkania" msprop:Generator_UserColumnName="r_spotkania" msprop:Generator_ColumnPropNameInRow="r_spotkania" msprop:Generator_ColumnVarNameInTable="columnr_spotkania" msprop:Generator_ColumnPropNameInTable="r_spotkaniaColumn" type="xs:int" minOccurs="0" /> 
     6092              <xs:element name="r_kontakty" msprop:Generator_UserColumnName="r_kontakty" msprop:Generator_ColumnPropNameInRow="r_kontakty" msprop:Generator_ColumnVarNameInTable="columnr_kontakty" msprop:Generator_ColumnPropNameInTable="r_kontaktyColumn" type="xs:int" minOccurs="0" /> 
     6093              <xs:element name="r_n_klienci" msprop:Generator_UserColumnName="r_n_klienci" msprop:Generator_ColumnPropNameInRow="r_n_klienci" msprop:Generator_ColumnVarNameInTable="columnr_n_klienci" msprop:Generator_ColumnPropNameInTable="r_n_klienciColumn" type="xs:int" minOccurs="0" /> 
     6094              <xs:element name="r_klienci" msprop:Generator_UserColumnName="r_klienci" msprop:Generator_ColumnPropNameInRow="r_klienci" msprop:Generator_ColumnVarNameInTable="columnr_klienci" msprop:Generator_ColumnPropNameInTable="r_klienciColumn" type="xs:int" minOccurs="0" /> 
     6095              <xs:element name="r_reklamy" msprop:Generator_UserColumnName="r_reklamy" msprop:Generator_ColumnPropNameInRow="r_reklamy" msprop:Generator_ColumnVarNameInTable="columnr_reklamy" msprop:Generator_ColumnPropNameInTable="r_reklamyColumn" type="xs:int" minOccurs="0" /> 
     6096              <xs:element name="r_w_budzet" msprop:Generator_UserColumnName="r_w_budzet" msprop:Generator_ColumnPropNameInRow="r_w_budzet" msprop:Generator_ColumnVarNameInTable="columnr_w_budzet" msprop:Generator_ColumnPropNameInTable="r_w_budzetColumn" type="xs:int" minOccurs="0" /> 
     6097              <xs:element name="r_w_spotkania" msprop:Generator_UserColumnName="r_w_spotkania" msprop:Generator_ColumnPropNameInRow="r_w_spotkania" msprop:Generator_ColumnVarNameInTable="columnr_w_spotkania" msprop:Generator_ColumnPropNameInTable="r_w_spotkaniaColumn" type="xs:int" minOccurs="0" /> 
     6098              <xs:element name="r_w_n_klienci" msprop:Generator_UserColumnName="r_w_n_klienci" msprop:Generator_ColumnPropNameInRow="r_w_n_klienci" msprop:Generator_ColumnVarNameInTable="columnr_w_n_klienci" msprop:Generator_ColumnPropNameInTable="r_w_n_klienciColumn" type="xs:int" minOccurs="0" /> 
     6099              <xs:element name="r_w_klienci" msprop:Generator_UserColumnName="r_w_klienci" msprop:Generator_ColumnPropNameInRow="r_w_klienci" msprop:Generator_ColumnVarNameInTable="columnr_w_klienci" msprop:Generator_ColumnPropNameInTable="r_w_klienciColumn" type="xs:int" minOccurs="0" /> 
     6100              <xs:element name="r_w_reklamy" msprop:Generator_UserColumnName="r_w_reklamy" msprop:Generator_ColumnPropNameInRow="r_w_reklamy" msprop:Generator_ColumnVarNameInTable="columnr_w_reklamy" msprop:Generator_ColumnPropNameInTable="r_w_reklamyColumn" type="xs:int" minOccurs="0" /> 
     6101              <xs:element name="r_w_kontakty" msprop:Generator_UserColumnName="r_w_kontakty" msprop:Generator_ColumnPropNameInRow="r_w_kontakty" msprop:Generator_ColumnVarNameInTable="columnr_w_kontakty" msprop:Generator_ColumnPropNameInTable="r_w_kontaktyColumn" type="xs:int" minOccurs="0" /> 
     6102            </xs:sequence> 
     6103          </xs:complexType> 
     6104        </xs:element> 
     6105        <xs:element name="View_Podsumowanie_Wykonania_Planu_Agencja" msprop:Generator_UserTableName="View_Podsumowanie_Wykonania_Planu_Agencja" msprop:Generator_RowDeletedName="View_Podsumowanie_Wykonania_Planu_AgencjaRowDeleted" msprop:Generator_RowChangedName="View_Podsumowanie_Wykonania_Planu_AgencjaRowChanged" msprop:Generator_RowClassName="View_Podsumowanie_Wykonania_Planu_AgencjaRow" msprop:Generator_RowChangingName="View_Podsumowanie_Wykonania_Planu_AgencjaRowChanging" msprop:Generator_RowEvArgName="View_Podsumowanie_Wykonania_Planu_AgencjaRowChangeEvent" msprop:Generator_RowEvHandlerName="View_Podsumowanie_Wykonania_Planu_AgencjaRowChangeEventHandler" msprop:Generator_TableClassName="View_Podsumowanie_Wykonania_Planu_AgencjaDataTable" msprop:Generator_TableVarName="tableView_Podsumowanie_Wykonania_Planu_Agencja" msprop:Generator_RowDeletingName="View_Podsumowanie_Wykonania_Planu_AgencjaRowDeleting" msprop:Generator_TablePropName="View_Podsumowanie_Wykonania_Planu_Agencja"> 
     6106          <xs:complexType> 
     6107            <xs:sequence> 
    60516108              <xs:element name="ROK" msprop:Generator_UserColumnName="ROK" msprop:Generator_ColumnVarNameInTable="columnROK" msprop:Generator_ColumnPropNameInRow="ROK" msprop:Generator_ColumnPropNameInTable="ROKColumn" type="xs:short" /> 
    60526109              <xs:element name="MS" msprop:Generator_UserColumnName="MS" msprop:Generator_ColumnVarNameInTable="columnMS" msprop:Generator_ColumnPropNameInRow="MS" msprop:Generator_ColumnPropNameInTable="MSColumn" type="xs:short" /> 
     6110              <xs:element name="symbol" msprop:Generator_UserColumnName="symbol" msprop:Generator_ColumnVarNameInTable="columnsymbol" msprop:Generator_ColumnPropNameInRow="symbol" msprop:Generator_ColumnPropNameInTable="symbolColumn"> 
     6111                <xs:simpleType> 
     6112                  <xs:restriction base="xs:string"> 
     6113                    <xs:maxLength value="50" /> 
     6114                  </xs:restriction> 
     6115                </xs:simpleType> 
     6116              </xs:element> 
    60536117              <xs:element name="BUDZET" msprop:Generator_UserColumnName="BUDZET" msprop:Generator_ColumnVarNameInTable="columnBUDZET" msprop:Generator_ColumnPropNameInRow="BUDZET" msprop:Generator_ColumnPropNameInTable="BUDZETColumn" type="xs:int" /> 
    6054               <xs:element name="SPOTKANIA" msprop:Generator_UserColumnName="SPOTKANIA" msprop:Generator_ColumnVarNameInTable="columnSPOTKANIA" msprop:Generator_ColumnPropNameInRow="SPOTKANIA" msprop:Generator_ColumnPropNameInTable="SPOTKANIAColumn" type="xs:int" /> 
    6055               <xs:element name="KONTAKTY" msprop:Generator_UserColumnName="KONTAKTY" msprop:Generator_ColumnVarNameInTable="columnKONTAKTY" msprop:Generator_ColumnPropNameInRow="KONTAKTY" msprop:Generator_ColumnPropNameInTable="KONTAKTYColumn" type="xs:int" /> 
    6056               <xs:element name="N_KLIENCI" msprop:Generator_UserColumnName="N_KLIENCI" msprop:Generator_ColumnVarNameInTable="columnN_KLIENCI" msprop:Generator_ColumnPropNameInRow="N_KLIENCI" msprop:Generator_ColumnPropNameInTable="N_KLIENCIColumn" type="xs:int" /> 
    6057               <xs:element name="KLIENCI" msprop:Generator_UserColumnName="KLIENCI" msprop:Generator_ColumnVarNameInTable="columnKLIENCI" msprop:Generator_ColumnPropNameInRow="KLIENCI" msprop:Generator_ColumnPropNameInTable="KLIENCIColumn" type="xs:int" /> 
    6058               <xs:element name="REKLAMY" msprop:Generator_UserColumnName="REKLAMY" msprop:Generator_ColumnVarNameInTable="columnREKLAMY" msprop:Generator_ColumnPropNameInRow="REKLAMY" msprop:Generator_ColumnPropNameInTable="REKLAMYColumn" type="xs:int" /> 
    6059               <xs:element name="W_BUDZET" msprop:Generator_UserColumnName="W_BUDZET" msprop:Generator_ColumnVarNameInTable="columnW_BUDZET" msprop:Generator_ColumnPropNameInRow="W_BUDZET" msprop:Generator_ColumnPropNameInTable="W_BUDZETColumn" type="xs:int" /> 
    6060               <xs:element name="W_SPOTKANIA" msprop:Generator_UserColumnName="W_SPOTKANIA" msprop:Generator_ColumnVarNameInTable="columnW_SPOTKANIA" msprop:Generator_ColumnPropNameInRow="W_SPOTKANIA" msprop:Generator_ColumnPropNameInTable="W_SPOTKANIAColumn" type="xs:int" /> 
    6061               <xs:element name="w_kontakty" msdata:ReadOnly="true" msprop:Generator_UserColumnName="w_kontakty" msprop:Generator_ColumnVarNameInTable="columnw_kontakty" msprop:Generator_ColumnPropNameInRow="w_kontakty" msprop:Generator_ColumnPropNameInTable="w_kontaktyColumn" type="xs:int" minOccurs="0" /> 
    6062               <xs:element name="W_N_KLIENCI" msprop:Generator_UserColumnName="W_N_KLIENCI" msprop:Generator_ColumnVarNameInTable="columnW_N_KLIENCI" msprop:Generator_ColumnPropNameInRow="W_N_KLIENCI" msprop:Generator_ColumnPropNameInTable="W_N_KLIENCIColumn" type="xs:int" /> 
    6063               <xs:element name="W_KLIENCI" msprop:Generator_UserColumnName="W_KLIENCI" msprop:Generator_ColumnVarNameInTable="columnW_KLIENCI" msprop:Generator_ColumnPropNameInRow="W_KLIENCI" msprop:Generator_ColumnPropNameInTable="W_KLIENCIColumn" type="xs:int" /> 
    6064               <xs:element name="W_REKLAMY" msprop:Generator_UserColumnName="W_REKLAMY" msprop:Generator_ColumnVarNameInTable="columnW_REKLAMY" msprop:Generator_ColumnPropNameInRow="W_REKLAMY" msprop:Generator_ColumnPropNameInTable="W_REKLAMYColumn" type="xs:int" /> 
     6118              <xs:element name="BUDZET_HANDLOWCY" msprop:Generator_UserColumnName="BUDZET_HANDLOWCY" msprop:Generator_ColumnVarNameInTable="columnBUDZET_HANDLOWCY" msprop:Generator_ColumnPropNameInRow="BUDZET_HANDLOWCY" msprop:Generator_ColumnPropNameInTable="BUDZET_HANDLOWCYColumn" type="xs:int" minOccurs="0" /> 
     6119              <xs:element name="SPOTKANIA" msprop:Generator_UserColumnName="SPOTKANIA" msprop:Generator_ColumnVarNameInTable="columnSPOTKANIA" msprop:Generator_ColumnPropNameInRow="SPOTKANIA" msprop:Generator_ColumnPropNameInTable="SPOTKANIAColumn" type="xs:int" minOccurs="0" /> 
     6120              <xs:element name="KONTAKTY" msprop:Generator_UserColumnName="KONTAKTY" msprop:Generator_ColumnVarNameInTable="columnKONTAKTY" msprop:Generator_ColumnPropNameInRow="KONTAKTY" msprop:Generator_ColumnPropNameInTable="KONTAKTYColumn" type="xs:int" minOccurs="0" /> 
     6121              <xs:element name="N_KLIENCI" msprop:Generator_UserColumnName="N_KLIENCI" msprop:Generator_ColumnVarNameInTable="columnN_KLIENCI" msprop:Generator_ColumnPropNameInRow="N_KLIENCI" msprop:Generator_ColumnPropNameInTable="N_KLIENCIColumn" type="xs:int" minOccurs="0" /> 
     6122              <xs:element name="KLIENCI" msprop:Generator_UserColumnName="KLIENCI" msprop:Generator_ColumnVarNameInTable="columnKLIENCI" msprop:Generator_ColumnPropNameInRow="KLIENCI" msprop:Generator_ColumnPropNameInTable="KLIENCIColumn" type="xs:int" minOccurs="0" /> 
     6123              <xs:element name="REKLAMY" msprop:Generator_UserColumnName="REKLAMY" msprop:Generator_ColumnVarNameInTable="columnREKLAMY" msprop:Generator_ColumnPropNameInRow="REKLAMY" msprop:Generator_ColumnPropNameInTable="REKLAMYColumn" type="xs:int" minOccurs="0" /> 
     6124              <xs:element name="W_BUDZET" msprop:Generator_UserColumnName="W_BUDZET" msprop:Generator_ColumnVarNameInTable="columnW_BUDZET" msprop:Generator_ColumnPropNameInRow="W_BUDZET" msprop:Generator_ColumnPropNameInTable="W_BUDZETColumn" type="xs:int" minOccurs="0" /> 
     6125              <xs:element name="W_SPOTKANIA" msprop:Generator_UserColumnName="W_SPOTKANIA" msprop:Generator_ColumnVarNameInTable="columnW_SPOTKANIA" msprop:Generator_ColumnPropNameInRow="W_SPOTKANIA" msprop:Generator_ColumnPropNameInTable="W_SPOTKANIAColumn" type="xs:int" minOccurs="0" /> 
     6126              <xs:element name="w_kontakty" msprop:Generator_UserColumnName="w_kontakty" msprop:Generator_ColumnVarNameInTable="columnw_kontakty" msprop:Generator_ColumnPropNameInRow="w_kontakty" msprop:Generator_ColumnPropNameInTable="w_kontaktyColumn" type="xs:int" minOccurs="0" /> 
     6127              <xs:element name="W_N_KLIENCI" msprop:Generator_UserColumnName="W_N_KLIENCI" msprop:Generator_ColumnVarNameInTable="columnW_N_KLIENCI" msprop:Generator_ColumnPropNameInRow="W_N_KLIENCI" msprop:Generator_ColumnPropNameInTable="W_N_KLIENCIColumn" type="xs:int" minOccurs="0" /> 
     6128              <xs:element name="W_KLIENCI" msprop:Generator_UserColumnName="W_KLIENCI" msprop:Generator_ColumnVarNameInTable="columnW_KLIENCI" msprop:Generator_ColumnPropNameInRow="W_KLIENCI" msprop:Generator_ColumnPropNameInTable="W_KLIENCIColumn" type="xs:int" minOccurs="0" /> 
     6129              <xs:element name="W_REKLAMY" msprop:Generator_UserColumnName="W_REKLAMY" msprop:Generator_ColumnVarNameInTable="columnW_REKLAMY" msprop:Generator_ColumnPropNameInRow="W_REKLAMY" msprop:Generator_ColumnPropNameInTable="W_REKLAMYColumn" type="xs:int" minOccurs="0" /> 
    60656130              <xs:element name="il_ms" msprop:Generator_UserColumnName="il_ms" msprop:Generator_ColumnVarNameInTable="columnil_ms" msprop:Generator_ColumnPropNameInRow="il_ms" msprop:Generator_ColumnPropNameInTable="il_msColumn" type="xs:int" minOccurs="0" /> 
    60666131              <xs:element name="r_budzet" msprop:Generator_UserColumnName="r_budzet" msprop:Generator_ColumnVarNameInTable="columnr_budzet" msprop:Generator_ColumnPropNameInRow="r_budzet" msprop:Generator_ColumnPropNameInTable="r_budzetColumn" type="xs:int" minOccurs="0" /> 
     
    60796144          </xs:complexType> 
    60806145        </xs:element> 
    6081         <xs:element name="View_Podsumowanie_Wykonania_Planu_Agencja" msprop:Generator_UserTableName="View_Podsumowanie_Wykonania_Planu_Agencja" msprop:Generator_RowDeletedName="View_Podsumowanie_Wykonania_Planu_AgencjaRowDeleted" msprop:Generator_RowChangedName="View_Podsumowanie_Wykonania_Planu_AgencjaRowChanged" msprop:Generator_RowClassName="View_Podsumowanie_Wykonania_Planu_AgencjaRow" msprop:Generator_RowChangingName="View_Podsumowanie_Wykonania_Planu_AgencjaRowChanging" msprop:Generator_RowEvArgName="View_Podsumowanie_Wykonania_Planu_AgencjaRowChangeEvent" msprop:Generator_RowEvHandlerName="View_Podsumowanie_Wykonania_Planu_AgencjaRowChangeEventHandler" msprop:Generator_TableClassName="View_Podsumowanie_Wykonania_Planu_AgencjaDataTable" msprop:Generator_TableVarName="tableView_Podsumowanie_Wykonania_Planu_Agencja" msprop:Generator_RowDeletingName="View_Podsumowanie_Wykonania_Planu_AgencjaRowDeleting" msprop:Generator_TablePropName="View_Podsumowanie_Wykonania_Planu_Agencja"> 
    6082           <xs:complexType> 
    6083             <xs:sequence> 
    6084               <xs:element name="ROK" msprop:Generator_UserColumnName="ROK" msprop:Generator_ColumnPropNameInRow="ROK" msprop:Generator_ColumnVarNameInTable="columnROK" msprop:Generator_ColumnPropNameInTable="ROKColumn" type="xs:short" /> 
    6085               <xs:element name="MS" msprop:Generator_UserColumnName="MS" msprop:Generator_ColumnPropNameInRow="MS" msprop:Generator_ColumnVarNameInTable="columnMS" msprop:Generator_ColumnPropNameInTable="MSColumn" type="xs:short" /> 
    6086               <xs:element name="symbol" msprop:Generator_UserColumnName="symbol" msprop:Generator_ColumnPropNameInRow="symbol" msprop:Generator_ColumnVarNameInTable="columnsymbol" msprop:Generator_ColumnPropNameInTable="symbolColumn"> 
    6087                 <xs:simpleType> 
    6088                   <xs:restriction base="xs:string"> 
    6089                     <xs:maxLength value="50" /> 
    6090                   </xs:restriction> 
    6091                 </xs:simpleType> 
    6092               </xs:element> 
    6093               <xs:element name="BUDZET" msprop:Generator_UserColumnName="BUDZET" msprop:Generator_ColumnPropNameInRow="BUDZET" msprop:Generator_ColumnVarNameInTable="columnBUDZET" msprop:Generator_ColumnPropNameInTable="BUDZETColumn" type="xs:int" /> 
    6094               <xs:element name="BUDZET_HANDLOWCY" msprop:Generator_UserColumnName="BUDZET_HANDLOWCY" msprop:Generator_ColumnPropNameInRow="BUDZET_HANDLOWCY" msprop:Generator_ColumnVarNameInTable="columnBUDZET_HANDLOWCY" msprop:Generator_ColumnPropNameInTable="BUDZET_HANDLOWCYColumn" type="xs:int" minOccurs="0" /> 
    6095               <xs:element name="SPOTKANIA" msprop:Generator_UserColumnName="SPOTKANIA" msprop:Generator_ColumnPropNameInRow="SPOTKANIA" msprop:Generator_ColumnVarNameInTable="columnSPOTKANIA" msprop:Generator_ColumnPropNameInTable="SPOTKANIAColumn" type="xs:int" minOccurs="0" /> 
    6096               <xs:element name="KONTAKTY" msprop:Generator_UserColumnName="KONTAKTY" msprop:Generator_ColumnPropNameInRow="KONTAKTY" msprop:Generator_ColumnVarNameInTable="columnKONTAKTY" msprop:Generator_ColumnPropNameInTable="KONTAKTYColumn" type="xs:int" minOccurs="0" /> 
    6097               <xs:element name="N_KLIENCI" msprop:Generator_UserColumnName="N_KLIENCI" msprop:Generator_ColumnPropNameInRow="N_KLIENCI" msprop:Generator_ColumnVarNameInTable="columnN_KLIENCI" msprop:Generator_ColumnPropNameInTable="N_KLIENCIColumn" type="xs:int" minOccurs="0" /> 
    6098               <xs:element name="KLIENCI" msprop:Generator_UserColumnName="KLIENCI" msprop:Generator_ColumnPropNameInRow="KLIENCI" msprop:Generator_ColumnVarNameInTable="columnKLIENCI" msprop:Generator_ColumnPropNameInTable="KLIENCIColumn" type="xs:int" minOccurs="0" /> 
    6099               <xs:element name="REKLAMY" msprop:Generator_UserColumnName="REKLAMY" msprop:Generator_ColumnPropNameInRow="REKLAMY" msprop:Generator_ColumnVarNameInTable="columnREKLAMY" msprop:Generator_ColumnPropNameInTable="REKLAMYColumn" type="xs:int" minOccurs="0" /> 
    6100               <xs:element name="W_BUDZET" msprop:Generator_UserColumnName="W_BUDZET" msprop:Generator_ColumnPropNameInRow="W_BUDZET" msprop:Generator_ColumnVarNameInTable="columnW_BUDZET" msprop:Generator_ColumnPropNameInTable="W_BUDZETColumn" type="xs:int" minOccurs="0" /> 
    6101               <xs:element name="W_SPOTKANIA" msprop:Generator_UserColumnName="W_SPOTKANIA" msprop:Generator_ColumnPropNameInRow="W_SPOTKANIA" msprop:Generator_ColumnVarNameInTable="columnW_SPOTKANIA" msprop:Generator_ColumnPropNameInTable="W_SPOTKANIAColumn" type="xs:int" minOccurs="0" /> 
    6102               <xs:element name="w_kontakty" msprop:Generator_UserColumnName="w_kontakty" msprop:Generator_ColumnPropNameInRow="w_kontakty" msprop:Generator_ColumnVarNameInTable="columnw_kontakty" msprop:Generator_ColumnPropNameInTable="w_kontaktyColumn" type="xs:int" minOccurs="0" /> 
    6103               <xs:element name="W_N_KLIENCI" msprop:Generator_UserColumnName="W_N_KLIENCI" msprop:Generator_ColumnPropNameInRow="W_N_KLIENCI" msprop:Generator_ColumnVarNameInTable="columnW_N_KLIENCI" msprop:Generator_ColumnPropNameInTable="W_N_KLIENCIColumn" type="xs:int" minOccurs="0" /> 
    6104               <xs:element name="W_KLIENCI" msprop:Generator_UserColumnName="W_KLIENCI" msprop:Generator_ColumnPropNameInRow="W_KLIENCI" msprop:Generator_ColumnVarNameInTable="columnW_KLIENCI" msprop:Generator_ColumnPropNameInTable="W_KLIENCIColumn" type="xs:int" minOccurs="0" /> 
    6105               <xs:element name="W_REKLAMY" msprop:Generator_UserColumnName="W_REKLAMY" msprop:Generator_ColumnPropNameInRow="W_REKLAMY" msprop:Generator_ColumnVarNameInTable="columnW_REKLAMY" msprop:Generator_ColumnPropNameInTable="W_REKLAMYColumn" type="xs:int" minOccurs="0" /> 
    6106               <xs:element name="il_ms" msprop:Generator_UserColumnName="il_ms" msprop:Generator_ColumnPropNameInRow="il_ms" msprop:Generator_ColumnVarNameInTable="columnil_ms" msprop:Generator_ColumnPropNameInTable="il_msColumn" type="xs:int" minOccurs="0" /> 
    6107               <xs:element name="r_budzet" msprop:Generator_UserColumnName="r_budzet" msprop:Generator_ColumnPropNameInRow="r_budzet" msprop:Generator_ColumnVarNameInTable="columnr_budzet" msprop:Generator_ColumnPropNameInTable="r_budzetColumn" type="xs:int" minOccurs="0" /> 
    6108               <xs:element name="r_spotkania" msprop:Generator_UserColumnName="r_spotkania" msprop:Generator_ColumnPropNameInRow="r_spotkania" msprop:Generator_ColumnVarNameInTable="columnr_spotkania" msprop:Generator_ColumnPropNameInTable="r_spotkaniaColumn" type="xs:int" minOccurs="0" /> 
    6109               <xs:element name="r_kontakty" msprop:Generator_UserColumnName="r_kontakty" msprop:Generator_ColumnPropNameInRow="r_kontakty" msprop:Generator_ColumnVarNameInTable="columnr_kontakty" msprop:Generator_ColumnPropNameInTable="r_kontaktyColumn" type="xs:int" minOccurs="0" /> 
    6110               <xs:element name="r_n_klienci" msprop:Generator_UserColumnName="r_n_klienci" msprop:Generator_ColumnPropNameInRow="r_n_klienci" msprop:Generator_ColumnVarNameInTable="columnr_n_klienci" msprop:Generator_ColumnPropNameInTable="r_n_klienciColumn" type="xs:int" minOccurs="0" /> 
    6111               <xs:element name="r_klienci" msprop:Generator_UserColumnName="r_klienci" msprop:Generator_ColumnPropNameInRow="r_klienci" msprop:Generator_ColumnVarNameInTable="columnr_klienci" msprop:Generator_ColumnPropNameInTable="r_klienciColumn" type="xs:int" minOccurs="0" /> 
    6112               <xs:element name="r_reklamy" msprop:Generator_UserColumnName="r_reklamy" msprop:Generator_ColumnPropNameInRow="r_reklamy" msprop:Generator_ColumnVarNameInTable="columnr_reklamy" msprop:Generator_ColumnPropNameInTable="r_reklamyColumn" type="xs:int" minOccurs="0" /> 
    6113               <xs:element name="r_w_budzet" msprop:Generator_UserColumnName="r_w_budzet" msprop:Generator_ColumnPropNameInRow="r_w_budzet" msprop:Generator_ColumnVarNameInTable="columnr_w_budzet" msprop:Generator_ColumnPropNameInTable="r_w_budzetColumn" type="xs:int" minOccurs="0" /> 
    6114               <xs:element name="r_w_spotkania" msprop:Generator_UserColumnName="r_w_spotkania" msprop:Generator_ColumnPropNameInRow="r_w_spotkania" msprop:Generator_ColumnVarNameInTable="columnr_w_spotkania" msprop:Generator_ColumnPropNameInTable="r_w_spotkaniaColumn" type="xs:int" minOccurs="0" /> 
    6115               <xs:element name="r_w_n_klienci" msprop:Generator_UserColumnName="r_w_n_klienci" msprop:Generator_ColumnPropNameInRow="r_w_n_klienci" msprop:Generator_ColumnVarNameInTable="columnr_w_n_klienci" msprop:Generator_ColumnPropNameInTable="r_w_n_klienciColumn" type="xs:int" minOccurs="0" /> 
    6116               <xs:element name="r_w_klienci" msprop:Generator_UserColumnName="r_w_klienci" msprop:Generator_ColumnPropNameInRow="r_w_klienci" msprop:Generator_ColumnVarNameInTable="columnr_w_klienci" msprop:Generator_ColumnPropNameInTable="r_w_klienciColumn" type="xs:int" minOccurs="0" /> 
    6117               <xs:element name="r_w_reklamy" msprop:Generator_UserColumnName="r_w_reklamy" msprop:Generator_ColumnPropNameInRow="r_w_reklamy" msprop:Generator_ColumnVarNameInTable="columnr_w_reklamy" msprop:Generator_ColumnPropNameInTable="r_w_reklamyColumn" type="xs:int" minOccurs="0" /> 
    6118               <xs:element name="r_w_kontakty" msprop:Generator_UserColumnName="r_w_kontakty" msprop:Generator_ColumnPropNameInRow="r_w_kontakty" msprop:Generator_ColumnVarNameInTable="columnr_w_kontakty" msprop:Generator_ColumnPropNameInTable="r_w_kontaktyColumn" type="xs:int" minOccurs="0" /> 
    6119             </xs:sequence> 
    6120           </xs:complexType> 
    6121         </xs:element> 
    61226146        <xs:element name="LISTA_REKLAM_NA_WYDANIE" msprop:Generator_UserTableName="LISTA_REKLAM_NA_WYDANIE" msprop:Generator_RowDeletedName="LISTA_REKLAM_NA_WYDANIERowDeleted" msprop:Generator_RowChangedName="LISTA_REKLAM_NA_WYDANIERowChanged" msprop:Generator_RowClassName="LISTA_REKLAM_NA_WYDANIERow" msprop:Generator_RowChangingName="LISTA_REKLAM_NA_WYDANIERowChanging" msprop:Generator_RowEvArgName="LISTA_REKLAM_NA_WYDANIERowChangeEvent" msprop:Generator_RowEvHandlerName="LISTA_REKLAM_NA_WYDANIERowChangeEventHandler" msprop:Generator_TableClassName="LISTA_REKLAM_NA_WYDANIEDataTable" msprop:Generator_TableVarName="tableLISTA_REKLAM_NA_WYDANIE" msprop:Generator_RowDeletingName="LISTA_REKLAM_NA_WYDANIERowDeleting" msprop:Generator_TablePropName="LISTA_REKLAM_NA_WYDANIE"> 
    61236147          <xs:complexType> 
    61246148            <xs:sequence> 
    6125               <xs:element name="ReklamaID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ReklamaID" msprop:Generator_ColumnPropNameInRow="ReklamaID" msprop:Generator_ColumnVarNameInTable="columnReklamaID" msprop:Generator_ColumnPropNameInTable="ReklamaIDColumn" type="xs:int" /> 
    6126               <xs:element name="TYTUŁ" msprop:Generator_UserColumnName="TYTUŁ" msprop:Generator_ColumnPropNameInRow="TYTUŁ" msprop:Generator_ColumnVarNameInTable="columnTYTUŁ" msprop:Generator_ColumnPropNameInTable="TYTUŁColumn" minOccurs="0"> 
     6149              <xs:element name="ReklamaID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ReklamaID" msprop:Generator_ColumnVarNameInTable="columnReklamaID" msprop:Generator_ColumnPropNameInRow="ReklamaID" msprop:Generator_ColumnPropNameInTable="ReklamaIDColumn" type="xs:int" /> 
     6150              <xs:element name="TYTUŁ" msprop:Generator_UserColumnName="TYTUŁ" msprop:Generator_ColumnVarNameInTable="columnTYTUŁ" msprop:Generator_ColumnPropNameInRow="TYTUŁ" msprop:Generator_ColumnPropNameInTable="TYTUŁColumn" minOccurs="0"> 
    61276151                <xs:simpleType> 
    61286152                  <xs:restriction base="xs:string"> 
     
    61316155                </xs:simpleType> 
    61326156              </xs:element> 
    6133               <xs:element name="ID_x0020_REKLAMY" msprop:Generator_UserColumnName="ID REKLAMY" msprop:Generator_ColumnPropNameInRow="ID_REKLAMY" msprop:Generator_ColumnVarNameInTable="columnID_REKLAMY" msprop:Generator_ColumnPropNameInTable="ID_REKLAMYColumn" minOccurs="0"> 
     6157              <xs:element name="ID_x0020_REKLAMY" msprop:Generator_UserColumnName="ID REKLAMY" msprop:Generator_ColumnVarNameInTable="columnID_REKLAMY" msprop:Generator_ColumnPropNameInRow="ID_REKLAMY" msprop:Generator_ColumnPropNameInTable="ID_REKLAMYColumn" minOccurs="0"> 
    61346158                <xs:simpleType> 
    61356159                  <xs:restriction base="xs:string"> 
     
    61386162                </xs:simpleType> 
    61396163              </xs:element> 
    6140               <xs:element name="SZER" msprop:Generator_UserColumnName="SZER" msprop:Generator_ColumnPropNameInRow="SZER" msprop:Generator_ColumnVarNameInTable="columnSZER" msprop:Generator_ColumnPropNameInTable="SZERColumn" type="xs:double" minOccurs="0" /> 
    6141               <xs:element name="WYS" msprop:Generator_UserColumnName="WYS" msprop:Generator_ColumnPropNameInRow="WYS" msprop:Generator_ColumnVarNameInTable="columnWYS" msprop:Generator_ColumnPropNameInTable="WYSColumn" type="xs:double" minOccurs="0" /> 
    6142               <xs:element name="KOLOR" msprop:Generator_UserColumnName="KOLOR" msprop:Generator_ColumnPropNameInRow="KOLOR" msprop:Generator_ColumnVarNameInTable="columnKOLOR" msprop:Generator_ColumnPropNameInTable="KOLORColumn" minOccurs="0"> 
     6164              <xs:element name="SZER" msprop:Generator_UserColumnName="SZER" msprop:Generator_ColumnVarNameInTable="columnSZER" msprop:Generator_ColumnPropNameInRow="SZER" msprop:Generator_ColumnPropNameInTable="SZERColumn" type="xs:double" minOccurs="0" /> 
     6165              <xs:element name="WYS" msprop:Generator_UserColumnName="WYS" msprop:Generator_ColumnVarNameInTable="columnWYS" msprop:Generator_ColumnPropNameInRow="WYS" msprop:Generator_ColumnPropNameInTable="WYSColumn" type="xs:double" minOccurs="0" /> 
     6166              <xs:element name="KOLOR" msprop:Generator_UserColumnName="KOLOR" msprop:Generator_ColumnVarNameInTable="columnKOLOR" msprop:Generator_ColumnPropNameInRow="KOLOR" msprop:Generator_ColumnPropNameInTable="KOLORColumn" minOccurs="0"> 
    61436167                <xs:simpleType> 
    61446168                  <xs:restriction base="xs:string"> 
     
    61476171                </xs:simpleType> 
    61486172              </xs:element> 
    6149               <xs:element name="NICK_x0020_NAME" msprop:Generator_UserColumnName="NICK NAME" msprop:Generator_ColumnPropNameInRow="NICK_NAME" msprop:Generator_ColumnVarNameInTable="columnNICK_NAME" msprop:Generator_ColumnPropNameInTable="NICK_NAMEColumn" minOccurs="0"> 
    6150                 <xs:simpleType> 
    6151                   <xs:restriction base="xs:string"> 
    6152                     <xs:maxLength value="50" /> 
    6153                   </xs:restriction> 
    6154                 </xs:simpleType> 
    6155               </xs:element> 
    6156               <xs:element name="MOD_TYP" msprop:Generator_UserColumnName="MOD_TYP" msprop:Generator_ColumnPropNameInRow="MOD_TYP" msprop:Generator_ColumnVarNameInTable="columnMOD_TYP" msprop:Generator_ColumnPropNameInTable="MOD_TYPColumn" minOccurs="0"> 
     6173              <xs:element name="NICK_x0020_NAME" msprop:Generator_UserColumnName="NICK NAME" msprop:Generator_ColumnVarNameInTable="columnNICK_NAME" msprop:Generator_ColumnPropNameInRow="NICK_NAME" msprop:Generator_ColumnPropNameInTable="NICK_NAMEColumn" minOccurs="0"> 
     6174                <xs:simpleType> 
     6175                  <xs:restriction base="xs:string"> 
     6176                    <xs:maxLength value="50" /> 
     6177                  </xs:restriction> 
     6178                </xs:simpleType> 
     6179              </xs:element> 
     6180              <xs:element name="MOD_TYP" msprop:Generator_UserColumnName="MOD_TYP" msprop:Generator_ColumnVarNameInTable="columnMOD_TYP" msprop:Generator_ColumnPropNameInRow="MOD_TYP" msprop:Generator_ColumnPropNameInTable="MOD_TYPColumn" minOccurs="0"> 
    61576181                <xs:simpleType> 
    61586182                  <xs:restriction base="xs:string"> 
     
    61616185                </xs:simpleType> 
    61626186              </xs:element> 
    6163               <xs:element name="RABAT" msprop:Generator_UserColumnName="RABAT" msprop:Generator_ColumnPropNameInRow="RABAT" msprop:Generator_ColumnVarNameInTable="columnRABAT" msprop:Generator_ColumnPropNameInTable="RABATColumn" type="xs:double" minOccurs="0" /> 
    6164               <xs:element name="lokalizacja" msprop:Generator_UserColumnName="lokalizacja" msprop:Generator_ColumnPropNameInRow="lokalizacja" msprop:Generator_ColumnVarNameInTable="columnlokalizacja" msprop:Generator_ColumnPropNameInTable="lokalizacjaColumn" minOccurs="0"> 
     6187              <xs:element name="RABAT" msprop:Generator_UserColumnName="RABAT" msprop:Generator_ColumnVarNameInTable="columnRABAT" msprop:Generator_ColumnPropNameInRow="RABAT" msprop:Generator_ColumnPropNameInTable="RABATColumn" type="xs:double" minOccurs="0" /> 
     6188              <xs:element name="lokalizacja" msprop:Generator_UserColumnName="lokalizacja" msprop:Generator_ColumnVarNameInTable="columnlokalizacja" msprop:Generator_ColumnPropNameInRow="lokalizacja" msprop:Generator_ColumnPropNameInTable="lokalizacjaColumn" minOccurs="0"> 
    61656189                <xs:simpleType> 
    61666190                  <xs:restriction base="xs:string"> 
     
    61696193                </xs:simpleType> 
    61706194              </xs:element> 
    6171               <xs:element name="NR" msprop:Generator_UserColumnName="NR" msprop:Generator_ColumnPropNameInRow="NR" msprop:Generator_ColumnVarNameInTable="columnNR" msprop:Generator_ColumnPropNameInTable="NRColumn" type="xs:short" /> 
    6172               <xs:element name="ZATWIERDZONO_x0020_DO_x0020_DRUKU" msprop:Generator_UserColumnName="ZATWIERDZONO DO DRUKU" msprop:Generator_ColumnPropNameInRow="ZATWIERDZONO_DO_DRUKU" msprop:Generator_ColumnVarNameInTable="columnZATWIERDZONO_DO_DRUKU" msprop:Generator_ColumnPropNameInTable="ZATWIERDZONO_DO_DRUKUColumn" type="xs:boolean" minOccurs="0" /> 
    6173               <xs:element name="GRZBIET" msprop:Generator_UserColumnName="GRZBIET" msprop:Generator_ColumnPropNameInRow="GRZBIET" msprop:Generator_ColumnVarNameInTable="columnGRZBIET" msprop:Generator_ColumnPropNameInTable="GRZBIETColumn" type="xs:int" minOccurs="0" /> 
    6174               <xs:element name="STRONA" msprop:Generator_UserColumnName="STRONA" msprop:Generator_ColumnPropNameInRow="STRONA" msprop:Generator_ColumnVarNameInTable="columnSTRONA" msprop:Generator_ColumnPropNameInTable="STRONAColumn" type="xs:short" minOccurs="0" /> 
    6175               <xs:element name="agencja" msprop:Generator_UserColumnName="agencja" msprop:Generator_ColumnPropNameInRow="agencja" msprop:Generator_ColumnVarNameInTable="columnagencja" msprop:Generator_ColumnPropNameInTable="agencjaColumn" minOccurs="0"> 
    6176                 <xs:simpleType> 
    6177                   <xs:restriction base="xs:string"> 
    6178                     <xs:maxLength value="50" /> 
    6179                   </xs:restriction> 
    6180                 </xs:simpleType> 
    6181               </xs:element> 
    6182               <xs:element name="SYMBOL_x0020_AKWIZYTORA" msprop:Generator_UserColumnName="SYMBOL AKWIZYTORA" msprop:Generator_ColumnPropNameInRow="SYMBOL_AKWIZYTORA" msprop:Generator_ColumnVarNameInTable="columnSYMBOL_AKWIZYTORA" msprop:Generator_ColumnPropNameInTable="SYMBOL_AKWIZYTORAColumn" minOccurs="0"> 
     6195              <xs:element name="NR" msprop:Generator_UserColumnName="NR" msprop:Generator_ColumnVarNameInTable="columnNR" msprop:Generator_ColumnPropNameInRow="NR" msprop:Generator_ColumnPropNameInTable="NRColumn" type="xs:short" /> 
     6196              <xs:element name="ZATWIERDZONO_x0020_DO_x0020_DRUKU" msprop:Generator_UserColumnName="ZATWIERDZONO DO DRUKU" msprop:Generator_ColumnVarNameInTable="columnZATWIERDZONO_DO_DRUKU" msprop:Generator_ColumnPropNameInRow="ZATWIERDZONO_DO_DRUKU" msprop:Generator_ColumnPropNameInTable="ZATWIERDZONO_DO_DRUKUColumn" type="xs:boolean" minOccurs="0" /> 
     6197              <xs:element name="GRZBIET" msprop:Generator_UserColumnName="GRZBIET" msprop:Generator_ColumnVarNameInTable="columnGRZBIET" msprop:Generator_ColumnPropNameInRow="GRZBIET" msprop:Generator_ColumnPropNameInTable="GRZBIETColumn" type="xs:int" minOccurs="0" /> 
     6198              <xs:element name="STRONA" msprop:Generator_UserColumnName="STRONA" msprop:Generator_ColumnVarNameInTable="columnSTRONA" msprop:Generator_ColumnPropNameInRow="STRONA" msprop:Generator_ColumnPropNameInTable="STRONAColumn" type="xs:short" minOccurs="0" /> 
     6199              <xs:element name="agencja" msprop:Generator_UserColumnName="agencja" msprop:Generator_ColumnVarNameInTable="columnagencja" msprop:Generator_ColumnPropNameInRow="agencja" msprop:Generator_ColumnPropNameInTable="agencjaColumn" minOccurs="0"> 
     6200                <xs:simpleType> 
     6201                  <xs:restriction base="xs:string"> 
     6202                    <xs:maxLength value="50" /> 
     6203                  </xs:restriction> 
     6204                </xs:simpleType> 
     6205              </xs:element> 
     6206              <xs:element name="SYMBOL_x0020_AKWIZYTORA" msprop:Generator_UserColumnName="SYMBOL AKWIZYTORA" msprop:Generator_ColumnVarNameInTable="columnSYMBOL_AKWIZYTORA" msprop:Generator_ColumnPropNameInRow="SYMBOL_AKWIZYTORA" msprop:Generator_ColumnPropNameInTable="SYMBOL_AKWIZYTORAColumn" minOccurs="0"> 
    61836207                <xs:simpleType> 
    61846208                  <xs:restriction base="xs:string"> 
     
    61876211                </xs:simpleType> 
    61886212              </xs:element> 
    6189               <xs:element name="KROTNOŚĆ" msprop:Generator_UserColumnName="KROTNOŚĆ" msprop:Generator_ColumnPropNameInRow="KROTNOŚĆ" msprop:Generator_ColumnVarNameInTable="columnKROTNOŚĆ" msprop:Generator_ColumnPropNameInTable="KROTNOŚĆColumn" type="xs:short" minOccurs="0" /> 
    6190               <xs:element name="NETTO" msprop:Generator_UserColumnName="NETTO" msprop:Generator_ColumnPropNameInRow="NETTO" msprop:Generator_ColumnVarNameInTable="columnNETTO" msprop:Generator_ColumnPropNameInTable="NETTOColumn" type="xs:double" minOccurs="0" /> 
    6191               <xs:element name="nazwaGrzbietu" msprop:Generator_UserColumnName="nazwaGrzbietu" msprop:Generator_ColumnPropNameInRow="nazwaGrzbietu" msprop:Generator_ColumnVarNameInTable="columnnazwaGrzbietu" msprop:Generator_ColumnPropNameInTable="nazwaGrzbietuColumn" minOccurs="0"> 
    6192                 <xs:simpleType> 
    6193                   <xs:restriction base="xs:string"> 
    6194                     <xs:maxLength value="50" /> 
    6195                   </xs:restriction> 
    6196                 </xs:simpleType> 
    6197               </xs:element> 
    6198               <xs:element name="ID_AGENTA" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ID_AGENTA" msprop:Generator_ColumnPropNameInRow="ID_AGENTA" msprop:Generator_ColumnVarNameInTable="columnID_AGENTA" msprop:Generator_ColumnPropNameInTable="ID_AGENTAColumn" type="xs:int" /> 
    6199               <xs:element name="CENA_x0020_JEDN" msprop:Generator_UserColumnName="CENA JEDN" msprop:Generator_ColumnPropNameInRow="CENA_JEDN" msprop:Generator_ColumnVarNameInTable="columnCENA_JEDN" msprop:Generator_ColumnPropNameInTable="CENA_JEDNColumn" type="xs:double" minOccurs="0" /> 
    6200               <xs:element name="RABAT_x0020_WARTOŚĆ" msprop:Generator_UserColumnName="RABAT WARTOŚĆ" msprop:Generator_ColumnPropNameInRow="RABAT_WARTOŚĆ" msprop:Generator_ColumnVarNameInTable="columnRABAT_WARTOŚĆ" msprop:Generator_ColumnPropNameInTable="RABAT_WARTOŚĆColumn" type="xs:double" minOccurs="0" /> 
    6201               <xs:element name="TYP" msprop:Generator_UserColumnName="TYP" msprop:Generator_ColumnPropNameInRow="TYP" msprop:Generator_ColumnVarNameInTable="columnTYP" msprop:Generator_ColumnPropNameInTable="TYPColumn" minOccurs="0"> 
     6213              <xs:element name="KROTNOŚĆ" msprop:Generator_UserColumnName="KROTNOŚĆ" msprop:Generator_ColumnVarNameInTable="columnKROTNOŚĆ" msprop:Generator_ColumnPropNameInRow="KROTNOŚĆ" msprop:Generator_ColumnPropNameInTable="KROTNOŚĆColumn" type="xs:short" minOccurs="0" /> 
     6214              <xs:element name="NETTO" msprop:Generator_UserColumnName="NETTO" msprop:Generator_ColumnVarNameInTable="columnNETTO" msprop:Generator_ColumnPropNameInRow="NETTO" msprop:Generator_ColumnPropNameInTable="NETTOColumn" type="xs:double" minOccurs="0" /> 
     6215              <xs:element name="nazwaGrzbietu" msprop:Generator_UserColumnName="nazwaGrzbietu" msprop:Generator_ColumnVarNameInTable="columnnazwaGrzbietu" msprop:Generator_ColumnPropNameInRow="nazwaGrzbietu" msprop:Generator_ColumnPropNameInTable="nazwaGrzbietuColumn" minOccurs="0"> 
     6216                <xs:simpleType> 
     6217                  <xs:restriction base="xs:string"> 
     6218                    <xs:maxLength value="50" /> 
     6219                  </xs:restriction> 
     6220                </xs:simpleType> 
     6221              </xs:element> 
     6222              <xs:element name="ID_AGENTA" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ID_AGENTA" msprop:Generator_ColumnVarNameInTable="columnID_AGENTA" msprop:Generator_ColumnPropNameInRow="ID_AGENTA" msprop:Generator_ColumnPropNameInTable="ID_AGENTAColumn" type="xs:int" /> 
     6223              <xs:element name="CENA_x0020_JEDN" msprop:Generator_UserColumnName="CENA JEDN" msprop:Generator_ColumnVarNameInTable="columnCENA_JEDN" msprop:Generator_ColumnPropNameInRow="CENA_JEDN" msprop:Generator_ColumnPropNameInTable="CENA_JEDNColumn" type="xs:double" minOccurs="0" /> 
     6224              <xs:element name="RABAT_x0020_WARTOŚĆ" msprop:Generator_UserColumnName="RABAT WARTOŚĆ" msprop:Generator_ColumnVarNameInTable="columnRABAT_WARTOŚĆ" msprop:Generator_ColumnPropNameInRow="RABAT_WARTOŚĆ" msprop:Generator_ColumnPropNameInTable="RABAT_WARTOŚĆColumn" type="xs:double" minOccurs="0" /> 
     6225              <xs:element name="TYP" msprop:Generator_UserColumnName="TYP" msprop:Generator_ColumnVarNameInTable="columnTYP" msprop:Generator_ColumnPropNameInRow="TYP" msprop:Generator_ColumnPropNameInTable="TYPColumn" minOccurs="0"> 
    62026226                <xs:simpleType> 
    62036227                  <xs:restriction base="xs:string"> 
     
    62066230                </xs:simpleType> 
    62076231              </xs:element> 
    6208               <xs:element name="wyroznienie" msprop:Generator_UserColumnName="wyroznienie" msprop:Generator_ColumnPropNameInRow="wyroznienie" msprop:Generator_ColumnVarNameInTable="columnwyroznienie" msprop:Generator_ColumnPropNameInTable="wyroznienieColumn" type="xs:boolean" /> 
    6209               <xs:element name="wyroznienie_exported" msprop:Generator_UserColumnName="wyroznienie_exported" msprop:Generator_ColumnVarNameInTable="columnwyroznienie_exported" msprop:Generator_ColumnPropNameInRow="wyroznienie_exported" msprop:Generator_ColumnPropNameInTable="wyroznienie_exportedColumn" type="xs:boolean" /> 
    6210               <xs:element name="logo" msprop:Generator_UserColumnName="logo" msprop:Generator_ColumnVarNameInTable="columnlogo" msprop:Generator_ColumnPropNameInRow="logo" msprop:Generator_ColumnPropNameInTable="logoColumn" type="xs:boolean" /> 
    6211               <xs:element name="logoID" msprop:Generator_UserColumnName="logoID" msprop:Generator_ColumnVarNameInTable="columnlogoID" msprop:Generator_ColumnPropNameInRow="logoID" msprop:Generator_ColumnPropNameInTable="logoIDColumn" type="xs:int" minOccurs="0" /> 
    6212               <xs:element name="DZIAŁ_TXT" msprop:Generator_UserColumnName="DZIAŁ_TXT" msprop:Generator_ColumnVarNameInTable="columnDZIAŁ_TXT" msprop:Generator_ColumnPropNameInRow="DZIAŁ_TXT" msprop:Generator_ColumnPropNameInTable="DZIAŁ_TXTColumn" minOccurs="0"> 
     6232              <xs:element name="wyroznienie" msprop:Generator_UserColumnName="wyroznienie" msprop:Generator_ColumnVarNameInTable="columnwyroznienie" msprop:Generator_ColumnPropNameInRow="wyroznienie" msprop:Generator_ColumnPropNameInTable="wyroznienieColumn" type="xs:boolean" /> 
     6233              <xs:element name="wyroznienie_exported" msprop:Generator_UserColumnName="wyroznienie_exported" msprop:Generator_ColumnPropNameInRow="wyroznienie_exported" msprop:Generator_ColumnVarNameInTable="columnwyroznienie_exported" msprop:Generator_ColumnPropNameInTable="wyroznienie_exportedColumn" type="xs:boolean" /> 
     6234              <xs:element name="logo" msprop:Generator_UserColumnName="logo" msprop:Generator_ColumnPropNameInRow="logo" msprop:Generator_ColumnVarNameInTable="columnlogo" msprop:Generator_ColumnPropNameInTable="logoColumn" type="xs:boolean" /> 
     6235              <xs:element name="logoID" msprop:Generator_UserColumnName="logoID" msprop:Generator_ColumnPropNameInRow="logoID" msprop:Generator_ColumnVarNameInTable="columnlogoID" msprop:Generator_ColumnPropNameInTable="logoIDColumn" type="xs:int" minOccurs="0" /> 
     6236              <xs:element name="DZIAŁ_TXT" msprop:Generator_UserColumnName="DZIAŁ_TXT" msprop:Generator_ColumnPropNameInRow="DZIAŁ_TXT" msprop:Generator_ColumnVarNameInTable="columnDZIAŁ_TXT" msprop:Generator_ColumnPropNameInTable="DZIAŁ_TXTColumn" minOccurs="0"> 
    62136237                <xs:simpleType> 
    62146238                  <xs:restriction base="xs:string"> 
     
    62176241                </xs:simpleType> 
    62186242              </xs:element> 
    6219               <xs:element name="ROZDZIAŁ_TXT" msprop:Generator_UserColumnName="ROZDZIAŁ_TXT" msprop:Generator_ColumnVarNameInTable="columnROZDZIAŁ_TXT" msprop:Generator_ColumnPropNameInRow="ROZDZIAŁ_TXT" msprop:Generator_ColumnPropNameInTable="ROZDZIAŁ_TXTColumn" minOccurs="0"> 
     6243              <xs:element name="ROZDZIAŁ_TXT" msprop:Generator_UserColumnName="ROZDZIAŁ_TXT" msprop:Generator_ColumnPropNameInRow="ROZDZIAŁ_TXT" msprop:Generator_ColumnVarNameInTable="columnROZDZIAŁ_TXT" msprop:Generator_ColumnPropNameInTable="ROZDZIAŁ_TXTColumn" minOccurs="0"> 
    62206244                <xs:simpleType> 
    62216245                  <xs:restriction base="xs:string"> 
     
    62246248                </xs:simpleType> 
    62256249              </xs:element> 
    6226               <xs:element name="STAN" msprop:Generator_UserColumnName="STAN" msprop:Generator_ColumnVarNameInTable="columnSTAN" msprop:Generator_ColumnPropNameInRow="STAN" msprop:Generator_ColumnPropNameInTable="STANColumn" minOccurs="0"> 
     6250              <xs:element name="STAN" msprop:Generator_UserColumnName="STAN" msprop:Generator_ColumnPropNameInRow="STAN" msprop:Generator_ColumnVarNameInTable="columnSTAN" msprop:Generator_ColumnPropNameInTable="STANColumn" minOccurs="0"> 
    62276251                <xs:simpleType> 
    62286252                  <xs:restriction base="xs:string"> 
     
    62316255                </xs:simpleType> 
    62326256              </xs:element> 
    6233               <xs:element name="sTATUS" msprop:Generator_UserColumnName="sTATUS" msprop:Generator_ColumnVarNameInTable="columnsTATUS" msprop:Generator_ColumnPropNameInRow="sTATUS" msprop:Generator_ColumnPropNameInTable="sTATUSColumn" type="xs:short" /> 
    6234               <xs:element name="lokalizacja1" msprop:Generator_UserColumnName="lokalizacja1" msprop:Generator_ColumnPropNameInRow="lokalizacja1" msprop:Generator_ColumnVarNameInTable="columnlokalizacja1" msprop:Generator_ColumnPropNameInTable="lokalizacja1Column"> 
     6257              <xs:element name="sTATUS" msprop:Generator_UserColumnName="sTATUS" msprop:Generator_ColumnPropNameInRow="sTATUS" msprop:Generator_ColumnVarNameInTable="columnsTATUS" msprop:Generator_ColumnPropNameInTable="sTATUSColumn" type="xs:short" /> 
     6258              <xs:element name="lokalizacja1" msprop:Generator_UserColumnName="lokalizacja1" msprop:Generator_ColumnVarNameInTable="columnlokalizacja1" msprop:Generator_ColumnPropNameInRow="lokalizacja1" msprop:Generator_ColumnPropNameInTable="lokalizacja1Column"> 
    62356259                <xs:simpleType> 
    62366260                  <xs:restriction base="xs:string"> 
     
    62456269          <xs:complexType> 
    62466270            <xs:sequence> 
    6247               <xs:element name="Reklama_Info_Dod_ID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_UserColumnName="Reklama_Info_Dod_ID" msprop:Generator_ColumnVarNameInTable="columnReklama_Info_Dod_ID" msprop:Generator_ColumnPropNameInRow="Reklama_Info_Dod_ID" msprop:Generator_ColumnPropNameInTable="Reklama_Info_Dod_IDColumn" type="xs:int" /> 
    6248               <xs:element name="ReklamaId" msprop:Generator_UserColumnName="ReklamaId" msprop:Generator_ColumnVarNameInTable="columnReklamaId" msprop:Generator_ColumnPropNameInRow="ReklamaId" msprop:Generator_ColumnPropNameInTable="ReklamaIdColumn" type="xs:int" /> 
    6249               <xs:element name="Data" msprop:Generator_UserColumnName="Data" msprop:Generator_ColumnVarNameInTable="columnData" msprop:Generator_ColumnPropNameInRow="Data" msprop:Generator_ColumnPropNameInTable="DataColumn" type="xs:dateTime" minOccurs="0" /> 
    6250               <xs:element name="Reklama_Info_Dod" msprop:Generator_UserColumnName="Reklama_Info_Dod" msprop:Generator_ColumnVarNameInTable="columnReklama_Info_Dod" msprop:Generator_ColumnPropNameInRow="Reklama_Info_Dod" msprop:Generator_ColumnPropNameInTable="Reklama_Info_DodColumn" minOccurs="0"> 
     6271              <xs:element name="Reklama_Info_Dod_ID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_UserColumnName="Reklama_Info_Dod_ID" msprop:Generator_ColumnPropNameInRow="Reklama_Info_Dod_ID" msprop:Generator_ColumnVarNameInTable="columnReklama_Info_Dod_ID" msprop:Generator_ColumnPropNameInTable="Reklama_Info_Dod_IDColumn" type="xs:int" /> 
     6272              <xs:element name="ReklamaId" msprop:Generator_UserColumnName="ReklamaId" msprop:Generator_ColumnPropNameInRow="ReklamaId" msprop:Generator_ColumnVarNameInTable="columnReklamaId" msprop:Generator_ColumnPropNameInTable="ReklamaIdColumn" type="xs:int" /> 
     6273              <xs:element name="Data" msprop:Generator_UserColumnName="Data" msprop:Generator_ColumnPropNameInRow="Data" msprop:Generator_ColumnVarNameInTable="columnData" msprop:Generator_ColumnPropNameInTable="DataColumn" type="xs:dateTime" minOccurs="0" /> 
     6274              <xs:element name="Reklama_Info_Dod" msprop:Generator_UserColumnName="Reklama_Info_Dod" msprop:Generator_ColumnPropNameInRow="Reklama_Info_Dod" msprop:Generator_ColumnVarNameInTable="columnReklama_Info_Dod" msprop:Generator_ColumnPropNameInTable="Reklama_Info_DodColumn" minOccurs="0"> 
    62516275                <xs:simpleType> 
    62526276                  <xs:restriction base="xs:string"> 
     
    62616285          <xs:complexType> 
    62626286            <xs:sequence> 
    6263               <xs:element name="ID_KLIENCI_TYTUL" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ID_KLIENCI_TYTUL" msprop:Generator_ColumnPropNameInRow="ID_KLIENCI_TYTUL" msprop:Generator_ColumnVarNameInTable="columnID_KLIENCI_TYTUL" msprop:Generator_ColumnPropNameInTable="ID_KLIENCI_TYTULColumn" type="xs:int" /> 
    6264               <xs:element name="TYTUL" msprop:Generator_UserColumnName="TYTUL" msprop:Generator_ColumnPropNameInRow="TYTUL" msprop:Generator_ColumnVarNameInTable="columnTYTUL" msprop:Generator_ColumnPropNameInTable="TYTULColumn"> 
     6287              <xs:element name="ID_KLIENCI_TYTUL" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ID_KLIENCI_TYTUL" msprop:Generator_ColumnVarNameInTable="columnID_KLIENCI_TYTUL" msprop:Generator_ColumnPropNameInRow="ID_KLIENCI_TYTUL" msprop:Generator_ColumnPropNameInTable="ID_KLIENCI_TYTULColumn" type="xs:int" /> 
     6288              <xs:element name="TYTUL" msprop:Generator_UserColumnName="TYTUL" msprop:Generator_ColumnVarNameInTable="columnTYTUL" msprop:Generator_ColumnPropNameInRow="TYTUL" msprop:Generator_ColumnPropNameInTable="TYTULColumn"> 
    62656289                <xs:simpleType> 
    62666290                  <xs:restriction base="xs:string"> 
     
    62696293                </xs:simpleType> 
    62706294              </xs:element> 
    6271               <xs:element name="Customerid" msprop:Generator_UserColumnName="Customerid" msprop:Generator_ColumnPropNameInRow="Customerid" msprop:Generator_ColumnVarNameInTable="columnCustomerid" msprop:Generator_ColumnPropNameInTable="CustomeridColumn" type="xs:int" /> 
    6272               <xs:element name="username" msprop:Generator_UserColumnName="username" msprop:Generator_ColumnPropNameInRow="username" msprop:Generator_ColumnVarNameInTable="columnusername" msprop:Generator_ColumnPropNameInTable="usernameColumn"> 
     6295              <xs:element name="Customerid" msprop:Generator_UserColumnName="Customerid" msprop:Generator_ColumnVarNameInTable="columnCustomerid" msprop:Generator_ColumnPropNameInRow="Customerid" msprop:Generator_ColumnPropNameInTable="CustomeridColumn" type="xs:int" /> 
     6296              <xs:element name="username" msprop:Generator_UserColumnName="username" msprop:Generator_ColumnVarNameInTable="columnusername" msprop:Generator_ColumnPropNameInRow="username" msprop:Generator_ColumnPropNameInTable="usernameColumn"> 
    62736297                <xs:simpleType> 
    62746298                  <xs:restriction base="xs:string"> 
     
    62776301                </xs:simpleType> 
    62786302              </xs:element> 
    6279               <xs:element name="data" msprop:Generator_UserColumnName="data" msprop:Generator_ColumnPropNameInRow="data" msprop:Generator_ColumnVarNameInTable="columndata" msprop:Generator_ColumnPropNameInTable="dataColumn" type="xs:dateTime" /> 
     6303              <xs:element name="data" msprop:Generator_UserColumnName="data" msprop:Generator_ColumnVarNameInTable="columndata" msprop:Generator_ColumnPropNameInRow="data" msprop:Generator_ColumnPropNameInTable="dataColumn" type="xs:dateTime" /> 
    62806304            </xs:sequence> 
    62816305          </xs:complexType> 
     
    62846308          <xs:complexType> 
    62856309            <xs:sequence> 
    6286               <xs:element name="ID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ID" msprop:Generator_ColumnPropNameInRow="ID" msprop:Generator_ColumnVarNameInTable="columnID" msprop:Generator_ColumnPropNameInTable="IDColumn" type="xs:int" /> 
    6287               <xs:element name="customerID" msprop:Generator_UserColumnName="customerID" msprop:Generator_ColumnPropNameInRow="customerID" msprop:Generator_ColumnVarNameInTable="columncustomerID" msprop:Generator_ColumnPropNameInTable="customerIDColumn" type="xs:int" /> 
    6288               <xs:element name="nazwa" msprop:Generator_UserColumnName="nazwa" msprop:Generator_ColumnPropNameInRow="nazwa" msprop:Generator_ColumnVarNameInTable="columnnazwa" msprop:Generator_ColumnPropNameInTable="nazwaColumn" minOccurs="0"> 
    6289                 <xs:simpleType> 
    6290                   <xs:restriction base="xs:string"> 
    6291                     <xs:maxLength value="50" /> 
    6292                   </xs:restriction> 
    6293                 </xs:simpleType> 
    6294               </xs:element> 
    6295               <xs:element name="status" msprop:Generator_UserColumnName="status" msprop:Generator_ColumnPropNameInRow="status" msprop:Generator_ColumnVarNameInTable="columnstatus" msprop:Generator_ColumnPropNameInTable="statusColumn" minOccurs="0"> 
    6296                 <xs:simpleType> 
    6297                   <xs:restriction base="xs:string"> 
    6298                     <xs:maxLength value="50" /> 
    6299                   </xs:restriction> 
    6300                 </xs:simpleType> 
    6301               </xs:element> 
    6302               <xs:element name="logo" msprop:Generator_UserColumnName="logo" msprop:Generator_ColumnPropNameInRow="logo" msprop:Generator_ColumnVarNameInTable="columnlogo" msprop:Generator_ColumnPropNameInTable="logoColumn" type="xs:base64Binary" minOccurs="0" /> 
     6310              <xs:element name="ID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ID" msprop:Generator_ColumnVarNameInTable="columnID" msprop:Generator_ColumnPropNameInRow="ID" msprop:Generator_ColumnPropNameInTable="IDColumn" type="xs:int" /> 
     6311              <xs:element name="customerID" msprop:Generator_UserColumnName="customerID" msprop:Generator_ColumnVarNameInTable="columncustomerID" msprop:Generator_ColumnPropNameInRow="customerID" msprop:Generator_ColumnPropNameInTable="customerIDColumn" type="xs:int" /> 
     6312              <xs:element name="nazwa" msprop:Generator_UserColumnName="nazwa" msprop:Generator_ColumnVarNameInTable="columnnazwa" msprop:Generator_ColumnPropNameInRow="nazwa" msprop:Generator_ColumnPropNameInTable="nazwaColumn" minOccurs="0"> 
     6313                <xs:simpleType> 
     6314                  <xs:restriction base="xs:string"> 
     6315                    <xs:maxLength value="50" /> 
     6316                  </xs:restriction> 
     6317                </xs:simpleType> 
     6318              </xs:element> 
     6319              <xs:element name="status" msprop:Generator_UserColumnName="status" msprop:Generator_ColumnVarNameInTable="columnstatus" msprop:Generator_ColumnPropNameInRow="status" msprop:Generator_ColumnPropNameInTable="statusColumn" minOccurs="0"> 
     6320                <xs:simpleType> 
     6321                  <xs:restriction base="xs:string"> 
     6322                    <xs:maxLength value="50" /> 
     6323                  </xs:restriction> 
     6324                </xs:simpleType> 
     6325              </xs:element> 
     6326              <xs:element name="logo" msprop:Generator_UserColumnName="logo" msprop:Generator_ColumnVarNameInTable="columnlogo" msprop:Generator_ColumnPropNameInRow="logo" msprop:Generator_ColumnPropNameInTable="logoColumn" type="xs:base64Binary" minOccurs="0" /> 
    63036327            </xs:sequence> 
    63046328          </xs:complexType> 
     
    63076331          <xs:complexType> 
    63086332            <xs:sequence> 
    6309               <xs:element name="id" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementStep="-1" msprop:Generator_UserColumnName="id" msprop:Generator_ColumnPropNameInRow="id" msprop:Generator_ColumnVarNameInTable="columnid" msprop:Generator_ColumnPropNameInTable="idColumn" type="xs:int" /> 
    6310               <xs:element name="idEmisji" msprop:Generator_UserColumnName="idEmisji" msprop:Generator_ColumnPropNameInRow="idEmisji" msprop:Generator_ColumnVarNameInTable="columnidEmisji" msprop:Generator_ColumnPropNameInTable="idEmisjiColumn" type="xs:decimal" /> 
    6311               <xs:element name="popNrWyd" msprop:Generator_UserColumnName="popNrWyd" msprop:Generator_ColumnPropNameInRow="popNrWyd" msprop:Generator_ColumnVarNameInTable="columnpopNrWyd" msprop:Generator_ColumnPropNameInTable="popNrWydColumn" type="xs:short" /> 
    6312               <xs:element name="nastNrWyd" msprop:Generator_UserColumnName="nastNrWyd" msprop:Generator_ColumnPropNameInRow="nastNrWyd" msprop:Generator_ColumnVarNameInTable="columnnastNrWyd" msprop:Generator_ColumnPropNameInTable="nastNrWydColumn" type="xs:short" /> 
    6313               <xs:element name="dataZmiany" msprop:Generator_UserColumnName="dataZmiany" msprop:Generator_ColumnPropNameInRow="dataZmiany" msprop:Generator_ColumnVarNameInTable="columndataZmiany" msprop:Generator_ColumnPropNameInTable="dataZmianyColumn" type="xs:dateTime" /> 
     6333              <xs:element name="id" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementStep="-1" msprop:Generator_UserColumnName="id" msprop:Generator_ColumnVarNameInTable="columnid" msprop:Generator_ColumnPropNameInRow="id" msprop:Generator_ColumnPropNameInTable="idColumn" type="xs:int" /> 
     6334              <xs:element name="idEmisji" msprop:Generator_UserColumnName="idEmisji" msprop:Generator_ColumnVarNameInTable="columnidEmisji" msprop:Generator_ColumnPropNameInRow="idEmisji" msprop:Generator_ColumnPropNameInTable="idEmisjiColumn" type="xs:decimal" /> 
     6335              <xs:element name="popNrWyd" msprop:Generator_UserColumnName="popNrWyd" msprop:Generator_ColumnVarNameInTable="columnpopNrWyd" msprop:Generator_ColumnPropNameInRow="popNrWyd" msprop:Generator_ColumnPropNameInTable="popNrWydColumn" type="xs:short" /> 
     6336              <xs:element name="nastNrWyd" msprop:Generator_UserColumnName="nastNrWyd" msprop:Generator_ColumnVarNameInTable="columnnastNrWyd" msprop:Generator_ColumnPropNameInRow="nastNrWyd" msprop:Generator_ColumnPropNameInTable="nastNrWydColumn" type="xs:short" /> 
     6337              <xs:element name="dataZmiany" msprop:Generator_UserColumnName="dataZmiany" msprop:Generator_ColumnVarNameInTable="columndataZmiany" msprop:Generator_ColumnPropNameInRow="dataZmiany" msprop:Generator_ColumnPropNameInTable="dataZmianyColumn" type="xs:dateTime" /> 
    63146338            </xs:sequence> 
    63156339          </xs:complexType> 
     
    63186342          <xs:complexType> 
    63196343            <xs:sequence> 
    6320               <xs:element name="ReklamaId" msprop:Generator_UserColumnName="ReklamaId" msprop:Generator_ColumnVarNameInTable="columnReklamaId" msprop:Generator_ColumnPropNameInRow="ReklamaId" msprop:Generator_ColumnPropNameInTable="ReklamaIdColumn" type="xs:int" /> 
    6321               <xs:element name="Nr_x0020_Wydania" msprop:Generator_UserColumnName="Nr Wydania" msprop:Generator_ColumnVarNameInTable="columnNr_Wydania" msprop:Generator_ColumnPropNameInRow="Nr_Wydania" msprop:Generator_ColumnPropNameInTable="Nr_WydaniaColumn" type="xs:short" /> 
    6322               <xs:element name="rok" msdata:ReadOnly="true" msprop:Generator_UserColumnName="rok" msprop:Generator_ColumnPropNameInRow="rok" msprop:Generator_ColumnVarNameInTable="columnrok" msprop:Generator_ColumnPropNameInTable="rokColumn" type="xs:int" minOccurs="0" /> 
    6323               <xs:element name="ms" msdata:ReadOnly="true" msprop:Generator_UserColumnName="ms" msprop:Generator_ColumnPropNameInRow="ms" msprop:Generator_ColumnVarNameInTable="columnms" msprop:Generator_ColumnPropNameInTable="msColumn" type="xs:int" minOccurs="0" /> 
    6324               <xs:element name="DATA_W" msprop:Generator_UserColumnName="DATA_W" msprop:Generator_ColumnPropNameInRow="DATA_W" msprop:Generator_ColumnVarNameInTable="columnDATA_W" msprop:Generator_ColumnPropNameInTable="DATA_WColumn" type="xs:dateTime" minOccurs="0" /> 
    6325               <xs:element name="idTytulu" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="idTytulu" msprop:Generator_ColumnPropNameInRow="idTytulu" msprop:Generator_ColumnVarNameInTable="columnidTytulu" msprop:Generator_ColumnPropNameInTable="idTytuluColumn" type="xs:int" minOccurs="0" /> 
     6344              <xs:element name="ReklamaId" msprop:Generator_UserColumnName="ReklamaId" msprop:Generator_ColumnPropNameInRow="ReklamaId" msprop:Generator_ColumnVarNameInTable="columnReklamaId" msprop:Generator_ColumnPropNameInTable="ReklamaIdColumn" type="xs:int" /> 
     6345              <xs:element name="Nr_x0020_Wydania" msprop:Generator_UserColumnName="Nr Wydania" msprop:Generator_ColumnPropNameInRow="Nr_Wydania" msprop:Generator_ColumnVarNameInTable="columnNr_Wydania" msprop:Generator_ColumnPropNameInTable="Nr_WydaniaColumn" type="xs:short" /> 
     6346              <xs:element name="rok" msdata:ReadOnly="true" msprop:Generator_UserColumnName="rok" msprop:Generator_ColumnVarNameInTable="columnrok" msprop:Generator_ColumnPropNameInRow="rok" msprop:Generator_ColumnPropNameInTable="rokColumn" type="xs:int" minOccurs="0" /> 
     6347              <xs:element name="ms" msdata:ReadOnly="true" msprop:Generator_UserColumnName="ms" msprop:Generator_ColumnVarNameInTable="columnms" msprop:Generator_ColumnPropNameInRow="ms" msprop:Generator_ColumnPropNameInTable="msColumn" type="xs:int" minOccurs="0" /> 
     6348              <xs:element name="DATA_W" msprop:Generator_UserColumnName="DATA_W" msprop:Generator_ColumnVarNameInTable="columnDATA_W" msprop:Generator_ColumnPropNameInRow="DATA_W" msprop:Generator_ColumnPropNameInTable="DATA_WColumn" type="xs:dateTime" minOccurs="0" /> 
     6349              <xs:element name="idTytulu" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="idTytulu" msprop:Generator_ColumnVarNameInTable="columnidTytulu" msprop:Generator_ColumnPropNameInRow="idTytulu" msprop:Generator_ColumnPropNameInTable="idTytuluColumn" type="xs:int" minOccurs="0" /> 
    63266350            </xs:sequence> 
    63276351          </xs:complexType> 
     
    63306354          <xs:complexType> 
    63316355            <xs:sequence> 
    6332               <xs:element name="idZamowienia" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msprop:Generator_UserColumnName="idZamowienia" msprop:Generator_ColumnVarNameInTable="columnidZamowienia" msprop:Generator_ColumnPropNameInRow="idZamowienia" msprop:Generator_ColumnPropNameInTable="idZamowieniaColumn" type="xs:int" /> 
    6333               <xs:element name="idKlienta" msprop:Generator_UserColumnName="idKlienta" msprop:Generator_ColumnVarNameInTable="columnidKlienta" msprop:Generator_ColumnPropNameInRow="idKlienta" msprop:Generator_ColumnPropNameInTable="idKlientaColumn" type="xs:int" /> 
    6334               <xs:element name="rodzajFakturowania" msprop:Generator_UserColumnName="rodzajFakturowania" msprop:Generator_ColumnVarNameInTable="columnrodzajFakturowania" msprop:Generator_ColumnPropNameInRow="rodzajFakturowania" msprop:Generator_ColumnPropNameInTable="rodzajFakturowaniaColumn" type="xs:short" default="0" minOccurs="0" /> 
    6335               <xs:element name="zafakturowano" msprop:Generator_UserColumnName="zafakturowano" msprop:Generator_ColumnVarNameInTable="columnzafakturowano" msprop:Generator_ColumnPropNameInRow="zafakturowano" msprop:Generator_ColumnPropNameInTable="zafakturowanoColumn" type="xs:boolean" default="false" /> 
    6336               <xs:element name="idKonta" msprop:Generator_UserColumnName="idKonta" msprop:Generator_ColumnVarNameInTable="columnidKonta" msprop:Generator_ColumnPropNameInRow="idKonta" msprop:Generator_ColumnPropNameInTable="idKontaColumn" type="xs:int" minOccurs="0" /> 
    6337               <xs:element name="nrZamowienia" msprop:Generator_UserColumnName="nrZamowienia" msprop:Generator_ColumnVarNameInTable="columnnrZamowienia" msprop:Generator_ColumnPropNameInRow="nrZamowienia" msprop:Generator_ColumnPropNameInTable="nrZamowieniaColumn" type="xs:int" /> 
    6338               <xs:element name="rokZamowienia" msprop:Generator_UserColumnName="rokZamowienia" msprop:Generator_ColumnVarNameInTable="columnrokZamowienia" msprop:Generator_ColumnPropNameInRow="rokZamowienia" msprop:Generator_ColumnPropNameInTable="rokZamowieniaColumn" type="xs:int" /> 
    6339               <xs:element name="sposobZaplaty" msprop:Generator_UserColumnName="sposobZaplaty" msprop:Generator_ColumnVarNameInTable="columnsposobZaplaty" msprop:Generator_ColumnPropNameInRow="sposobZaplaty" msprop:Generator_ColumnPropNameInTable="sposobZaplatyColumn" type="xs:short" default="1" minOccurs="0" /> 
    6340               <xs:element name="czasPlatnosci" msprop:Generator_UserColumnName="czasPlatnosci" msprop:Generator_ColumnVarNameInTable="columnczasPlatnosci" msprop:Generator_ColumnPropNameInRow="czasPlatnosci" msprop:Generator_ColumnPropNameInTable="czasPlatnosciColumn" type="xs:int" default="7" minOccurs="0" /> 
    6341               <xs:element name="kodAgenta" msprop:Generator_UserColumnName="kodAgenta" msprop:Generator_ColumnVarNameInTable="columnkodAgenta" msprop:Generator_ColumnPropNameInRow="kodAgenta" msprop:Generator_ColumnPropNameInTable="kodAgentaColumn" minOccurs="0"> 
     6356              <xs:element name="idZamowienia" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msprop:Generator_UserColumnName="idZamowienia" msprop:Generator_ColumnPropNameInRow="idZamowienia" msprop:Generator_ColumnVarNameInTable="columnidZamowienia" msprop:Generator_ColumnPropNameInTable="idZamowieniaColumn" type="xs:int" /> 
     6357              <xs:element name="idKlienta" msprop:Generator_UserColumnName="idKlienta" msprop:Generator_ColumnPropNameInRow="idKlienta" msprop:Generator_ColumnVarNameInTable="columnidKlienta" msprop:Generator_ColumnPropNameInTable="idKlientaColumn" type="xs:int" /> 
     6358              <xs:element name="rodzajFakturowania" msprop:Generator_UserColumnName="rodzajFakturowania" msprop:Generator_ColumnPropNameInRow="rodzajFakturowania" msprop:Generator_ColumnVarNameInTable="columnrodzajFakturowania" msprop:Generator_ColumnPropNameInTable="rodzajFakturowaniaColumn" type="xs:short" default="0" minOccurs="0" /> 
     6359              <xs:element name="zafakturowano" msprop:Generator_UserColumnName="zafakturowano" msprop:Generator_ColumnPropNameInRow="zafakturowano" msprop:Generator_ColumnVarNameInTable="columnzafakturowano" msprop:Generator_ColumnPropNameInTable="zafakturowanoColumn" type="xs:boolean" default="false" /> 
     6360              <xs:element name="idKonta" msprop:Generator_UserColumnName="idKonta" msprop:Generator_ColumnPropNameInRow="idKonta" msprop:Generator_ColumnVarNameInTable="columnidKonta" msprop:Generator_ColumnPropNameInTable="idKontaColumn" type="xs:int" minOccurs="0" /> 
     6361              <xs:element name="nrZamowienia" msprop:Generator_UserColumnName="nrZamowienia" msprop:Generator_ColumnPropNameInRow="nrZamowienia" msprop:Generator_ColumnVarNameInTable="columnnrZamowienia" msprop:Generator_ColumnPropNameInTable="nrZamowieniaColumn" type="xs:int" /> 
     6362              <xs:element name="rokZamowienia" msprop:Generator_UserColumnName="rokZamowienia" msprop:Generator_ColumnPropNameInRow="rokZamowienia" msprop:Generator_ColumnVarNameInTable="columnrokZamowienia" msprop:Generator_ColumnPropNameInTable="rokZamowieniaColumn" type="xs:int" /> 
     6363              <xs:element name="sposobZaplaty" msprop:Generator_UserColumnName="sposobZaplaty" msprop:Generator_ColumnPropNameInRow="sposobZaplaty" msprop:Generator_ColumnVarNameInTable="columnsposobZaplaty" msprop:Generator_ColumnPropNameInTable="sposobZaplatyColumn" type="xs:short" default="1" minOccurs="0" /> 
     6364              <xs:element name="czasPlatnosci" msprop:Generator_UserColumnName="czasPlatnosci" msprop:Generator_ColumnPropNameInRow="czasPlatnosci" msprop:Generator_ColumnVarNameInTable="columnczasPlatnosci" msprop:Generator_ColumnPropNameInTable="czasPlatnosciColumn" type="xs:int" default="7" minOccurs="0" /> 
     6365              <xs:element name="kodAgenta" msprop:Generator_UserColumnName="kodAgenta" msprop:Generator_ColumnPropNameInRow="kodAgenta" msprop:Generator_ColumnVarNameInTable="columnkodAgenta" msprop:Generator_ColumnPropNameInTable="kodAgentaColumn" minOccurs="0"> 
    63426366                <xs:simpleType> 
    63436367                  <xs:restriction base="xs:string"> 
     
    63466370                </xs:simpleType> 
    63476371              </xs:element> 
    6348               <xs:element name="dataOstatniejZafakturowanejEmisji" msprop:Generator_UserColumnName="dataOstatniejZafakturowanejEmisji" msprop:Generator_ColumnVarNameInTable="columndataOstatniejZafakturowanejEmisji" msprop:Generator_ColumnPropNameInRow="dataOstatniejZafakturowanejEmisji" msprop:Generator_ColumnPropNameInTable="dataOstatniejZafakturowanejEmisjiColumn" type="xs:dateTime" minOccurs="0" /> 
    6349               <xs:element name="notatkaZamowienie" msprop:Generator_UserColumnName="notatkaZamowienie" msprop:Generator_ColumnVarNameInTable="columnnotatkaZamowienie" msprop:Generator_ColumnPropNameInRow="notatkaZamowienie" msprop:Generator_ColumnPropNameInTable="notatkaZamowienieColumn" minOccurs="0"> 
     6372              <xs:element name="dataOstatniejZafakturowanejEmisji" msprop:Generator_UserColumnName="dataOstatniejZafakturowanejEmisji" msprop:Generator_ColumnPropNameInRow="dataOstatniejZafakturowanejEmisji" msprop:Generator_ColumnVarNameInTable="columndataOstatniejZafakturowanejEmisji" msprop:Generator_ColumnPropNameInTable="dataOstatniejZafakturowanejEmisjiColumn" type="xs:dateTime" minOccurs="0" /> 
     6373              <xs:element name="notatkaZamowienie" msprop:Generator_UserColumnName="notatkaZamowienie" msprop:Generator_ColumnPropNameInRow="notatkaZamowienie" msprop:Generator_ColumnVarNameInTable="columnnotatkaZamowienie" msprop:Generator_ColumnPropNameInTable="notatkaZamowienieColumn" minOccurs="0"> 
    63506374                <xs:simpleType> 
    63516375                  <xs:restriction base="xs:string"> 
     
    63546378                </xs:simpleType> 
    63556379              </xs:element> 
    6356               <xs:element name="notatkaKierownik" msprop:Generator_UserColumnName="notatkaKierownik" msprop:Generator_ColumnVarNameInTable="columnnotatkaKierownik" msprop:Generator_ColumnPropNameInRow="notatkaKierownik" msprop:Generator_ColumnPropNameInTable="notatkaKierownikColumn" minOccurs="0"> 
     6380              <xs:element name="notatkaKierownik" msprop:Generator_UserColumnName="notatkaKierownik" msprop:Generator_ColumnPropNameInRow="notatkaKierownik" msprop:Generator_ColumnVarNameInTable="columnnotatkaKierownik" msprop:Generator_ColumnPropNameInTable="notatkaKierownikColumn" minOccurs="0"> 
    63576381                <xs:simpleType> 
    63586382                  <xs:restriction base="xs:string"> 
     
    63616385                </xs:simpleType> 
    63626386              </xs:element> 
    6363               <xs:element name="zafakturowanoWszystko" msprop:Generator_UserColumnName="zafakturowanoWszystko" msprop:Generator_ColumnPropNameInRow="zafakturowanoWszystko" msprop:Generator_ColumnVarNameInTable="columnzafakturowanoWszystko" msprop:Generator_ColumnPropNameInTable="zafakturowanoWszystkoColumn" type="xs:boolean" default="false" /> 
    6364               <xs:element name="procentProwizji" msprop:Generator_UserColumnName="procentProwizji" msprop:Generator_ColumnPropNameInRow="procentProwizji" msprop:Generator_ColumnVarNameInTable="columnprocentProwizji" msprop:Generator_ColumnPropNameInTable="procentProwizjiColumn" type="xs:double" default="0" minOccurs="0" /> 
    6365               <xs:element name="ZP" msprop:Generator_UserColumnName="ZP" msprop:Generator_ColumnPropNameInRow="ZP" msprop:Generator_ColumnVarNameInTable="columnZP" msprop:Generator_ColumnPropNameInTable="ZPColumn" type="xs:boolean" default="false" minOccurs="0" /> 
     6387              <xs:element name="zafakturowanoWszystko" msprop:Generator_UserColumnName="zafakturowanoWszystko" msprop:Generator_ColumnVarNameInTable="columnzafakturowanoWszystko" msprop:Generator_ColumnPropNameInRow="zafakturowanoWszystko" msprop:Generator_ColumnPropNameInTable="zafakturowanoWszystkoColumn" type="xs:boolean" default="false" /> 
     6388              <xs:element name="procentProwizji" msprop:Generator_UserColumnName="procentProwizji" msprop:Generator_ColumnVarNameInTable="columnprocentProwizji" msprop:Generator_ColumnPropNameInRow="procentProwizji" msprop:Generator_ColumnPropNameInTable="procentProwizjiColumn" type="xs:double" default="0" minOccurs="0" /> 
     6389              <xs:element name="ZP" msprop:Generator_UserColumnName="ZP" msprop:Generator_ColumnVarNameInTable="columnZP" msprop:Generator_ColumnPropNameInRow="ZP" msprop:Generator_ColumnPropNameInTable="ZPColumn" type="xs:boolean" default="false" minOccurs="0" /> 
    63666390            </xs:sequence> 
    63676391          </xs:complexType> 
     
    63706394          <xs:complexType> 
    63716395            <xs:sequence> 
    6372               <xs:element name="idZamowienia" msprop:Generator_UserColumnName="idZamowienia" msprop:Generator_ColumnPropNameInRow="idZamowienia" msprop:Generator_ColumnVarNameInTable="columnidZamowienia" msprop:Generator_ColumnPropNameInTable="idZamowieniaColumn" type="xs:int" /> 
    6373               <xs:element name="idKlienta" msprop:Generator_UserColumnName="idKlienta" msprop:Generator_ColumnPropNameInRow="idKlienta" msprop:Generator_ColumnVarNameInTable="columnidKlienta" msprop:Generator_ColumnPropNameInTable="idKlientaColumn" type="xs:int" /> 
    6374               <xs:element name="DoZafakturowania" msdata:ReadOnly="true" msprop:Generator_UserColumnName="DoZafakturowania" msprop:Generator_ColumnVarNameInTable="columnDoZafakturowania" msprop:Generator_ColumnPropNameInRow="DoZafakturowania" msprop:Generator_ColumnPropNameInTable="DoZafakturowaniaColumn" type="xs:double" minOccurs="0" /> 
    6375               <xs:element name="kodAgenta" msprop:Generator_UserColumnName="kodAgenta" msprop:Generator_ColumnPropNameInRow="kodAgenta" msprop:Generator_ColumnVarNameInTable="columnkodAgenta" msprop:Generator_ColumnPropNameInTable="kodAgentaColumn" minOccurs="0"> 
     6396              <xs:element name="idZamowienia" msprop:Generator_UserColumnName="idZamowienia" msprop:Generator_ColumnVarNameInTable="columnidZamowienia" msprop:Generator_ColumnPropNameInRow="idZamowienia" msprop:Generator_ColumnPropNameInTable="idZamowieniaColumn" type="xs:int" /> 
     6397              <xs:element name="idKlienta" msprop:Generator_UserColumnName="idKlienta" msprop:Generator_ColumnVarNameInTable="columnidKlienta" msprop:Generator_ColumnPropNameInRow="idKlienta" msprop:Generator_ColumnPropNameInTable="idKlientaColumn" type="xs:int" /> 
     6398              <xs:element name="DoZafakturowania" msdata:ReadOnly="true" msprop:Generator_UserColumnName="DoZafakturowania" msprop:Generator_ColumnPropNameInRow="DoZafakturowania" msprop:Generator_ColumnVarNameInTable="columnDoZafakturowania" msprop:Generator_ColumnPropNameInTable="DoZafakturowaniaColumn" type="xs:double" minOccurs="0" /> 
     6399              <xs:element name="kodAgenta" msprop:Generator_UserColumnName="kodAgenta" msprop:Generator_ColumnVarNameInTable="columnkodAgenta" msprop:Generator_ColumnPropNameInRow="kodAgenta" msprop:Generator_ColumnPropNameInTable="kodAgentaColumn" minOccurs="0"> 
    63766400                <xs:simpleType> 
    63776401                  <xs:restriction base="xs:string"> 
     
    63806404                </xs:simpleType> 
    63816405              </xs:element> 
    6382               <xs:element name="rokZamowienia" msprop:Generator_UserColumnName="rokZamowienia" msprop:Generator_ColumnPropNameInRow="rokZamowienia" msprop:Generator_ColumnVarNameInTable="columnrokZamowienia" msprop:Generator_ColumnPropNameInTable="rokZamowieniaColumn" type="xs:int" /> 
    6383               <xs:element name="wartoscNetto" msprop:Generator_UserColumnName="wartoscNetto" msprop:Generator_ColumnPropNameInRow="wartoscNetto" msprop:Generator_ColumnVarNameInTable="columnwartoscNetto" msprop:Generator_ColumnPropNameInTable="wartoscNettoColumn" type="xs:double" minOccurs="0" /> 
    6384               <xs:element name="agencja" msprop:Generator_UserColumnName="agencja" msprop:Generator_ColumnVarNameInTable="columnagencja" msprop:Generator_ColumnPropNameInRow="agencja" msprop:Generator_ColumnPropNameInTable="agencjaColumn" minOccurs="0"> 
    6385                 <xs:simpleType> 
    6386                   <xs:restriction base="xs:string"> 
    6387                     <xs:maxLength value="50" /> 
    6388                   </xs:restriction> 
    6389                 </xs:simpleType> 
    6390               </xs:element> 
    6391               <xs:element name="agent" msprop:Generator_UserColumnName="agent" msprop:Generator_ColumnVarNameInTable="columnagent" msprop:Generator_ColumnPropNameInRow="agent" msprop:Generator_ColumnPropNameInTable="agentColumn" minOccurs="0"> 
    6392                 <xs:simpleType> 
    6393                   <xs:restriction base="xs:string"> 
    6394                     <xs:maxLength value="50" /> 
    6395                   </xs:restriction> 
    6396                 </xs:simpleType> 
    6397               </xs:element> 
    6398               <xs:element name="nrZamowienia" msprop:Generator_UserColumnName="nrZamowienia" msprop:Generator_ColumnVarNameInTable="columnnrZamowienia" msprop:Generator_ColumnPropNameInRow="nrZamowienia" msprop:Generator_ColumnPropNameInTable="nrZamowieniaColumn" type="xs:int" /> 
    6399               <xs:element name="nrZamowieniaExt" msprop:Generator_UserColumnName="nrZamowieniaExt" msprop:Generator_ColumnVarNameInTable="columnnrZamowieniaExt" msprop:Generator_ColumnPropNameInRow="nrZamowieniaExt" msprop:Generator_ColumnPropNameInTable="nrZamowieniaExtColumn" minOccurs="0"> 
     6406              <xs:element name="rokZamowienia" msprop:Generator_UserColumnName="rokZamowienia" msprop:Generator_ColumnVarNameInTable="columnrokZamowienia" msprop:Generator_ColumnPropNameInRow="rokZamowienia" msprop:Generator_ColumnPropNameInTable="rokZamowieniaColumn" type="xs:int" /> 
     6407              <xs:element name="wartoscNetto" msprop:Generator_UserColumnName="wartoscNetto" msprop:Generator_ColumnVarNameInTable="columnwartoscNetto" msprop:Generator_ColumnPropNameInRow="wartoscNetto" msprop:Generator_ColumnPropNameInTable="wartoscNettoColumn" type="xs:double" minOccurs="0" /> 
     6408              <xs:element name="agencja" msprop:Generator_UserColumnName="agencja" msprop:Generator_ColumnPropNameInRow="agencja" msprop:Generator_ColumnVarNameInTable="columnagencja" msprop:Generator_ColumnPropNameInTable="agencjaColumn" minOccurs="0"> 
     6409                <xs:simpleType> 
     6410                  <xs:restriction base="xs:string"> 
     6411                    <xs:maxLength value="50" /> 
     6412                  </xs:restriction> 
     6413                </xs:simpleType> 
     6414              </xs:element> 
     6415              <xs:element name="agent" msprop:Generator_UserColumnName="agent" msprop:Generator_ColumnPropNameInRow="agent" msprop:Generator_ColumnVarNameInTable="columnagent" msprop:Generator_ColumnPropNameInTable="agentColumn" minOccurs="0"> 
     6416                <xs:simpleType> 
     6417                  <xs:restriction base="xs:string"> 
     6418                    <xs:maxLength value="50" /> 
     6419                  </xs:restriction> 
     6420                </xs:simpleType> 
     6421              </xs:element> 
     6422              <xs:element name="nrZamowienia" msprop:Generator_UserColumnName="nrZamowienia" msprop:Generator_ColumnPropNameInRow="nrZamowienia" msprop:Generator_ColumnVarNameInTable="columnnrZamowienia" msprop:Generator_ColumnPropNameInTable="nrZamowieniaColumn" type="xs:int" /> 
     6423              <xs:element name="nrZamowieniaExt" msprop:Generator_UserColumnName="nrZamowieniaExt" msprop:Generator_ColumnPropNameInRow="nrZamowieniaExt" msprop:Generator_ColumnVarNameInTable="columnnrZamowieniaExt" msprop:Generator_ColumnPropNameInTable="nrZamowieniaExtColumn" minOccurs="0"> 
    64006424                <xs:simpleType> 
    64016425                  <xs:restriction base="xs:string"> 
     
    64046428                </xs:simpleType> 
    64056429              </xs:element> 
    6406               <xs:element name="iloscReklam" msprop:Generator_UserColumnName="iloscReklam" msprop:Generator_ColumnVarNameInTable="columniloscReklam" msprop:Generator_ColumnPropNameInRow="iloscReklam" msprop:Generator_ColumnPropNameInTable="iloscReklamColumn" type="xs:int" minOccurs="0" /> 
    6407               <xs:element name="kwotaWalutaBrutto" msprop:Generator_UserColumnName="kwotaWalutaBrutto" msprop:Generator_ColumnVarNameInTable="columnkwotaWalutaBrutto" msprop:Generator_ColumnPropNameInRow="kwotaWalutaBrutto" msprop:Generator_ColumnPropNameInTable="kwotaWalutaBruttoColumn" type="xs:double" minOccurs="0" /> 
    6408               <xs:element name="data_od" msprop:Generator_UserColumnName="data_od" msprop:Generator_ColumnVarNameInTable="columndata_od" msprop:Generator_ColumnPropNameInRow="data_od" msprop:Generator_ColumnPropNameInTable="data_odColumn" type="xs:dateTime" minOccurs="0" /> 
    6409               <xs:element name="data_od_bez_FK" msprop:Generator_UserColumnName="data_od_bez_FK" msprop:Generator_ColumnVarNameInTable="columndata_od_bez_FK" msprop:Generator_ColumnPropNameInRow="data_od_bez_FK" msprop:Generator_ColumnPropNameInTable="data_od_bez_FKColumn" type="xs:dateTime" minOccurs="0" /> 
    6410               <xs:element name="nettoZafakturowane" msprop:Generator_UserColumnName="nettoZafakturowane" msprop:Generator_ColumnVarNameInTable="columnnettoZafakturowane" msprop:Generator_ColumnPropNameInRow="nettoZafakturowane" msprop:Generator_ColumnPropNameInTable="nettoZafakturowaneColumn" type="xs:double" minOccurs="0" /> 
    6411               <xs:element name="Brutto_Euro_Miano" msprop:Generator_UserColumnName="Brutto_Euro_Miano" msprop:Generator_ColumnVarNameInTable="columnBrutto_Euro_Miano" msprop:Generator_ColumnPropNameInRow="Brutto_Euro_Miano" msprop:Generator_ColumnPropNameInTable="Brutto_Euro_MianoColumn" minOccurs="0"> 
     6430              <xs:element name="iloscReklam" msprop:Generator_UserColumnName="iloscReklam" msprop:Generator_ColumnPropNameInRow="iloscReklam" msprop:Generator_ColumnVarNameInTable="columniloscReklam" msprop:Generator_ColumnPropNameInTable="iloscReklamColumn" type="xs:int" minOccurs="0" /> 
     6431              <xs:element name="kwotaWalutaBrutto" msprop:Generator_UserColumnName="kwotaWalutaBrutto" msprop:Generator_ColumnPropNameInRow="kwotaWalutaBrutto" msprop:Generator_ColumnVarNameInTable="columnkwotaWalutaBrutto" msprop:Generator_ColumnPropNameInTable="kwotaWalutaBruttoColumn" type="xs:double" minOccurs="0" /> 
     6432              <xs:element name="data_od" msprop:Generator_UserColumnName="data_od" msprop:Generator_ColumnPropNameInRow="data_od" msprop:Generator_ColumnVarNameInTable="columndata_od" msprop:Generator_ColumnPropNameInTable="data_odColumn" type="xs:dateTime" minOccurs="0" /> 
     6433              <xs:element name="data_od_bez_FK" msprop:Generator_UserColumnName="data_od_bez_FK" msprop:Generator_ColumnPropNameInRow="data_od_bez_FK" msprop:Generator_ColumnVarNameInTable="columndata_od_bez_FK" msprop:Generator_ColumnPropNameInTable="data_od_bez_FKColumn" type="xs:dateTime" minOccurs="0" /> 
     6434              <xs:element name="nettoZafakturowane" msprop:Generator_UserColumnName="nettoZafakturowane" msprop:Generator_ColumnPropNameInRow="nettoZafakturowane" msprop:Generator_ColumnVarNameInTable="columnnettoZafakturowane" msprop:Generator_ColumnPropNameInTable="nettoZafakturowaneColumn" type="xs:double" minOccurs="0" /> 
     6435              <xs:element name="Brutto_Euro_Miano" msprop:Generator_UserColumnName="Brutto_Euro_Miano" msprop:Generator_ColumnPropNameInRow="Brutto_Euro_Miano" msprop:Generator_ColumnVarNameInTable="columnBrutto_Euro_Miano" msprop:Generator_ColumnPropNameInTable="Brutto_Euro_MianoColumn" minOccurs="0"> 
    64126436                <xs:simpleType> 
    64136437                  <xs:restriction base="xs:string"> 
     
    64166440                </xs:simpleType> 
    64176441              </xs:element> 
    6418               <xs:element name="kodKlienta" msprop:Generator_UserColumnName="kodKlienta" msprop:Generator_ColumnVarNameInTable="columnkodKlienta" msprop:Generator_ColumnPropNameInRow="kodKlienta" msprop:Generator_ColumnPropNameInTable="kodKlientaColumn" minOccurs="0"> 
     6442              <xs:element name="kodKlienta" msprop:Generator_UserColumnName="kodKlienta" msprop:Generator_ColumnPropNameInRow="kodKlienta" msprop:Generator_ColumnVarNameInTable="columnkodKlienta" msprop:Generator_ColumnPropNameInTable="kodKlientaColumn" minOccurs="0"> 
    64196443                <xs:simpleType> 
    64206444                  <xs:restriction base="xs:string"> 
     
    64296453          <xs:complexType> 
    64306454            <xs:sequence> 
    6431               <xs:element name="idWplaty" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="idWplaty" msprop:Generator_ColumnPropNameInRow="idWplaty" msprop:Generator_ColumnVarNameInTable="columnidWplaty" msprop:Generator_ColumnPropNameInTable="idWplatyColumn" type="xs:int" /> 
    6432               <xs:element name="idFaktury" msprop:Generator_UserColumnName="idFaktury" msprop:Generator_ColumnPropNameInRow="idFaktury" msprop:Generator_ColumnVarNameInTable="columnidFaktury" msprop:Generator_ColumnPropNameInTable="idFakturyColumn" type="xs:int" /> 
    6433               <xs:element name="idZamowienia" msprop:Generator_UserColumnName="idZamowienia" msprop:Generator_ColumnPropNameInRow="idZamowienia" msprop:Generator_ColumnVarNameInTable="columnidZamowienia" msprop:Generator_ColumnPropNameInTable="idZamowieniaColumn" type="xs:int" minOccurs="0" /> 
    6434               <xs:element name="dataWplaty" msprop:Generator_UserColumnName="dataWplaty" msprop:Generator_ColumnPropNameInRow="dataWplaty" msprop:Generator_ColumnVarNameInTable="columndataWplaty" msprop:Generator_ColumnPropNameInTable="dataWplatyColumn" type="xs:dateTime" minOccurs="0" /> 
    6435               <xs:element name="rodzajPotwierdzenia" msprop:Generator_UserColumnName="rodzajPotwierdzenia" msprop:Generator_ColumnPropNameInRow="rodzajPotwierdzenia" msprop:Generator_ColumnVarNameInTable="columnrodzajPotwierdzenia" msprop:Generator_ColumnPropNameInTable="rodzajPotwierdzeniaColumn" minOccurs="0"> 
     6455              <xs:element name="idWplaty" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="idWplaty" msprop:Generator_ColumnVarNameInTable="columnidWplaty" msprop:Generator_ColumnPropNameInRow="idWplaty" msprop:Generator_ColumnPropNameInTable="idWplatyColumn" type="xs:int" /> 
     6456              <xs:element name="idFaktury" msprop:Generator_UserColumnName="idFaktury" msprop:Generator_ColumnVarNameInTable="columnidFaktury" msprop:Generator_ColumnPropNameInRow="idFaktury" msprop:Generator_ColumnPropNameInTable="idFakturyColumn" type="xs:int" /> 
     6457              <xs:element name="idZamowienia" msprop:Generator_UserColumnName="idZamowienia" msprop:Generator_ColumnVarNameInTable="columnidZamowienia" msprop:Generator_ColumnPropNameInRow="idZamowienia" msprop:Generator_ColumnPropNameInTable="idZamowieniaColumn" type="xs:int" minOccurs="0" /> 
     6458              <xs:element name="dataWplaty" msprop:Generator_UserColumnName="dataWplaty" msprop:Generator_ColumnVarNameInTable="columndataWplaty" msprop:Generator_ColumnPropNameInRow="dataWplaty" msprop:Generator_ColumnPropNameInTable="dataWplatyColumn" type="xs:dateTime" minOccurs="0" /> 
     6459              <xs:element name="rodzajPotwierdzenia" msprop:Generator_UserColumnName="rodzajPotwierdzenia" msprop:Generator_ColumnVarNameInTable="columnrodzajPotwierdzenia" msprop:Generator_ColumnPropNameInRow="rodzajPotwierdzenia" msprop:Generator_ColumnPropNameInTable="rodzajPotwierdzeniaColumn" minOccurs="0"> 
    64366460                <xs:simpleType> 
    64376461                  <xs:restriction base="xs:string"> 
     
    64406464                </xs:simpleType> 
    64416465              </xs:element> 
    6442               <xs:element name="symbolPotwierdzenia" msprop:Generator_UserColumnName="symbolPotwierdzenia" msprop:Generator_ColumnPropNameInRow="symbolPotwierdzenia" msprop:Generator_ColumnVarNameInTable="columnsymbolPotwierdzenia" msprop:Generator_ColumnPropNameInTable="symbolPotwierdzeniaColumn" minOccurs="0"> 
     6466              <xs:element name="symbolPotwierdzenia" msprop:Generator_UserColumnName="symbolPotwierdzenia" msprop:Generator_ColumnVarNameInTable="columnsymbolPotwierdzenia" msprop:Generator_ColumnPropNameInRow="symbolPotwierdzenia" msprop:Generator_ColumnPropNameInTable="symbolPotwierdzeniaColumn" minOccurs="0"> 
    64436467                <xs:simpleType> 
    64446468                  <xs:restriction base="xs:string"> 
     
    64476471                </xs:simpleType> 
    64486472              </xs:element> 
    6449               <xs:element name="brutto" msprop:Generator_UserColumnName="brutto" msprop:Generator_ColumnPropNameInRow="brutto" msprop:Generator_ColumnVarNameInTable="columnbrutto" msprop:Generator_ColumnPropNameInTable="bruttoColumn" type="xs:decimal" minOccurs="0" /> 
    6450               <xs:element name="waluta_brutto" msprop:Generator_UserColumnName="waluta_brutto" msprop:Generator_ColumnPropNameInRow="waluta_brutto" msprop:Generator_ColumnVarNameInTable="columnwaluta_brutto" msprop:Generator_ColumnPropNameInTable="waluta_bruttoColumn" type="xs:decimal" minOccurs="0" /> 
    6451               <xs:element name="waluta_miano" msprop:Generator_UserColumnName="waluta_miano" msprop:Generator_ColumnPropNameInRow="waluta_miano" msprop:Generator_ColumnVarNameInTable="columnwaluta_miano" msprop:Generator_ColumnPropNameInTable="waluta_mianoColumn" minOccurs="0"> 
     6473              <xs:element name="brutto" msprop:Generator_UserColumnName="brutto" msprop:Generator_ColumnVarNameInTable="columnbrutto" msprop:Generator_ColumnPropNameInRow="brutto" msprop:Generator_ColumnPropNameInTable="bruttoColumn" type="xs:decimal" minOccurs="0" /> 
     6474              <xs:element name="waluta_brutto" msprop:Generator_UserColumnName="waluta_brutto" msprop:Generator_ColumnVarNameInTable="columnwaluta_brutto" msprop:Generator_ColumnPropNameInRow="waluta_brutto" msprop:Generator_ColumnPropNameInTable="waluta_bruttoColumn" type="xs:decimal" minOccurs="0" /> 
     6475              <xs:element name="waluta_miano" msprop:Generator_UserColumnName="waluta_miano" msprop:Generator_ColumnVarNameInTable="columnwaluta_miano" msprop:Generator_ColumnPropNameInRow="waluta_miano" msprop:Generator_ColumnPropNameInTable="waluta_mianoColumn" minOccurs="0"> 
    64526476                <xs:simpleType> 
    64536477                  <xs:restriction base="xs:string"> 
     
    64626486          <xs:complexType> 
    64636487            <xs:sequence> 
    6464               <xs:element name="idProwizji" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="idProwizji" msprop:Generator_ColumnVarNameInTable="columnidProwizji" msprop:Generator_ColumnPropNameInRow="idProwizji" msprop:Generator_ColumnPropNameInTable="idProwizjiColumn" type="xs:int" /> 
    6465               <xs:element name="agencja" msprop:Generator_UserColumnName="agencja" msprop:Generator_ColumnVarNameInTable="columnagencja" msprop:Generator_ColumnPropNameInRow="agencja" msprop:Generator_ColumnPropNameInTable="agencjaColumn" minOccurs="0"> 
     6488              <xs:element name="idProwizji" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="idProwizji" msprop:Generator_ColumnPropNameInRow="idProwizji" msprop:Generator_ColumnVarNameInTable="columnidProwizji" msprop:Generator_ColumnPropNameInTable="idProwizjiColumn" type="xs:int" /> 
     6489              <xs:element name="agencja" msprop:Generator_UserColumnName="agencja" msprop:Generator_ColumnPropNameInRow="agencja" msprop:Generator_ColumnVarNameInTable="columnagencja" msprop:Generator_ColumnPropNameInTable="agencjaColumn" minOccurs="0"> 
    64666490                <xs:simpleType> 
    64676491                  <xs:restriction base="xs:string"> 
     
    64706494                </xs:simpleType> 
    64716495              </xs:element> 
    6472               <xs:element name="agent" msprop:Generator_UserColumnName="agent" msprop:Generator_ColumnVarNameInTable="columnagent" msprop:Generator_ColumnPropNameInRow="agent" msprop:Generator_ColumnPropNameInTable="agentColumn" minOccurs="0"> 
     6496              <xs:element name="agent" msprop:Generator_UserColumnName="agent" msprop:Generator_ColumnPropNameInRow="agent" msprop:Generator_ColumnVarNameInTable="columnagent" msprop:Generator_ColumnPropNameInTable="agentColumn" minOccurs="0"> 
    64736497                <xs:simpleType> 
    64746498                  <xs:restriction base="xs:string"> 
     
    64776501                </xs:simpleType> 
    64786502              </xs:element> 
    6479               <xs:element name="rok" msprop:Generator_UserColumnName="rok" msprop:Generator_ColumnVarNameInTable="columnrok" msprop:Generator_ColumnPropNameInRow="rok" msprop:Generator_ColumnPropNameInTable="rokColumn" type="xs:int" minOccurs="0" /> 
    6480               <xs:element name="ms" msprop:Generator_UserColumnName="ms" msprop:Generator_ColumnVarNameInTable="columnms" msprop:Generator_ColumnPropNameInRow="ms" msprop:Generator_ColumnPropNameInTable="msColumn" type="xs:int" minOccurs="0" /> 
    6481               <xs:element name="nrFaktury" msprop:Generator_UserColumnName="nrFaktury" msprop:Generator_ColumnVarNameInTable="columnnrFaktury" msprop:Generator_ColumnPropNameInRow="nrFaktury" msprop:Generator_ColumnPropNameInTable="nrFakturyColumn" minOccurs="0"> 
     6503              <xs:element name="rok" msprop:Generator_UserColumnName="rok" msprop:Generator_ColumnPropNameInRow="rok" msprop:Generator_ColumnVarNameInTable="columnrok" msprop:Generator_ColumnPropNameInTable="rokColumn" type="xs:int" minOccurs="0" /> 
     6504              <xs:element name="ms" msprop:Generator_UserColumnName="ms" msprop:Generator_ColumnPropNameInRow="ms" msprop:Generator_ColumnVarNameInTable="columnms" msprop:Generator_ColumnPropNameInTable="msColumn" type="xs:int" minOccurs="0" /> 
     6505              <xs:element name="nrFaktury" msprop:Generator_UserColumnName="nrFaktury" msprop:Generator_ColumnPropNameInRow="nrFaktury" msprop:Generator_ColumnVarNameInTable="columnnrFaktury" msprop:Generator_ColumnPropNameInTable="nrFakturyColumn" minOccurs="0"> 
    64826506                <xs:simpleType> 
    64836507                  <xs:restriction base="xs:string"> 
     
    64866510                </xs:simpleType> 
    64876511              </xs:element> 
    6488               <xs:element name="netto" msprop:Generator_UserColumnName="netto" msprop:Generator_ColumnVarNameInTable="columnnetto" msprop:Generator_ColumnPropNameInRow="netto" msprop:Generator_ColumnPropNameInTable="nettoColumn" type="xs:decimal" minOccurs="0" /> 
    6489               <xs:element name="nrFakturyKorygowanej" msprop:Generator_UserColumnName="nrFakturyKorygowanej" msprop:Generator_ColumnVarNameInTable="columnnrFakturyKorygowanej" msprop:Generator_ColumnPropNameInRow="nrFakturyKorygowanej" msprop:Generator_ColumnPropNameInTable="nrFakturyKorygowanejColumn" minOccurs="0"> 
     6512              <xs:element name="netto" msprop:Generator_UserColumnName="netto" msprop:Generator_ColumnPropNameInRow="netto" msprop:Generator_ColumnVarNameInTable="columnnetto" msprop:Generator_ColumnPropNameInTable="nettoColumn" type="xs:decimal" minOccurs="0" /> 
     6513              <xs:element name="nrFakturyKorygowanej" msprop:Generator_UserColumnName="nrFakturyKorygowanej" msprop:Generator_ColumnPropNameInRow="nrFakturyKorygowanej" msprop:Generator_ColumnVarNameInTable="columnnrFakturyKorygowanej" msprop:Generator_ColumnPropNameInTable="nrFakturyKorygowanejColumn" minOccurs="0"> 
    64906514                <xs:simpleType> 
    64916515                  <xs:restriction base="xs:string"> 
     
    64946518                </xs:simpleType> 
    64956519              </xs:element> 
    6496               <xs:element name="procentProwizji" msprop:Generator_UserColumnName="procentProwizji" msprop:Generator_ColumnVarNameInTable="columnprocentProwizji" msprop:Generator_ColumnPropNameInRow="procentProwizji" msprop:Generator_ColumnPropNameInTable="procentProwizjiColumn" type="xs:double" minOccurs="0" /> 
    6497               <xs:element name="ZP" msprop:Generator_UserColumnName="ZP" msprop:Generator_ColumnVarNameInTable="columnZP" msprop:Generator_ColumnPropNameInRow="ZP" msprop:Generator_ColumnPropNameInTable="ZPColumn" type="xs:boolean" minOccurs="0" /> 
    6498               <xs:element name="kwotaProwizji" msprop:Generator_UserColumnName="kwotaProwizji" msprop:Generator_ColumnVarNameInTable="columnkwotaProwizji" msprop:Generator_ColumnPropNameInRow="kwotaProwizji" msprop:Generator_ColumnPropNameInTable="kwotaProwizjiColumn" type="xs:decimal" minOccurs="0" /> 
     6520              <xs:element name="procentProwizji" msprop:Generator_UserColumnName="procentProwizji" msprop:Generator_ColumnPropNameInRow="procentProwizji" msprop:Generator_ColumnVarNameInTable="columnprocentProwizji" msprop:Generator_ColumnPropNameInTable="procentProwizjiColumn" type="xs:double" minOccurs="0" /> 
     6521              <xs:element name="ZP" msprop:Generator_UserColumnName="ZP" msprop:Generator_ColumnPropNameInRow="ZP" msprop:Generator_ColumnVarNameInTable="columnZP" msprop:Generator_ColumnPropNameInTable="ZPColumn" type="xs:boolean" minOccurs="0" /> 
     6522              <xs:element name="kwotaProwizji" msprop:Generator_UserColumnName="kwotaProwizji" msprop:Generator_ColumnPropNameInRow="kwotaProwizji" msprop:Generator_ColumnVarNameInTable="columnkwotaProwizji" msprop:Generator_ColumnPropNameInTable="kwotaProwizjiColumn" type="xs:decimal" minOccurs="0" /> 
    64996523            </xs:sequence> 
    65006524          </xs:complexType> 
     
    65036527          <xs:complexType> 
    65046528            <xs:sequence> 
    6505               <xs:element name="ID_FAKTURY" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ID_FAKTURY" msprop:Generator_ColumnVarNameInTable="columnID_FAKTURY" msprop:Generator_ColumnPropNameInRow="ID_FAKTURY" msprop:Generator_ColumnPropNameInTable="ID_FAKTURYColumn" type="xs:int" /> 
    6506               <xs:element name="CustomerId" msprop:Generator_UserColumnName="CustomerId" msprop:Generator_ColumnVarNameInTable="columnCustomerId" msprop:Generator_ColumnPropNameInRow="CustomerId" msprop:Generator_ColumnPropNameInTable="CustomerIdColumn" type="xs:int" minOccurs="0" /> 
    6507               <xs:element name="Id_Agencji" msprop:Generator_UserColumnName="Id_Agencji" msprop:Generator_ColumnVarNameInTable="columnId_Agencji" msprop:Generator_ColumnPropNameInRow="Id_Agencji" msprop:Generator_ColumnPropNameInTable="Id_AgencjiColumn" type="xs:int" minOccurs="0" /> 
    6508               <xs:element name="kodKlienta" msprop:Generator_UserColumnName="kodKlienta" msprop:Generator_ColumnVarNameInTable="columnkodKlienta" msprop:Generator_ColumnPropNameInRow="kodKlienta" msprop:Generator_ColumnPropNameInTable="kodKlientaColumn" minOccurs="0"> 
     6529              <xs:element name="ID_FAKTURY" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_UserColumnName="ID_FAKTURY" msprop:Generator_ColumnPropNameInRow="ID_FAKTURY" msprop:Generator_ColumnVarNameInTable="columnID_FAKTURY" msprop:Generator_ColumnPropNameInTable="ID_FAKTURYColumn" type="xs:int" /> 
     6530              <xs:element name="CustomerId" msprop:Generator_UserColumnName="CustomerId" msprop:Generator_ColumnPropNameInRow="CustomerId" msprop:Generator_ColumnVarNameInTable="columnCustomerId" msprop:Generator_ColumnPropNameInTable="CustomerIdColumn" type="xs:int" minOccurs="0" /> 
     6531              <xs:element name="Id_Agencji" msprop:Generator_UserColumnName="Id_Agencji" msprop:Generator_ColumnPropNameInRow="Id_Agencji" msprop:Generator_ColumnVarNameInTable="columnId_Agencji" msprop:Generator_ColumnPropNameInTable="Id_AgencjiColumn" type="xs:int" minOccurs="0" /> 
     6532              <xs:element name="kodKlienta" msprop:Generator_UserColumnName="kodKlienta" msprop:Generator_ColumnPropNameInRow="kodKlienta" msprop:Generator_ColumnVarNameInTable="columnkodKlienta" msprop:Generator_ColumnPropNameInTable="kodKlientaColumn" minOccurs="0"> 
    65096533                <xs:simpleType> 
    65106534                  <xs:restriction base="xs:string"> 
     
    65136537                </xs:simpleType> 
    65146538              </xs:element> 
    6515               <xs:element name="NUMER" msprop:Generator_UserColumnName="NUMER" msprop:Generator_ColumnVarNameInTable="columnNUMER" msprop:Generator_ColumnPropNameInRow="NUMER" msprop:Generator_ColumnPropNameInTable="NUMERColumn" type="xs:int" minOccurs="0" /> 
    6516               <xs:element name="NUMER_ROZ" msprop:Generator_UserColumnName="NUMER_ROZ" msprop:Generator_ColumnVarNameInTable="columnNUMER_ROZ" msprop:Generator_ColumnPropNameInRow="NUMER_ROZ" msprop:Generator_ColumnPropNameInTable="NUMER_ROZColumn" minOccurs="0"> 
     6539              <xs:element name="NUMER" msprop:Generator_UserColumnName="NUMER" msprop:Generator_ColumnPropNameInRow="NUMER" msprop:Generator_ColumnVarNameInTable="columnNUMER" msprop:Generator_ColumnPropNameInTable="NUMERColumn" type="xs:int" minOccurs="0" /> 
     6540              <xs:element name="NUMER_ROZ" msprop:Generator_UserColumnName="NUMER_ROZ" msprop:Generator_ColumnPropNameInRow="NUMER_ROZ" msprop:Generator_ColumnVarNameInTable="columnNUMER_ROZ" msprop:Generator_ColumnPropNameInTable="NUMER_ROZColumn" minOccurs="0"> 
    65176541                <xs:simpleType> 
    65186542                  <xs:restriction base="xs:string"> 
     
    65216545                </xs:simpleType> 
    65226546              </xs:element> 
    6523               <xs:element name="NUMER_ROK" msprop:Generator_UserColumnName="NUMER_ROK" msprop:Generator_ColumnVarNameInTable="columnNUMER_ROK" msprop:Generator_ColumnPropNameInRow="NUMER_ROK" msprop:Generator_ColumnPropNameInTable="NUMER_ROKColumn" type="xs:int" minOccurs="0" /> 
    6524               <xs:element name="netto" msprop:Generator_UserColumnName="netto" msprop:Generator_ColumnVarNameInTable="columnnetto" msprop:Generator_ColumnPropNameInRow="netto" msprop:Generator_ColumnPropNameInTable="nettoColumn" type="xs:decimal" minOccurs="0" /> 
    6525               <xs:element name="S_VAT" msprop:Generator_UserColumnName="S_VAT" msprop:Generator_ColumnVarNameInTable="columnS_VAT" msprop:Generator_ColumnPropNameInRow="S_VAT" msprop:Generator_ColumnPropNameInTable="S_VATColumn" type="xs:double" minOccurs="0" /> 
    6526               <xs:element name="vat" msprop:Generator_UserColumnName="vat" msprop:Generator_ColumnVarNameInTable="columnvat" msprop:Generator_ColumnPropNameInRow="vat" msprop:Generator_ColumnPropNameInTable="vatColumn" type="xs:decimal" minOccurs="0" /> 
    6527               <xs:element name="brutto" msprop:Generator_UserColumnName="brutto" msprop:Generator_ColumnVarNameInTable="columnbrutto" msprop:Generator_ColumnPropNameInRow="brutto" msprop:Generator_ColumnPropNameInTable="bruttoColumn" type="xs:decimal" minOccurs="0" /> 
    6528               <xs:element name="suma_zaplat" msprop:Generator_UserColumnName="suma_zaplat" msprop:Generator_ColumnVarNameInTable="columnsuma_zaplat" msprop:Generator_ColumnPropNameInRow="suma_zaplat" msprop:Generator_ColumnPropNameInTable="suma_zaplatColumn" type="xs:decimal" minOccurs="0" /> 
    6529               <xs:element name="DATA_WYSTAWIENIA" msprop:Generator_UserColumnName="DATA_WYSTAWIENIA" msprop:Generator_ColumnVarNameInTable="columnDATA_WYSTAWIENIA" msprop:Generator_ColumnPropNameInRow="DATA_WYSTAWIENIA" msprop:Generator_ColumnPropNameInTable="DATA_WYSTAWIENIAColumn" type="xs:dateTime" minOccurs="0" /> 
    6530               <xs:element name="DATA_SPRZEDAZY" msprop:Generator_UserColumnName="DATA_SPRZEDAZY" msprop:Generator_ColumnVarNameInTable="columnDATA_SPRZEDAZY" msprop:Generator_ColumnPropNameInRow="DATA_SPRZEDAZY" msprop:Generator_ColumnPropNameInTable="DATA_SPRZEDAZYColumn" type="xs:dateTime" minOccurs="0" /> 
    6531               <xs:element name="TERMIN_ZAPLATY" msprop:Generator_UserColumnName="TERMIN_ZAPLATY" msprop:Generator_ColumnVarNameInTable="columnTERMIN_ZAPLATY" msprop:Generator_ColumnPropNameInRow="TERMIN_ZAPLATY" msprop:Generator_ColumnPropNameInTable="TERMIN_ZAPLATYColumn" type="xs:dateTime" minOccurs="0" /> 
    6532               <xs:element name="zaplata_data" msprop:Generator_UserColumnName="zaplata_data" msprop:Generator_ColumnVarNameInTable="columnzaplata_data" msprop:Generator_ColumnPropNameInRow="zaplata_data" msprop:Generator_ColumnPropNameInTable="zaplata_dataColumn" type="xs:dateTime" minOccurs="0" /> 
    6533               <xs:element name="zaplata_opis" msprop:Generator_UserColumnName="zaplata_opis" msprop:Generator_ColumnVarNameInTable="columnzaplata_opis" msprop:Generator_ColumnPropNameInRow="zaplata_opis" msprop:Generator_ColumnPropNameInTable="zaplata_opisColumn" minOccurs="0"> 
    6534                 <xs:simpleType> 
    6535                   <xs:restriction base="xs:string"> 
    6536                     <xs:maxLength value="50" /> 
    6537                   </xs:restriction> 
    6538                 </xs:simpleType> 
    6539               </xs:element> 
    6540               <xs:element name="idZamowienia" msprop:Generator_UserColumnName="idZamowienia" msprop:Generator_ColumnVarNameInTable="columnidZamowienia" msprop:Generator_ColumnPropNameInRow="idZamowienia" msprop:Generator_ColumnPropNameInTable="idZamowieniaColumn" type="xs:int" minOccurs="0" /> 
    6541               <xs:element name="idFakturyKorekta" msprop:Generator_UserColumnName="idFakturyKorekta" msprop:Generator_ColumnVarNameInTable="columnidFakturyKorekta" msprop:Generator_ColumnPropNameInRow="idFakturyKorekta" msprop:Generator_ColumnPropNameInTable="idFakturyKorektaColumn" type="xs:int" minOccurs="0" /> 
    6542               <xs:element name="NR_FAKTURY_KOREKTY" msdata:ReadOnly="true" msprop:Generator_UserColumnName="NR_FAKTURY_KOREKTY" msprop:Generator_ColumnVarNameInTable="columnNR_FAKTURY_KOREKTY" msprop:Generator_ColumnPropNameInRow="NR_FAKTURY_KOREKTY" msprop:Generator_ColumnPropNameInTable="NR_FAKTURY_KOREKTYColumn" minOccurs="0"> 
     6547              <xs:element name="NUMER_ROK" msprop:Generator_UserColumnName="NUMER_ROK" msprop:Generator_ColumnPropNameInRow="NUMER_ROK" msprop:Generator_ColumnVarNameInTable="columnNUMER_ROK" msprop:Generator_ColumnPropNameInTable="NUMER_ROKColumn" type="xs:int" minOccurs="0" /> 
     6548              <xs:element name="netto" msprop:Generator_UserColumnName="netto" msprop:Generator_ColumnPropNameInRow="netto" msprop:Generator_ColumnVarNameInTable="columnnetto" msprop:Generator_ColumnPropNameInTable="nettoColumn" type="xs:decimal" minOccurs="0" /> 
     6549              <xs:element name="S_VAT" msprop:Generator_UserColumnName="S_VAT" msprop:Generator_ColumnPropNameInRow="S_VAT" msprop:Generator_ColumnVarNameInTable="columnS_VAT" msprop:Generator_ColumnPropNameInTable="S_VATColumn" type="xs:double" minOccurs="0" /> 
     6550              <xs:element name="vat" msprop:Generator_UserColumnName="vat" msprop:Generator_ColumnPropNameInRow="vat" msprop:Generator_ColumnVarNameInTable="columnvat" msprop:Generator_ColumnPropNameInTable="vatColumn" type="xs:decimal" minOccurs="0" /> 
     6551              <xs:element name="brutto" msprop:Generator_UserColumnName="brutto" msprop:Generator_ColumnPropNameInRow="brutto" msprop:Generator_ColumnVarNameInTable="columnbrutto" msprop:Generator_ColumnPropNameInTable="bruttoColumn" type="xs:decimal" minOccurs="0" /> 
     6552              <xs:element name="suma_zaplat" msprop:Generator_UserColumnName="suma_zaplat" msprop:Generator_ColumnPropNameInRow="suma_zaplat" msprop:Generator_ColumnVarNameInTable="columnsuma_zaplat" msprop:Generator_ColumnPropNameInTable="suma_zaplatColumn" type="xs:decimal" minOccurs="0" /> 
     6553              <xs:element name="DATA_WYSTAWIENIA" msprop:Generator_UserColumnName="DATA_WYSTAWIENIA" msprop:Generator_ColumnPropNameInRow="DATA_WYSTAWIENIA" msprop:Generator_ColumnVarNameInTable="columnDATA_WYSTAWIENIA" msprop:Generator_ColumnPropNameInTable="DATA_WYSTAWIENIAColumn" type="xs:dateTime" minOccurs="0" /> 
     6554              <xs:element name="DATA_SPRZEDAZY" msprop:Generator_UserColumnName="DATA_SPRZEDAZY" msprop:Generator_ColumnPropNameInRow="DATA_SPRZEDAZY" msprop:Generator_ColumnVarNameInTable="columnDATA_SPRZEDAZY" msprop:Generator_ColumnPropNameInTable="DATA_SPRZEDAZYColumn" type="xs:dateTime" minOccurs="0" /> 
     6555              <xs:element name="TERMIN_ZAPLATY" msprop:Generator_UserColumnName="TERMIN_ZAPLATY" msprop:Generator_ColumnPropNameInRow="TERMIN_ZAPLATY" msprop:Generator_ColumnVarNameInTable="columnTERMIN_ZAPLATY" msprop:Generator_ColumnPropNameInTable="TERMIN_ZAPLATYColumn" type="xs:dateTime" minOccurs="0" /> 
     6556              <xs:element name="zaplata_data" msprop:Generator_UserColumnName="zaplata_data" msprop:Generator_ColumnPropNameInRow="zaplata_data" msprop:Generator_ColumnVarNameInTable="columnzaplata_data" msprop:Generator_ColumnPropNameInTable="zaplata_dataColumn" type="xs:dateTime" minOccurs="0" /> 
     6557              <xs:element name="zaplata_opis" msprop:Generator_UserColumnName="zaplata_opis" msprop:Generator_ColumnPropNameInRow="zaplata_opis" msprop:Generator_ColumnVarNameInTable="columnzaplata_opis" msprop:Generator_ColumnPropNameInTable="zaplata_opisColumn" minOccurs="0"> 
     6558                <xs:simpleType> 
     6559                  <xs:restriction base="xs:string"> 
     6560                    <xs:maxLength value="50" /> 
     6561                  </xs:restriction> 
     6562                </xs:simpleType> 
     6563              </xs:element> 
     6564              <xs:element name="idZamowienia" msprop:Generator_UserColumnName="idZamowienia" msprop:Generator_ColumnPropNameInRow="idZamowienia" msprop:Generator_ColumnVarNameInTable="columnidZamowienia" msprop:Generator_ColumnPropNameInTable="idZamowieniaColumn" type="xs:int" minOccurs="0" /> 
     6565              <xs:element name="idFakturyKorekta" msprop:Generator_UserColumnName="idFakturyKorekta" msprop:Generator_ColumnPropNameInRow="idFakturyKorekta" msprop:Generator_ColumnVarNameInTable="columnidFakturyKorekta" msprop:Generator_ColumnPropNameInTable="idFakturyKorektaColumn" type="xs:int" minOccurs="0" /> 
     6566              <xs:element name="NR_FAKTURY_KOREKTY" msdata:ReadOnly="true" msprop:Generator_UserColumnName="NR_FAKTURY_KOREKTY" msprop:Generator_ColumnPropNameInRow="NR_FAKTURY_KOREKTY" msprop:Generator_ColumnVarNameInTable="columnNR_FAKTURY_KOREKTY" msprop:Generator_ColumnPropNameInTable="NR_FAKTURY_KOREKTYColumn" minOccurs="0"> 
    65436567                <xs:simpleType> 
    65446568                  <xs:restriction base="xs:string"> 
     
    65476571                </xs:simpleType> 
    65486572              </xs:element> 
    6549               <xs:element name="NUMER_F" msprop:Generator_UserColumnName="NUMER_F" msprop:Generator_ColumnVarNameInTable="columnNUMER_F" msprop:Generator_ColumnPropNameInRow="NUMER_F" msprop:Generator_ColumnPropNameInTable="NUMER_FColumn" type="xs:int" minOccurs="0" /> 
    6550               <xs:element name="NUMER_ROZ_F" msprop:Generator_UserColumnName="NUMER_ROZ_F" msprop:Generator_ColumnVarNameInTable="columnNUMER_ROZ_F" msprop:Generator_ColumnPropNameInRow="NUMER_ROZ_F" msprop:Generator_ColumnPropNameInTable="NUMER_ROZ_FColumn" minOccurs="0"> 
     6573              <xs:element name="NUMER_F" msprop:Generator_UserColumnName="NUMER_F" msprop:Generator_ColumnPropNameInRow="NUMER_F" msprop:Generator_ColumnVarNameInTable="columnNUMER_F" msprop:Generator_ColumnPropNameInTable="NUMER_FColumn" type="xs:int" minOccurs="0" /> 
     6574              <xs:element name="NUMER_ROZ_F" msprop:Generator_UserColumnName="NUMER_ROZ_F" msprop:Generator_ColumnPropNameInRow="NUMER_ROZ_F" msprop:Generator_ColumnVarNameInTable="columnNUMER_ROZ_F" msprop:Generator_ColumnPropNameInTable="NUMER_ROZ_FColumn" minOccurs="0"> 
    65516575                <xs:simpleType> 
    65526576                  <xs:restriction base="xs:string"> 
     
    65556579                </xs:simpleType> 
    65566580              </xs:element> 
    6557               <xs:element name="NUMER_ROK_F" msprop:Generator_UserColumnName="NUMER_ROK_F" msprop:Generator_ColumnVarNameInTable="columnNUMER_ROK_F" msprop:Generator_ColumnPropNameInRow="NUMER_ROK_F" msprop:Generator_ColumnPropNameInTable="NUMER_ROK_FColumn" type="xs:int" minOccurs="0" /> 
    6558               <xs:element name="netto_F" msprop:Generator_UserColumnName="netto_F" msprop:Generator_ColumnVarNameInTable="columnnetto_F" msprop:Generator_ColumnPropNameInRow="netto_F" msprop:Generator_ColumnPropNameInTable="netto_FColumn" type="xs:decimal" minOccurs="0" /> 
    6559               <xs:element name="brutto_F" msprop:Generator_UserColumnName="brutto_F" msprop:Generator_ColumnVarNameInTable="columnbrutto_F" msprop:Generator_ColumnPropNameInRow="brutto_F" msprop:Generator_ColumnPropNameInTable="brutto_FColumn" type="xs:decimal" minOccurs="0" /> 
    6560               <xs:element name="vat_F" msprop:Generator_UserColumnName="vat_F" msprop:Generator_ColumnVarNameInTable="columnvat_F" msprop:Generator_ColumnPropNameInRow="vat_F" msprop:Generator_ColumnPropNameInTable="vat_FColumn" type="xs:decimal" minOccurs="0" /> 
    6561               <xs:element name="suma_zapłat_F" msprop:Generator_UserColumnName="suma_zapłat_F" msprop:Generator_ColumnVarNameInTable="columnsuma_zapłat_F" msprop:Generator_ColumnPropNameInRow="suma_zapłat_F" msprop:Generator_ColumnPropNameInTable="suma_zapłat_FColumn" type="xs:decimal" minOccurs="0" /> 
    6562               <xs:element name="data_wystawienia_F" msprop:Generator_UserColumnName="data_wystawienia_F" msprop:Generator_ColumnVarNameInTable="columndata_wystawienia_F" msprop:Generator_ColumnPropNameInRow="data_wystawienia_F" msprop:Generator_ColumnPropNameInTable="data_wystawienia_FColumn" type="xs:dateTime" minOccurs="0" /> 
    6563               <xs:element name="NR_FAKTURY" msdata:ReadOnly="true" msprop:Generator_UserColumnName="NR_FAKTURY" msprop:Generator_ColumnVarNameInTable="columnNR_FAKTURY" msprop:Generator_ColumnPropNameInRow="NR_FAKTURY" msprop:Generator_ColumnPropNameInTable="NR_FAKTURYColumn" minOccurs="0"> 
     6581              <xs:element name="NUMER_ROK_F" msprop:Generator_UserColumnName="NUMER_ROK_F" msprop:Generator_ColumnPropNameInRow="NUMER_ROK_F" msprop:Generator_ColumnVarNameInTable="columnNUMER_ROK_F" msprop:Generator_ColumnPropNameInTable="NUMER_ROK_FColumn" type="xs:int" minOccurs="0" /> 
     6582              <xs:element name="netto_F" msprop:Generator_UserColumnName="netto_F" msprop:Generator_ColumnPropNameInRow="netto_F" msprop:Generator_ColumnVarNameInTable="columnnetto_F" msprop:Generator_ColumnPropNameInTable="netto_FColumn" type="xs:decimal" minOccurs="0" /> 
     6583              <xs:element name="brutto_F" msprop:Generator_UserColumnName="brutto_F" msprop:Generator_ColumnPropNameInRow="brutto_F" msprop:Generator_ColumnVarNameInTable="columnbrutto_F" msprop:Generator_ColumnPropNameInTable="brutto_FColumn" type="xs:decimal" minOccurs="0" /> 
     6584              <xs:element name="vat_F" msprop:Generator_UserColumnName="vat_F" msprop:Generator_ColumnPropNameInRow="vat_F" msprop:Generator_ColumnVarNameInTable="columnvat_F" msprop:Generator_ColumnPropNameInTable="vat_FColumn" type="xs:decimal" minOccurs="0" /> 
     6585              <xs:element name="suma_zapłat_F" msprop:Generator_UserColumnName="suma_zapłat_F" msprop:Generator_ColumnPropNameInRow="suma_zapłat_F" msprop:Generator_ColumnVarNameInTable="columnsuma_zapłat_F" msprop:Generator_ColumnPropNameInTable="suma_zapłat_FColumn" type="xs:decimal" minOccurs="0" /> 
     6586              <xs:element name="data_wystawienia_F" msprop:Generator_UserColumnName="data_wystawienia_F" msprop:Generator_ColumnPropNameInRow="data_wystawienia_F" msprop:Generator_ColumnVarNameInTable="columndata_wystawienia_F" msprop:Generator_ColumnPropNameInTable="data_wystawienia_FColumn" type="xs:dateTime" minOccurs="0" /> 
     6587              <xs:element name="NR_FAKTURY" msdata:ReadOnly="true" msprop:Generator_UserColumnName="NR_FAKTURY" msprop:Generator_ColumnPropNameInRow="NR_FAKTURY" msprop:Generator_ColumnVarNameInTable="columnNR_FAKTURY" msprop:Generator_ColumnPropNameInTable="NR_FAKTURYColumn" minOccurs="0"> 
    65646588                <xs:simpleType> 
    65656589                  <xs:restriction base="xs:string"> 
     
    65686592                </xs:simpleType> 
    65696593              </xs:element> 
    6570               <xs:element name="roznica_netto" msdata:ReadOnly="true" msprop:Generator_UserColumnName="roznica_netto" msprop:Generator_ColumnVarNameInTable="columnroznica_netto" msprop:Generator_ColumnPropNameInRow="roznica_netto" msprop:Generator_ColumnPropNameInTable="roznica_nettoColumn" type="xs:decimal" minOccurs="0" /> 
    6571               <xs:element name="roznica_vat" msdata:ReadOnly="true" msprop:Generator_UserColumnName="roznica_vat" msprop:Generator_ColumnVarNameInTable="columnroznica_vat" msprop:Generator_ColumnPropNameInRow="roznica_vat" msprop:Generator_ColumnPropNameInTable="roznica_vatColumn" type="xs:decimal" minOccurs="0" /> 
    6572               <xs:element name="roznica_brutto" msdata:ReadOnly="true" msprop:Generator_UserColumnName="roznica_brutto" msprop:Generator_ColumnVarNameInTable="columnroznica_brutto" msprop:Generator_ColumnPropNameInRow="roznica_brutto" msprop:Generator_ColumnPropNameInTable="roznica_bruttoColumn" type="xs:decimal" minOccurs="0" /> 
    6573               <xs:element name="agencja" msprop:Generator_UserColumnName="agencja" msprop:Generator_ColumnVarNameInTable="columnagencja" msprop:Generator_ColumnPropNameInRow="agencja" msprop:Generator_ColumnPropNameInTable="agencjaColumn" minOccurs="0"> 
    6574                 <xs:simpleType> 
    6575                   <xs:restriction base="xs:string"> 
    6576                     <xs:maxLength value="50" /> 
    6577                   </xs:restriction> 
    6578                 </xs:simpleType> 
    6579               </xs:element> 
    6580               <xs:element name="agent" msprop:Generator_UserColumnName="agent" msprop:Generator_ColumnVarNameInTable="columnagent" msprop:Generator_ColumnPropNameInRow="agent" msprop:Generator_ColumnPropNameInTable="agentColumn" minOccurs="0"> 
    6581                 <xs:simpleType> 
    6582                   <xs:restriction base="xs:string"> 
    6583                     <xs:maxLength value="50" /> 
    6584                   </xs:restriction> 
    6585                 </xs:simpleType> 
    6586               </xs:element> 
    6587               <xs:element name="waluta_roznica_brutto" msdata:ReadOnly="true" msprop:Generator_UserColumnName="waluta_roznica_brutto" msprop:Generator_ColumnVarNameInTable="columnwaluta_roznica_brutto" msprop:Generator_ColumnPropNameInRow="waluta_roznica_brutto" msprop:Generator_ColumnPropNameInTable="waluta_roznica_bruttoColumn" type="xs:double" minOccurs="0" /> 
    6588               <xs:element name="waluta_miano" msprop:Generator_UserColumnName="waluta_miano" msprop:Generator_ColumnVarNameInTable="columnwaluta_miano" msprop:Generator_ColumnPropNameInRow="waluta_miano" msprop:Generator_ColumnPropNameInTable="waluta_mianoColumn" minOccurs="0"> 
     6594              <xs:element name="roznica_netto" msdata:ReadOnly="true" msprop:Generator_UserColumnName="roznica_netto" msprop:Generator_ColumnPropNameInRow="roznica_netto" msprop:Generator_ColumnVarNameInTable="columnroznica_netto" msprop:Generator_ColumnPropNameInTable="roznica_nettoColumn" type="xs:decimal" minOccurs="0" /> 
     6595              <xs:element name="roznica_vat" msdata:ReadOnly="true" msprop:Generator_UserColumnName="roznica_vat" msprop:Generator_ColumnPropNameInRow="roznica_vat" msprop:Generator_ColumnVarNameInTable="columnroznica_vat" msprop:Generator_ColumnPropNameInTable="roznica_vatColumn" type="xs:decimal" minOccurs="0" /> 
     6596              <xs:element name="roznica_brutto" msdata:ReadOnly="true" msprop:Generator_UserColumnName="roznica_brutto" msprop:Generator_ColumnPropNameInRow="roznica_brutto" msprop:Generator_ColumnVarNameInTable="columnroznica_brutto" msprop:Generator_ColumnPropNameInTable="roznica_bruttoColumn" type="xs:decimal" minOccurs="0" /> 
     6597              <xs:element name="agencja" msprop:Generator_UserColumnName="agencja" msprop:Generator_ColumnPropNameInRow="agencja" msprop:Generator_ColumnVarNameInTable="columnagencja" msprop:Generator_ColumnPropNameInTable="agencjaColumn" minOccurs="0"> 
     6598                <xs:simpleType> 
     6599                  <xs:restriction base="xs:string"> 
     6600                    <xs:maxLength value="50" /> 
     6601                  </xs:restriction> 
     6602                </xs:simpleType> 
     6603              </xs:element> 
     6604              <xs:element name="agent" msprop:Generator_UserColumnName="agent" msprop:Generator_ColumnPropNameInRow="agent" msprop:Generator_ColumnVarNameInTable="columnagent" msprop:Generator_ColumnPropNameInTable="agentColumn" minOccurs="0"> 
     6605                <xs:simpleType> 
     6606                  <xs:restriction base="xs:string"> 
     6607                    <xs:maxLength value="50" /> 
     6608                  </xs:restriction> 
     6609                </xs:simpleType> 
     6610              </xs:element> 
     6611              <xs:element name="waluta_roznica_brutto" msdata:ReadOnly="true" msprop:Generator_UserColumnName="waluta_roznica_brutto" msprop:Generator_ColumnPropNameInRow="waluta_roznica_brutto" msprop:Generator_ColumnVarNameInTable="columnwaluta_roznica_brutto" msprop:Generator_ColumnPropNameInTable="waluta_roznica_bruttoColumn" type="xs:double" minOccurs="0" /> 
     6612              <xs:element name="waluta_miano" msprop:Generator_UserColumnName="waluta_miano" msprop:Generator_ColumnPropNameInRow="waluta_miano" msprop:Generator_ColumnVarNameInTable="columnwaluta_miano" msprop:Generator_ColumnPropNameInTable="waluta_mianoColumn" minOccurs="0"> 
    65896613                <xs:simpleType> 
    65906614                  <xs:restriction base="xs:string"> 
     
    65936617                </xs:simpleType> 
    65946618              </xs:element> 
    6595               <xs:element name="liczbaReklam" msprop:Generator_UserColumnName="liczbaReklam" msprop:Generator_ColumnVarNameInTable="columnliczbaReklam" msprop:Generator_ColumnPropNameInRow="liczbaReklam" msprop:Generator_ColumnPropNameInTable="liczbaReklamColumn" type="xs:int" minOccurs="0" /> 
    6596               <xs:element name="KOREKTA" msprop:Generator_UserColumnName="KOREKTA" msprop:Generator_ColumnVarNameInTable="columnKOREKTA" msprop:Generator_ColumnPropNameInRow="KOREKTA" msprop:Generator_ColumnPropNameInTable="KOREKTAColumn" type="xs:boolean" /> 
    6597               <xs:element name="waluta_brutto" msprop:Generator_UserColumnName="waluta_brutto" msprop:Generator_ColumnVarNameInTable="columnwaluta_brutto" msprop:Generator_ColumnPropNameInRow="waluta_brutto" msprop:Generator_ColumnPropNameInTable="waluta_bruttoColumn" type="xs:double" minOccurs="0" /> 
    6598               <xs:element name="idFakturyVAT" msprop:Generator_UserColumnName="idFakturyVAT" msprop:Generator_ColumnVarNameInTable="columnidFakturyVAT" msprop:Generator_ColumnPropNameInRow="idFakturyVAT" msprop:Generator_ColumnPropNameInTable="idFakturyVATColumn" type="xs:int" minOccurs="0" /> 
    6599               <xs:element name="ID_FK_KOR" msprop:Generator_UserColumnName="ID_FK_KOR" msprop:Generator_ColumnVarNameInTable="columnID_FK_KOR" msprop:Generator_ColumnPropNameInRow="ID_FK_KOR" msprop:Generator_ColumnPropNameInTable="ID_FK_KORColumn" type="xs:int" minOccurs="0" /> 
    6600               <xs:element name="NR_FAKTURY_KORYGOWANEJ_1" msdata:ReadOnly="true" msprop:Generator_UserColumnName="NR_FAKTURY_KORYGOWANEJ_1" msprop:Generator_ColumnVarNameInTable="columnNR_FAKTURY_KORYGOWANEJ_1" msprop:Generator_ColumnPropNameInRow="NR_FAKTURY_KORYGOWANEJ_1" msprop:Generator_ColumnPropNameInTable="NR_FAKTURY_KORYGOWANEJ_1Column" minOccurs="0"> 
     6619              <xs:element name="liczbaReklam" msprop:Generator_UserColumnName="liczbaReklam" msprop:Generator_ColumnPropNameInRow="liczbaReklam" msprop:Generator_ColumnVarNameInTable="columnliczbaReklam" msprop:Generator_ColumnPropNameInTable="liczbaReklamColumn" type="xs:int" minOccurs="0" /> 
     6620              <xs:element name="KOREKTA" msprop:Generator_UserColumnName="KOREKTA" msprop:Generator_ColumnPropNameInRow="KOREKTA" msprop:Generator_ColumnVarNameInTable="columnKOREKTA" msprop:Generator_ColumnPropNameInTable="KOREKTAColumn" type="xs:boolean" /> 
     6621              <xs:element name="waluta_brutto" msprop:Generator_UserColumnName="waluta_brutto" msprop:Generator_ColumnPropNameInRow="waluta_brutto" msprop:Generator_ColumnVarNameInTable="columnwaluta_brutto" msprop:Generator_ColumnPropNameInTable="waluta_bruttoColumn" type="xs:double" minOccurs="0" /> 
     6622              <xs:element name="idFakturyVAT" msprop:Generator_UserColumnName="idFakturyVAT" msprop:Generator_ColumnPropNameInRow="idFakturyVAT" msprop:Generator_ColumnVarNameInTable="columnidFakturyVAT" msprop:Generator_ColumnPropNameInTable="idFakturyVATColumn" type="xs:int" minOccurs="0" /> 
     6623              <xs:element name="ID_FK_KOR" msprop:Generator_UserColumnName="ID_FK_KOR" msprop:Generator_ColumnPropNameInRow="ID_FK_KOR" msprop:Generator_ColumnVarNameInTable="columnID_FK_KOR" msprop:Generator_ColumnPropNameInTable="ID_FK_KORColumn" type="xs:int" minOccurs="0" /> 
     6624              <xs:element name="NR_FAKTURY_KORYGOWANEJ_1" msdata:ReadOnly="true" msprop:Generator_UserColumnName="NR_FAKTURY_KORYGOWANEJ_1" msprop:Generator_ColumnPropNameInRow="NR_FAKTURY_KORYGOWANEJ_1" msprop:Generator_ColumnVarNameInTable="columnNR_FAKTURY_KORYGOWANEJ_1" msprop:Generator_ColumnPropNameInTable="NR_FAKTURY_KORYGOWANEJ_1Column" minOccurs="0"> 
    66016625                <xs:simpleType> 
    66026626                  <xs:restriction base="xs:string"> 
     
    66056629                </xs:simpleType> 
    66066630              </xs:element> 
    6607               <xs:element name="nr_korygowanej" msprop:Generator_UserColumnName="nr_korygowanej" msprop:Generator_ColumnPropNameInRow="nr_korygowanej" msprop:Generator_ColumnVarNameInTable="columnnr_korygowanej" msprop:Generator_ColumnPropNameInTable="nr_korygowanejColumn" type="xs:int" minOccurs="0" /> 
     6631              <xs:element name="nr_korygowanej" msprop:Generator_UserColumnName="nr_korygowanej" msprop:Generator_ColumnVarNameInTable="columnnr_korygowanej" msprop:Generator_ColumnPropNameInRow="nr_korygowanej" msprop:Generator_ColumnPropNameInTable="nr_korygowanejColumn" type="xs:int" minOccurs="0" /> 
    66086632            </xs:sequence> 
    66096633          </xs:complexType> 
     
    66126636          <xs:complexType> 
    66136637            <xs:sequence> 
    6614               <xs:element name="ID_NABYWCY" msprop:Generator_UserColumnName="ID_NABYWCY" msprop:Generator_ColumnPropNameInRow="ID_NABYWCY" msprop:Generator_ColumnVarNameInTable="columnID_NABYWCY" msprop:Generator_ColumnPropNameInTable="ID_NABYWCYColumn" type="xs:int" minOccurs="0" /> 
    6615               <xs:element name="NUMER" msprop:Generator_UserColumnName="NUMER" msprop:Generator_ColumnPropNameInRow="NUMER" msprop:Generator_ColumnVarNameInTable="columnNUMER" msprop:Generator_ColumnPropNameInTable="NUMERColumn" type="xs:int" minOccurs="0" /> 
    6616               <xs:element name="ROK" msprop:Generator_UserColumnName="ROK" msprop:Generator_ColumnPropNameInRow="ROK" msprop:Generator_ColumnVarNameInTable="columnROK" msprop:Generator_ColumnPropNameInTable="ROKColumn" type="xs:int" minOccurs="0" /> 
    6617               <xs:element name="MS" msprop:Generator_UserColumnName="MS" msprop:Generator_ColumnPropNameInRow="MS" msprop:Generator_ColumnVarNameInTable="columnMS" msprop:Generator_ColumnPropNameInTable="MSColumn" type="xs:int" minOccurs="0" /> 
    6618               <xs:element name="DATA_SPRZEDAZY" msprop:Generator_UserColumnName="DATA_SPRZEDAZY" msprop:Generator_ColumnPropNameInRow="DATA_SPRZEDAZY" msprop:Generator_ColumnVarNameInTable="columnDATA_SPRZEDAZY" msprop:Generator_ColumnPropNameInTable="DATA_SPRZEDAZYColumn" type="xs:dateTime" minOccurs="0" /> 
    6619               <xs:element name="NR_FK" msprop:Generator_UserColumnName="NR_FK" msprop:Generator_ColumnPropNameInRow="NR_FK" msprop:Generator_ColumnVarNameInTable="columnNR_FK" msprop:Generator_ColumnPropNameInTable="NR_FKColumn" minOccurs="0"> 
     6638              <xs:element name="ID_NABYWCY" msprop:Generator_UserColumnName="ID_NABYWCY" msprop:Generator_ColumnVarNameInTable="columnID_NABYWCY" msprop:Generator_ColumnPropNameInRow="ID_NABYWCY" msprop:Generator_ColumnPropNameInTable="ID_NABYWCYColumn" type="xs:int" minOccurs="0" /> 
     6639              <xs:element name="NUMER" msprop:Generator_UserColumnName="NUMER" msprop:Generator_ColumnVarNameInTable="columnNUMER" msprop:Generator_ColumnPropNameInRow="NUMER" msprop:Generator_ColumnPropNameInTable="NUMERColumn" type="xs:int" minOccurs="0" /> 
     6640              <xs:element name="ROK" msprop:Generator_UserColumnName="ROK" msprop:Generator_ColumnVarNameInTable="columnROK" msprop:Generator_ColumnPropNameInRow="ROK" msprop:Generator_ColumnPropNameInTable="ROKColumn" type="xs:int" minOccurs="0" /> 
     6641              <xs:element name="MS" msprop:Generator_UserColumnName="MS" msprop:Generator_ColumnVarNameInTable="columnMS" msprop:Generator_ColumnPropNameInRow="MS" msprop:Generator_ColumnPropNameInTable="MSColumn" type="xs:int" minOccurs="0" /> 
     6642              <xs:element name="DATA_SPRZEDAZY" msprop:Generator_UserColumnName="DATA_SPRZEDAZY" msprop:Generator_ColumnVarNameInTable="columnDATA_SPRZEDAZY" msprop:Generator_ColumnPropNameInRow="DATA_SPRZEDAZY" msprop:Generator_ColumnPropNameInTable="DATA_SPRZEDAZYColumn" type="xs:dateTime" minOccurs="0" /> 
     6643              <xs:element name="NR_FK" msprop:Generator_UserColumnName="NR_FK" msprop:Generator_ColumnVarNameInTable="columnNR_FK" msprop:Generator_ColumnPropNameInRow="NR_FK" msprop:Generator_ColumnPropNameInTable="NR_FKColumn" minOccurs="0"> 
    66206644                <xs:simpleType> 
    66216645                  <xs:restriction base="xs:string"> 
     
    66246648                </xs:simpleType> 
    66256649              </xs:element> 
    6626               <xs:element name="TYTUL" msprop:Generator_UserColumnName="TYTUL" msprop:Generator_ColumnPropNameInRow="TYTUL" msprop:Generator_ColumnVarNameInTable="columnTYTUL" msprop:Generator_ColumnPropNameInTable="TYTULColumn" minOccurs="0"> 
     6650              <xs:element name="TYTUL" msprop:Generator_UserColumnName="TYTUL" msprop:Generator_ColumnVarNameInTable="columnTYTUL" msprop:Generator_ColumnPropNameInRow="TYTUL" msprop:Generator_ColumnPropNameInTable="TYTULColumn" minOccurs="0"> 
    66276651                <xs:simpleType> 
    66286652                  <xs:restriction base="xs:string"> 
     
    66316655                </xs:simpleType> 
    66326656              </xs:element> 
    6633               <xs:element name="NETTO" msprop:Generator_UserColumnName="NETTO" msprop:Generator_ColumnPropNameInRow="NETTO" msprop:Generator_ColumnVarNameInTable="columnNETTO" msprop:Generator_ColumnPropNameInTable="NETTOColumn" type="xs:decimal" minOccurs="0" /> 
    6634               <xs:element name="S_VAT" msprop:Generator_UserColumnName="S_VAT" msprop:Generator_ColumnPropNameInRow="S_VAT" msprop:Generator_ColumnVarNameInTable="columnS_VAT" msprop:Generator_ColumnPropNameInTable="S_VATColumn" type="xs:double" minOccurs="0" /> 
    6635               <xs:element name="VAT" msprop:Generator_UserColumnName="VAT" msprop:Generator_ColumnPropNameInRow="VAT" msprop:Generator_ColumnVarNameInTable="columnVAT" msprop:Generator_ColumnPropNameInTable="VATColumn" type="xs:decimal" minOccurs="0" /> 
    6636               <xs:element name="BRUTTO" msprop:Generator_UserColumnName="BRUTTO" msprop:Generator_ColumnPropNameInRow="BRUTTO" msprop:Generator_ColumnVarNameInTable="columnBRUTTO" msprop:Generator_ColumnPropNameInTable="BRUTTOColumn" type="xs:decimal" minOccurs="0" /> 
    6637               <xs:element name="suma_zaplat" msprop:Generator_UserColumnName="suma_zaplat" msprop:Generator_ColumnPropNameInRow="suma_zaplat" msprop:Generator_ColumnVarNameInTable="columnsuma_zaplat" msprop:Generator_ColumnPropNameInTable="suma_zaplatColumn" type="xs:decimal" minOccurs="0" /> 
    6638               <xs:element name="ID_FAKTURY" msprop:Generator_UserColumnName="ID_FAKTURY" msprop:Generator_ColumnPropNameInRow="ID_FAKTURY" msprop:Generator_ColumnVarNameInTable="columnID_FAKTURY" msprop:Generator_ColumnPropNameInTable="ID_FAKTURYColumn" type="xs:int" /> 
    6639               <xs:element name="Symbol" msprop:Generator_UserColumnName="Symbol" msprop:Generator_ColumnPropNameInRow="Symbol" msprop:Generator_ColumnVarNameInTable="columnSymbol" msprop:Generator_ColumnPropNameInTable="SymbolColumn" minOccurs="0"> 
    6640                 <xs:simpleType> 
    6641                   <xs:restriction base="xs:string"> 
    6642                     <xs:maxLength value="50" /> 
    6643                   </xs:restriction> 
    6644                 </xs:simpleType> 
    6645               </xs:element> 
    6646               <xs:element name="Agencja" msprop:Generator_UserColumnName="Agencja" msprop:Generator_ColumnPropNameInRow="Agencja" msprop:Generator_ColumnVarNameInTable="columnAgencja" msprop:Generator_ColumnPropNameInTable="AgencjaColumn" minOccurs="0"> 
    6647                 <xs:simpleType> 
    6648                   <xs:restriction base="xs:string"> 
    6649                     <xs:maxLength value="50" /> 
    6650                   </xs:restriction> 
    6651                 </xs:simpleType> 
    6652               </xs:element> 
    6653               <xs:element name="ZAPLACONO" msprop:Generator_UserColumnName="ZAPLACONO" msprop:Generator_ColumnPropNameInRow="ZAPLACONO" msprop:Generator_ColumnVarNameInTable="columnZAPLACONO" msprop:Generator_ColumnPropNameInTable="ZAPLACONOColumn" type="xs:boolean" minOccurs="0" /> 
    6654               <xs:element name="dataWplaty" msprop:Generator_UserColumnName="dataWplaty" msprop:Generator_ColumnPropNameInRow="dataWplaty" msprop:Generator_ColumnVarNameInTable="columndataWplaty" msprop:Generator_ColumnPropNameInTable="dataWplatyColumn" type="xs:dateTime" minOccurs="0" /> 
    6655               <xs:element name="zaplata_data" msprop:Generator_UserColumnName="zaplata_data" msprop:Generator_ColumnPropNameInRow="zaplata_data" msprop:Generator_ColumnVarNameInTable="columnzaplata_data" msprop:Generator_ColumnPropNameInTable="zaplata_dataColumn" type="xs:dateTime" minOccurs="0" /> 
    6656               <xs:element name="FirstName" msprop:Generator_UserColumnName="FirstName" msprop:Generator_ColumnPropNameInRow="FirstName" msprop:Generator_ColumnVarNameInTable="columnFirstName" msprop:Generator_ColumnPropNameInTable="FirstNameColumn" minOccurs="0"> 
    6657                 <xs:simpleType> 
    6658                   <xs:restriction base="xs:string"> 
    6659                     <xs:maxLength value="50" /> 
    6660                   </xs:restriction> 
    6661                 </xs:simpleType> 
    6662               </xs:element> 
    6663               <xs:element name="TERMIN_ZAPLATY" msprop:Generator_UserColumnName="TERMIN_ZAPLATY" msprop:Generator_ColumnPropNameInRow="TERMIN_ZAPLATY" msprop:Generator_ColumnVarNameInTable="columnTERMIN_ZAPLATY" msprop:Generator_ColumnPropNameInTable="TERMIN_ZAPLATYColumn" type="xs:dateTime" minOccurs="0" /> 
    6664               <xs:element name="idZamowienia" msprop:Generator_UserColumnName="idZamowienia" msprop:Generator_ColumnPropNameInRow="idZamowienia" msprop:Generator_ColumnVarNameInTable="columnidZamowienia" msprop:Generator_ColumnPropNameInTable="idZamowieniaColumn" type="xs:int" minOccurs="0" /> 
    6665               <xs:element name="idWplaty" msprop:Generator_UserColumnName="idWplaty" msprop:Generator_ColumnPropNameInRow="idWplaty" msprop:Generator_ColumnVarNameInTable="columnidWplaty" msprop:Generator_ColumnPropNameInTable="idWplatyColumn" type="xs:int" minOccurs="0" /> 
    6666               <xs:element name="sumaNettoZEmisji" msprop:Generator_UserColumnName="sumaNettoZEmisji" msprop:Generator_ColumnPropNameInRow="sumaNettoZEmisji" msprop:Generator_ColumnVarNameInTable="columnsumaNettoZEmisji" msprop:Generator_ColumnPropNameInTable="sumaNettoZEmisjiColumn" type="xs:decimal" minOccurs="0" /> 
    6667               <xs:element name="waluta_brutto" msprop:Generator_UserColumnName="waluta_brutto" msprop:Generator_ColumnPropNameInRow="waluta_brutto" msprop:Generator_ColumnVarNameInTable="columnwaluta_brutto" msprop:Generator_ColumnPropNameInTable="waluta_bruttoColumn" type="xs:double" minOccurs="0" /> 
    6668               <xs:element name="waluta_miano" msprop:Generator_UserColumnName="waluta_miano" msprop:Generator_ColumnPropNameInRow="waluta_miano" msprop:Generator_ColumnVarNameInTable="columnwaluta_miano" msprop:Generator_ColumnPropNameInTable="waluta_mianoColumn" minOccurs="0"> 
     6657              <xs:element name="NETTO" msprop:Generator_UserColumnName="NETTO" msprop:Generator_ColumnVarNameInTable="columnNETTO" msprop:Generator_ColumnPropNameInRow="NETTO" msprop:Generator_ColumnPropNameInTable="NETTOColumn" type="xs:decimal" minOccurs="0" /> 
     6658              <xs:element name="S_VAT" msprop:Generator_UserColumnName="S_VAT" msprop:Generator_ColumnVarNameInTable="columnS_VAT" msprop:Generator_ColumnPropNameInRow="S_VAT" msprop:Generator_ColumnPropNameInTable="S_VATColumn" type="xs:double" minOccurs="0" /> 
     6659              <xs:element name="VAT" msprop:Generator_UserColumnName="VAT" msprop:Generator_ColumnVarNameInTable="columnVAT" msprop:Generator_ColumnPropNameInRow="VAT" msprop:Generator_ColumnPropNameInTable="VATColumn" type="xs:decimal" minOccurs="0" /> 
     6660              <xs:element name="BRUTTO" msprop:Generator_UserColumnName="BRUTTO" msprop:Generator_ColumnVarNameInTable="columnBRUTTO" msprop:Generator_ColumnPropNameInRow="BRUTTO" msprop:Generator_ColumnPropNameInTable="BRUTTOColumn" type="xs:decimal" minOccurs="0" /> 
     6661              <xs:element name="suma_zaplat" msprop:Generator_UserColumnName="suma_zaplat" msprop:Generator_ColumnVarNameInTable="columnsuma_zaplat" msprop:Generator_ColumnPropNameInRow="suma_zaplat" msprop:Generator_ColumnPropNameInTable="suma_zaplatColumn" type="xs:decimal" minOccurs="0" /> 
     6662              <xs:element name="ID_FAKTURY" msprop:Generator_UserColumnName="ID_FAKTURY" msprop:Generator_ColumnVarNameInTable="columnID_FAKTURY" msprop:Generator_ColumnPropNameInRow="ID_FAKTURY" msprop:Generator_ColumnPropNameInTable="ID_FAKTURYColumn" type="xs:int" /> 
     6663              <xs:element name="Symbol" msprop:Generator_UserColumnName="Symbol" msprop:Generator_ColumnVarNameInTable="columnSymbol" msprop:Generator_ColumnPropNameInRow="Symbol" msprop:Generator_ColumnPropNameInTable="SymbolColumn" minOccurs="0"> 
     6664                <xs:simpleType> 
     6665                  <xs:restriction base="xs:string"> 
     6666                    <xs:maxLength value="50" /> 
     6667                  </xs:restriction> 
     6668                </xs:simpleType> 
     6669              </xs:element> 
     6670              <xs:element name="Agencja" msprop:Generator_UserColumnName="Agencja" msprop:Generator_ColumnVarNameInTable="columnAgencja" msprop:Generator_ColumnPropNameInRow="Agencja" msprop:Generator_ColumnPropNameInTable="AgencjaColumn" minOccurs="0"> 
     6671                <xs:simpleType> 
     6672                  <xs:restriction base="xs:string"> 
     6673                    <xs:maxLength value="50" /> 
     6674                  </xs:restriction> 
     6675                </xs:simpleType> 
     6676              </xs:element> 
     6677              <xs:element name="ZAPLACONO" msprop:Generator_UserColumnName="ZAPLACONO" msprop:Generator_ColumnVarNameInTable="columnZAPLACONO" msprop:Generator_ColumnPropNameInRow="ZAPLACONO" msprop:Generator_ColumnPropNameInTable="ZAPLACONOColumn" type="xs:boolean" minOccurs="0" /> 
     6678              <xs:element name="dataWplaty" msprop:Generator_UserColumnName="dataWplaty" msprop:Generator_ColumnVarNameInTable="columndataWplaty" msprop:Generator_ColumnPropNameInRow="dataWplaty" msprop:Generator_ColumnPropNameInTable="dataWplatyColumn" type="xs:dateTime" minOccurs="0" /> 
     6679              <xs:element name="zaplata_data" msprop:Generator_UserColumnName="zaplata_data" msprop:Generator_ColumnVarNameInTable="columnzaplata_data" msprop:Generator_ColumnPropNameInRow="zaplata_data" msprop:Generator_ColumnPropNameInTable="zaplata_dataColumn" type="xs:dateTime" minOccurs="0" /> 
     6680              <xs:element name="FirstName" msprop:Generator_UserColumnName="FirstName" msprop:Generator_ColumnVarNameInTable="columnFirstName" msprop:Generator_ColumnPropNameInRow="FirstName" msprop:Generator_ColumnPropNameInTable="FirstNameColumn" minOccurs="0"> 
     6681                <xs:simpleType> 
     6682                  <xs:restriction base="xs:string"> 
     6683                    <xs:maxLength value="50" /> 
     6684                  </xs:restriction> 
     6685                </xs:simpleType> 
     6686              </xs:element> 
     6687              <xs:element name="TERMIN_ZAPLATY" msprop:Generator_UserColumnName="TERMIN_ZAPLATY" msprop:Generator_ColumnVarNameInTable="columnTERMIN_ZAPLATY" msprop:Generator_ColumnPropNameInRow="TERMIN_ZAPLATY" msprop:Generator_ColumnPropNameInTable="TERMIN_ZAPLATYColumn" type="xs:dateTime" minOccurs="0" /> 
     6688              <xs:element name="idZamowienia" msprop:Generator_UserColumnName="idZamowienia" msprop:Generator_ColumnVarNameInTable="columnidZamowienia" msprop:Generator_ColumnPropNameInRow="idZamowienia" msprop:Generator_ColumnPropNameInTable="idZamowieniaColumn" type="xs:int" minOccurs="0" /> 
     6689              <xs:element name="idWplaty" msprop:Generator_UserColumnName="idWplaty" msprop:Generator_ColumnVarNameInTable="columnidWplaty" msprop:Generator_ColumnPropNameInRow="idWplaty" msprop:Generator_ColumnPropNameInTable="idWplatyColumn" type="xs:int" minOccurs="0" /> 
     6690              <xs:element name="sumaNettoZEmisji" msprop:Generator_UserColumnName="sumaNettoZEmisji" msprop:Generator_ColumnVarNameInTable="columnsumaNettoZEmisji" msprop:Generator_ColumnPropNameInRow="sumaNettoZEmisji" msprop:Generator_ColumnPropNameInTable="sumaNettoZEmisjiColumn" type="xs:decimal" minOccurs="0" /> 
     6691              <xs:element name="waluta_brutto" msprop:Generator_UserColumnName="waluta_brutto" msprop:Generator_ColumnVarNameInTable="columnwaluta_brutto" msprop:Generator_ColumnPropNameInRow="waluta_brutto" msprop:Generator_ColumnPropNameInTable="waluta_bruttoColumn" type="xs:double" minOccurs="0" /> 
     6692              <xs:element name="waluta_miano" msprop:Generator_UserColumnName="waluta_miano" msprop:Generator_ColumnVarNameInTable="columnwaluta_miano" msprop:Generator_ColumnPropNameInRow="waluta_miano" msprop:Generator_ColumnPropNameInTable="waluta_mianoColumn" minOccurs="0"> 
    66696693                <xs:simpleType> 
    66706694                  <xs:restriction base="xs:string"> 
     
    66736697                </xs:simpleType> 
    66746698              </xs:element> 
    6675               <xs:element name="KOREKTA" msprop:Generator_UserColumnName="KOREKTA" msprop:Generator_ColumnPropNameInRow="KOREKTA" msprop:Generator_ColumnVarNameInTable="columnKOREKTA" msprop:Generator_ColumnPropNameInTable="KOREKTAColumn" type="xs:boolean" /> 
    6676               <xs:element name="idFakturyKorekta" msprop:Generator_UserColumnName="idFakturyKorekta" msprop:Generator_ColumnPropNameInRow="idFakturyKorekta" msprop:Generator_ColumnVarNameInTable="columnidFakturyKorekta" msprop:Generator_ColumnPropNameInTable="idFakturyKorektaColumn" type="xs:int" minOccurs="0" /> 
    6677               <xs:element name="ID_FK_KOR" msprop:Generator_UserColumnName="ID_FK_KOR" msprop:Generator_ColumnPropNameInRow="ID_FK_KOR" msprop:Generator_ColumnVarNameInTable="columnID_FK_KOR" msprop:Generator_ColumnPropNameInTable="ID_FK_KORColumn" type="xs:int" minOccurs="0" /> 
    6678               <xs:element name="wplata_brutto" msprop:Generator_UserColumnName="wplata_brutto" msprop:Generator_ColumnPropNameInRow="wplata_brutto" msprop:Generator_ColumnVarNameInTable="columnwplata_brutto" msprop:Generator_ColumnPropNameInTable="wplata_bruttoColumn" type="xs:decimal" minOccurs="0" /> 
    6679               <xs:element name="wplata_waluta_brutto" msprop:Generator_UserColumnName="wplata_waluta_brutto" msprop:Generator_ColumnPropNameInRow="wplata_waluta_brutto" msprop:Generator_ColumnVarNameInTable="columnwplata_waluta_brutto" msprop:Generator_ColumnPropNameInTable="wplata_waluta_bruttoColumn" type="xs:decimal" minOccurs="0" /> 
    6680               <xs:element name="ilPozycji" msprop:Generator_UserColumnName="ilPozycji" msprop:Generator_ColumnPropNameInRow="ilPozycji" msprop:Generator_ColumnVarNameInTable="columnilPozycji" msprop:Generator_ColumnPropNameInTable="ilPozycjiColumn" type="xs:int" minOccurs="0" /> 
    6681               <xs:element name="ilEmisji" msprop:Generator_UserColumnName="ilEmisji" msprop:Generator_ColumnPropNameInRow="ilEmisji" msprop:Generator_ColumnVarNameInTable="columnilEmisji" msprop:Generator_ColumnPropNameInTable="ilEmisjiColumn" type="xs:int" minOccurs="0" /> 
    6682               <xs:element name="SposobZaplaty" msprop:Generator_UserColumnName="SposobZaplaty" msprop:Generator_ColumnVarNameInTable="columnSposobZaplaty" msprop:Generator_ColumnPropNameInRow="SposobZaplaty" msprop:Generator_ColumnPropNameInTable="SposobZaplatyColumn" type="xs:string" minOccurs="0" /> 
    6683               <xs:element name="waluta_kurs" msdata:ReadOnly="true" msprop:Generator_UserColumnName="waluta_kurs" msprop:Generator_ColumnVarNameInTable="columnwaluta_kurs" msprop:Generator_ColumnPropNameInRow="waluta_kurs" msprop:Generator_ColumnPropNameInTable="waluta_kursColumn" type="xs:decimal" minOccurs="0" /> 
     6699              <xs:element name="KOREKTA" msprop:Generator_UserColumnName="KOREKTA" msprop:Generator_ColumnVarNameInTable="columnKOREKTA" msprop:Generator_ColumnPropNameInRow="KOREKTA" msprop:Generator_ColumnPropNameInTable="KOREKTAColumn" type="xs:boolean" /> 
     6700              <xs:element name="idFakturyKorekta" msprop:Generator_UserColumnName="idFakturyKorekta" msprop:Generator_ColumnVarNameInTable="columnidFakturyKorekta" msprop:Generator_ColumnPropNameInRow="idFakturyKorekta" msprop:Generator_ColumnPropNameInTable="idFakturyKorektaColumn" type="xs:int" minOccurs="0" /> 
     6701              <xs:element name="ID_FK_KOR" msprop:Generator_UserColumnName="ID_FK_KOR" msprop:Generator_ColumnVarNameInTable="columnID_FK_KOR" msprop:Generator_ColumnPropNameInRow="ID_FK_KOR" msprop:Generator_ColumnPropNameInTable="ID_FK_KORColumn" type="xs:int" minOccurs="0" /> 
     6702              <xs:element name="wplata_brutto" msprop:Generator_UserColumnName="wplata_brutto" msprop:Generator_ColumnVarNameInTable="columnwplata_brutto" msprop:Generator_ColumnPropNameInRow="wplata_brutto" msprop:Generator_ColumnPropNameInTable="wplata_bruttoColumn" type="xs:decimal" minOccurs="0" /> 
     6703              <xs:element name="wplata_waluta_brutto" msprop:Generator_UserColumnName="wplata_waluta_brutto" msprop:Generator_ColumnVarNameInTable="columnwplata_waluta_brutto" msprop:Generator_ColumnPropNameInRow="wplata_waluta_brutto" msprop:Generator_ColumnPropNameInTable="wplata_waluta_bruttoColumn" type="xs:decimal" minOccurs="0" /> 
     6704              <xs:element name="ilPozycji" msprop:Generator_UserColumnName="ilPozycji" msprop:Generator_ColumnVarNameInTable="columnilPozycji" msprop:Generator_ColumnPropNameInRow="ilPozycji" msprop:Generator_ColumnPropNameInTable="ilPozycjiColumn" type="xs:int" minOccurs="0" /> 
     6705              <xs:element name="ilEmisji" msprop:Generator_UserColumnName="ilEmisji" msprop:Generator_ColumnVarNameInTable="columnilEmisji" msprop:Generator_ColumnPropNameInRow="ilEmisji" msprop:Generator_ColumnPropNameInTable="ilEmisjiColumn" type="xs:int" minOccurs="0" /> 
     6706              <xs:element name="SposobZaplaty" msprop:Generator_UserColumnName="SposobZaplaty" msprop:Generator_ColumnPropNameInRow="SposobZaplaty" msprop:Generator_ColumnVarNameInTable="columnSposobZaplaty" msprop:Generator_ColumnPropNameInTable="SposobZaplatyColumn" type="xs:string" minOccurs="0" /> 
     6707              <xs:element name="waluta_kurs" msdata:ReadOnly="true" msprop:Generator_UserColumnName="waluta_kurs" msprop:Generator_ColumnPropNameInRow="waluta_kurs" msprop:Generator_ColumnVarNameInTable="columnwaluta_kurs" msprop:Generator_ColumnPropNameInTable="waluta_kursColumn" type="xs:decimal" minOccurs="0" /> 
    66846708            </xs:sequence> 
    66856709          </xs:complexType> 
  • branches/Emisje/BazaReklam/REKLAMADataSet.xss

    r750 r777  
    88  <Shapes> 
    99    <Shape ID="DesignTable:REKLAMA" ZOrder="4" X="-162" Y="35" Height="343" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="24" SplitterPosition="228" /> 
    10     <Shape ID="DesignTable:UKAZE_SIE_W_NR" ZOrder="2" X="332" Y="-23" Height="358" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="192" /> 
     10    <Shape ID="DesignTable:UKAZE_SIE_W_NR" ZOrder="1" X="332" Y="-23" Height="343" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="228" /> 
    1111    <Shape ID="DesignTable:KLIENCI" ZOrder="33" X="-327" Y="520" Height="309" Width="271" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="22" OldDataTableHeight="0" SplitterPosition="228" /> 
    1212    <Shape ID="DesignTable:REKLAMA_STRONA" ZOrder="6" X="241" Y="352" Height="188" Width="286" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="124" /> 
     
    3030    <Shape ID="DesignTable:View_Podsumowanie_Wykonania_Planu_Agencja" ZOrder="41" X="359" Y="1952" Height="305" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" /> 
    3131    <Shape ID="DesignTable:LISTA_REKLAM_NA_WYDANIE" ZOrder="40" X="685" Y="1935" Height="275" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="24" OldDataTableHeight="0" SplitterPosition="228" /> 
    32     <Shape ID="DesignTable:Reklama_Info_Dod" ZOrder="1" X="190" Y="-255" Height="235" Width="297" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="144" /> 
     32    <Shape ID="DesignTable:Reklama_Info_Dod" ZOrder="2" X="190" Y="-255" Height="235" Width="297" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="144" /> 
    3333    <Shape ID="DesignTable:KLIENCI_TYTUL" ZOrder="38" X="-1329" Y="568" Height="210" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" /> 
    3434    <Shape ID="DesignTable:KLIENCI_INTERNET_LOGO" ZOrder="23" X="-604" Y="568" Height="111" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="21" /> 
     
    223223        <Point> 
    224224          <X>567</X> 
    225           <Y>335</Y> 
     225          <Y>320</Y> 
    226226        </Point> 
    227227        <Point> 
  • branches/Emisje/BazaReklam/app.config

    r740 r777  
    88  <connectionStrings> 
    99    <clear /> 
    10     <add name="BAZA_REKLAM" connectionString="Data Source=sql.ct.com.pl;Initial Catalog=BAZA_REKLAM;Persist Security Info=True" 
     10    <add name="BAZA_REKLAM" connectionString="Data Source=.\sql2k;Initial Catalog=Baza_Reklam;Persist Security Info=True" 
     11      providerName="System.Data.SqlClient" /> 
     12    <add name="Baza_Reklam.Properties.Settings.Baza_ReklamConnectionString" 
     13      connectionString="Data Source=.\sql2k;Initial Catalog=Baza_Reklam;User ID=sa;Password=mageroni" 
    1114      providerName="System.Data.SqlClient" /> 
    1215  </connectionStrings> 
     
    1821      <setting name="reklamaPath" serializeAs="String"> 
    1922        <value>G:\ReklamaFiles\</value> 
     23      </setting> 
     24      <setting name="reportsServerLocal" serializeAs="String"> 
     25        <value>http://10.0.0.39/ReportServer</value> 
    2026      </setting> 
    2127    </Baza_Reklam.Properties.Settings>