root/trunk/RaportySQL/WplywyWgWplaty.rdl @ 319

Wersja 319, 31.5 KB (wprowadzona przez marek, 17 years temu)

re #81 - nowy raport WplywyWgWplaty? plus nowy widok FakturyZaplacone?

Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">
3  <DataSources>
4    <DataSource Name="BAZA_REKLAM">
5      <rd:DataSourceID>6d589086-5dce-4781-8884-a0dd6b3db78a</rd:DataSourceID>
6      <DataSourceReference>BAZA_REKLAM</DataSourceReference>
7    </DataSource>
8  </DataSources>
9  <InteractiveHeight>11in</InteractiveHeight>
10  <ReportParameters>
11    <ReportParameter Name="rok">
12      <DataType>String</DataType>
13      <DefaultValue>
14        <Values>
15          <Value>=Year(Today)</Value>
16        </Values>
17      </DefaultValue>
18      <Prompt>Rok:</Prompt>
19      <ValidValues>
20        <DataSetReference>
21          <DataSetName>ListaLat</DataSetName>
22          <ValueField>rok</ValueField>
23          <LabelField>rok</LabelField>
24        </DataSetReference>
25      </ValidValues>
26    </ReportParameter>
27    <ReportParameter Name="ms">
28      <DataType>String</DataType>
29      <DefaultValue>
30        <Values>
31          <Value>=Month(Today)</Value>
32        </Values>
33      </DefaultValue>
34      <Prompt>Miesiac:</Prompt>
35      <ValidValues>
36        <ParameterValues>
37          <ParameterValue>
38            <Value>1</Value>
39          </ParameterValue>
40          <ParameterValue>
41            <Value>2</Value>
42          </ParameterValue>
43          <ParameterValue>
44            <Value>3</Value>
45          </ParameterValue>
46          <ParameterValue>
47            <Value>4</Value>
48          </ParameterValue>
49          <ParameterValue>
50            <Value>5</Value>
51          </ParameterValue>
52          <ParameterValue>
53            <Value>6</Value>
54          </ParameterValue>
55          <ParameterValue>
56            <Value>7</Value>
57          </ParameterValue>
58          <ParameterValue>
59            <Value>8</Value>
60          </ParameterValue>
61          <ParameterValue>
62            <Value>9</Value>
63          </ParameterValue>
64          <ParameterValue>
65            <Value>10</Value>
66          </ParameterValue>
67          <ParameterValue>
68            <Value>11</Value>
69          </ParameterValue>
70          <ParameterValue>
71            <Value>12</Value>
72          </ParameterValue>
73        </ParameterValues>
74      </ValidValues>
75      <MultiValue>true</MultiValue>
76    </ReportParameter>
77    <ReportParameter Name="agencja">
78      <DataType>String</DataType>
79      <DefaultValue>
80        <DataSetReference>
81          <DataSetName>ListaAgencji</DataSetName>
82          <ValueField>Id_agencji</ValueField>
83        </DataSetReference>
84      </DefaultValue>
85      <AllowBlank>true</AllowBlank>
86      <Prompt>Agencja:</Prompt>
87      <ValidValues>
88        <DataSetReference>
89          <DataSetName>ListaAgencji</DataSetName>
90          <ValueField>Id_agencji</ValueField>
91          <LabelField>Symbol</LabelField>
92        </DataSetReference>
93      </ValidValues>
94      <MultiValue>true</MultiValue>
95    </ReportParameter>
96  </ReportParameters>
97  <rd:DrawGrid>true</rd:DrawGrid>
98  <InteractiveWidth>8.5in</InteractiveWidth>
99  <rd:GridSpacing>0.25cm</rd:GridSpacing>
100  <rd:SnapToGrid>true</rd:SnapToGrid>
101  <RightMargin>2.5cm</RightMargin>
102  <LeftMargin>2.5cm</LeftMargin>
103  <PageHeader>
104    <PrintOnFirstPage>true</PrintOnFirstPage>
105    <Height>0.75cm</Height>
106    <PrintOnLastPage>true</PrintOnLastPage>
107  </PageHeader>
108  <BottomMargin>2.5cm</BottomMargin>
109  <rd:ReportID>340d8633-3f30-4356-b810-b10969079b1c</rd:ReportID>
110  <PageWidth>21cm</PageWidth>
111  <DataSets>
112    <DataSet Name="Wplywy">
113      <Fields>
114        <Field Name="AgencjaId">
115          <DataField>AgencjaId</DataField>
116          <rd:TypeName>System.Int32</rd:TypeName>
117        </Field>
118        <Field Name="Agencja">
119          <DataField>Agencja</DataField>
120          <rd:TypeName>System.String</rd:TypeName>
121        </Field>
122        <Field Name="Tytul">
123          <DataField>Tytul</DataField>
124          <rd:TypeName>System.String</rd:TypeName>
125        </Field>
126        <Field Name="FakturaNetto">
127          <DataField>FakturaNetto</DataField>
128          <rd:TypeName>System.Decimal</rd:TypeName>
129        </Field>
130        <Field Name="FakturaBrutto">
131          <DataField>FakturaBrutto</DataField>
132          <rd:TypeName>System.Double</rd:TypeName>
133        </Field>
134        <Field Name="WplataBrutto">
135          <DataField>WplataBrutto</DataField>
136          <rd:TypeName>System.Decimal</rd:TypeName>
137        </Field>
138      </Fields>
139      <Query>
140        <DataSourceName>BAZA_REKLAM</DataSourceName>
141        <CommandText>SELECT AgencjaId, Agencja, Tytul,
142SUM(FakturaNetto) AS FakturaNetto,
143SUM(FakturaBrutto) AS FakturaBrutto,
144SUM(WplataBrutto) AS WplataBrutto
145FROM FakturyZaplacone
146WHERE
147Rok = @rok
148AND Miesiac IN (@ms)
149AND (AgencjaId IN (@agencja))
150GROUP BY AgencjaId, Agencja, Tytul
151ORDER BY Agencja, Tytul</CommandText>
152        <QueryParameters>
153          <QueryParameter Name="@rok">
154            <Value>=Parameters!rok.Value</Value>
155          </QueryParameter>
156          <QueryParameter Name="@ms">
157            <Value>=Parameters!ms.Value</Value>
158          </QueryParameter>
159          <QueryParameter Name="@agencja">
160            <Value>=Parameters!agencja.Value</Value>
161          </QueryParameter>
162        </QueryParameters>
163        <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
164      </Query>
165    </DataSet>
166    <DataSet Name="ListaLat">
167      <Fields>
168        <Field Name="rok">
169          <DataField>rok</DataField>
170          <rd:TypeName>System.Int32</rd:TypeName>
171        </Field>
172      </Fields>
173      <Query>
174        <DataSourceName>BAZA_REKLAM</DataSourceName>
175        <CommandText>SELECT DISTINCT YEAR(DATA_W) AS rok
176FROM dbo.NR
177WHERE DATA_W IS NOT NULL
178AND YEAR(DATA_W)&gt;2007
179ORDER BY YEAR(DATA_W) DESC</CommandText>
180        <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
181      </Query>
182    </DataSet>
183    <DataSet Name="ListaAgencji">
184      <Fields>
185        <Field Name="Id_agencji">
186          <DataField>Id_agencji</DataField>
187          <rd:TypeName>System.Int32</rd:TypeName>
188        </Field>
189        <Field Name="Symbol">
190          <DataField>Symbol</DataField>
191          <rd:TypeName>System.String</rd:TypeName>
192        </Field>
193      </Fields>
194      <Query>
195        <DataSourceName>BAZA_REKLAM</DataSourceName>
196        <CommandText>SELECT Id_agencji, Symbol
197FROM    AGENCJE
198WHERE aktywna=1</CommandText>
199        <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
200      </Query>
201    </DataSet>
202  </DataSets>
203  <Code>Public Function GetMonths(P as Parameter) as String
204  Dim i As Integer
205  Dim s As String
206  s = p.value(0)               
207  For i = 1 to Ubound(P.Value)
208    s = s &amp; "," &amp; p.Value(i) 
209  Next i
210  Return s
211End Function</Code>
212  <Width>15.15872cm</Width>
213  <Body>
214    <ColumnSpacing>1cm</ColumnSpacing>
215    <ReportItems>
216      <Textbox Name="textbox1">
217        <rd:DefaultName>textbox1</rd:DefaultName>
218        <Width>12.69841cm</Width>
219        <Style>
220          <FontSize>16pt</FontSize>
221          <TextAlign>Center</TextAlign>
222          <PaddingLeft>2pt</PaddingLeft>
223          <PaddingRight>2pt</PaddingRight>
224          <PaddingTop>2pt</PaddingTop>
225          <PaddingBottom>2pt</PaddingBottom>
226        </Style>
227        <ZIndex>1</ZIndex>
228        <CanGrow>true</CanGrow>
229        <Height>0.75cm</Height>
230        <Value>="Wpływy według wpłaty: " &amp; Parameters!rok.Value &amp; ", " &amp; Code.GetMonths(Parameters!ms)</Value>
231      </Textbox>
232      <Table Name="table1">
233        <DataSetName>Wplywy</DataSetName>
234        <Top>0.75cm</Top>
235        <TableGroups>
236          <TableGroup>
237            <Grouping Name="table1_Agencja">
238              <GroupExpressions>
239                <GroupExpression>=Fields!Agencja.Value</GroupExpression>
240              </GroupExpressions>
241            </Grouping>
242            <Sorting>
243              <SortBy>
244                <SortExpression>=Fields!Agencja.Value</SortExpression>
245                <Direction>Ascending</Direction>
246              </SortBy>
247            </Sorting>
248            <Header>
249              <TableRows>
250                <TableRow>
251                  <TableCells>
252                    <TableCell>
253                      <ReportItems>
254                        <Textbox Name="Agencja">
255                          <rd:DefaultName>Agencja</rd:DefaultName>
256                          <Style>
257                            <BackgroundColor>WhiteSmoke</BackgroundColor>
258                            <BorderColor>
259                              <Default>LightGrey</Default>
260                            </BorderColor>
261                            <BorderStyle>
262                              <Default>Solid</Default>
263                            </BorderStyle>
264                            <BorderWidth>
265                              <Default>0.5pt</Default>
266                            </BorderWidth>
267                            <FontSize>8pt</FontSize>
268                            <PaddingLeft>2pt</PaddingLeft>
269                            <PaddingRight>2pt</PaddingRight>
270                            <PaddingTop>2pt</PaddingTop>
271                            <PaddingBottom>2pt</PaddingBottom>
272                          </Style>
273                          <ZIndex>14</ZIndex>
274                          <CanGrow>true</CanGrow>
275                          <Value>=Fields!Agencja.Value</Value>
276                        </Textbox>
277                      </ReportItems>
278                    </TableCell>
279                    <TableCell>
280                      <ReportItems>
281                        <Textbox Name="textbox8">
282                          <rd:DefaultName>textbox8</rd:DefaultName>
283                          <Style>
284                            <BackgroundColor>WhiteSmoke</BackgroundColor>
285                            <BorderColor>
286                              <Default>LightGrey</Default>
287                            </BorderColor>
288                            <BorderStyle>
289                              <Default>Solid</Default>
290                            </BorderStyle>
291                            <BorderWidth>
292                              <Default>0.5pt</Default>
293                            </BorderWidth>
294                            <PaddingLeft>2pt</PaddingLeft>
295                            <PaddingRight>2pt</PaddingRight>
296                            <PaddingTop>2pt</PaddingTop>
297                            <PaddingBottom>2pt</PaddingBottom>
298                          </Style>
299                          <ZIndex>13</ZIndex>
300                          <CanGrow>true</CanGrow>
301                          <Value>
302                          </Value>
303                        </Textbox>
304                      </ReportItems>
305                    </TableCell>
306                    <TableCell>
307                      <ReportItems>
308                        <Textbox Name="textbox9">
309                          <rd:DefaultName>textbox9</rd:DefaultName>
310                          <Style>
311                            <BackgroundColor>WhiteSmoke</BackgroundColor>
312                            <BorderColor>
313                              <Default>LightGrey</Default>
314                            </BorderColor>
315                            <BorderStyle>
316                              <Default>Solid</Default>
317                            </BorderStyle>
318                            <BorderWidth>
319                              <Default>0.5pt</Default>
320                            </BorderWidth>
321                            <FontSize>8pt</FontSize>
322                            <FontWeight>600</FontWeight>
323                            <Format>C</Format>
324                            <PaddingLeft>2pt</PaddingLeft>
325                            <PaddingRight>2pt</PaddingRight>
326                            <PaddingTop>2pt</PaddingTop>
327                            <PaddingBottom>2pt</PaddingBottom>
328                          </Style>
329                          <ZIndex>12</ZIndex>
330                          <CanGrow>true</CanGrow>
331                          <Value>=Sum(Fields!FakturaNetto.Value)</Value>
332                        </Textbox>
333                      </ReportItems>
334                    </TableCell>
335                    <TableCell>
336                      <ReportItems>
337                        <Textbox Name="textbox10">
338                          <rd:DefaultName>textbox10</rd:DefaultName>
339                          <Style>
340                            <BackgroundColor>WhiteSmoke</BackgroundColor>
341                            <BorderColor>
342                              <Default>LightGrey</Default>
343                            </BorderColor>
344                            <BorderStyle>
345                              <Default>Solid</Default>
346                            </BorderStyle>
347                            <BorderWidth>
348                              <Default>0.5pt</Default>
349                            </BorderWidth>
350                            <FontSize>8pt</FontSize>
351                            <FontWeight>600</FontWeight>
352                            <Format>C</Format>
353                            <PaddingLeft>2pt</PaddingLeft>
354                            <PaddingRight>2pt</PaddingRight>
355                            <PaddingTop>2pt</PaddingTop>
356                            <PaddingBottom>2pt</PaddingBottom>
357                          </Style>
358                          <ZIndex>11</ZIndex>
359                          <CanGrow>true</CanGrow>
360                          <Value>=Sum(Fields!FakturaBrutto.Value)</Value>
361                        </Textbox>
362                      </ReportItems>
363                    </TableCell>
364                    <TableCell>
365                      <ReportItems>
366                        <Textbox Name="textbox11">
367                          <rd:DefaultName>textbox11</rd:DefaultName>
368                          <Style>
369                            <BackgroundColor>WhiteSmoke</BackgroundColor>
370                            <BorderColor>
371                              <Default>LightGrey</Default>
372                            </BorderColor>
373                            <BorderStyle>
374                              <Default>Solid</Default>
375                            </BorderStyle>
376                            <BorderWidth>
377                              <Default>0.5pt</Default>
378                            </BorderWidth>
379                            <FontSize>8pt</FontSize>
380                            <FontWeight>600</FontWeight>
381                            <Format>C</Format>
382                            <PaddingLeft>2pt</PaddingLeft>
383                            <PaddingRight>2pt</PaddingRight>
384                            <PaddingTop>2pt</PaddingTop>
385                            <PaddingBottom>2pt</PaddingBottom>
386                          </Style>
387                          <ZIndex>10</ZIndex>
388                          <CanGrow>true</CanGrow>
389                          <Value>=Sum(Fields!WplataBrutto.Value)</Value>
390                        </Textbox>
391                      </ReportItems>
392                    </TableCell>
393                  </TableCells>
394                  <Height>0.53333cm</Height>
395                </TableRow>
396              </TableRows>
397            </Header>
398          </TableGroup>
399        </TableGroups>
400        <Details>
401          <TableRows>
402            <TableRow>
403              <TableCells>
404                <TableCell>
405                  <ReportItems>
406                    <Textbox Name="textbox3">
407                      <rd:DefaultName>textbox3</rd:DefaultName>
408                      <Style>
409                        <PaddingLeft>2pt</PaddingLeft>
410                        <PaddingRight>2pt</PaddingRight>
411                        <PaddingTop>2pt</PaddingTop>
412                        <PaddingBottom>2pt</PaddingBottom>
413                      </Style>
414                      <ZIndex>4</ZIndex>
415                      <CanGrow>true</CanGrow>
416                      <Value>
417                      </Value>
418                    </Textbox>
419                  </ReportItems>
420                </TableCell>
421                <TableCell>
422                  <ReportItems>
423                    <Textbox Name="Tytul">
424                      <rd:DefaultName>Tytul</rd:DefaultName>
425                      <Style>
426                        <BorderColor>
427                          <Default>LightGrey</Default>
428                        </BorderColor>
429                        <BorderStyle>
430                          <Default>Solid</Default>
431                        </BorderStyle>
432                        <BorderWidth>
433                          <Default>0.5pt</Default>
434                        </BorderWidth>
435                        <FontSize>8pt</FontSize>
436                        <PaddingLeft>2pt</PaddingLeft>
437                        <PaddingRight>2pt</PaddingRight>
438                        <PaddingTop>2pt</PaddingTop>
439                        <PaddingBottom>2pt</PaddingBottom>
440                      </Style>
441                      <ZIndex>3</ZIndex>
442                      <CanGrow>true</CanGrow>
443                      <Value>=Fields!Tytul.Value</Value>
444                    </Textbox>
445                  </ReportItems>
446                </TableCell>
447                <TableCell>
448                  <ReportItems>
449                    <Textbox Name="FakturaNetto">
450                      <rd:DefaultName>FakturaNetto</rd:DefaultName>
451                      <Style>
452                        <BorderColor>
453                          <Default>LightGrey</Default>
454                        </BorderColor>
455                        <BorderStyle>
456                          <Default>Solid</Default>
457                        </BorderStyle>
458                        <BorderWidth>
459                          <Default>0.5pt</Default>
460                        </BorderWidth>
461                        <FontSize>8pt</FontSize>
462                        <Format>C</Format>
463                        <PaddingLeft>2pt</PaddingLeft>
464                        <PaddingRight>2pt</PaddingRight>
465                        <PaddingTop>2pt</PaddingTop>
466                        <PaddingBottom>2pt</PaddingBottom>
467                      </Style>
468                      <ZIndex>2</ZIndex>
469                      <CanGrow>true</CanGrow>
470                      <Value>=Fields!FakturaNetto.Value</Value>
471                    </Textbox>
472                  </ReportItems>
473                </TableCell>
474                <TableCell>
475                  <ReportItems>
476                    <Textbox Name="FakturaBrutto">
477                      <rd:DefaultName>FakturaBrutto</rd:DefaultName>
478                      <Style>
479                        <BorderColor>
480                          <Default>LightGrey</Default>
481                        </BorderColor>
482                        <BorderStyle>
483                          <Default>Solid</Default>
484                        </BorderStyle>
485                        <BorderWidth>
486                          <Default>0.5pt</Default>
487                        </BorderWidth>
488                        <FontSize>8pt</FontSize>
489                        <Format>C</Format>
490                        <PaddingLeft>2pt</PaddingLeft>
491                        <PaddingRight>2pt</PaddingRight>
492                        <PaddingTop>2pt</PaddingTop>
493                        <PaddingBottom>2pt</PaddingBottom>
494                      </Style>
495                      <ZIndex>1</ZIndex>
496                      <CanGrow>true</CanGrow>
497                      <Value>=Fields!FakturaBrutto.Value</Value>
498                    </Textbox>
499                  </ReportItems>
500                </TableCell>
501                <TableCell>
502                  <ReportItems>
503                    <Textbox Name="WplataBrutto">
504                      <rd:DefaultName>WplataBrutto</rd:DefaultName>
505                      <Style>
506                        <BorderColor>
507                          <Default>LightGrey</Default>
508                        </BorderColor>
509                        <BorderStyle>
510                          <Default>Solid</Default>
511                        </BorderStyle>
512                        <BorderWidth>
513                          <Default>0.5pt</Default>
514                        </BorderWidth>
515                        <FontSize>8pt</FontSize>
516                        <Format>C</Format>
517                        <PaddingLeft>2pt</PaddingLeft>
518                        <PaddingRight>2pt</PaddingRight>
519                        <PaddingTop>2pt</PaddingTop>
520                        <PaddingBottom>2pt</PaddingBottom>
521                      </Style>
522                      <CanGrow>true</CanGrow>
523                      <Value>=Fields!WplataBrutto.Value</Value>
524                    </Textbox>
525                  </ReportItems>
526                </TableCell>
527              </TableCells>
528              <Height>0.53333cm</Height>
529            </TableRow>
530          </TableRows>
531          <Visibility>
532            <Hidden>true</Hidden>
533            <ToggleItem>Agencja</ToggleItem>
534          </Visibility>
535        </Details>
536        <Header>
537          <TableRows>
538            <TableRow>
539              <TableCells>
540                <TableCell>
541                  <ReportItems>
542                    <Textbox Name="textbox2">
543                      <rd:DefaultName>textbox2</rd:DefaultName>
544                      <Style>
545                        <FontSize>8pt</FontSize>
546                        <FontWeight>700</FontWeight>
547                        <TextAlign>Center</TextAlign>
548                        <PaddingLeft>2pt</PaddingLeft>
549                        <PaddingRight>2pt</PaddingRight>
550                        <PaddingTop>2pt</PaddingTop>
551                        <PaddingBottom>2pt</PaddingBottom>
552                      </Style>
553                      <ZIndex>19</ZIndex>
554                      <CanGrow>true</CanGrow>
555                      <Value>Agencja</Value>
556                    </Textbox>
557                  </ReportItems>
558                </TableCell>
559                <TableCell>
560                  <ReportItems>
561                    <Textbox Name="textbox4">
562                      <rd:DefaultName>textbox4</rd:DefaultName>
563                      <Style>
564                        <FontSize>8pt</FontSize>
565                        <FontWeight>700</FontWeight>
566                        <TextAlign>Center</TextAlign>
567                        <PaddingLeft>2pt</PaddingLeft>
568                        <PaddingRight>2pt</PaddingRight>
569                        <PaddingTop>2pt</PaddingTop>
570                        <PaddingBottom>2pt</PaddingBottom>
571                      </Style>
572                      <ZIndex>18</ZIndex>
573                      <CanGrow>true</CanGrow>
574                      <Value>Tytuł</Value>
575                    </Textbox>
576                  </ReportItems>
577                </TableCell>
578                <TableCell>
579                  <ReportItems>
580                    <Textbox Name="textbox5">
581                      <rd:DefaultName>textbox5</rd:DefaultName>
582                      <Style>
583                        <FontSize>8pt</FontSize>
584                        <FontWeight>700</FontWeight>
585                        <TextAlign>Center</TextAlign>
586                        <PaddingLeft>2pt</PaddingLeft>
587                        <PaddingRight>2pt</PaddingRight>
588                        <PaddingTop>2pt</PaddingTop>
589                        <PaddingBottom>2pt</PaddingBottom>
590                      </Style>
591                      <ZIndex>17</ZIndex>
592                      <CanGrow>true</CanGrow>
593                      <Value>Faktura Netto</Value>
594                    </Textbox>
595                  </ReportItems>
596                </TableCell>
597                <TableCell>
598                  <ReportItems>
599                    <Textbox Name="textbox6">
600                      <rd:DefaultName>textbox6</rd:DefaultName>
601                      <Style>
602                        <FontSize>8pt</FontSize>
603                        <FontWeight>700</FontWeight>
604                        <TextAlign>Center</TextAlign>
605                        <PaddingLeft>2pt</PaddingLeft>
606                        <PaddingRight>2pt</PaddingRight>
607                        <PaddingTop>2pt</PaddingTop>
608                        <PaddingBottom>2pt</PaddingBottom>
609                      </Style>
610                      <ZIndex>16</ZIndex>
611                      <CanGrow>true</CanGrow>
612                      <Value>Faktura Brutto</Value>
613                    </Textbox>
614                  </ReportItems>
615                </TableCell>
616                <TableCell>
617                  <ReportItems>
618                    <Textbox Name="textbox7">
619                      <rd:DefaultName>textbox7</rd:DefaultName>
620                      <Style>
621                        <FontSize>8pt</FontSize>
622                        <FontWeight>700</FontWeight>
623                        <TextAlign>Center</TextAlign>
624                        <PaddingLeft>2pt</PaddingLeft>
625                        <PaddingRight>2pt</PaddingRight>
626                        <PaddingTop>2pt</PaddingTop>
627                        <PaddingBottom>2pt</PaddingBottom>
628                      </Style>
629                      <ZIndex>15</ZIndex>
630                      <CanGrow>true</CanGrow>
631                      <Value>Wpłata Brutto</Value>
632                    </Textbox>
633                  </ReportItems>
634                </TableCell>
635              </TableCells>
636              <Height>1cm</Height>
637            </TableRow>
638          </TableRows>
639          <RepeatOnNewPage>true</RepeatOnNewPage>
640        </Header>
641        <TableColumns>
642          <TableColumn>
643            <Width>5cm</Width>
644          </TableColumn>
645          <TableColumn>
646            <Width>2.53968cm</Width>
647          </TableColumn>
648          <TableColumn>
649            <Width>2.53968cm</Width>
650          </TableColumn>
651          <TableColumn>
652            <Width>2.53968cm</Width>
653          </TableColumn>
654          <TableColumn>
655            <Width>2.53968cm</Width>
656          </TableColumn>
657        </TableColumns>
658        <Footer>
659          <TableRows>
660            <TableRow>
661              <TableCells>
662                <TableCell>
663                  <ReportItems>
664                    <Textbox Name="textbox12">
665                      <rd:DefaultName>textbox12</rd:DefaultName>
666                      <Style>
667                        <PaddingLeft>2pt</PaddingLeft>
668                        <PaddingRight>2pt</PaddingRight>
669                        <PaddingTop>2pt</PaddingTop>
670                        <PaddingBottom>2pt</PaddingBottom>
671                      </Style>
672                      <ZIndex>9</ZIndex>
673                      <CanGrow>true</CanGrow>
674                      <Value />
675                    </Textbox>
676                  </ReportItems>
677                </TableCell>
678                <TableCell>
679                  <ReportItems>
680                    <Textbox Name="textbox13">
681                      <rd:DefaultName>textbox13</rd:DefaultName>
682                      <Style>
683                        <PaddingLeft>2pt</PaddingLeft>
684                        <PaddingRight>2pt</PaddingRight>
685                        <PaddingTop>2pt</PaddingTop>
686                        <PaddingBottom>2pt</PaddingBottom>
687                      </Style>
688                      <ZIndex>8</ZIndex>
689                      <CanGrow>true</CanGrow>
690                      <Value />
691                    </Textbox>
692                  </ReportItems>
693                </TableCell>
694                <TableCell>
695                  <ReportItems>
696                    <Textbox Name="textbox15">
697                      <Style>
698                        <BackgroundColor>WhiteSmoke</BackgroundColor>
699                        <BorderColor>
700                          <Default>LightGrey</Default>
701                        </BorderColor>
702                        <BorderStyle>
703                          <Default>Solid</Default>
704                        </BorderStyle>
705                        <BorderWidth>
706                          <Default>0.5pt</Default>
707                        </BorderWidth>
708                        <FontSize>8pt</FontSize>
709                        <FontWeight>700</FontWeight>
710                        <Format>C</Format>
711                        <PaddingLeft>2pt</PaddingLeft>
712                        <PaddingRight>2pt</PaddingRight>
713                        <PaddingTop>2pt</PaddingTop>
714                        <PaddingBottom>2pt</PaddingBottom>
715                      </Style>
716                      <ZIndex>7</ZIndex>
717                      <CanGrow>true</CanGrow>
718                      <Value>=Sum(Fields!FakturaNetto.Value)</Value>
719                    </Textbox>
720                  </ReportItems>
721                </TableCell>
722                <TableCell>
723                  <ReportItems>
724                    <Textbox Name="textbox17">
725                      <Style>
726                        <BackgroundColor>WhiteSmoke</BackgroundColor>
727                        <BorderColor>
728                          <Default>LightGrey</Default>
729                        </BorderColor>
730                        <BorderStyle>
731                          <Default>Solid</Default>
732                        </BorderStyle>
733                        <BorderWidth>
734                          <Default>0.5pt</Default>
735                        </BorderWidth>
736                        <FontSize>8pt</FontSize>
737                        <FontWeight>700</FontWeight>
738                        <Format>C</Format>
739                        <PaddingLeft>2pt</PaddingLeft>
740                        <PaddingRight>2pt</PaddingRight>
741                        <PaddingTop>2pt</PaddingTop>
742                        <PaddingBottom>2pt</PaddingBottom>
743                      </Style>
744                      <ZIndex>6</ZIndex>
745                      <CanGrow>true</CanGrow>
746                      <Value>=Sum(Fields!FakturaBrutto.Value)</Value>
747                    </Textbox>
748                  </ReportItems>
749                </TableCell>
750                <TableCell>
751                  <ReportItems>
752                    <Textbox Name="textbox16">
753                      <rd:DefaultName>textbox16</rd:DefaultName>
754                      <Style>
755                        <BackgroundColor>WhiteSmoke</BackgroundColor>
756                        <BorderColor>
757                          <Default>LightGrey</Default>
758                        </BorderColor>
759                        <BorderStyle>
760                          <Default>Solid</Default>
761                        </BorderStyle>
762                        <BorderWidth>
763                          <Default>0.5pt</Default>
764                        </BorderWidth>
765                        <FontSize>8pt</FontSize>
766                        <FontWeight>700</FontWeight>
767                        <Format>C</Format>
768                        <PaddingLeft>2pt</PaddingLeft>
769                        <PaddingRight>2pt</PaddingRight>
770                        <PaddingTop>2pt</PaddingTop>
771                        <PaddingBottom>2pt</PaddingBottom>
772                      </Style>
773                      <ZIndex>5</ZIndex>
774                      <CanGrow>true</CanGrow>
775                      <Value>=Sum(Fields!WplataBrutto.Value)</Value>
776                    </Textbox>
777                  </ReportItems>
778                </TableCell>
779              </TableCells>
780              <Height>0.63492cm</Height>
781            </TableRow>
782          </TableRows>
783        </Footer>
784      </Table>
785    </ReportItems>
786    <Height>3.45158cm</Height>
787  </Body>
788  <Language>pl-PL</Language>
789  <PageFooter>
790    <PrintOnFirstPage>true</PrintOnFirstPage>
791    <Height>0.75cm</Height>
792    <PrintOnLastPage>true</PrintOnLastPage>
793  </PageFooter>
794  <TopMargin>2.5cm</TopMargin>
795  <PageHeight>29.7cm</PageHeight>
796</Report>
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.