root/trunk/RaportySQL/adMotoRaportProwizja.rdl @ 900

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

fixes #203

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>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="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,truck</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>1cm</RightMargin>
92  <LeftMargin>1cm</LeftMargin>
93  <BottomMargin>1cm</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  <Code />
172  <Width>18.75cm</Width>
173  <Body>
174    <ColumnSpacing>1cm</ColumnSpacing>
175    <ReportItems>
176      <Textbox Name="textbox19">
177        <rd:DefaultName>textbox19</rd:DefaultName>
178        <Top>0.5cm</Top>
179        <Width>18cm</Width>
180        <Style>
181          <FontWeight>700</FontWeight>
182          <TextAlign>Center</TextAlign>
183          <PaddingLeft>2pt</PaddingLeft>
184          <PaddingRight>2pt</PaddingRight>
185          <PaddingTop>2pt</PaddingTop>
186          <PaddingBottom>2pt</PaddingBottom>
187        </Style>
188        <ZIndex>1</ZIndex>
189        <CanGrow>true</CanGrow>
190        <Left>0.5cm</Left>
191        <Height>0.7cm</Height>
192        <Value>="Rozliczenie reklamy za " + CStr(Parameters!rok.Value) + ", " + CStr(Parameters!miesiac.Value)</Value>
193      </Textbox>
194      <Table Name="table1">
195        <DataSetName>SprzedazWplywy</DataSetName>
196        <Top>1.5cm</Top>
197        <Width>14.5cm</Width>
198        <Details>
199          <TableRows>
200            <TableRow>
201              <TableCells>
202                <TableCell>
203                  <ReportItems>
204                    <Textbox Name="textbox4">
205                      <rd:DefaultName>textbox4</rd:DefaultName>
206                      <Style>
207                        <BorderStyle>
208                          <Default>Solid</Default>
209                        </BorderStyle>
210                        <BorderWidth>
211                          <Default>0.5pt</Default>
212                        </BorderWidth>
213                        <FontSize>8pt</FontSize>
214                        <TextAlign>Center</TextAlign>
215                        <PaddingLeft>2pt</PaddingLeft>
216                        <PaddingRight>2pt</PaddingRight>
217                        <PaddingTop>2pt</PaddingTop>
218                        <PaddingBottom>2pt</PaddingBottom>
219                      </Style>
220                      <ZIndex>5</ZIndex>
221                      <CanGrow>true</CanGrow>
222                      <Value>=Fields!Agent.Value</Value>
223                    </Textbox>
224                  </ReportItems>
225                </TableCell>
226                <TableCell>
227                  <ReportItems>
228                    <Textbox Name="textbox5">
229                      <rd:DefaultName>textbox5</rd:DefaultName>
230                      <Style>
231                        <BorderStyle>
232                          <Default>Solid</Default>
233                        </BorderStyle>
234                        <BorderWidth>
235                          <Default>0.5pt</Default>
236                        </BorderWidth>
237                        <FontSize>8pt</FontSize>
238                        <TextAlign>Center</TextAlign>
239                        <PaddingLeft>2pt</PaddingLeft>
240                        <PaddingRight>2pt</PaddingRight>
241                        <PaddingTop>2pt</PaddingTop>
242                        <PaddingBottom>2pt</PaddingBottom>
243                      </Style>
244                      <ZIndex>4</ZIndex>
245                      <CanGrow>true</CanGrow>
246                      <Value>=Fields!SymbolFaktury.Value</Value>
247                    </Textbox>
248                  </ReportItems>
249                </TableCell>
250                <TableCell>
251                  <ReportItems>
252                    <Textbox Name="textbox6">
253                      <rd:DefaultName>textbox6</rd:DefaultName>
254                      <Style>
255                        <BorderStyle>
256                          <Default>Solid</Default>
257                        </BorderStyle>
258                        <BorderWidth>
259                          <Default>0.5pt</Default>
260                        </BorderWidth>
261                        <FontSize>8pt</FontSize>
262                        <Format>yyyy-MM-dd</Format>
263                        <TextAlign>Center</TextAlign>
264                        <PaddingLeft>2pt</PaddingLeft>
265                        <PaddingRight>2pt</PaddingRight>
266                        <PaddingTop>2pt</PaddingTop>
267                        <PaddingBottom>2pt</PaddingBottom>
268                      </Style>
269                      <ZIndex>3</ZIndex>
270                      <CanGrow>true</CanGrow>
271                      <Value>=Fields!DataWplaty.Value</Value>
272                    </Textbox>
273                  </ReportItems>
274                </TableCell>
275                <TableCell>
276                  <ReportItems>
277                    <Textbox Name="textbox11">
278                      <rd:DefaultName>textbox11</rd:DefaultName>
279                      <Style>
280                        <BorderStyle>
281                          <Default>Solid</Default>
282                        </BorderStyle>
283                        <BorderWidth>
284                          <Default>0.5pt</Default>
285                        </BorderWidth>
286                        <FontSize>8pt</FontSize>
287                        <Format>C</Format>
288                        <TextAlign>Center</TextAlign>
289                        <PaddingLeft>2pt</PaddingLeft>
290                        <PaddingRight>2pt</PaddingRight>
291                        <PaddingTop>2pt</PaddingTop>
292                        <PaddingBottom>2pt</PaddingBottom>
293                      </Style>
294                      <ZIndex>2</ZIndex>
295                      <CanGrow>true</CanGrow>
296                      <Value>=Fields!Netto.Value</Value>
297                    </Textbox>
298                  </ReportItems>
299                </TableCell>
300                <TableCell>
301                  <ReportItems>
302                    <Textbox Name="textbox17">
303                      <rd:DefaultName>textbox17</rd:DefaultName>
304                      <Style>
305                        <BorderStyle>
306                          <Default>Solid</Default>
307                        </BorderStyle>
308                        <BorderWidth>
309                          <Default>0.5pt</Default>
310                        </BorderWidth>
311                        <FontSize>8pt</FontSize>
312                        <Format>C</Format>
313                        <TextAlign>Center</TextAlign>
314                        <PaddingLeft>2pt</PaddingLeft>
315                        <PaddingRight>2pt</PaddingRight>
316                        <PaddingTop>2pt</PaddingTop>
317                        <PaddingBottom>2pt</PaddingBottom>
318                      </Style>
319                      <ZIndex>1</ZIndex>
320                      <CanGrow>true</CanGrow>
321                      <Value>=Fields!Prowizja.Value</Value>
322                    </Textbox>
323                  </ReportItems>
324                </TableCell>
325                <TableCell>
326                  <ReportItems>
327                    <Textbox Name="textbox14">
328                      <rd:DefaultName>textbox14</rd:DefaultName>
329                      <Style>
330                        <BorderStyle>
331                          <Default>Solid</Default>
332                        </BorderStyle>
333                        <BorderWidth>
334                          <Default>0.5pt</Default>
335                        </BorderWidth>
336                        <FontSize>8pt</FontSize>
337                        <TextAlign>Center</TextAlign>
338                        <PaddingLeft>2pt</PaddingLeft>
339                        <PaddingRight>2pt</PaddingRight>
340                        <PaddingTop>2pt</PaddingTop>
341                        <PaddingBottom>2pt</PaddingBottom>
342                      </Style>
343                      <CanGrow>true</CanGrow>
344                      <Value>=Fields!Agencja.Value</Value>
345                    </Textbox>
346                  </ReportItems>
347                </TableCell>
348              </TableCells>
349              <Height>0.7cm</Height>
350            </TableRow>
351          </TableRows>
352        </Details>
353        <Style>
354          <FontSize>8pt</FontSize>
355        </Style>
356        <Header>
357          <TableRows>
358            <TableRow>
359              <TableCells>
360                <TableCell>
361                  <ReportItems>
362                    <Textbox Name="textbox1">
363                      <rd:DefaultName>textbox1</rd:DefaultName>
364                      <Style>
365                        <BackgroundColor>WhiteSmoke</BackgroundColor>
366                        <BorderStyle>
367                          <Default>Solid</Default>
368                        </BorderStyle>
369                        <BorderWidth>
370                          <Default>0.5pt</Default>
371                        </BorderWidth>
372                        <FontSize>8pt</FontSize>
373                        <FontWeight>700</FontWeight>
374                        <TextAlign>Center</TextAlign>
375                        <PaddingLeft>2pt</PaddingLeft>
376                        <PaddingRight>2pt</PaddingRight>
377                        <PaddingTop>2pt</PaddingTop>
378                        <PaddingBottom>2pt</PaddingBottom>
379                      </Style>
380                      <ZIndex>35</ZIndex>
381                      <CanGrow>true</CanGrow>
382                      <Value>Akwizytor</Value>
383                    </Textbox>
384                  </ReportItems>
385                </TableCell>
386                <TableCell>
387                  <ReportItems>
388                    <Textbox Name="textbox2">
389                      <rd:DefaultName>textbox2</rd:DefaultName>
390                      <Style>
391                        <BackgroundColor>WhiteSmoke</BackgroundColor>
392                        <BorderStyle>
393                          <Default>Solid</Default>
394                        </BorderStyle>
395                        <BorderWidth>
396                          <Default>0.5pt</Default>
397                        </BorderWidth>
398                        <FontSize>8pt</FontSize>
399                        <FontWeight>700</FontWeight>
400                        <TextAlign>Center</TextAlign>
401                        <PaddingLeft>2pt</PaddingLeft>
402                        <PaddingRight>2pt</PaddingRight>
403                        <PaddingTop>2pt</PaddingTop>
404                        <PaddingBottom>2pt</PaddingBottom>
405                      </Style>
406                      <ZIndex>34</ZIndex>
407                      <CanGrow>true</CanGrow>
408                      <Value>Faktura</Value>
409                    </Textbox>
410                  </ReportItems>
411                </TableCell>
412                <TableCell>
413                  <ReportItems>
414                    <Textbox Name="textbox3">
415                      <rd:DefaultName>textbox3</rd:DefaultName>
416                      <Style>
417                        <BackgroundColor>WhiteSmoke</BackgroundColor>
418                        <BorderStyle>
419                          <Default>Solid</Default>
420                        </BorderStyle>
421                        <BorderWidth>
422                          <Default>0.5pt</Default>
423                        </BorderWidth>
424                        <FontSize>8pt</FontSize>
425                        <FontWeight>700</FontWeight>
426                        <TextAlign>Center</TextAlign>
427                        <PaddingLeft>2pt</PaddingLeft>
428                        <PaddingRight>2pt</PaddingRight>
429                        <PaddingTop>2pt</PaddingTop>
430                        <PaddingBottom>2pt</PaddingBottom>
431                      </Style>
432                      <ZIndex>33</ZIndex>
433                      <CanGrow>true</CanGrow>
434                      <Value>Data zapłaty</Value>
435                    </Textbox>
436                  </ReportItems>
437                </TableCell>
438                <TableCell>
439                  <ReportItems>
440                    <Textbox Name="textbox10">
441                      <rd:DefaultName>textbox10</rd:DefaultName>
442                      <Style>
443                        <BackgroundColor>WhiteSmoke</BackgroundColor>
444                        <BorderStyle>
445                          <Default>Solid</Default>
446                        </BorderStyle>
447                        <BorderWidth>
448                          <Default>0.5pt</Default>
449                        </BorderWidth>
450                        <FontSize>8pt</FontSize>
451                        <FontWeight>700</FontWeight>
452                        <TextAlign>Center</TextAlign>
453                        <PaddingLeft>2pt</PaddingLeft>
454                        <PaddingRight>2pt</PaddingRight>
455                        <PaddingTop>2pt</PaddingTop>
456                        <PaddingBottom>2pt</PaddingBottom>
457                      </Style>
458                      <ZIndex>32</ZIndex>
459                      <CanGrow>true</CanGrow>
460                      <Value>Netto</Value>
461                    </Textbox>
462                  </ReportItems>
463                </TableCell>
464                <TableCell>
465                  <ReportItems>
466                    <Textbox Name="textbox16">
467                      <rd:DefaultName>textbox16</rd:DefaultName>
468                      <Style>
469                        <BackgroundColor>WhiteSmoke</BackgroundColor>
470                        <BorderStyle>
471                          <Default>Solid</Default>
472                        </BorderStyle>
473                        <BorderWidth>
474                          <Default>0.5pt</Default>
475                        </BorderWidth>
476                        <FontSize>8pt</FontSize>
477                        <FontWeight>700</FontWeight>
478                        <TextAlign>Center</TextAlign>
479                        <PaddingLeft>2pt</PaddingLeft>
480                        <PaddingRight>2pt</PaddingRight>
481                        <PaddingTop>2pt</PaddingTop>
482                        <PaddingBottom>2pt</PaddingBottom>
483                      </Style>
484                      <ZIndex>31</ZIndex>
485                      <CanGrow>true</CanGrow>
486                      <Value>Prowizja</Value>
487                    </Textbox>
488                  </ReportItems>
489                </TableCell>
490                <TableCell>
491                  <ReportItems>
492                    <Textbox Name="textbox13">
493                      <rd:DefaultName>textbox13</rd:DefaultName>
494                      <Style>
495                        <BackgroundColor>WhiteSmoke</BackgroundColor>
496                        <BorderStyle>
497                          <Default>Solid</Default>
498                        </BorderStyle>
499                        <BorderWidth>
500                          <Default>0.5pt</Default>
501                        </BorderWidth>
502                        <FontSize>8pt</FontSize>
503                        <FontWeight>700</FontWeight>
504                        <TextAlign>Center</TextAlign>
505                        <PaddingLeft>2pt</PaddingLeft>
506                        <PaddingRight>2pt</PaddingRight>
507                        <PaddingTop>2pt</PaddingTop>
508                        <PaddingBottom>2pt</PaddingBottom>
509                      </Style>
510                      <ZIndex>30</ZIndex>
511                      <CanGrow>true</CanGrow>
512                      <Value>Agencja</Value>
513                    </Textbox>
514                  </ReportItems>
515                </TableCell>
516              </TableCells>
517              <Height>0.7cm</Height>
518            </TableRow>
519          </TableRows>
520        </Header>
521        <TableColumns>
522          <TableColumn>
523            <Width>2.5cm</Width>
524          </TableColumn>
525          <TableColumn>
526            <Width>2.5cm</Width>
527          </TableColumn>
528          <TableColumn>
529            <Width>2cm</Width>
530          </TableColumn>
531          <TableColumn>
532            <Width>2.5cm</Width>
533          </TableColumn>
534          <TableColumn>
535            <Width>2cm</Width>
536          </TableColumn>
537          <TableColumn>
538            <Width>3cm</Width>
539          </TableColumn>
540        </TableColumns>
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>5.50476cm</Height>
1017  </Body>
1018  <Language>pl-PL</Language>
1019  <TopMargin>1cm</TopMargin>
1020  <PageHeight>29.7cm</PageHeight>
1021</Report>
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.