Zbiór zmian 92 dla Baza Reklam 2 - Faktury
- Data:
- 2008-12-29 14:59:28 (17 years ago)
- Lokalizacja:
- Baza Reklam 2 - Faktury
- Pliki:
-
- 7 zmodyfikowane
-
Baza Reklam.suo (zmodyfikowane) (poprzedni)
-
FactureViewer.Designer.cs (zmodyfikowane) (5 diffs)
-
FactureViewer.cs (zmodyfikowane) (4 diffs)
-
FactureViewer.resx (zmodyfikowane) (1 diff)
-
Raporty/fakturaKorekta.rdlc (zmodyfikowane) (27 diffs)
-
Raporty/fakturaReversed2.rdlc (zmodyfikowane) (32 diffs)
-
ZamowieniaForm.cs (zmodyfikowane) (1 diff)
Legenda:
- Bez zmian
- Dodane
- Usunięte
-
Baza Reklam 2 - Faktury/FactureViewer.Designer.cs
r91 r92 33 33 this.splitContainer1 = new System.Windows.Forms.SplitContainer(); 34 34 this.groupBox2 = new System.Windows.Forms.GroupBox(); 35 this.powodKorektyComboBox = new System.Windows.Forms.ComboBox(); 35 36 this.nUMERTextBox = new System.Windows.Forms.TextBox(); 36 37 this.fAKTURYBindingSource = new System.Windows.Forms.BindingSource(this.components); … … 96 97 // groupBox2 97 98 // 99 this.groupBox2.Controls.Add(this.powodKorektyComboBox); 98 100 this.groupBox2.Controls.Add(nUMERLabel); 99 101 this.groupBox2.Controls.Add(this.nUMERTextBox); … … 107 109 this.groupBox2.Text = "Faktura"; 108 110 // 111 // powodKorektyComboBox 112 // 113 this.powodKorektyComboBox.Enabled = false; 114 this.powodKorektyComboBox.FormattingEnabled = true; 115 this.powodKorektyComboBox.Items.AddRange(new object[] { 116 "rezygnacja z emisji reklamy", 117 "uznana reklamacja"}); 118 this.powodKorektyComboBox.Location = new System.Drawing.Point(53, 60); 119 this.powodKorektyComboBox.Name = "powodKorektyComboBox"; 120 this.powodKorektyComboBox.Size = new System.Drawing.Size(410, 21); 121 this.powodKorektyComboBox.TabIndex = 9; 122 this.powodKorektyComboBox.SelectedIndexChanged += new System.EventHandler(this.powodKorektyComboBox_SelectedIndexChanged); 123 // 109 124 // nUMERTextBox 110 125 // … … 137 152 // 138 153 this.opisTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.fAKTURYBindingSource, "opis", true)); 139 this.opisTextBox.Location = new System.Drawing.Point(61, 18); 154 this.opisTextBox.Location = new System.Drawing.Point(53, 19); 155 this.opisTextBox.MaxLength = 200; 140 156 this.opisTextBox.Multiline = true; 141 157 this.opisTextBox.Name = "opisTextBox"; 142 this.opisTextBox.Size = new System.Drawing.Size(410, 72);158 this.opisTextBox.Size = new System.Drawing.Size(410, 35); 143 159 this.opisTextBox.TabIndex = 4; 144 160 // … … 338 354 private System.Windows.Forms.TextBox nUMERTextBox; 339 355 private System.Windows.Forms.CheckBox proformaCheckBox; 356 private System.Windows.Forms.ComboBox powodKorektyComboBox; 340 357 } 341 358 } -
Baza Reklam 2 - Faktury/FactureViewer.cs
r91 r92 157 157 InitializeComponent(); 158 158 159 powodKorektyComboBox.Enabled = true; 160 opisTextBox.ReadOnly = !User.getUser().St_kierownik; 161 opisTextBox.BackColor = User.getUser().St_kierownik ? Color.White : Color.WhiteSmoke; 162 159 163 reportViewer1.LocalReport.ReportEmbeddedResource = "Baza_Reklam.Raporty.fakturaKorekta.rdlc"; 160 164 … … 208 212 this.reportViewer1.LocalReport.SetParameters(paramList); 209 213 } 210 211 //nadpisanie drukowania212 //this.reportViewer1.Print += new CancelEventHandler(HandlePrint);213 /*214 if (rodzaj)215 {216 this.reportViewer1.Print += new CancelEventHandler(HandlePrint);217 }218 */219 220 214 jezykComboBox.SelectedIndex = 0; 221 215 typComboBox.SelectedIndex = 1; … … 352 346 fAKTURYBindingSource.EndEdit(); 353 347 fAKTURYTableAdapter.Update(this.rEKLAMADataSet.FAKTURY); 354 fAKTURYTableAdapter.FillByIdFaktury(this.rEKLAMADataSet.FAKTURY, idFaktury); 348 fAKTURYTableAdapter.FillByIdFaktury(this.rEKLAMADataSet.FAKTURY, idKorekty); 349 350 reportViewer1.LocalReport.DataSources.Clear(); 355 351 356 352 //ustawienie parametrów, nowych datasoure dla raportu 357 353 List<ReportParameter> paramList = new List<ReportParameter>(); 358 359 paramList.Add(new ReportParameter("jezyk", jezykComboBox.SelectedItem.ToString(), true)); 354 raporty.FakturaDataTable korektaTable = fakturaTableAdapter1.GetDataByIdFaktury(idKorekty); 355 raporty.FakturaRow korekta = korektaTable[0]; 356 reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("Korekta", korektaTable)); 357 reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("Faktura", fakturaTableAdapter1.GetDataByIdFaktury(this.idFaktury))); 358 359 //piersza korekta 360 if (korekta.idFakturyKorekta == idFaktury) 361 { 362 reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("FakturaDetails2", fAKTURA_DETAILS2TableAdapter.GetDataIdFaktury(this.idFaktury))); 363 } 364 else 365 { 366 reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("FakturaDetails2", fAKTURA_DETAILS2TableAdapter.GetDataIdFaktury(korekta.idFakturyKorekta))); 367 } 368 reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("FakturaDetailsKorekty", fAKTURA_DETAILS2TableAdapter.GetDataIdFaktury(idKorekty))); 369 reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("tlumaczenia", ds.Tables[0])); 370 360 371 paramList.Add(new ReportParameter("podpis", podpisCheckBox.Checked.ToString(), true)); 361 372 this.reportViewer1.LocalReport.SetParameters(paramList); 362 reportViewer1.LocalReport.DataSources.Clear();363 reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("Faktura", fakturaTableAdapter1.GetDataByIdFaktury(idFaktury)));364 365 reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("FakturaDetails2", fAKTURA_DETAILS2TableAdapter.GetDataIdFaktury(idFaktury)));366 reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("FakturaDetailsKorekty", fAKTURA_DETAILS2TableAdapter.GetDataIdFaktury(idKorekty)));367 reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("tlumaczenia", ds.Tables[0]));368 373 369 374 reportViewer1.RefreshReport(); … … 604 609 e.Cancel = true; 605 610 } 611 612 private void powodKorektyComboBox_SelectedIndexChanged(object sender, EventArgs e) 613 { 614 DataRowView row = (DataRowView)fAKTURYBindingSource.Current; 615 row["opis"] = powodKorektyComboBox.SelectedItem.ToString(); 616 fAKTURYBindingSource.EndEdit(); 617 618 opisTextBox.Text = powodKorektyComboBox.SelectedItem.ToString(); 619 } 620 606 621 } 607 622 } -
Baza Reklam 2 - Faktury/FactureViewer.resx
r88 r92 124 124 <value>162, 17</value> 125 125 </metadata> 126 <metadata name="fAKTURYBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> 127 <value>162, 17</value> 128 </metadata> 129 <metadata name="rEKLAMADataSet.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> 130 <value>17, 17</value> 131 </metadata> 126 132 <metadata name="rEKLAMADataSet.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> 127 133 <value>17, 17</value> -
Baza Reklam 2 - Faktury/Raporty/fakturaKorekta.rdlc
r91 r92 1587 1587 <ZIndex>7</ZIndex> 1588 1588 <DataSetName>Korekta</DataSetName> 1589 <Top>1 8.79365cm</Top>1589 <Top>17.14286cm</Top> 1590 1590 <Width>18.28572cm</Width> 1591 1591 <Header> … … 2029 2029 <Rectangle Name="sprzedawca"> 2030 2030 <Left>0.12698cm</Left> 2031 <ZIndex> 4</ZIndex>2031 <ZIndex>3</ZIndex> 2032 2032 <ReportItems> 2033 2033 <Textbox Name="FAKTURY_DRUK_INTERNATIONALlabel_sprzedawca"> 2034 2034 <rd:DefaultName>FAKTURY_DRUK_INTERNATIONALlabel_sprzedawca</rd:DefaultName> 2035 <Width>8cm</Width>2036 2035 <Style> 2037 2036 <BackgroundColor>#c0c0ff</BackgroundColor> … … 2111 2110 </ReportItems> 2112 2111 <Top>0.12698cm</Top> 2113 <Width>8 .12699cm</Width>2114 <Height>3. 68254cm</Height>2112 <Width>8cm</Width> 2113 <Height>3.55556cm</Height> 2115 2114 </Rectangle> 2116 2115 <Rectangle Name="nabywca"> 2117 2116 <Left>0.12698cm</Left> 2118 <ZIndex> 3</ZIndex>2117 <ZIndex>2</ZIndex> 2119 2118 <ReportItems> 2120 2119 <Rectangle Name="rectangle3"> … … 2123 2122 <ReportItems> 2124 2123 <Textbox Name="textbox36"> 2125 <Top>0.12698cm</Top>2126 2124 <Width>5.07937cm</Width> 2127 2125 <Style> … … 2134 2132 </Style> 2135 2133 <CanGrow>true</CanGrow> 2136 <Left>0.12698cm</Left>2137 <Height>1.77778cm</Height>2138 2134 <Value>=Fields!Adres_Kor.Value</Value> 2139 2135 </Textbox> 2140 2136 </ReportItems> 2141 <Top>0. 63492cm</Top>2137 <Top>0.50794cm</Top> 2142 2138 <Width>5.33333cm</Width> 2143 <Height>2.03175cm</Height>2144 2139 </Rectangle> 2145 2140 <Textbox Name="FAKTURY_DRUK_INTERNATIONALlabel_nabywca"> … … 2159 2154 <Textbox Name="NABYWCA_NIP"> 2160 2155 <rd:DefaultName>NABYWCA_NIP</rd:DefaultName> 2161 <Top>1. 26984cm</Top>2156 <Top>1.14286cm</Top> 2162 2157 <Width>4.06349cm</Width> 2163 2158 <Style> … … 2176 2171 <Textbox Name="NABYWCA_ADRES"> 2177 2172 <rd:DefaultName>NABYWCA_ADRES</rd:DefaultName> 2178 <Top>0. 63492cm</Top>2173 <Top>0.50794cm</Top> 2179 2174 <Width>5.07937cm</Width> 2180 2175 <Style> … … 2190 2185 </Textbox> 2191 2186 </ReportItems> 2192 <Top> 4.44444cm</Top>2187 <Top>3.68254cm</Top> 2193 2188 <Width>18.28571cm</Width> 2194 <Height>2. 79365cm</Height>2189 <Height>2.28572cm</Height> 2195 2190 </Rectangle> 2196 <Textbox Name="textbox7">2197 <rd:DefaultName>textbox7</rd:DefaultName>2198 <Width>4.8254cm</Width>2199 <Style>2200 <FontSize>8pt</FontSize>2201 <FontWeight>700</FontWeight>2202 <TextAlign>Right</TextAlign>2203 <VerticalAlign>Middle</VerticalAlign>2204 <PaddingLeft>2pt</PaddingLeft>2205 <PaddingRight>2pt</PaddingRight>2206 <PaddingTop>2pt</PaddingTop>2207 <PaddingBottom>2pt</PaddingBottom>2208 </Style>2209 <ZIndex>2</ZIndex>2210 <CanGrow>true</CanGrow>2211 <Left>13.71429cm</Left>2212 <Height>0.50793cm</Height>2213 <Value>="RE/" & Fields!RejestrFaktur_Symbol.Value & "/" & Fields!NUMER.Value & "/" & Fields!NUMER_ROZ.Value & "/" & Fields!NUMER_ROK.Value</Value>2214 </Textbox>2215 2191 <Rectangle Name="sposobZaplaty"> 2192 <Left>0.12698cm</Left> 2216 2193 <ZIndex>1</ZIndex> 2217 2194 <ReportItems> … … 2284 2261 </Textbox> 2285 2262 </ReportItems> 2286 <Top> 7.49206cm</Top>2263 <Top>6.09524cm</Top> 2287 2264 <Width>18.28571cm</Width> 2265 <Height>1.26984cm</Height> 2288 2266 </Rectangle> 2289 2267 <Rectangle Name="rectangle2"> 2290 <Left>8. 38095cm</Left>2268 <Left>8.12698cm</Left> 2291 2269 <ReportItems> 2270 <Textbox Name="textbox7"> 2271 <rd:DefaultName>textbox7</rd:DefaultName> 2272 <Style> 2273 <FontSize>8pt</FontSize> 2274 <FontWeight>700</FontWeight> 2275 <TextAlign>Right</TextAlign> 2276 <VerticalAlign>Middle</VerticalAlign> 2277 <PaddingLeft>2pt</PaddingLeft> 2278 <PaddingRight>2pt</PaddingRight> 2279 <PaddingTop>2pt</PaddingTop> 2280 <PaddingBottom>2pt</PaddingBottom> 2281 </Style> 2282 <ZIndex>8</ZIndex> 2283 <CanGrow>true</CanGrow> 2284 <Left>5.5873cm</Left> 2285 <Height>0.50793cm</Height> 2286 <Value>="RE/" & Fields!RejestrFaktur_Symbol.Value & "/" & Fields!NUMER.Value & "/" & Fields!NUMER_ROZ.Value & "/" & Fields!NUMER_ROK.Value</Value> 2287 </Textbox> 2292 2288 <Textbox Name="FAKTURY_DRUK_INTERNATIONALlabel_zaliczka_dnia"> 2293 2289 <rd:DefaultName>FAKTURY_DRUK_INTERNATIONALlabel_zaliczka_dnia</rd:DefaultName> … … 2305 2301 <ZIndex>7</ZIndex> 2306 2302 <CanGrow>true</CanGrow> 2307 <Left>3.68254cm</Left> 2303 <Left>3.93651cm</Left> 2304 <Height>0.50794cm</Height> 2308 2305 <Value>="Data sprzedaÅŒy: "</Value> 2309 2306 </Textbox> … … 2323 2320 <ZIndex>6</ZIndex> 2324 2321 <CanGrow>true</CanGrow> 2325 <Left>7.87302cm</Left> 2322 <Left>8.12699cm</Left> 2323 <Height>0.50794cm</Height> 2326 2324 <Value>=First(Fields!DATA_SPRZEDAZY.Value, "Faktura")</Value> 2327 2325 </Textbox> … … 2340 2338 <ZIndex>5</ZIndex> 2341 2339 <CanGrow>true</CanGrow> 2342 <Left>3. 68254cm</Left>2340 <Left>3.93651cm</Left> 2343 2341 <Height>0.50794cm</Height> 2344 2342 <Value>="Dotyczy faktury VAT nr: "</Value> … … 2359 2357 <ZIndex>4</ZIndex> 2360 2358 <CanGrow>true</CanGrow> 2361 <Left>3. 68254cm</Left>2359 <Left>3.93651cm</Left> 2362 2360 <Height>0.50794cm</Height> 2363 2361 <Value>=First(Fields!FAKTURY_DRUK_INTERNATIONALlabel_data_wystawienia.Value, "tlumaczenia")</Value> … … 2379 2377 <ZIndex>3</ZIndex> 2380 2378 <CanGrow>true</CanGrow> 2381 <Left> 7.87302cm</Left>2379 <Left>8.12699cm</Left> 2382 2380 <Height>0.50794cm</Height> 2383 2381 <Value>=First(Fields!NUMER.Value, "Faktura") & "/" & First(Fields!NUMER_ROZ.Value, "Faktura") & "/" & First(Fields!NUMER_ROK.Value, "Faktura")</Value> … … 2397 2395 <ZIndex>2</ZIndex> 2398 2396 <CanGrow>true</CanGrow> 2399 <Left> 7.87302cm</Left>2397 <Left>8.12699cm</Left> 2400 2398 <Height>0.50794cm</Height> 2401 2399 <Value>=Fields!DATA_WYSTAWIENIA.Value</Value> … … 2403 2401 <Textbox Name="NUMER"> 2404 2402 <rd:DefaultName>NUMER</rd:DefaultName> 2403 <Top>0.50794cm</Top> 2405 2404 <Style> 2406 2405 <FontSize>16pt</FontSize> … … 2421 2420 <Textbox Name="FAKTURY_DRUK_INTERNATIONALlabel_oryginal_kopia"> 2422 2421 <rd:DefaultName>FAKTURY_DRUK_INTERNATIONALlabel_oryginal_kopia</rd:DefaultName> 2423 <Top> 0.7619cm</Top>2422 <Top>1.14286cm</Top> 2424 2423 <Style> 2425 2424 <FontWeight>700</FontWeight> … … 2429 2428 <PaddingRight>2pt</PaddingRight> 2430 2429 </Style> 2431 <Left> 5.33334cm</Left>2432 <Height>0. 63492cm</Height>2430 <Left>4.69841cm</Left> 2431 <Height>0.38096cm</Height> 2433 2432 <Value>=First(Fields!FAKTURY_DRUK_INTERNATIONALlabel_oryginal_kopia.Value, "tlumaczenia")</Value> 2434 2433 </Textbox> 2435 2434 </ReportItems> 2436 <Top>0.63492cm</Top> 2437 <Width>10.1627cm</Width> 2438 <Height>3.1746cm</Height> 2435 <Width>10.41667cm</Width> 2436 <Height>3.68254cm</Height> 2439 2437 </Rectangle> 2440 2438 </ReportItems> 2441 2439 <Width>18.67064cm</Width> 2442 <Height> 8.7619cm</Height>2440 <Height>7.49206cm</Height> 2443 2441 </List> 2444 2442 <Rectangle Name="rectangle5"> … … 3562 3560 </Table> 3563 3561 </ReportItems> 3564 <Top>1 4.22222cm</Top>3562 <Top>12.69841cm</Top> 3565 3563 <Width>18.53969cm</Width> 3566 3564 <Height>4.31746cm</Height> … … 3569 3567 <ZIndex>4</ZIndex> 3570 3568 <DataSetName>FakturaDetails2</DataSetName> 3571 <Top>2 6.15873cm</Top>3569 <Top>24.25397cm</Top> 3572 3570 <TableGroups> 3573 3571 <TableGroup> … … 3764 3762 </TableColumn> 3765 3763 </TableColumns> 3766 <Height>1.6508cm</Height> 3767 <Left>0.25397cm</Left> 3764 <Left>0.12698cm</Left> 3768 3765 </Table> 3769 3766 <Rectangle Name="rectangle4"> … … 4941 4938 </List> 4942 4939 </ReportItems> 4943 <Top> 9.26984cm</Top>4940 <Top>7.61905cm</Top> 4944 4941 <Width>18.53968cm</Width> 4945 4942 <Height>4.95239cm</Height> … … 4948 4945 <ZIndex>2</ZIndex> 4949 4946 <Left>0.12698cm</Left> 4950 <DataSetName> Faktura</DataSetName>4947 <DataSetName>Korekta</DataSetName> 4951 4948 <ReportItems> 4952 4949 <Textbox Name="opis"> … … 5060 5057 </Rectangle> 5061 5058 </ReportItems> 5062 <Top> 20.8254cm</Top>5059 <Top>19.04762cm</Top> 5063 5060 <Width>18.53968cm</Width> 5064 5061 <Height>3.42857cm</Height> … … 5105 5102 </Textbox> 5106 5103 </ReportItems> 5107 <Top>2 4.50794cm</Top>5104 <Top>22.60318cm</Top> 5108 5105 <Width>18.53968cm</Width> 5109 5106 <PageBreakAtEnd>true</PageBreakAtEnd> … … 5112 5109 <Table Name="table6"> 5113 5110 <DataSetName>FakturaDetailsKorekty</DataSetName> 5114 <Top>2 6.15873cm</Top>5111 <Top>24.25397cm</Top> 5115 5112 <TableGroups> 5116 5113 <TableGroup> … … 5301 5298 </TableColumn> 5302 5299 </TableColumns> 5303 <Height>1.6508cm</Height> 5304 <Left>9.52381cm</Left> 5300 <Left>9.39683cm</Left> 5305 5301 </Table> 5306 5302 </ReportItems> 5307 <Height>2 8.19048cm</Height>5303 <Height>25.90477cm</Height> 5308 5304 </Body> 5309 5305 <Language>pl</Language> 5310 <TopMargin> 1cm</TopMargin>5306 <TopMargin>0.7cm</TopMargin> 5311 5307 <PageHeight>29.7cm</PageHeight> 5312 5308 </Report> -
Baza Reklam 2 - Faktury/Raporty/fakturaReversed2.rdlc
r91 r92 3809 3809 </Table> 3810 3810 </ReportItems> 3811 <Top> 9.39683cm</Top>3811 <Top>8.12698cm</Top> 3812 3812 <Width>18.66667cm</Width> 3813 3813 <Height>6.34921cm</Height> … … 3815 3815 <List Name="list3"> 3816 3816 <ZIndex>3</ZIndex> 3817 <Left>0. 12698cm</Left>3817 <Left>0.38095cm</Left> 3818 3818 <DataSetName>Faktura</DataSetName> 3819 3819 <ReportItems> … … 3833 3833 </Textbox> 3834 3834 </ReportItems> 3835 <Top>1 5.87302cm</Top>3835 <Top>14.60317cm</Top> 3836 3836 <Width>13.84127cm</Width> 3837 3837 <Height>0.50794cm</Height> … … 3845 3845 <Rectangle Name="sprzedawca"> 3846 3846 <Left>0.12698cm</Left> 3847 <ZIndex> 4</ZIndex>3847 <ZIndex>3</ZIndex> 3848 3848 <ReportItems> 3849 3849 <Textbox Name="FAKTURY_DRUK_INTERNATIONALlabel_sprzedawca"> 3850 3850 <rd:DefaultName>FAKTURY_DRUK_INTERNATIONALlabel_sprzedawca</rd:DefaultName> 3851 <Width>8cm</Width>3852 3851 <Style> 3853 3852 <BackgroundColor>#c0c0ff</BackgroundColor> … … 3922 3921 </Style> 3923 3922 <CanGrow>true</CanGrow> 3924 <Height>0.50794cm</Height>3925 3923 <Value>=Fields!Adres_Kor_Agencji.Value</Value> 3926 3924 </Textbox> 3927 3925 </ReportItems> 3928 3926 <Top>0.12698cm</Top> 3929 <Width>8 .25397cm</Width>3930 <Height>3. 68254cm</Height>3927 <Width>8cm</Width> 3928 <Height>3.42857cm</Height> 3931 3929 </Rectangle> 3932 3930 <Rectangle Name="nabywca"> 3933 <Left>0. 12698cm</Left>3934 <ZIndex> 3</ZIndex>3931 <Left>0.25397cm</Left> 3932 <ZIndex>2</ZIndex> 3935 3933 <ReportItems> 3936 3934 <Rectangle Name="rectangle3"> … … 3939 3937 <ReportItems> 3940 3938 <Textbox Name="textbox36"> 3941 <Top>0.12698cm</Top>3942 3939 <Width>5.07937cm</Width> 3943 3940 <Style> … … 3950 3947 </Style> 3951 3948 <CanGrow>true</CanGrow> 3952 <Left>0.12698cm</Left>3953 <Height>1.77778cm</Height>3954 3949 <Value>=Fields!Adres_Kor.Value</Value> 3955 3950 </Textbox> 3956 3951 </ReportItems> 3957 <Top>0.63492cm</Top> 3958 <Width>5.33333cm</Width> 3959 <Height>2.03175cm</Height> 3952 <Top>0.50794cm</Top> 3953 <Width>6.47619cm</Width> 3960 3954 </Rectangle> 3961 3955 <Textbox Name="FAKTURY_DRUK_INTERNATIONALlabel_nabywca"> … … 3975 3969 <Textbox Name="NABYWCA_NIP"> 3976 3970 <rd:DefaultName>NABYWCA_NIP</rd:DefaultName> 3977 <Top>1. 26984cm</Top>3971 <Top>1.14286cm</Top> 3978 3972 <Width>4.06349cm</Width> 3979 3973 <Style> … … 3992 3986 <Textbox Name="NABYWCA_ADRES"> 3993 3987 <rd:DefaultName>NABYWCA_ADRES</rd:DefaultName> 3994 <Top>0. 63492cm</Top>3988 <Top>0.50794cm</Top> 3995 3989 <Width>5.07937cm</Width> 3996 3990 <Style> … … 4006 4000 </Textbox> 4007 4001 </ReportItems> 4008 <Top> 4.44444cm</Top>4002 <Top>3.93651cm</Top> 4009 4003 <Width>18.28571cm</Width> 4010 <Height>2. 79365cm</Height>4004 <Height>2.28572cm</Height> 4011 4005 </Rectangle> 4012 <Textbox Name="textbox7">4013 <rd:DefaultName>textbox7</rd:DefaultName>4014 <Width>4.8254cm</Width>4015 <Style>4016 <FontSize>8pt</FontSize>4017 <FontWeight>700</FontWeight>4018 <TextAlign>Right</TextAlign>4019 <VerticalAlign>Middle</VerticalAlign>4020 <PaddingLeft>2pt</PaddingLeft>4021 <PaddingRight>2pt</PaddingRight>4022 <PaddingTop>2pt</PaddingTop>4023 <PaddingBottom>2pt</PaddingBottom>4024 </Style>4025 <ZIndex>2</ZIndex>4026 <CanGrow>true</CanGrow>4027 <Left>13.71429cm</Left>4028 <Height>0.50793cm</Height>4029 <Value>="RE/" & Fields!RejestrFaktur_Symbol.Value & "/" & Fields!NUMER.Value & "/" & Fields!NUMER_ROZ.Value & "/" & Fields!NUMER_ROK.Value</Value>4030 </Textbox>4031 4006 <Rectangle Name="sposobZaplaty"> 4007 <Left>0.25397cm</Left> 4032 4008 <ZIndex>1</ZIndex> 4033 4009 <ReportItems> … … 4100 4076 </Textbox> 4101 4077 </ReportItems> 4102 <Top> 7.49206cm</Top>4078 <Top>6.47619cm</Top> 4103 4079 <Width>18.28571cm</Width> 4080 <Height>1.26984cm</Height> 4104 4081 </Rectangle> 4105 4082 <Rectangle Name="rectangle2"> 4106 <Left>8. 38095cm</Left>4083 <Left>8.25397cm</Left> 4107 4084 <ReportItems> 4085 <Textbox Name="textbox7"> 4086 <rd:DefaultName>textbox7</rd:DefaultName> 4087 <Top>0.12698cm</Top> 4088 <Width>4.8254cm</Width> 4089 <Style> 4090 <FontSize>8pt</FontSize> 4091 <FontWeight>700</FontWeight> 4092 <TextAlign>Right</TextAlign> 4093 <VerticalAlign>Middle</VerticalAlign> 4094 <PaddingLeft>2pt</PaddingLeft> 4095 <PaddingRight>2pt</PaddingRight> 4096 <PaddingTop>2pt</PaddingTop> 4097 <PaddingBottom>2pt</PaddingBottom> 4098 </Style> 4099 <ZIndex>11</ZIndex> 4100 <CanGrow>true</CanGrow> 4101 <Left>5.46031cm</Left> 4102 <Height>0.50793cm</Height> 4103 <Value>="RE/" & Fields!RejestrFaktur_Symbol.Value & "/" & Fields!NUMER.Value & "/" & Fields!NUMER_ROZ.Value & "/" & Fields!NUMER_ROK.Value</Value> 4104 </Textbox> 4108 4105 <Textbox Name="FAKTURY_DRUK_INTERNATIONALlabel_zaliczka_brutto"> 4109 4106 <rd:DefaultName>FAKTURY_DRUK_INTERNATIONALlabel_zaliczka_brutto</rd:DefaultName> 4110 <Top>3. 04762cm</Top>4107 <Top>3.30159cm</Top> 4111 4108 <Width>4.31746cm</Width> 4112 4109 <Style> … … 4121 4118 <ZIndex>10</ZIndex> 4122 4119 <CanGrow>true</CanGrow> 4123 <Left>1. 52381cm</Left>4120 <Left>1.65079cm</Left> 4124 4121 <Value>=Iif(Fields!Zaliczka_Brutto.Value<>0,First(Fields!FAKTURY_DRUK_INTERNATIONALlabel_zaliczka_brutto.Value, "tlumaczenia"),"")</Value> 4125 4122 </Textbox> 4126 4123 <Textbox Name="FAKTURY_DRUK_INTERNATIONALlabel_zaliczka_dnia"> 4127 4124 <rd:DefaultName>FAKTURY_DRUK_INTERNATIONALlabel_zaliczka_dnia</rd:DefaultName> 4128 <Top>2. 53968cm</Top>4125 <Top>2.79365cm</Top> 4129 4126 <Width>4.31746cm</Width> 4130 4127 <Style> … … 4139 4136 <ZIndex>9</ZIndex> 4140 4137 <CanGrow>true</CanGrow> 4141 <Left>1. 52381cm</Left>4138 <Left>1.65079cm</Left> 4142 4139 <Height>0.50794cm</Height> 4143 4140 <Value>=Iif(Fields!Zaliczka_Brutto.Value<>0,First(Fields!FAKTURY_DRUK_INTERNATIONALlabel_zaliczka_dnia.Value, "tlumaczenia"),"")</Value> … … 4145 4142 <Textbox Name="Zaliczka_Brutto"> 4146 4143 <rd:DefaultName>Zaliczka_Brutto</rd:DefaultName> 4147 <Top>3.04762cm</Top> 4144 <Top>3.30159cm</Top> 4145 <Width>2.28969cm</Width> 4148 4146 <Style> 4149 4147 <FontSize>8pt</FontSize> … … 4159 4157 <ZIndex>8</ZIndex> 4160 4158 <CanGrow>true</CanGrow> 4161 <Left>7. 87301cm</Left>4159 <Left>7.99999cm</Left> 4162 4160 <Value>=Iif(Fields!Zaliczka_Brutto.Value<>0,Fields!Zaliczka_Brutto.Value,"")</Value> 4163 4161 </Textbox> 4164 4162 <Textbox Name="Zaliczka_Data"> 4165 4163 <rd:DefaultName>Zaliczka_Data</rd:DefaultName> 4166 <Top>2.53968cm</Top> 4164 <Top>2.79365cm</Top> 4165 <Width>2.28969cm</Width> 4167 4166 <Style> 4168 4167 <FontSize>8pt</FontSize> … … 4177 4176 <ZIndex>7</ZIndex> 4178 4177 <CanGrow>true</CanGrow> 4179 <Left>7. 87301cm</Left>4178 <Left>7.99999cm</Left> 4180 4179 <Height>0.50794cm</Height> 4181 4180 <Value>=Iif(Fields!Zaliczka_Brutto.Value<>0,Fields!Zaliczka_Data.Value,"")</Value> … … 4183 4182 <Textbox Name="MIEJSCOWOSC_WYSTAWIENIA"> 4184 4183 <rd:DefaultName>MIEJSCOWOSC_WYSTAWIENIA</rd:DefaultName> 4185 <Top>1. 52381cm</Top>4184 <Top>1.77778cm</Top> 4186 4185 <Width>2.03175cm</Width> 4187 4186 <Style> … … 4196 4195 <ZIndex>6</ZIndex> 4197 4196 <CanGrow>true</CanGrow> 4198 <Left>5. 84127cm</Left>4197 <Left>5.96825cm</Left> 4199 4198 <Height>0.50794cm</Height> 4200 4199 <Value>=Fields!MIEJSCOWOSC_WYSTAWIENIA.Value</Value> … … 4202 4201 <Textbox Name="FAKTURY_DRUK_INTERNATIONALlabel_data_sprzedazy"> 4203 4202 <rd:DefaultName>FAKTURY_DRUK_INTERNATIONALlabel_data_sprzedazy</rd:DefaultName> 4204 <Top>2. 03175cm</Top>4203 <Top>2.28572cm</Top> 4205 4204 <Width>4.31746cm</Width> 4206 4205 <Style> … … 4215 4214 <ZIndex>5</ZIndex> 4216 4215 <CanGrow>true</CanGrow> 4217 <Left>1. 52381cm</Left>4216 <Left>1.65079cm</Left> 4218 4217 <Height>0.50794cm</Height> 4219 4218 <Value>=First(Fields!FAKTURY_DRUK_INTERNATIONALlabel_data_sprzedazy.Value, "tlumaczenia")</Value> … … 4221 4220 <Textbox Name="FAKTURY_DRUK_INTERNATIONALlabel_data_wystawienia"> 4222 4221 <rd:DefaultName>FAKTURY_DRUK_INTERNATIONALlabel_data_wystawienia</rd:DefaultName> 4223 <Top>1. 52381cm</Top>4222 <Top>1.77778cm</Top> 4224 4223 <Width>4.31746cm</Width> 4225 4224 <Style> … … 4234 4233 <ZIndex>4</ZIndex> 4235 4234 <CanGrow>true</CanGrow> 4236 <Left>1. 52381cm</Left>4235 <Left>1.65079cm</Left> 4237 4236 <Height>0.50794cm</Height> 4238 4237 <Value>=First(Fields!FAKTURY_DRUK_INTERNATIONALlabel_data_wystawienia.Value, "tlumaczenia")</Value> … … 4240 4239 <Textbox Name="NUMER"> 4241 4240 <rd:DefaultName>NUMER</rd:DefaultName> 4241 <Top>0.63492cm</Top> 4242 <Width>10.28968cm</Width> 4242 4243 <Style> 4243 4244 <FontSize>16pt</FontSize> … … 4257 4258 <Textbox Name="FAKTURY_DRUK_INTERNATIONALlabel_oryginal_kopia"> 4258 4259 <rd:DefaultName>FAKTURY_DRUK_INTERNATIONALlabel_oryginal_kopia</rd:DefaultName> 4259 <Top>0.7619cm</Top> 4260 <Top>1.26984cm</Top> 4261 <Width>5.71826cm</Width> 4260 4262 <Style> 4261 4263 <FontWeight>700</FontWeight> … … 4266 4268 </Style> 4267 4269 <ZIndex>2</ZIndex> 4268 <Left> 5.33334cm</Left>4269 <Height>0. 63492cm</Height>4270 <Left>4.57142cm</Left> 4271 <Height>0.50794cm</Height> 4270 4272 <Value>=First(Fields!FAKTURY_DRUK_INTERNATIONALlabel_oryginal_kopia.Value, "tlumaczenia")</Value> 4271 4273 </Textbox> 4272 4274 <Textbox Name="DATA_SPRZEDAZY"> 4273 4275 <rd:DefaultName>DATA_SPRZEDAZY</rd:DefaultName> 4274 <Top>2.03175cm</Top> 4276 <Top>2.28572cm</Top> 4277 <Width>2.28969cm</Width> 4275 4278 <Style> 4276 4279 <FontSize>8pt</FontSize> … … 4286 4289 <ZIndex>1</ZIndex> 4287 4290 <CanGrow>true</CanGrow> 4288 <Left>7. 87301cm</Left>4291 <Left>7.99999cm</Left> 4289 4292 <Height>0.50794cm</Height> 4290 4293 <Value>=Fields!DATA_SPRZEDAZY.Value</Value> … … 4292 4295 <Textbox Name="textbox25"> 4293 4296 <rd:DefaultName>textbox25</rd:DefaultName> 4294 <Top>1.52381cm</Top> 4297 <Top>1.77778cm</Top> 4298 <Width>2.28969cm</Width> 4295 4299 <Style> 4296 4300 <FontSize>8pt</FontSize> … … 4304 4308 </Style> 4305 4309 <CanGrow>true</CanGrow> 4306 <Left>7. 87301cm</Left>4310 <Left>7.99999cm</Left> 4307 4311 <Height>0.50794cm</Height> 4308 4312 <Value>=Fields!DATA_WYSTAWIENIA.Value</Value> 4309 4313 </Textbox> 4310 4314 </ReportItems> 4311 <Top>0.63492cm</Top> 4312 <Width>10.1627cm</Width> 4313 <Height>3.55556cm</Height> 4315 <Height>3.80953cm</Height> 4314 4316 </Rectangle> 4315 4317 </ReportItems> 4316 <Top>0.12698cm</Top>4317 4318 <Width>18.67064cm</Width> 4318 <Height> 8.7619cm</Height>4319 <Height>7.87302cm</Height> 4319 4320 </List> 4320 4321 <List Name="list2"> … … 4470 4471 <rd:DefaultName>opis</rd:DefaultName> 4471 4472 <Top>0.7619cm</Top> 4472 <Width>18.53968cm</Width>4473 4473 <Style> 4474 4474 <BorderStyle> … … 4509 4509 </ReportItems> 4510 4510 <Top>2.03175cm</Top> 4511 <Width>18.53968cm</Width> 4511 4512 <Height>4.57143cm</Height> 4512 4513 </Rectangle> 4513 4514 </ReportItems> 4514 <Top>16.38095cm</Top> 4515 <Top>15.2381cm</Top> 4516 <Width>18.66667cm</Width> 4515 4517 <Height>6.73016cm</Height> 4516 4518 </List> … … 4518 4520 <DataSetName>FakturaDetails2</DataSetName> 4519 4521 <PageBreakAtStart>true</PageBreakAtStart> 4520 <Top>2 3.2381cm</Top>4522 <Top>22.09524cm</Top> 4521 4523 <TableGroups> 4522 4524 <TableGroup> … … 4716 4718 </Table> 4717 4719 </ReportItems> 4718 <Height>2 5.14286cm</Height>4720 <Height>24cm</Height> 4719 4721 </Body> 4720 4722 <Language>pl</Language> 4721 <TopMargin> 1cm</TopMargin>4723 <TopMargin>0.7cm</TopMargin> 4722 4724 <PageHeight>29.7cm</PageHeight> 4723 4725 </Report> -
Baza Reklam 2 - Faktury/ZamowieniaForm.cs
r91 r92 859 859 naglowekKorekty.NABYWCA_NIP = faktura.NABYWCA_NIP; 860 860 naglowekKorekty.TERMIN_ZAPLATY = DateTime.Today.AddDays(7); 861 naglowekKorekty.opis = " TU BÊDZIE JAKI OPIS";861 naglowekKorekty.opis = "rezygnacja z emisji reklamy"; 862 862 863 863 naglowekKorekty.SPOSOB_ZAPLATY = faktura.SPOSOB_ZAPLATY;
