root/trunk/RaportySQL/WplywyWgWplaty.rdl @ 322

Wersja 322, 27.0 KB (wprowadzona przez marek, 17 years temu)

fixes #81

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
151
152/*
153UNION
154
155SELECT AgencjaId, Agencja, Tytul,
156SUM(FakturaNetto) AS FakturaNetto,
157SUM(FakturaBrutto) AS FakturaBrutto,
158SUM(WplataBrutto) AS WplataBrutto
159FROM FakturyZaplaconePoznanKatowice
160WHERE
161Rok = @rok
162AND Miesiac IN (@ms)
163AND (AgencjaId IN (@agencja))
164GROUP BY AgencjaId, Agencja, Tytul*/
165
166ORDER BY Agencja, Tytul</CommandText>
167        <QueryParameters>
168          <QueryParameter Name="@rok">
169            <Value>=Parameters!rok.Value</Value>
170          </QueryParameter>
171          <QueryParameter Name="@ms">
172            <Value>=Parameters!ms.Value</Value>
173          </QueryParameter>
174          <QueryParameter Name="@agencja">
175            <Value>=Parameters!agencja.Value</Value>
176          </QueryParameter>
177        </QueryParameters>
178        <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
179      </Query>
180    </DataSet>
181    <DataSet Name="ListaLat">
182      <Fields>
183        <Field Name="rok">
184          <DataField>rok</DataField>
185          <rd:TypeName>System.Int32</rd:TypeName>
186        </Field>
187      </Fields>
188      <Query>
189        <DataSourceName>BAZA_REKLAM</DataSourceName>
190        <CommandText>SELECT DISTINCT YEAR(DATA_W) AS rok
191FROM dbo.NR
192WHERE DATA_W IS NOT NULL
193AND YEAR(DATA_W)&gt;2007
194ORDER BY YEAR(DATA_W) DESC</CommandText>
195        <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
196      </Query>
197    </DataSet>
198    <DataSet Name="ListaAgencji">
199      <Fields>
200        <Field Name="Id_agencji">
201          <DataField>Id_agencji</DataField>
202          <rd:TypeName>System.Int32</rd:TypeName>
203        </Field>
204        <Field Name="Symbol">
205          <DataField>Symbol</DataField>
206          <rd:TypeName>System.String</rd:TypeName>
207        </Field>
208      </Fields>
209      <Query>
210        <DataSourceName>BAZA_REKLAM</DataSourceName>
211        <CommandText>SELECT Id_agencji, Symbol
212FROM    AGENCJE
213WHERE aktywna=1</CommandText>
214        <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
215      </Query>
216    </DataSet>
217  </DataSets>
218  <Code>Public Function GetMonths(P as Parameter) as String
219  Dim i As Integer
220  Dim s As String
221  s = p.value(0)               
222  For i = 1 to Ubound(P.Value)
223    s = s &amp; "," &amp; p.Value(i) 
224  Next i
225  Return s
226End Function</Code>
227  <Width>15.15872cm</Width>
228  <Body>
229    <ColumnSpacing>1cm</ColumnSpacing>
230    <ReportItems>
231      <Textbox Name="textbox1">
232        <rd:DefaultName>textbox1</rd:DefaultName>
233        <Width>12.69841cm</Width>
234        <Style>
235          <FontSize>16pt</FontSize>
236          <TextAlign>Center</TextAlign>
237          <PaddingLeft>2pt</PaddingLeft>
238          <PaddingRight>2pt</PaddingRight>
239          <PaddingTop>2pt</PaddingTop>
240          <PaddingBottom>2pt</PaddingBottom>
241        </Style>
242        <ZIndex>1</ZIndex>
243        <CanGrow>true</CanGrow>
244        <Height>0.75cm</Height>
245        <Value>="Wpływy według wpłaty: " &amp; Parameters!rok.Value &amp; ", " &amp; Code.GetMonths(Parameters!ms)</Value>
246      </Textbox>
247      <Table Name="table1">
248        <DataSetName>Wplywy</DataSetName>
249        <Top>0.75cm</Top>
250        <TableGroups>
251          <TableGroup>
252            <Grouping Name="table1_Agencja">
253              <GroupExpressions>
254                <GroupExpression>=Fields!Agencja.Value</GroupExpression>
255              </GroupExpressions>
256            </Grouping>
257            <Sorting>
258              <SortBy>
259                <SortExpression>=Fields!Agencja.Value</SortExpression>
260                <Direction>Ascending</Direction>
261              </SortBy>
262            </Sorting>
263            <Header>
264              <TableRows>
265                <TableRow>
266                  <TableCells>
267                    <TableCell>
268                      <ReportItems>
269                        <Textbox Name="Agencja">
270                          <rd:DefaultName>Agencja</rd:DefaultName>
271                          <Style>
272                            <BackgroundColor>WhiteSmoke</BackgroundColor>
273                            <BorderColor>
274                              <Default>LightGrey</Default>
275                            </BorderColor>
276                            <BorderStyle>
277                              <Default>Solid</Default>
278                            </BorderStyle>
279                            <BorderWidth>
280                              <Default>0.5pt</Default>
281                            </BorderWidth>
282                            <FontSize>8pt</FontSize>
283                            <PaddingLeft>2pt</PaddingLeft>
284                            <PaddingRight>2pt</PaddingRight>
285                            <PaddingTop>2pt</PaddingTop>
286                            <PaddingBottom>2pt</PaddingBottom>
287                          </Style>
288                          <ZIndex>11</ZIndex>
289                          <CanGrow>true</CanGrow>
290                          <Value>=Fields!Agencja.Value</Value>
291                        </Textbox>
292                      </ReportItems>
293                    </TableCell>
294                    <TableCell>
295                      <ReportItems>
296                        <Textbox Name="textbox8">
297                          <rd:DefaultName>textbox8</rd:DefaultName>
298                          <Style>
299                            <BackgroundColor>WhiteSmoke</BackgroundColor>
300                            <BorderColor>
301                              <Default>LightGrey</Default>
302                            </BorderColor>
303                            <BorderStyle>
304                              <Default>Solid</Default>
305                            </BorderStyle>
306                            <BorderWidth>
307                              <Default>0.5pt</Default>
308                            </BorderWidth>
309                            <PaddingLeft>2pt</PaddingLeft>
310                            <PaddingRight>2pt</PaddingRight>
311                            <PaddingTop>2pt</PaddingTop>
312                            <PaddingBottom>2pt</PaddingBottom>
313                          </Style>
314                          <ZIndex>10</ZIndex>
315                          <CanGrow>true</CanGrow>
316                          <Value>
317                          </Value>
318                        </Textbox>
319                      </ReportItems>
320                    </TableCell>
321                    <TableCell>
322                      <ReportItems>
323                        <Textbox Name="textbox9">
324                          <rd:DefaultName>textbox9</rd:DefaultName>
325                          <Style>
326                            <BackgroundColor>WhiteSmoke</BackgroundColor>
327                            <BorderColor>
328                              <Default>LightGrey</Default>
329                            </BorderColor>
330                            <BorderStyle>
331                              <Default>Solid</Default>
332                            </BorderStyle>
333                            <BorderWidth>
334                              <Default>0.5pt</Default>
335                            </BorderWidth>
336                            <FontSize>8pt</FontSize>
337                            <FontWeight>600</FontWeight>
338                            <Format>C</Format>
339                            <PaddingLeft>2pt</PaddingLeft>
340                            <PaddingRight>2pt</PaddingRight>
341                            <PaddingTop>2pt</PaddingTop>
342                            <PaddingBottom>2pt</PaddingBottom>
343                          </Style>
344                          <ZIndex>9</ZIndex>
345                          <CanGrow>true</CanGrow>
346                          <Value>=Sum(Fields!FakturaNetto.Value)</Value>
347                        </Textbox>
348                      </ReportItems>
349                    </TableCell>
350                    <TableCell>
351                      <ReportItems>
352                        <Textbox Name="textbox10">
353                          <rd:DefaultName>textbox10</rd:DefaultName>
354                          <Style>
355                            <BackgroundColor>WhiteSmoke</BackgroundColor>
356                            <BorderColor>
357                              <Default>LightGrey</Default>
358                            </BorderColor>
359                            <BorderStyle>
360                              <Default>Solid</Default>
361                            </BorderStyle>
362                            <BorderWidth>
363                              <Default>0.5pt</Default>
364                            </BorderWidth>
365                            <FontSize>8pt</FontSize>
366                            <FontWeight>600</FontWeight>
367                            <Format>C</Format>
368                            <PaddingLeft>2pt</PaddingLeft>
369                            <PaddingRight>2pt</PaddingRight>
370                            <PaddingTop>2pt</PaddingTop>
371                            <PaddingBottom>2pt</PaddingBottom>
372                          </Style>
373                          <ZIndex>8</ZIndex>
374                          <CanGrow>true</CanGrow>
375                          <Value>=Sum(Fields!FakturaBrutto.Value)</Value>
376                        </Textbox>
377                      </ReportItems>
378                    </TableCell>
379                  </TableCells>
380                  <Height>0.53333cm</Height>
381                </TableRow>
382              </TableRows>
383            </Header>
384          </TableGroup>
385        </TableGroups>
386        <Width>12.61904cm</Width>
387        <Details>
388          <TableRows>
389            <TableRow>
390              <TableCells>
391                <TableCell>
392                  <ReportItems>
393                    <Textbox Name="textbox3">
394                      <rd:DefaultName>textbox3</rd:DefaultName>
395                      <Style>
396                        <PaddingLeft>2pt</PaddingLeft>
397                        <PaddingRight>2pt</PaddingRight>
398                        <PaddingTop>2pt</PaddingTop>
399                        <PaddingBottom>2pt</PaddingBottom>
400                      </Style>
401                      <ZIndex>3</ZIndex>
402                      <CanGrow>true</CanGrow>
403                      <Value>
404                      </Value>
405                    </Textbox>
406                  </ReportItems>
407                </TableCell>
408                <TableCell>
409                  <ReportItems>
410                    <Textbox Name="Tytul">
411                      <rd:DefaultName>Tytul</rd:DefaultName>
412                      <Style>
413                        <BorderColor>
414                          <Default>LightGrey</Default>
415                        </BorderColor>
416                        <BorderStyle>
417                          <Default>Solid</Default>
418                        </BorderStyle>
419                        <BorderWidth>
420                          <Default>0.5pt</Default>
421                        </BorderWidth>
422                        <FontSize>8pt</FontSize>
423                        <PaddingLeft>2pt</PaddingLeft>
424                        <PaddingRight>2pt</PaddingRight>
425                        <PaddingTop>2pt</PaddingTop>
426                        <PaddingBottom>2pt</PaddingBottom>
427                      </Style>
428                      <ZIndex>2</ZIndex>
429                      <CanGrow>true</CanGrow>
430                      <Value>=Fields!Tytul.Value</Value>
431                    </Textbox>
432                  </ReportItems>
433                </TableCell>
434                <TableCell>
435                  <ReportItems>
436                    <Textbox Name="FakturaNetto">
437                      <rd:DefaultName>FakturaNetto</rd:DefaultName>
438                      <Style>
439                        <BorderColor>
440                          <Default>LightGrey</Default>
441                        </BorderColor>
442                        <BorderStyle>
443                          <Default>Solid</Default>
444                        </BorderStyle>
445                        <BorderWidth>
446                          <Default>0.5pt</Default>
447                        </BorderWidth>
448                        <FontSize>8pt</FontSize>
449                        <Format>C</Format>
450                        <PaddingLeft>2pt</PaddingLeft>
451                        <PaddingRight>2pt</PaddingRight>
452                        <PaddingTop>2pt</PaddingTop>
453                        <PaddingBottom>2pt</PaddingBottom>
454                      </Style>
455                      <ZIndex>1</ZIndex>
456                      <CanGrow>true</CanGrow>
457                      <Value>=Fields!FakturaNetto.Value</Value>
458                    </Textbox>
459                  </ReportItems>
460                </TableCell>
461                <TableCell>
462                  <ReportItems>
463                    <Textbox Name="FakturaBrutto">
464                      <rd:DefaultName>FakturaBrutto</rd:DefaultName>
465                      <Style>
466                        <BorderColor>
467                          <Default>LightGrey</Default>
468                        </BorderColor>
469                        <BorderStyle>
470                          <Default>Solid</Default>
471                        </BorderStyle>
472                        <BorderWidth>
473                          <Default>0.5pt</Default>
474                        </BorderWidth>
475                        <FontSize>8pt</FontSize>
476                        <Format>C</Format>
477                        <PaddingLeft>2pt</PaddingLeft>
478                        <PaddingRight>2pt</PaddingRight>
479                        <PaddingTop>2pt</PaddingTop>
480                        <PaddingBottom>2pt</PaddingBottom>
481                      </Style>
482                      <CanGrow>true</CanGrow>
483                      <Value>=Fields!FakturaBrutto.Value</Value>
484                    </Textbox>
485                  </ReportItems>
486                </TableCell>
487              </TableCells>
488              <Height>0.53333cm</Height>
489            </TableRow>
490          </TableRows>
491          <Visibility>
492            <Hidden>true</Hidden>
493            <ToggleItem>Agencja</ToggleItem>
494          </Visibility>
495        </Details>
496        <Header>
497          <TableRows>
498            <TableRow>
499              <TableCells>
500                <TableCell>
501                  <ReportItems>
502                    <Textbox Name="textbox2">
503                      <rd:DefaultName>textbox2</rd:DefaultName>
504                      <Style>
505                        <FontSize>8pt</FontSize>
506                        <FontWeight>700</FontWeight>
507                        <TextAlign>Center</TextAlign>
508                        <PaddingLeft>2pt</PaddingLeft>
509                        <PaddingRight>2pt</PaddingRight>
510                        <PaddingTop>2pt</PaddingTop>
511                        <PaddingBottom>2pt</PaddingBottom>
512                      </Style>
513                      <ZIndex>15</ZIndex>
514                      <CanGrow>true</CanGrow>
515                      <Value>Agencja</Value>
516                    </Textbox>
517                  </ReportItems>
518                </TableCell>
519                <TableCell>
520                  <ReportItems>
521                    <Textbox Name="textbox4">
522                      <rd:DefaultName>textbox4</rd:DefaultName>
523                      <Style>
524                        <FontSize>8pt</FontSize>
525                        <FontWeight>700</FontWeight>
526                        <TextAlign>Center</TextAlign>
527                        <PaddingLeft>2pt</PaddingLeft>
528                        <PaddingRight>2pt</PaddingRight>
529                        <PaddingTop>2pt</PaddingTop>
530                        <PaddingBottom>2pt</PaddingBottom>
531                      </Style>
532                      <ZIndex>14</ZIndex>
533                      <CanGrow>true</CanGrow>
534                      <Value>Tytuł</Value>
535                    </Textbox>
536                  </ReportItems>
537                </TableCell>
538                <TableCell>
539                  <ReportItems>
540                    <Textbox Name="textbox5">
541                      <rd:DefaultName>textbox5</rd:DefaultName>
542                      <Style>
543                        <FontSize>8pt</FontSize>
544                        <FontWeight>700</FontWeight>
545                        <TextAlign>Center</TextAlign>
546                        <PaddingLeft>2pt</PaddingLeft>
547                        <PaddingRight>2pt</PaddingRight>
548                        <PaddingTop>2pt</PaddingTop>
549                        <PaddingBottom>2pt</PaddingBottom>
550                      </Style>
551                      <ZIndex>13</ZIndex>
552                      <CanGrow>true</CanGrow>
553                      <Value>Faktura Netto</Value>
554                    </Textbox>
555                  </ReportItems>
556                </TableCell>
557                <TableCell>
558                  <ReportItems>
559                    <Textbox Name="textbox6">
560                      <rd:DefaultName>textbox6</rd:DefaultName>
561                      <Style>
562                        <FontSize>8pt</FontSize>
563                        <FontWeight>700</FontWeight>
564                        <TextAlign>Center</TextAlign>
565                        <PaddingLeft>2pt</PaddingLeft>
566                        <PaddingRight>2pt</PaddingRight>
567                        <PaddingTop>2pt</PaddingTop>
568                        <PaddingBottom>2pt</PaddingBottom>
569                      </Style>
570                      <ZIndex>12</ZIndex>
571                      <CanGrow>true</CanGrow>
572                      <Value>Faktura Brutto</Value>
573                    </Textbox>
574                  </ReportItems>
575                </TableCell>
576              </TableCells>
577              <Height>1cm</Height>
578            </TableRow>
579          </TableRows>
580          <RepeatOnNewPage>true</RepeatOnNewPage>
581        </Header>
582        <TableColumns>
583          <TableColumn>
584            <Width>5cm</Width>
585          </TableColumn>
586          <TableColumn>
587            <Width>2.53968cm</Width>
588          </TableColumn>
589          <TableColumn>
590            <Width>2.53968cm</Width>
591          </TableColumn>
592          <TableColumn>
593            <Width>2.53968cm</Width>
594          </TableColumn>
595        </TableColumns>
596        <Footer>
597          <TableRows>
598            <TableRow>
599              <TableCells>
600                <TableCell>
601                  <ReportItems>
602                    <Textbox Name="textbox12">
603                      <rd:DefaultName>textbox12</rd:DefaultName>
604                      <Style>
605                        <PaddingLeft>2pt</PaddingLeft>
606                        <PaddingRight>2pt</PaddingRight>
607                        <PaddingTop>2pt</PaddingTop>
608                        <PaddingBottom>2pt</PaddingBottom>
609                      </Style>
610                      <ZIndex>7</ZIndex>
611                      <CanGrow>true</CanGrow>
612                      <Value />
613                    </Textbox>
614                  </ReportItems>
615                </TableCell>
616                <TableCell>
617                  <ReportItems>
618                    <Textbox Name="textbox13">
619                      <rd:DefaultName>textbox13</rd:DefaultName>
620                      <Style>
621                        <PaddingLeft>2pt</PaddingLeft>
622                        <PaddingRight>2pt</PaddingRight>
623                        <PaddingTop>2pt</PaddingTop>
624                        <PaddingBottom>2pt</PaddingBottom>
625                      </Style>
626                      <ZIndex>6</ZIndex>
627                      <CanGrow>true</CanGrow>
628                      <Value />
629                    </Textbox>
630                  </ReportItems>
631                </TableCell>
632                <TableCell>
633                  <ReportItems>
634                    <Textbox Name="textbox15">
635                      <Style>
636                        <BackgroundColor>WhiteSmoke</BackgroundColor>
637                        <BorderColor>
638                          <Default>LightGrey</Default>
639                        </BorderColor>
640                        <BorderStyle>
641                          <Default>Solid</Default>
642                        </BorderStyle>
643                        <BorderWidth>
644                          <Default>0.5pt</Default>
645                        </BorderWidth>
646                        <FontSize>8pt</FontSize>
647                        <FontWeight>700</FontWeight>
648                        <Format>C</Format>
649                        <PaddingLeft>2pt</PaddingLeft>
650                        <PaddingRight>2pt</PaddingRight>
651                        <PaddingTop>2pt</PaddingTop>
652                        <PaddingBottom>2pt</PaddingBottom>
653                      </Style>
654                      <ZIndex>5</ZIndex>
655                      <CanGrow>true</CanGrow>
656                      <Value>=Sum(Fields!FakturaNetto.Value)</Value>
657                    </Textbox>
658                  </ReportItems>
659                </TableCell>
660                <TableCell>
661                  <ReportItems>
662                    <Textbox Name="textbox17">
663                      <Style>
664                        <BackgroundColor>WhiteSmoke</BackgroundColor>
665                        <BorderColor>
666                          <Default>LightGrey</Default>
667                        </BorderColor>
668                        <BorderStyle>
669                          <Default>Solid</Default>
670                        </BorderStyle>
671                        <BorderWidth>
672                          <Default>0.5pt</Default>
673                        </BorderWidth>
674                        <FontSize>8pt</FontSize>
675                        <FontWeight>700</FontWeight>
676                        <Format>C</Format>
677                        <PaddingLeft>2pt</PaddingLeft>
678                        <PaddingRight>2pt</PaddingRight>
679                        <PaddingTop>2pt</PaddingTop>
680                        <PaddingBottom>2pt</PaddingBottom>
681                      </Style>
682                      <ZIndex>4</ZIndex>
683                      <CanGrow>true</CanGrow>
684                      <Value>=Sum(Fields!FakturaBrutto.Value)</Value>
685                    </Textbox>
686                  </ReportItems>
687                </TableCell>
688              </TableCells>
689              <Height>0.63492cm</Height>
690            </TableRow>
691          </TableRows>
692        </Footer>
693      </Table>
694    </ReportItems>
695    <Height>3.45158cm</Height>
696  </Body>
697  <Language>pl-PL</Language>
698  <PageFooter>
699    <PrintOnFirstPage>true</PrintOnFirstPage>
700    <Height>0.75cm</Height>
701    <PrintOnLastPage>true</PrintOnLastPage>
702  </PageFooter>
703  <TopMargin>2.5cm</TopMargin>
704  <PageHeight>29.7cm</PageHeight>
705</Report>
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.