root/trunk/RaportySQL/adMotoRaportProwizja.rdl @ 352

Wersja 352, 41.0 KB (wprowadzona przez marek, 17 years temu)

re #92

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>ed9250ac-1e80-4e2c-96f3-1503c15302b9</rd:DataSourceID>
6      <DataSourceReference>BAZA_REKLAM</DataSourceReference>
7    </DataSource>
8  </DataSources>
9  <InteractiveHeight>29.7cm</InteractiveHeight>
10  <ReportParameters>
11    <ReportParameter Name="rok">
12      <DataType>Integer</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="miesiac">
28      <DataType>Integer</DataType>
29      <DefaultValue>
30        <Values>
31          <Value>=Month(Today)</Value>
32        </Values>
33      </DefaultValue>
34      <Prompt>Miesiąc:</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    </ReportParameter>
76    <ReportParameter Name="tytul">
77      <DataType>String</DataType>
78      <DefaultValue>
79        <Values>
80          <Value>adMot</Value>
81        </Values>
82      </DefaultValue>
83      <Prompt>tytul</Prompt>
84      <Hidden>true</Hidden>
85    </ReportParameter>
86  </ReportParameters>
87  <rd:DrawGrid>true</rd:DrawGrid>
88  <InteractiveWidth>21cm</InteractiveWidth>
89  <rd:GridSpacing>0.25cm</rd:GridSpacing>
90  <rd:SnapToGrid>true</rd:SnapToGrid>
91  <RightMargin>2.5cm</RightMargin>
92  <LeftMargin>2.5cm</LeftMargin>
93  <BottomMargin>2.5cm</BottomMargin>
94  <rd:ReportID>dd7314e5-c4d3-4536-8315-ba2a6dac5b4c</rd:ReportID>
95  <PageWidth>21cm</PageWidth>
96  <DataSets>
97    <DataSet Name="SprzedazWplywy">
98      <Fields>
99        <Field Name="IdFaktury">
100          <DataField>IdFaktury</DataField>
101          <rd:TypeName>System.Int32</rd:TypeName>
102        </Field>
103        <Field Name="NumerFaktury">
104          <DataField>NumerFaktury</DataField>
105          <rd:TypeName>System.Int32</rd:TypeName>
106        </Field>
107        <Field Name="Agent">
108          <DataField>Agent</DataField>
109          <rd:TypeName>System.String</rd:TypeName>
110        </Field>
111        <Field Name="SymbolFaktury">
112          <DataField>SymbolFaktury</DataField>
113          <rd:TypeName>System.String</rd:TypeName>
114        </Field>
115        <Field Name="DataWplaty">
116          <DataField>DataWplaty</DataField>
117          <rd:TypeName>System.DateTime</rd:TypeName>
118        </Field>
119        <Field Name="Netto">
120          <DataField>Netto</DataField>
121          <rd:TypeName>System.Decimal</rd:TypeName>
122        </Field>
123        <Field Name="DataFaktury">
124          <DataField>DataFaktury</DataField>
125          <rd:TypeName>System.DateTime</rd:TypeName>
126        </Field>
127        <Field Name="Prowizja">
128          <DataField>Prowizja</DataField>
129          <rd:TypeName>System.Decimal</rd:TypeName>
130        </Field>
131        <Field Name="Agencja">
132          <DataField>Agencja</DataField>
133          <rd:TypeName>System.String</rd:TypeName>
134        </Field>
135      </Fields>
136      <Query>
137        <DataSourceName>BAZA_REKLAM</DataSourceName>
138        <CommandType>StoredProcedure</CommandType>
139        <CommandText>sp_adMotoRaportProwizja</CommandText>
140        <QueryParameters>
141          <QueryParameter Name="@rok">
142            <Value>=Parameters!rok.Value</Value>
143          </QueryParameter>
144          <QueryParameter Name="@miesiac">
145            <Value>=Parameters!miesiac.Value</Value>
146          </QueryParameter>
147          <QueryParameter Name="@tytul">
148            <Value>=Parameters!tytul.Value</Value>
149          </QueryParameter>
150        </QueryParameters>
151      </Query>
152    </DataSet>
153    <DataSet Name="ListaLat">
154      <Fields>
155        <Field Name="rok">
156          <DataField>rok</DataField>
157          <rd:TypeName>System.Int32</rd:TypeName>
158        </Field>
159      </Fields>
160      <Query>
161        <DataSourceName>BAZA_REKLAM</DataSourceName>
162        <CommandText>SELECT DISTINCT YEAR(DATA_W) AS rok
163FROM dbo.NR
164WHERE DATA_W IS NOT NULL
165AND YEAR(DATA_W)&gt;2007
166ORDER BY YEAR(DATA_W) DESC</CommandText>
167        <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
168      </Query>
169    </DataSet>
170  </DataSets>
171  <Width>21cm</Width>
172  <Body>
173    <ColumnSpacing>1cm</ColumnSpacing>
174    <ReportItems>
175      <Textbox Name="textbox19">
176        <rd:DefaultName>textbox19</rd:DefaultName>
177        <Top>0.5cm</Top>
178        <Width>18cm</Width>
179        <Style>
180          <FontWeight>700</FontWeight>
181          <TextAlign>Center</TextAlign>
182          <PaddingLeft>2pt</PaddingLeft>
183          <PaddingRight>2pt</PaddingRight>
184          <PaddingTop>2pt</PaddingTop>
185          <PaddingBottom>2pt</PaddingBottom>
186        </Style>
187        <ZIndex>1</ZIndex>
188        <CanGrow>true</CanGrow>
189        <Left>0.5cm</Left>
190        <Height>0.7cm</Height>
191        <Value>="Rozliczenie reklamy za " + CStr(Parameters!rok.Value) + ", " + CStr(Parameters!miesiac.Value)</Value>
192      </Textbox>
193      <Table Name="table1">
194        <DataSetName>SprzedazWplywy</DataSetName>
195        <Top>1.5cm</Top>
196        <Width>18cm</Width>
197        <Details>
198          <TableRows>
199            <TableRow>
200              <TableCells>
201                <TableCell>
202                  <ReportItems>
203                    <Textbox Name="textbox4">
204                      <rd:DefaultName>textbox4</rd:DefaultName>
205                      <Style>
206                        <BorderStyle>
207                          <Default>Solid</Default>
208                        </BorderStyle>
209                        <BorderWidth>
210                          <Default>0.5pt</Default>
211                        </BorderWidth>
212                        <FontSize>8pt</FontSize>
213                        <TextAlign>Center</TextAlign>
214                        <PaddingLeft>2pt</PaddingLeft>
215                        <PaddingRight>2pt</PaddingRight>
216                        <PaddingTop>2pt</PaddingTop>
217                        <PaddingBottom>2pt</PaddingBottom>
218                      </Style>
219                      <ZIndex>5</ZIndex>
220                      <CanGrow>true</CanGrow>
221                      <Value>=Fields!Agent.Value</Value>
222                    </Textbox>
223                  </ReportItems>
224                </TableCell>
225                <TableCell>
226                  <ReportItems>
227                    <Textbox Name="textbox5">
228                      <rd:DefaultName>textbox5</rd:DefaultName>
229                      <Style>
230                        <BorderStyle>
231                          <Default>Solid</Default>
232                        </BorderStyle>
233                        <BorderWidth>
234                          <Default>0.5pt</Default>
235                        </BorderWidth>
236                        <FontSize>8pt</FontSize>
237                        <TextAlign>Center</TextAlign>
238                        <PaddingLeft>2pt</PaddingLeft>
239                        <PaddingRight>2pt</PaddingRight>
240                        <PaddingTop>2pt</PaddingTop>
241                        <PaddingBottom>2pt</PaddingBottom>
242                      </Style>
243                      <ZIndex>4</ZIndex>
244                      <CanGrow>true</CanGrow>
245                      <Value>=Fields!SymbolFaktury.Value</Value>
246                    </Textbox>
247                  </ReportItems>
248                </TableCell>
249                <TableCell>
250                  <ReportItems>
251                    <Textbox Name="textbox6">
252                      <rd:DefaultName>textbox6</rd:DefaultName>
253                      <Style>
254                        <BorderStyle>
255                          <Default>Solid</Default>
256                        </BorderStyle>
257                        <BorderWidth>
258                          <Default>0.5pt</Default>
259                        </BorderWidth>
260                        <FontSize>8pt</FontSize>
261                        <Format>yyyy-MM-dd</Format>
262                        <TextAlign>Center</TextAlign>
263                        <PaddingLeft>2pt</PaddingLeft>
264                        <PaddingRight>2pt</PaddingRight>
265                        <PaddingTop>2pt</PaddingTop>
266                        <PaddingBottom>2pt</PaddingBottom>
267                      </Style>
268                      <ZIndex>3</ZIndex>
269                      <CanGrow>true</CanGrow>
270                      <Value>=Fields!DataWplaty.Value</Value>
271                    </Textbox>
272                  </ReportItems>
273                </TableCell>
274                <TableCell>
275                  <ReportItems>
276                    <Textbox Name="textbox11">
277                      <rd:DefaultName>textbox11</rd:DefaultName>
278                      <Style>
279                        <BorderStyle>
280                          <Default>Solid</Default>
281                        </BorderStyle>
282                        <BorderWidth>
283                          <Default>0.5pt</Default>
284                        </BorderWidth>
285                        <FontSize>8pt</FontSize>
286                        <Format>C</Format>
287                        <TextAlign>Center</TextAlign>
288                        <PaddingLeft>2pt</PaddingLeft>
289                        <PaddingRight>2pt</PaddingRight>
290                        <PaddingTop>2pt</PaddingTop>
291                        <PaddingBottom>2pt</PaddingBottom>
292                      </Style>
293                      <ZIndex>2</ZIndex>
294                      <CanGrow>true</CanGrow>
295                      <Value>=Fields!Netto.Value</Value>
296                    </Textbox>
297                  </ReportItems>
298                </TableCell>
299                <TableCell>
300                  <ReportItems>
301                    <Textbox Name="textbox17">
302                      <rd:DefaultName>textbox17</rd:DefaultName>
303                      <Style>
304                        <BorderStyle>
305                          <Default>Solid</Default>
306                        </BorderStyle>
307                        <BorderWidth>
308                          <Default>0.5pt</Default>
309                        </BorderWidth>
310                        <FontSize>8pt</FontSize>
311                        <Format>C</Format>
312                        <TextAlign>Center</TextAlign>
313                        <PaddingLeft>2pt</PaddingLeft>
314                        <PaddingRight>2pt</PaddingRight>
315                        <PaddingTop>2pt</PaddingTop>
316                        <PaddingBottom>2pt</PaddingBottom>
317                      </Style>
318                      <ZIndex>1</ZIndex>
319                      <CanGrow>true</CanGrow>
320                      <Value>=Fields!Prowizja.Value</Value>
321                    </Textbox>
322                  </ReportItems>
323                </TableCell>
324                <TableCell>
325                  <ReportItems>
326                    <Textbox Name="textbox14">
327                      <rd:DefaultName>textbox14</rd:DefaultName>
328                      <Style>
329                        <BorderStyle>
330                          <Default>Solid</Default>
331                        </BorderStyle>
332                        <BorderWidth>
333                          <Default>0.5pt</Default>
334                        </BorderWidth>
335                        <FontSize>8pt</FontSize>
336                        <TextAlign>Center</TextAlign>
337                        <PaddingLeft>2pt</PaddingLeft>
338                        <PaddingRight>2pt</PaddingRight>
339                        <PaddingTop>2pt</PaddingTop>
340                        <PaddingBottom>2pt</PaddingBottom>
341                      </Style>
342                      <CanGrow>true</CanGrow>
343                      <Value>=Fields!Agencja.Value</Value>
344                    </Textbox>
345                  </ReportItems>
346                </TableCell>
347              </TableCells>
348              <Height>0.7cm</Height>
349            </TableRow>
350          </TableRows>
351        </Details>
352        <Style>
353          <FontSize>8pt</FontSize>
354        </Style>
355        <Header>
356          <TableRows>
357            <TableRow>
358              <TableCells>
359                <TableCell>
360                  <ReportItems>
361                    <Textbox Name="textbox1">
362                      <rd:DefaultName>textbox1</rd:DefaultName>
363                      <Style>
364                        <BackgroundColor>WhiteSmoke</BackgroundColor>
365                        <BorderStyle>
366                          <Default>Solid</Default>
367                        </BorderStyle>
368                        <BorderWidth>
369                          <Default>0.5pt</Default>
370                        </BorderWidth>
371                        <FontSize>8pt</FontSize>
372                        <FontWeight>700</FontWeight>
373                        <TextAlign>Center</TextAlign>
374                        <PaddingLeft>2pt</PaddingLeft>
375                        <PaddingRight>2pt</PaddingRight>
376                        <PaddingTop>2pt</PaddingTop>
377                        <PaddingBottom>2pt</PaddingBottom>
378                      </Style>
379                      <ZIndex>35</ZIndex>
380                      <CanGrow>true</CanGrow>
381                      <Value>Akwizytor</Value>
382                    </Textbox>
383                  </ReportItems>
384                </TableCell>
385                <TableCell>
386                  <ReportItems>
387                    <Textbox Name="textbox2">
388                      <rd:DefaultName>textbox2</rd:DefaultName>
389                      <Style>
390                        <BackgroundColor>WhiteSmoke</BackgroundColor>
391                        <BorderStyle>
392                          <Default>Solid</Default>
393                        </BorderStyle>
394                        <BorderWidth>
395                          <Default>0.5pt</Default>
396                        </BorderWidth>
397                        <FontSize>8pt</FontSize>
398                        <FontWeight>700</FontWeight>
399                        <TextAlign>Center</TextAlign>
400                        <PaddingLeft>2pt</PaddingLeft>
401                        <PaddingRight>2pt</PaddingRight>
402                        <PaddingTop>2pt</PaddingTop>
403                        <PaddingBottom>2pt</PaddingBottom>
404                      </Style>
405                      <ZIndex>34</ZIndex>
406                      <CanGrow>true</CanGrow>
407                      <Value>Faktura</Value>
408                    </Textbox>
409                  </ReportItems>
410                </TableCell>
411                <TableCell>
412                  <ReportItems>
413                    <Textbox Name="textbox3">
414                      <rd:DefaultName>textbox3</rd:DefaultName>
415                      <Style>
416                        <BackgroundColor>WhiteSmoke</BackgroundColor>
417                        <BorderStyle>
418                          <Default>Solid</Default>
419                        </BorderStyle>
420                        <BorderWidth>
421                          <Default>0.5pt</Default>
422                        </BorderWidth>
423                        <FontSize>8pt</FontSize>
424                        <FontWeight>700</FontWeight>
425                        <TextAlign>Center</TextAlign>
426                        <PaddingLeft>2pt</PaddingLeft>
427                        <PaddingRight>2pt</PaddingRight>
428                        <PaddingTop>2pt</PaddingTop>
429                        <PaddingBottom>2pt</PaddingBottom>
430                      </Style>
431                      <ZIndex>33</ZIndex>
432                      <CanGrow>true</CanGrow>
433                      <Value>Data zapłaty</Value>
434                    </Textbox>
435                  </ReportItems>
436                </TableCell>
437                <TableCell>
438                  <ReportItems>
439                    <Textbox Name="textbox10">
440                      <rd:DefaultName>textbox10</rd:DefaultName>
441                      <Style>
442                        <BackgroundColor>WhiteSmoke</BackgroundColor>
443                        <BorderStyle>
444                          <Default>Solid</Default>
445                        </BorderStyle>
446                        <BorderWidth>
447                          <Default>0.5pt</Default>
448                        </BorderWidth>
449                        <FontSize>8pt</FontSize>
450                        <FontWeight>700</FontWeight>
451                        <TextAlign>Center</TextAlign>
452                        <PaddingLeft>2pt</PaddingLeft>
453                        <PaddingRight>2pt</PaddingRight>
454                        <PaddingTop>2pt</PaddingTop>
455                        <PaddingBottom>2pt</PaddingBottom>
456                      </Style>
457                      <ZIndex>32</ZIndex>
458                      <CanGrow>true</CanGrow>
459                      <Value>Netto</Value>
460                    </Textbox>
461                  </ReportItems>
462                </TableCell>
463                <TableCell>
464                  <ReportItems>
465                    <Textbox Name="textbox16">
466                      <rd:DefaultName>textbox16</rd:DefaultName>
467                      <Style>
468                        <BackgroundColor>WhiteSmoke</BackgroundColor>
469                        <BorderStyle>
470                          <Default>Solid</Default>
471                        </BorderStyle>
472                        <BorderWidth>
473                          <Default>0.5pt</Default>
474                        </BorderWidth>
475                        <FontSize>8pt</FontSize>
476                        <FontWeight>700</FontWeight>
477                        <TextAlign>Center</TextAlign>
478                        <PaddingLeft>2pt</PaddingLeft>
479                        <PaddingRight>2pt</PaddingRight>
480                        <PaddingTop>2pt</PaddingTop>
481                        <PaddingBottom>2pt</PaddingBottom>
482                      </Style>
483                      <ZIndex>31</ZIndex>
484                      <CanGrow>true</CanGrow>
485                      <Value>Prowizja</Value>
486                    </Textbox>
487                  </ReportItems>
488                </TableCell>
489                <TableCell>
490                  <ReportItems>
491                    <Textbox Name="textbox13">
492                      <rd:DefaultName>textbox13</rd:DefaultName>
493                      <Style>
494                        <BackgroundColor>WhiteSmoke</BackgroundColor>
495                        <BorderStyle>
496                          <Default>Solid</Default>
497                        </BorderStyle>
498                        <BorderWidth>
499                          <Default>0.5pt</Default>
500                        </BorderWidth>
501                        <FontSize>8pt</FontSize>
502                        <FontWeight>700</FontWeight>
503                        <TextAlign>Center</TextAlign>
504                        <PaddingLeft>2pt</PaddingLeft>
505                        <PaddingRight>2pt</PaddingRight>
506                        <PaddingTop>2pt</PaddingTop>
507                        <PaddingBottom>2pt</PaddingBottom>
508                      </Style>
509                      <ZIndex>30</ZIndex>
510                      <CanGrow>true</CanGrow>
511                      <Value>Agencja</Value>
512                    </Textbox>
513                  </ReportItems>
514                </TableCell>
515              </TableCells>
516              <Height>0.7cm</Height>
517            </TableRow>
518          </TableRows>
519        </Header>
520        <TableColumns>
521          <TableColumn>
522            <Width>3cm</Width>
523          </TableColumn>
524          <TableColumn>
525            <Width>3cm</Width>
526          </TableColumn>
527          <TableColumn>
528            <Width>3cm</Width>
529          </TableColumn>
530          <TableColumn>
531            <Width>3cm</Width>
532          </TableColumn>
533          <TableColumn>
534            <Width>3cm</Width>
535          </TableColumn>
536          <TableColumn>
537            <Width>3cm</Width>
538          </TableColumn>
539        </TableColumns>
540        <Height>4.00476cm</Height>
541        <Footer>
542          <TableRows>
543            <TableRow>
544              <TableCells>
545                <TableCell>
546                  <ReportItems>
547                    <Textbox Name="textbox7">
548                      <rd:DefaultName>textbox7</rd:DefaultName>
549                      <Style>
550                        <PaddingLeft>2pt</PaddingLeft>
551                        <PaddingRight>2pt</PaddingRight>
552                        <PaddingTop>2pt</PaddingTop>
553                        <PaddingBottom>2pt</PaddingBottom>
554                      </Style>
555                      <ZIndex>11</ZIndex>
556                      <CanGrow>true</CanGrow>
557                      <Value />
558                    </Textbox>
559                  </ReportItems>
560                </TableCell>
561                <TableCell>
562                  <ReportItems>
563                    <Textbox Name="textbox8">
564                      <rd:DefaultName>textbox8</rd:DefaultName>
565                      <Style>
566                        <PaddingLeft>2pt</PaddingLeft>
567                        <PaddingRight>2pt</PaddingRight>
568                        <PaddingTop>2pt</PaddingTop>
569                        <PaddingBottom>2pt</PaddingBottom>
570                      </Style>
571                      <ZIndex>10</ZIndex>
572                      <CanGrow>true</CanGrow>
573                      <Value />
574                    </Textbox>
575                  </ReportItems>
576                </TableCell>
577                <TableCell>
578                  <ReportItems>
579                    <Textbox Name="textbox9">
580                      <rd:DefaultName>textbox9</rd:DefaultName>
581                      <Style>
582                        <PaddingLeft>2pt</PaddingLeft>
583                        <PaddingRight>2pt</PaddingRight>
584                        <PaddingTop>2pt</PaddingTop>
585                        <PaddingBottom>2pt</PaddingBottom>
586                      </Style>
587                      <ZIndex>9</ZIndex>
588                      <CanGrow>true</CanGrow>
589                      <Value />
590                    </Textbox>
591                  </ReportItems>
592                </TableCell>
593                <TableCell>
594                  <ReportItems>
595                    <Textbox Name="textbox12">
596                      <rd:DefaultName>textbox12</rd:DefaultName>
597                      <Style>
598                        <BackgroundColor>WhiteSmoke</BackgroundColor>
599                        <BorderStyle>
600                          <Default>Solid</Default>
601                        </BorderStyle>
602                        <BorderWidth>
603                          <Default>0.5pt</Default>
604                        </BorderWidth>
605                        <FontSize>8pt</FontSize>
606                        <FontWeight>700</FontWeight>
607                        <Format>C</Format>
608                        <TextAlign>Center</TextAlign>
609                        <PaddingLeft>2pt</PaddingLeft>
610                        <PaddingRight>2pt</PaddingRight>
611                        <PaddingTop>2pt</PaddingTop>
612                        <PaddingBottom>2pt</PaddingBottom>
613                      </Style>
614                      <ZIndex>8</ZIndex>
615                      <CanGrow>true</CanGrow>
616                      <Value>=SUM(Fields!Netto.Value)</Value>
617                    </Textbox>
618                  </ReportItems>
619                </TableCell>
620                <TableCell>
621                  <ReportItems>
622                    <Textbox Name="textbox18">
623                      <rd:DefaultName>textbox18</rd:DefaultName>
624                      <Style>
625                        <BackgroundColor>WhiteSmoke</BackgroundColor>
626                        <BorderStyle>
627                          <Default>Solid</Default>
628                        </BorderStyle>
629                        <BorderWidth>
630                          <Default>0.5pt</Default>
631                        </BorderWidth>
632                        <FontSize>8pt</FontSize>
633                        <FontWeight>700</FontWeight>
634                        <Format>C</Format>
635                        <TextAlign>Center</TextAlign>
636                        <PaddingLeft>2pt</PaddingLeft>
637                        <PaddingRight>2pt</PaddingRight>
638                        <PaddingTop>2pt</PaddingTop>
639                        <PaddingBottom>2pt</PaddingBottom>
640                      </Style>
641                      <ZIndex>7</ZIndex>
642                      <CanGrow>true</CanGrow>
643                      <Value>=SUM(Fields!Prowizja.Value)</Value>
644                    </Textbox>
645                  </ReportItems>
646                </TableCell>
647                <TableCell>
648                  <ReportItems>
649                    <Textbox Name="textbox15">
650                      <rd:DefaultName>textbox15</rd:DefaultName>
651                      <Style>
652                        <PaddingLeft>2pt</PaddingLeft>
653                        <PaddingRight>2pt</PaddingRight>
654                        <PaddingTop>2pt</PaddingTop>
655                        <PaddingBottom>2pt</PaddingBottom>
656                      </Style>
657                      <ZIndex>6</ZIndex>
658                      <CanGrow>true</CanGrow>
659                      <Value />
660                    </Textbox>
661                  </ReportItems>
662                </TableCell>
663              </TableCells>
664              <Height>0.7cm</Height>
665            </TableRow>
666            <TableRow>
667              <TableCells>
668                <TableCell>
669                  <ReportItems>
670                    <Textbox Name="textbox20">
671                      <rd:DefaultName>textbox20</rd:DefaultName>
672                      <Style>
673                        <PaddingLeft>2pt</PaddingLeft>
674                        <PaddingRight>2pt</PaddingRight>
675                        <PaddingTop>2pt</PaddingTop>
676                        <PaddingBottom>2pt</PaddingBottom>
677                      </Style>
678                      <ZIndex>17</ZIndex>
679                      <CanGrow>true</CanGrow>
680                      <Value />
681                    </Textbox>
682                  </ReportItems>
683                </TableCell>
684                <TableCell>
685                  <ReportItems>
686                    <Textbox Name="textbox21">
687                      <rd:DefaultName>textbox21</rd:DefaultName>
688                      <Style>
689                        <PaddingLeft>2pt</PaddingLeft>
690                        <PaddingRight>2pt</PaddingRight>
691                        <PaddingTop>2pt</PaddingTop>
692                        <PaddingBottom>2pt</PaddingBottom>
693                      </Style>
694                      <ZIndex>16</ZIndex>
695                      <CanGrow>true</CanGrow>
696                      <Value />
697                    </Textbox>
698                  </ReportItems>
699                </TableCell>
700                <TableCell>
701                  <ReportItems>
702                    <Textbox Name="textbox22">
703                      <rd:DefaultName>textbox22</rd:DefaultName>
704                      <Style>
705                        <PaddingLeft>2pt</PaddingLeft>
706                        <PaddingRight>2pt</PaddingRight>
707                        <PaddingTop>2pt</PaddingTop>
708                        <PaddingBottom>2pt</PaddingBottom>
709                      </Style>
710                      <ZIndex>15</ZIndex>
711                      <CanGrow>true</CanGrow>
712                      <Value />
713                    </Textbox>
714                  </ReportItems>
715                </TableCell>
716                <TableCell>
717                  <ReportItems>
718                    <Textbox Name="textbox23">
719                      <rd:DefaultName>textbox23</rd:DefaultName>
720                      <Style>
721                        <BorderWidth>
722                          <Default>0.5pt</Default>
723                        </BorderWidth>
724                        <FontSize>8pt</FontSize>
725                        <FontWeight>700</FontWeight>
726                        <Format>C</Format>
727                        <TextAlign>Center</TextAlign>
728                        <PaddingLeft>2pt</PaddingLeft>
729                        <PaddingRight>2pt</PaddingRight>
730                        <PaddingTop>2pt</PaddingTop>
731                        <PaddingBottom>2pt</PaddingBottom>
732                      </Style>
733                      <ZIndex>14</ZIndex>
734                      <CanGrow>true</CanGrow>
735                      <Value />
736                    </Textbox>
737                  </ReportItems>
738                </TableCell>
739                <TableCell>
740                  <ReportItems>
741                    <Textbox Name="textbox24">
742                      <rd:DefaultName>textbox24</rd:DefaultName>
743                      <Style>
744                        <BorderWidth>
745                          <Default>0.5pt</Default>
746                        </BorderWidth>
747                        <FontSize>8pt</FontSize>
748                        <FontWeight>700</FontWeight>
749                        <Format>C</Format>
750                        <TextAlign>Center</TextAlign>
751                        <PaddingLeft>2pt</PaddingLeft>
752                        <PaddingRight>2pt</PaddingRight>
753                        <PaddingTop>2pt</PaddingTop>
754                        <PaddingBottom>2pt</PaddingBottom>
755                      </Style>
756                      <ZIndex>13</ZIndex>
757                      <CanGrow>true</CanGrow>
758                      <Value />
759                    </Textbox>
760                  </ReportItems>
761                </TableCell>
762                <TableCell>
763                  <ReportItems>
764                    <Textbox Name="textbox25">
765                      <rd:DefaultName>textbox25</rd:DefaultName>
766                      <Style>
767                        <PaddingLeft>2pt</PaddingLeft>
768                        <PaddingRight>2pt</PaddingRight>
769                        <PaddingTop>2pt</PaddingTop>
770                        <PaddingBottom>2pt</PaddingBottom>
771                      </Style>
772                      <ZIndex>12</ZIndex>
773                      <CanGrow>true</CanGrow>
774                      <Value />
775                    </Textbox>
776                  </ReportItems>
777                </TableCell>
778              </TableCells>
779              <Height>0.63492cm</Height>
780            </TableRow>
781            <TableRow>
782              <TableCells>
783                <TableCell>
784                  <ReportItems>
785                    <Textbox Name="textbox26">
786                      <rd:DefaultName>textbox26</rd:DefaultName>
787                      <Style>
788                        <PaddingLeft>2pt</PaddingLeft>
789                        <PaddingRight>2pt</PaddingRight>
790                        <PaddingTop>2pt</PaddingTop>
791                        <PaddingBottom>2pt</PaddingBottom>
792                      </Style>
793                      <ZIndex>23</ZIndex>
794                      <CanGrow>true</CanGrow>
795                      <Value />
796                    </Textbox>
797                  </ReportItems>
798                </TableCell>
799                <TableCell>
800                  <ReportItems>
801                    <Textbox Name="textbox27">
802                      <rd:DefaultName>textbox27</rd:DefaultName>
803                      <Style>
804                        <PaddingLeft>2pt</PaddingLeft>
805                        <PaddingRight>2pt</PaddingRight>
806                        <PaddingTop>2pt</PaddingTop>
807                        <PaddingBottom>2pt</PaddingBottom>
808                      </Style>
809                      <ZIndex>22</ZIndex>
810                      <CanGrow>true</CanGrow>
811                      <Value />
812                    </Textbox>
813                  </ReportItems>
814                </TableCell>
815                <TableCell>
816                  <ReportItems>
817                    <Textbox Name="textbox35">
818                      <rd:DefaultName>textbox35</rd:DefaultName>
819                      <Style>
820                        <PaddingLeft>2pt</PaddingLeft>
821                        <PaddingRight>2pt</PaddingRight>
822                        <PaddingTop>2pt</PaddingTop>
823                        <PaddingBottom>2pt</PaddingBottom>
824                      </Style>
825                      <ZIndex>21</ZIndex>
826                      <CanGrow>true</CanGrow>
827                      <Value />
828                    </Textbox>
829                  </ReportItems>
830                </TableCell>
831                <TableCell>
832                  <ReportItems>
833                    <Textbox Name="textbox38">
834                      <rd:DefaultName>textbox38</rd:DefaultName>
835                      <Style>
836                        <BorderWidth>
837                          <Default>0.5pt</Default>
838                        </BorderWidth>
839                        <PaddingLeft>2pt</PaddingLeft>
840                        <PaddingRight>2pt</PaddingRight>
841                        <PaddingTop>2pt</PaddingTop>
842                        <PaddingBottom>2pt</PaddingBottom>
843                      </Style>
844                      <ZIndex>20</ZIndex>
845                      <CanGrow>true</CanGrow>
846                      <Value />
847                    </Textbox>
848                  </ReportItems>
849                </TableCell>
850                <TableCell>
851                  <ReportItems>
852                    <Textbox Name="textbox34">
853                      <Style>
854                        <FontSize>8pt</FontSize>
855                        <TextAlign>Right</TextAlign>
856                        <PaddingLeft>2pt</PaddingLeft>
857                        <PaddingRight>2pt</PaddingRight>
858                        <PaddingTop>2pt</PaddingTop>
859                        <PaddingBottom>2pt</PaddingBottom>
860                      </Style>
861                      <ZIndex>19</ZIndex>
862                      <CanGrow>true</CanGrow>
863                      <Value>Zysk:</Value>
864                    </Textbox>
865                  </ReportItems>
866                </TableCell>
867                <TableCell>
868                  <ReportItems>
869                    <Textbox Name="textbox39">
870                      <Style>
871                        <BackgroundColor>WhiteSmoke</BackgroundColor>
872                        <BorderStyle>
873                          <Default>Solid</Default>
874                        </BorderStyle>
875                        <BorderWidth>
876                          <Default>0.5pt</Default>
877                        </BorderWidth>
878                        <FontSize>8pt</FontSize>
879                        <FontWeight>700</FontWeight>
880                        <Format>C</Format>
881                        <TextAlign>Center</TextAlign>
882                        <PaddingLeft>2pt</PaddingLeft>
883                        <PaddingRight>2pt</PaddingRight>
884                        <PaddingTop>2pt</PaddingTop>
885                        <PaddingBottom>2pt</PaddingBottom>
886                      </Style>
887                      <ZIndex>18</ZIndex>
888                      <CanGrow>true</CanGrow>
889                      <Value>=(SUM(Fields!Netto.Value)-SUM(Fields!Prowizja.Value))</Value>
890                    </Textbox>
891                  </ReportItems>
892                </TableCell>
893              </TableCells>
894              <Height>0.63492cm</Height>
895            </TableRow>
896            <TableRow>
897              <TableCells>
898                <TableCell>
899                  <ReportItems>
900                    <Textbox Name="textbox32">
901                      <rd:DefaultName>textbox32</rd:DefaultName>
902                      <Style>
903                        <PaddingLeft>2pt</PaddingLeft>
904                        <PaddingRight>2pt</PaddingRight>
905                        <PaddingTop>2pt</PaddingTop>
906                        <PaddingBottom>2pt</PaddingBottom>
907                      </Style>
908                      <ZIndex>29</ZIndex>
909                      <CanGrow>true</CanGrow>
910                      <Value />
911                    </Textbox>
912                  </ReportItems>
913                </TableCell>
914                <TableCell>
915                  <ReportItems>
916                    <Textbox Name="textbox33">
917                      <rd:DefaultName>textbox33</rd:DefaultName>
918                      <Style>
919                        <PaddingLeft>2pt</PaddingLeft>
920                        <PaddingRight>2pt</PaddingRight>
921                        <PaddingTop>2pt</PaddingTop>
922                        <PaddingBottom>2pt</PaddingBottom>
923                      </Style>
924                      <ZIndex>28</ZIndex>
925                      <CanGrow>true</CanGrow>
926                      <Value />
927                    </Textbox>
928                  </ReportItems>
929                </TableCell>
930                <TableCell>
931                  <ReportItems>
932                    <Textbox Name="textbox28">
933                      <rd:DefaultName>textbox28</rd:DefaultName>
934                      <Style>
935                        <PaddingLeft>2pt</PaddingLeft>
936                        <PaddingRight>2pt</PaddingRight>
937                        <PaddingTop>2pt</PaddingTop>
938                        <PaddingBottom>2pt</PaddingBottom>
939                      </Style>
940                      <ZIndex>27</ZIndex>
941                      <CanGrow>true</CanGrow>
942                      <Value />
943                    </Textbox>
944                  </ReportItems>
945                </TableCell>
946                <TableCell>
947                  <ReportItems>
948                    <Textbox Name="textbox29">
949                      <rd:DefaultName>textbox29</rd:DefaultName>
950                      <Style>
951                        <BorderWidth>
952                          <Default>0.5pt</Default>
953                        </BorderWidth>
954                        <PaddingLeft>2pt</PaddingLeft>
955                        <PaddingRight>2pt</PaddingRight>
956                        <PaddingTop>2pt</PaddingTop>
957                        <PaddingBottom>2pt</PaddingBottom>
958                      </Style>
959                      <ZIndex>26</ZIndex>
960                      <CanGrow>true</CanGrow>
961                      <Value />
962                    </Textbox>
963                  </ReportItems>
964                </TableCell>
965                <TableCell>
966                  <ReportItems>
967                    <Textbox Name="textbox40">
968                      <Style>
969                        <FontSize>8pt</FontSize>
970                        <TextAlign>Right</TextAlign>
971                        <PaddingLeft>2pt</PaddingLeft>
972                        <PaddingRight>2pt</PaddingRight>
973                        <PaddingTop>2pt</PaddingTop>
974                        <PaddingBottom>2pt</PaddingBottom>
975                      </Style>
976                      <ZIndex>25</ZIndex>
977                      <CanGrow>true</CanGrow>
978                      <Value>Prowizja:</Value>
979                    </Textbox>
980                  </ReportItems>
981                </TableCell>
982                <TableCell>
983                  <ReportItems>
984                    <Textbox Name="textbox41">
985                      <Style>
986                        <BackgroundColor>WhiteSmoke</BackgroundColor>
987                        <BorderStyle>
988                          <Default>Solid</Default>
989                        </BorderStyle>
990                        <BorderWidth>
991                          <Default>0.5pt</Default>
992                        </BorderWidth>
993                        <FontSize>8pt</FontSize>
994                        <FontWeight>700</FontWeight>
995                        <Format>C</Format>
996                        <TextAlign>Center</TextAlign>
997                        <PaddingLeft>2pt</PaddingLeft>
998                        <PaddingRight>2pt</PaddingRight>
999                        <PaddingTop>2pt</PaddingTop>
1000                        <PaddingBottom>2pt</PaddingBottom>
1001                      </Style>
1002                      <ZIndex>24</ZIndex>
1003                      <CanGrow>true</CanGrow>
1004                      <Value>=(SUM(Fields!Netto.Value)-SUM(Fields!Prowizja.Value))*0.75</Value>
1005                    </Textbox>
1006                  </ReportItems>
1007                </TableCell>
1008              </TableCells>
1009              <Height>0.63492cm</Height>
1010            </TableRow>
1011          </TableRows>
1012        </Footer>
1013        <Left>0.5cm</Left>
1014      </Table>
1015    </ReportItems>
1016    <Height>29.7cm</Height>
1017  </Body>
1018  <Language>pl-PL</Language>
1019  <TopMargin>2.5cm</TopMargin>
1020  <PageHeight>29.7cm</PageHeight>
1021</Report>
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.