root/trunk/RaportySQL/WplywyWgWplaty.rdl @ 329

Wersja 324, 26.7 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
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>11</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>10</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>9</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>8</ZIndex>
359                          <CanGrow>true</CanGrow>
360                          <Value>=Sum(Fields!FakturaBrutto.Value)</Value>
361                        </Textbox>
362                      </ReportItems>
363                    </TableCell>
364                  </TableCells>
365                  <Height>0.53333cm</Height>
366                </TableRow>
367              </TableRows>
368            </Header>
369          </TableGroup>
370        </TableGroups>
371        <Width>12.61904cm</Width>
372        <Details>
373          <TableRows>
374            <TableRow>
375              <TableCells>
376                <TableCell>
377                  <ReportItems>
378                    <Textbox Name="textbox3">
379                      <rd:DefaultName>textbox3</rd:DefaultName>
380                      <Style>
381                        <PaddingLeft>2pt</PaddingLeft>
382                        <PaddingRight>2pt</PaddingRight>
383                        <PaddingTop>2pt</PaddingTop>
384                        <PaddingBottom>2pt</PaddingBottom>
385                      </Style>
386                      <ZIndex>3</ZIndex>
387                      <CanGrow>true</CanGrow>
388                      <Value>
389                      </Value>
390                    </Textbox>
391                  </ReportItems>
392                </TableCell>
393                <TableCell>
394                  <ReportItems>
395                    <Textbox Name="Tytul">
396                      <rd:DefaultName>Tytul</rd:DefaultName>
397                      <Style>
398                        <BorderColor>
399                          <Default>LightGrey</Default>
400                        </BorderColor>
401                        <BorderStyle>
402                          <Default>Solid</Default>
403                        </BorderStyle>
404                        <BorderWidth>
405                          <Default>0.5pt</Default>
406                        </BorderWidth>
407                        <FontSize>8pt</FontSize>
408                        <PaddingLeft>2pt</PaddingLeft>
409                        <PaddingRight>2pt</PaddingRight>
410                        <PaddingTop>2pt</PaddingTop>
411                        <PaddingBottom>2pt</PaddingBottom>
412                      </Style>
413                      <ZIndex>2</ZIndex>
414                      <CanGrow>true</CanGrow>
415                      <Value>=Fields!Tytul.Value</Value>
416                    </Textbox>
417                  </ReportItems>
418                </TableCell>
419                <TableCell>
420                  <ReportItems>
421                    <Textbox Name="FakturaNetto">
422                      <rd:DefaultName>FakturaNetto</rd:DefaultName>
423                      <Style>
424                        <BorderColor>
425                          <Default>LightGrey</Default>
426                        </BorderColor>
427                        <BorderStyle>
428                          <Default>Solid</Default>
429                        </BorderStyle>
430                        <BorderWidth>
431                          <Default>0.5pt</Default>
432                        </BorderWidth>
433                        <FontSize>8pt</FontSize>
434                        <Format>C</Format>
435                        <PaddingLeft>2pt</PaddingLeft>
436                        <PaddingRight>2pt</PaddingRight>
437                        <PaddingTop>2pt</PaddingTop>
438                        <PaddingBottom>2pt</PaddingBottom>
439                      </Style>
440                      <ZIndex>1</ZIndex>
441                      <CanGrow>true</CanGrow>
442                      <Value>=Fields!FakturaNetto.Value</Value>
443                    </Textbox>
444                  </ReportItems>
445                </TableCell>
446                <TableCell>
447                  <ReportItems>
448                    <Textbox Name="FakturaBrutto">
449                      <rd:DefaultName>FakturaBrutto</rd:DefaultName>
450                      <Style>
451                        <BorderColor>
452                          <Default>LightGrey</Default>
453                        </BorderColor>
454                        <BorderStyle>
455                          <Default>Solid</Default>
456                        </BorderStyle>
457                        <BorderWidth>
458                          <Default>0.5pt</Default>
459                        </BorderWidth>
460                        <FontSize>8pt</FontSize>
461                        <Format>C</Format>
462                        <PaddingLeft>2pt</PaddingLeft>
463                        <PaddingRight>2pt</PaddingRight>
464                        <PaddingTop>2pt</PaddingTop>
465                        <PaddingBottom>2pt</PaddingBottom>
466                      </Style>
467                      <CanGrow>true</CanGrow>
468                      <Value>=Fields!FakturaBrutto.Value</Value>
469                    </Textbox>
470                  </ReportItems>
471                </TableCell>
472              </TableCells>
473              <Height>0.53333cm</Height>
474            </TableRow>
475          </TableRows>
476          <Visibility>
477            <Hidden>true</Hidden>
478            <ToggleItem>Agencja</ToggleItem>
479          </Visibility>
480        </Details>
481        <Header>
482          <TableRows>
483            <TableRow>
484              <TableCells>
485                <TableCell>
486                  <ReportItems>
487                    <Textbox Name="textbox2">
488                      <rd:DefaultName>textbox2</rd:DefaultName>
489                      <Style>
490                        <FontSize>8pt</FontSize>
491                        <FontWeight>700</FontWeight>
492                        <TextAlign>Center</TextAlign>
493                        <PaddingLeft>2pt</PaddingLeft>
494                        <PaddingRight>2pt</PaddingRight>
495                        <PaddingTop>2pt</PaddingTop>
496                        <PaddingBottom>2pt</PaddingBottom>
497                      </Style>
498                      <ZIndex>15</ZIndex>
499                      <CanGrow>true</CanGrow>
500                      <Value>Agencja</Value>
501                    </Textbox>
502                  </ReportItems>
503                </TableCell>
504                <TableCell>
505                  <ReportItems>
506                    <Textbox Name="textbox4">
507                      <rd:DefaultName>textbox4</rd:DefaultName>
508                      <Style>
509                        <FontSize>8pt</FontSize>
510                        <FontWeight>700</FontWeight>
511                        <TextAlign>Center</TextAlign>
512                        <PaddingLeft>2pt</PaddingLeft>
513                        <PaddingRight>2pt</PaddingRight>
514                        <PaddingTop>2pt</PaddingTop>
515                        <PaddingBottom>2pt</PaddingBottom>
516                      </Style>
517                      <ZIndex>14</ZIndex>
518                      <CanGrow>true</CanGrow>
519                      <Value>Tytuł</Value>
520                    </Textbox>
521                  </ReportItems>
522                </TableCell>
523                <TableCell>
524                  <ReportItems>
525                    <Textbox Name="textbox5">
526                      <rd:DefaultName>textbox5</rd:DefaultName>
527                      <Style>
528                        <FontSize>8pt</FontSize>
529                        <FontWeight>700</FontWeight>
530                        <TextAlign>Center</TextAlign>
531                        <PaddingLeft>2pt</PaddingLeft>
532                        <PaddingRight>2pt</PaddingRight>
533                        <PaddingTop>2pt</PaddingTop>
534                        <PaddingBottom>2pt</PaddingBottom>
535                      </Style>
536                      <ZIndex>13</ZIndex>
537                      <CanGrow>true</CanGrow>
538                      <Value>Faktura Netto</Value>
539                    </Textbox>
540                  </ReportItems>
541                </TableCell>
542                <TableCell>
543                  <ReportItems>
544                    <Textbox Name="textbox6">
545                      <rd:DefaultName>textbox6</rd:DefaultName>
546                      <Style>
547                        <FontSize>8pt</FontSize>
548                        <FontWeight>700</FontWeight>
549                        <TextAlign>Center</TextAlign>
550                        <PaddingLeft>2pt</PaddingLeft>
551                        <PaddingRight>2pt</PaddingRight>
552                        <PaddingTop>2pt</PaddingTop>
553                        <PaddingBottom>2pt</PaddingBottom>
554                      </Style>
555                      <ZIndex>12</ZIndex>
556                      <CanGrow>true</CanGrow>
557                      <Value>Faktura Brutto</Value>
558                    </Textbox>
559                  </ReportItems>
560                </TableCell>
561              </TableCells>
562              <Height>1cm</Height>
563            </TableRow>
564          </TableRows>
565          <RepeatOnNewPage>true</RepeatOnNewPage>
566        </Header>
567        <TableColumns>
568          <TableColumn>
569            <Width>5cm</Width>
570          </TableColumn>
571          <TableColumn>
572            <Width>2.53968cm</Width>
573          </TableColumn>
574          <TableColumn>
575            <Width>2.53968cm</Width>
576          </TableColumn>
577          <TableColumn>
578            <Width>2.53968cm</Width>
579          </TableColumn>
580        </TableColumns>
581        <Footer>
582          <TableRows>
583            <TableRow>
584              <TableCells>
585                <TableCell>
586                  <ReportItems>
587                    <Textbox Name="textbox12">
588                      <rd:DefaultName>textbox12</rd:DefaultName>
589                      <Style>
590                        <PaddingLeft>2pt</PaddingLeft>
591                        <PaddingRight>2pt</PaddingRight>
592                        <PaddingTop>2pt</PaddingTop>
593                        <PaddingBottom>2pt</PaddingBottom>
594                      </Style>
595                      <ZIndex>7</ZIndex>
596                      <CanGrow>true</CanGrow>
597                      <Value />
598                    </Textbox>
599                  </ReportItems>
600                </TableCell>
601                <TableCell>
602                  <ReportItems>
603                    <Textbox Name="textbox13">
604                      <rd:DefaultName>textbox13</rd:DefaultName>
605                      <Style>
606                        <PaddingLeft>2pt</PaddingLeft>
607                        <PaddingRight>2pt</PaddingRight>
608                        <PaddingTop>2pt</PaddingTop>
609                        <PaddingBottom>2pt</PaddingBottom>
610                      </Style>
611                      <ZIndex>6</ZIndex>
612                      <CanGrow>true</CanGrow>
613                      <Value />
614                    </Textbox>
615                  </ReportItems>
616                </TableCell>
617                <TableCell>
618                  <ReportItems>
619                    <Textbox Name="textbox15">
620                      <Style>
621                        <BackgroundColor>WhiteSmoke</BackgroundColor>
622                        <BorderColor>
623                          <Default>LightGrey</Default>
624                        </BorderColor>
625                        <BorderStyle>
626                          <Default>Solid</Default>
627                        </BorderStyle>
628                        <BorderWidth>
629                          <Default>0.5pt</Default>
630                        </BorderWidth>
631                        <FontSize>8pt</FontSize>
632                        <FontWeight>700</FontWeight>
633                        <Format>C</Format>
634                        <PaddingLeft>2pt</PaddingLeft>
635                        <PaddingRight>2pt</PaddingRight>
636                        <PaddingTop>2pt</PaddingTop>
637                        <PaddingBottom>2pt</PaddingBottom>
638                      </Style>
639                      <ZIndex>5</ZIndex>
640                      <CanGrow>true</CanGrow>
641                      <Value>=Sum(Fields!FakturaNetto.Value)</Value>
642                    </Textbox>
643                  </ReportItems>
644                </TableCell>
645                <TableCell>
646                  <ReportItems>
647                    <Textbox Name="textbox17">
648                      <Style>
649                        <BackgroundColor>WhiteSmoke</BackgroundColor>
650                        <BorderColor>
651                          <Default>LightGrey</Default>
652                        </BorderColor>
653                        <BorderStyle>
654                          <Default>Solid</Default>
655                        </BorderStyle>
656                        <BorderWidth>
657                          <Default>0.5pt</Default>
658                        </BorderWidth>
659                        <FontSize>8pt</FontSize>
660                        <FontWeight>700</FontWeight>
661                        <Format>C</Format>
662                        <PaddingLeft>2pt</PaddingLeft>
663                        <PaddingRight>2pt</PaddingRight>
664                        <PaddingTop>2pt</PaddingTop>
665                        <PaddingBottom>2pt</PaddingBottom>
666                      </Style>
667                      <ZIndex>4</ZIndex>
668                      <CanGrow>true</CanGrow>
669                      <Value>=Sum(Fields!FakturaBrutto.Value)</Value>
670                    </Textbox>
671                  </ReportItems>
672                </TableCell>
673              </TableCells>
674              <Height>0.63492cm</Height>
675            </TableRow>
676          </TableRows>
677        </Footer>
678      </Table>
679    </ReportItems>
680    <Height>3.45158cm</Height>
681  </Body>
682  <Language>pl-PL</Language>
683  <PageFooter>
684    <PrintOnFirstPage>true</PrintOnFirstPage>
685    <Height>0.75cm</Height>
686    <PrintOnLastPage>true</PrintOnLastPage>
687  </PageFooter>
688  <TopMargin>2.5cm</TopMargin>
689  <PageHeight>29.7cm</PageHeight>
690</Report>
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.