root/branches/EdycjaKlienta/RaportySQL/ReklamaWInternecie.rdl @ 661

Wersja 130, 32.6 KB (wprowadzona przez marek, 17 years temu)
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>954b8eb4-e2ee-44f0-8e05-535a891b19ad</rd:DataSourceID>
6      <DataSourceReference>BAZA_REKLAM</DataSourceReference>
7    </DataSource>
8  </DataSources>
9  <InteractiveHeight>29.7cm</InteractiveHeight>
10  <ReportParameters>
11    <ReportParameter Name="sortuj">
12      <DataType>String</DataType>
13      <DefaultValue>
14        <Values>
15          <Value>liczba_og</Value>
16        </Values>
17      </DefaultValue>
18      <AllowBlank>true</AllowBlank>
19      <Prompt>sortuj po: </Prompt>
20      <ValidValues>
21        <ParameterValues>
22          <ParameterValue>
23            <Value>reklama_id</Value>
24            <Label>symbol</Label>
25          </ParameterValue>
26          <ParameterValue>
27            <Value>liczba_og</Value>
28            <Label>liczba ogłoszeń</Label>
29          </ParameterValue>
30          <ParameterValue>
31            <Value>data</Value>
32            <Label>data wydania w int</Label>
33          </ParameterValue>
34          <ParameterValue>
35            <Value>nr_wydania</Value>
36            <Label>nr wydania w int</Label>
37          </ParameterValue>
38        </ParameterValues>
39      </ValidValues>
40    </ReportParameter>
41    <ReportParameter Name="tytul">
42      <DataType>String</DataType>
43      <AllowBlank>true</AllowBlank>
44      <Prompt>tytuł</Prompt>
45      <ValidValues>
46        <DataSetReference>
47          <DataSetName>ListaTytulow</DataSetName>
48          <ValueField>SYMB</ValueField>
49          <LabelField>SYMB</LabelField>
50        </DataSetReference>
51      </ValidValues>
52    </ReportParameter>
53    <ReportParameter Name="nrwydania">
54      <DataType>String</DataType>
55      <Prompt>nr wydania</Prompt>
56    </ReportParameter>
57  </ReportParameters>
58  <rd:DrawGrid>true</rd:DrawGrid>
59  <InteractiveWidth>21cm</InteractiveWidth>
60  <rd:GridSpacing>0.25cm</rd:GridSpacing>
61  <rd:SnapToGrid>true</rd:SnapToGrid>
62  <RightMargin>2.5cm</RightMargin>
63  <LeftMargin>2.5cm</LeftMargin>
64  <BottomMargin>2.5cm</BottomMargin>
65  <rd:ReportID>0d754e4e-d550-4bb7-a1ab-4faa3a823e1b</rd:ReportID>
66  <PageWidth>21cm</PageWidth>
67  <DataSets>
68    <DataSet Name="Wyroznienia">
69      <Fields>
70        <Field Name="reklamaId">
71          <DataField>reklamaId</DataField>
72          <rd:TypeName>System.Int32</rd:TypeName>
73        </Field>
74        <Field Name="ID_REKLAMY">
75          <DataField>ID REKLAMY</DataField>
76          <rd:TypeName>System.String</rd:TypeName>
77        </Field>
78        <Field Name="wyroznienie">
79          <DataField>wyroznienie</DataField>
80          <rd:TypeName>System.Boolean</rd:TypeName>
81        </Field>
82        <Field Name="Wyroznienie_exported">
83          <DataField>Wyroznienie_exported</DataField>
84          <rd:TypeName>System.Boolean</rd:TypeName>
85        </Field>
86        <Field Name="logo">
87          <DataField>logo</DataField>
88          <rd:TypeName>System.Boolean</rd:TypeName>
89        </Field>
90        <Field Name="tytuł">
91          <DataField>tytuł</DataField>
92          <rd:TypeName>System.String</rd:TypeName>
93        </Field>
94        <Field Name="numer_wydania">
95          <DataField>numer wydania</DataField>
96          <rd:TypeName>System.Int16</rd:TypeName>
97        </Field>
98        <Field Name="REKLAMA_ID">
99          <DataField>REKLAMA_ID</DataField>
100          <rd:TypeName>System.String</rd:TypeName>
101        </Field>
102        <Field Name="liczba_og">
103          <DataField>liczba_og</DataField>
104          <rd:TypeName>System.Int32</rd:TypeName>
105        </Field>
106        <Field Name="DATA">
107          <DataField>DATA</DataField>
108          <rd:TypeName>System.String</rd:TypeName>
109        </Field>
110        <Field Name="NR_WYDANIA">
111          <DataField>NR_WYDANIA</DataField>
112          <rd:TypeName>System.Int16</rd:TypeName>
113        </Field>
114      </Fields>
115      <Query>
116        <DataSourceName>BAZA_REKLAM</DataSourceName>
117        <CommandText>Select reklamaId, [ID REKLAMY],
118wyroznienie,Wyroznienie_exported,logo,tytuł, [numer wydania],
119[REKLAMA_ID],
120'liczba_og' = case when [nr_wydania] is NULL then 0 else count(reklama_id) end,DATA,NR_WYDANIA from
121(select R.ReklamaID,
122R.[ID REKLAMY],
123R.Wyroznienie,R.Wyroznienie_exported, R.logo, R.tytuł, U.[nr wydania] as [numer wydania]
124, Og.[REKLAMA_ID],Og.ID, Og.DATA,Og.NR_WYDANIA from
125dbo.REKLAMA R left join dbo.[UKAŻE SIĘ W NR] U
126on r.reklamaId = U.reklamaId
127full outer join
128[DANE_OGL_SQL].dbo.DANE Og on R.[ID REKLAMY]=Og.[REKLAMA_ID]
129where 
130((Og.[REKLAMA_ID] is not null and Og.[REKLAMA_ID]&lt;&gt;'') OR
131(R.wyroznienie=1)) and R.tytuł =@tytul and  U.[nr wydania]=@nrwydania  ) T
132group by ReklamaID, [ID REKLAMY], [Reklama_Id],wyroznienie,Wyroznienie_exported,logo,tytuł, [numer wydania],DATA,NR_WYDANIA order by liczba_og desc</CommandText>
133        <QueryParameters>
134          <QueryParameter Name="@tytul">
135            <Value>=Parameters!tytul.Value</Value>
136          </QueryParameter>
137          <QueryParameter Name="@nrwydania">
138            <Value>=Parameters!nrwydania.Value</Value>
139          </QueryParameter>
140        </QueryParameters>
141        <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
142      </Query>
143    </DataSet>
144    <DataSet Name="ListaTytulow">
145      <Fields>
146        <Field Name="SYMB">
147          <DataField>SYMB</DataField>
148          <rd:TypeName>System.String</rd:TypeName>
149        </Field>
150      </Fields>
151      <Query>
152        <DataSourceName>BAZA_REKLAM</DataSourceName>
153        <CommandText>SELECT      SYMB
154FROM            [LISTA TYTUŁÓW]
155WHERE        (st_aktywny = - 1)</CommandText>
156        <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
157      </Query>
158    </DataSet>
159  </DataSets>
160  <Width>19cm</Width>
161  <Body>
162    <ColumnSpacing>1cm</ColumnSpacing>
163    <ReportItems>
164      <Table Name="table1">
165        <DataSetName>Wyroznienia</DataSetName>
166        <Top>0.25cm</Top>
167        <Width>18.5cm</Width>
168        <Details>
169          <TableRows>
170            <TableRow>
171              <TableCells>
172                <TableCell>
173                  <ReportItems>
174                    <Textbox Name="ID_REKLAMY">
175                      <rd:DefaultName>ID_REKLAMY</rd:DefaultName>
176                      <Style>
177                        <BorderColor>
178                          <Default>LightGrey</Default>
179                        </BorderColor>
180                        <BorderStyle>
181                          <Default>Solid</Default>
182                        </BorderStyle>
183                        <BorderWidth>
184                          <Default>0.5pt</Default>
185                        </BorderWidth>
186                        <TextAlign>Center</TextAlign>
187                        <PaddingLeft>2pt</PaddingLeft>
188                        <PaddingRight>2pt</PaddingRight>
189                        <PaddingTop>2pt</PaddingTop>
190                        <PaddingBottom>2pt</PaddingBottom>
191                      </Style>
192                      <ZIndex>8</ZIndex>
193                      <CanGrow>true</CanGrow>
194                      <Value>=Fields!ID_REKLAMY.Value</Value>
195                    </Textbox>
196                  </ReportItems>
197                </TableCell>
198                <TableCell>
199                  <ReportItems>
200                    <Textbox Name="textbox3">
201                      <rd:DefaultName>textbox3</rd:DefaultName>
202                      <Style>
203                        <BorderColor>
204                          <Default>LightGrey</Default>
205                        </BorderColor>
206                        <BorderStyle>
207                          <Default>Solid</Default>
208                        </BorderStyle>
209                        <BorderWidth>
210                          <Default>0.5pt</Default>
211                        </BorderWidth>
212                        <TextAlign>Center</TextAlign>
213                        <PaddingLeft>2pt</PaddingLeft>
214                        <PaddingRight>2pt</PaddingRight>
215                        <PaddingTop>2pt</PaddingTop>
216                        <PaddingBottom>2pt</PaddingBottom>
217                      </Style>
218                      <ZIndex>7</ZIndex>
219                      <CanGrow>true</CanGrow>
220                      <Value>=Fields!numer_wydania.Value</Value>
221                    </Textbox>
222                  </ReportItems>
223                </TableCell>
224                <TableCell>
225                  <ReportItems>
226                    <Textbox Name="wyroznienie">
227                      <rd:DefaultName>wyroznienie</rd:DefaultName>
228                      <Style>
229                        <BorderColor>
230                          <Default>LightGrey</Default>
231                        </BorderColor>
232                        <BorderStyle>
233                          <Default>Solid</Default>
234                        </BorderStyle>
235                        <BorderWidth>
236                          <Default>0.5pt</Default>
237                        </BorderWidth>
238                        <TextAlign>Center</TextAlign>
239                        <PaddingLeft>2pt</PaddingLeft>
240                        <PaddingRight>2pt</PaddingRight>
241                        <PaddingTop>2pt</PaddingTop>
242                        <PaddingBottom>2pt</PaddingBottom>
243                      </Style>
244                      <ZIndex>6</ZIndex>
245                      <CanGrow>true</CanGrow>
246                      <Value>=iif(Fields!wyroznienie.Value=true,"TAK","NIE")</Value>
247                    </Textbox>
248                  </ReportItems>
249                </TableCell>
250                <TableCell>
251                  <ReportItems>
252                    <Textbox Name="Wyroznienie_exported">
253                      <rd:DefaultName>Wyroznienie_exported</rd:DefaultName>
254                      <Style>
255                        <BorderColor>
256                          <Default>LightGrey</Default>
257                        </BorderColor>
258                        <BorderStyle>
259                          <Default>Solid</Default>
260                        </BorderStyle>
261                        <BorderWidth>
262                          <Default>0.5pt</Default>
263                        </BorderWidth>
264                        <TextAlign>Center</TextAlign>
265                        <PaddingLeft>2pt</PaddingLeft>
266                        <PaddingRight>2pt</PaddingRight>
267                        <PaddingTop>2pt</PaddingTop>
268                        <PaddingBottom>2pt</PaddingBottom>
269                      </Style>
270                      <ZIndex>5</ZIndex>
271                      <CanGrow>true</CanGrow>
272                      <Value>=iif(Fields!Wyroznienie_exported.Value=true,"TAK","NIE")</Value>
273                    </Textbox>
274                  </ReportItems>
275                </TableCell>
276                <TableCell>
277                  <ReportItems>
278                    <Textbox Name="textbox8">
279                      <Style>
280                        <BorderColor>
281                          <Default>LightGrey</Default>
282                        </BorderColor>
283                        <BorderStyle>
284                          <Default>Solid</Default>
285                        </BorderStyle>
286                        <BorderWidth>
287                          <Default>0.5pt</Default>
288                        </BorderWidth>
289                        <TextAlign>Center</TextAlign>
290                        <PaddingLeft>2pt</PaddingLeft>
291                        <PaddingRight>2pt</PaddingRight>
292                        <PaddingTop>2pt</PaddingTop>
293                        <PaddingBottom>2pt</PaddingBottom>
294                      </Style>
295                      <ZIndex>4</ZIndex>
296                      <CanGrow>true</CanGrow>
297                      <Value>=iif(Fields!logo.Value=true,"OK","BRAK")</Value>
298                    </Textbox>
299                  </ReportItems>
300                </TableCell>
301                <TableCell>
302                  <ReportItems>
303                    <Textbox Name="REKLAMA_ID">
304                      <rd:DefaultName>REKLAMA_ID</rd:DefaultName>
305                      <Style>
306                        <BorderColor>
307                          <Default>LightGrey</Default>
308                        </BorderColor>
309                        <BorderStyle>
310                          <Default>Solid</Default>
311                        </BorderStyle>
312                        <BorderWidth>
313                          <Default>0.5pt</Default>
314                        </BorderWidth>
315                        <TextAlign>Center</TextAlign>
316                        <PaddingLeft>2pt</PaddingLeft>
317                        <PaddingRight>2pt</PaddingRight>
318                        <PaddingTop>2pt</PaddingTop>
319                        <PaddingBottom>2pt</PaddingBottom>
320                      </Style>
321                      <ZIndex>3</ZIndex>
322                      <CanGrow>true</CanGrow>
323                      <Value>=Fields!REKLAMA_ID.Value</Value>
324                    </Textbox>
325                  </ReportItems>
326                </TableCell>
327                <TableCell>
328                  <ReportItems>
329                    <Textbox Name="DATA">
330                      <rd:DefaultName>DATA</rd:DefaultName>
331                      <Style>
332                        <BorderColor>
333                          <Default>LightGrey</Default>
334                        </BorderColor>
335                        <BorderStyle>
336                          <Default>Solid</Default>
337                        </BorderStyle>
338                        <BorderWidth>
339                          <Default>0.5pt</Default>
340                        </BorderWidth>
341                        <Format>d</Format>
342                        <TextAlign>Center</TextAlign>
343                        <PaddingLeft>2pt</PaddingLeft>
344                        <PaddingRight>2pt</PaddingRight>
345                        <PaddingTop>2pt</PaddingTop>
346                        <PaddingBottom>2pt</PaddingBottom>
347                        <Language>pl</Language>
348                      </Style>
349                      <ZIndex>2</ZIndex>
350                      <CanGrow>true</CanGrow>
351                      <Value>=Fields!DATA.Value</Value>
352                    </Textbox>
353                  </ReportItems>
354                </TableCell>
355                <TableCell>
356                  <ReportItems>
357                    <Textbox Name="NR_WYDANIA">
358                      <rd:DefaultName>NR_WYDANIA</rd:DefaultName>
359                      <Style>
360                        <BorderColor>
361                          <Default>LightGrey</Default>
362                        </BorderColor>
363                        <BorderStyle>
364                          <Default>Solid</Default>
365                        </BorderStyle>
366                        <BorderWidth>
367                          <Default>0.5pt</Default>
368                        </BorderWidth>
369                        <TextAlign>Center</TextAlign>
370                        <PaddingLeft>2pt</PaddingLeft>
371                        <PaddingRight>2pt</PaddingRight>
372                        <PaddingTop>2pt</PaddingTop>
373                        <PaddingBottom>2pt</PaddingBottom>
374                      </Style>
375                      <ZIndex>1</ZIndex>
376                      <CanGrow>true</CanGrow>
377                      <Value>=Fields!NR_WYDANIA.Value</Value>
378                    </Textbox>
379                  </ReportItems>
380                </TableCell>
381                <TableCell>
382                  <ReportItems>
383                    <Textbox Name="liczba_og">
384                      <rd:DefaultName>liczba_og</rd:DefaultName>
385                      <Style>
386                        <BorderColor>
387                          <Default>LightGrey</Default>
388                        </BorderColor>
389                        <BorderStyle>
390                          <Default>Solid</Default>
391                        </BorderStyle>
392                        <BorderWidth>
393                          <Default>0.5pt</Default>
394                        </BorderWidth>
395                        <TextAlign>Center</TextAlign>
396                        <PaddingLeft>2pt</PaddingLeft>
397                        <PaddingRight>2pt</PaddingRight>
398                        <PaddingTop>2pt</PaddingTop>
399                        <PaddingBottom>2pt</PaddingBottom>
400                      </Style>
401                      <CanGrow>true</CanGrow>
402                      <Value>=Fields!liczba_og.Value</Value>
403                    </Textbox>
404                  </ReportItems>
405                </TableCell>
406              </TableCells>
407              <Height>0.63492cm</Height>
408            </TableRow>
409          </TableRows>
410          <Sorting>
411            <SortBy>
412              <SortExpression>=switch(Parameters!sortuj.Value="reklama_id",Fields!REKLAMA_ID.Value,Parameters!sortuj.Value="liczba_og",Fields!liczba_og.Value,Parameters!sortuj.Value="data",Fields!DATA.Value,Parameters!sortuj.Value="nr_wydania",Fields!NR_WYDANIA.Value)</SortExpression>
413              <Direction>Ascending</Direction>
414            </SortBy>
415          </Sorting>
416        </Details>
417        <Style>
418          <Color>WhiteSmoke</Color>
419          <BorderStyle>
420            <Default>Solid</Default>
421          </BorderStyle>
422          <BorderWidth>
423            <Default>0.5pt</Default>
424          </BorderWidth>
425        </Style>
426        <Header>
427          <TableRows>
428            <TableRow>
429              <TableCells>
430                <TableCell>
431                  <ColSpan>4</ColSpan>
432                  <ReportItems>
433                    <Textbox Name="textbox2">
434                      <rd:DefaultName>textbox2</rd:DefaultName>
435                      <Style>
436                        <BackgroundColor>MintCream</BackgroundColor>
437                        <BorderColor>
438                          <Default>LightGrey</Default>
439                        </BorderColor>
440                        <BorderStyle>
441                          <Default>Solid</Default>
442                        </BorderStyle>
443                        <BorderWidth>
444                          <Default>0.5pt</Default>
445                        </BorderWidth>
446                        <FontWeight>700</FontWeight>
447                        <TextAlign>Center</TextAlign>
448                        <PaddingLeft>2pt</PaddingLeft>
449                        <PaddingRight>2pt</PaddingRight>
450                        <PaddingTop>2pt</PaddingTop>
451                        <PaddingBottom>2pt</PaddingBottom>
452                      </Style>
453                      <ZIndex>20</ZIndex>
454                      <CanGrow>true</CanGrow>
455                      <Value>BAZA REKLAM</Value>
456                    </Textbox>
457                  </ReportItems>
458                </TableCell>
459                <TableCell>
460                  <ReportItems>
461                    <Textbox Name="textbox4">
462                      <rd:DefaultName>textbox4</rd:DefaultName>
463                      <Style>
464                        <BackgroundColor>MintCream</BackgroundColor>
465                        <BorderColor>
466                          <Default>LightGrey</Default>
467                        </BorderColor>
468                        <BorderStyle>
469                          <Default>Solid</Default>
470                        </BorderStyle>
471                        <BorderWidth>
472                          <Default>0.5pt</Default>
473                        </BorderWidth>
474                        <FontWeight>700</FontWeight>
475                        <TextAlign>Center</TextAlign>
476                        <PaddingLeft>2pt</PaddingLeft>
477                        <PaddingRight>2pt</PaddingRight>
478                        <PaddingTop>2pt</PaddingTop>
479                        <PaddingBottom>2pt</PaddingBottom>
480                      </Style>
481                      <ZIndex>19</ZIndex>
482                      <CanGrow>true</CanGrow>
483                      <Value />
484                    </Textbox>
485                  </ReportItems>
486                </TableCell>
487                <TableCell>
488                  <ColSpan>4</ColSpan>
489                  <ReportItems>
490                    <Textbox Name="textbox5">
491                      <rd:DefaultName>textbox5</rd:DefaultName>
492                      <Style>
493                        <BackgroundColor>Ivory</BackgroundColor>
494                        <BorderColor>
495                          <Default>LightGrey</Default>
496                        </BorderColor>
497                        <BorderStyle>
498                          <Default>Solid</Default>
499                        </BorderStyle>
500                        <BorderWidth>
501                          <Default>0.5pt</Default>
502                        </BorderWidth>
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>18</ZIndex>
511                      <CanGrow>true</CanGrow>
512                      <Value>BAZA OGŁOSZEŃ</Value>
513                    </Textbox>
514                  </ReportItems>
515                </TableCell>
516              </TableCells>
517              <Height>0.63492cm</Height>
518            </TableRow>
519            <TableRow>
520              <TableCells>
521                <TableCell>
522                  <ReportItems>
523                    <Textbox Name="textbox26">
524                      <Style>
525                        <BorderColor>
526                          <Default>LightGrey</Default>
527                        </BorderColor>
528                        <BorderStyle>
529                          <Default>Solid</Default>
530                        </BorderStyle>
531                        <BorderWidth>
532                          <Default>0.5pt</Default>
533                        </BorderWidth>
534                        <FontWeight>700</FontWeight>
535                        <TextAlign>Center</TextAlign>
536                        <PaddingLeft>2pt</PaddingLeft>
537                        <PaddingRight>2pt</PaddingRight>
538                        <PaddingTop>2pt</PaddingTop>
539                        <PaddingBottom>2pt</PaddingBottom>
540                      </Style>
541                      <ZIndex>17</ZIndex>
542                      <CanGrow>true</CanGrow>
543                      <Value>Symbol</Value>
544                    </Textbox>
545                  </ReportItems>
546                </TableCell>
547                <TableCell>
548                  <ReportItems>
549                    <Textbox Name="textbox1">
550                      <rd:DefaultName>textbox1</rd:DefaultName>
551                      <Style>
552                        <BorderColor>
553                          <Default>LightGrey</Default>
554                        </BorderColor>
555                        <BorderStyle>
556                          <Default>Solid</Default>
557                        </BorderStyle>
558                        <BorderWidth>
559                          <Default>0.5pt</Default>
560                        </BorderWidth>
561                        <FontWeight>700</FontWeight>
562                        <TextAlign>Center</TextAlign>
563                        <PaddingLeft>2pt</PaddingLeft>
564                        <PaddingRight>2pt</PaddingRight>
565                        <PaddingTop>2pt</PaddingTop>
566                        <PaddingBottom>2pt</PaddingBottom>
567                      </Style>
568                      <ZIndex>16</ZIndex>
569                      <CanGrow>true</CanGrow>
570                      <Value>Nr wyd.</Value>
571                    </Textbox>
572                  </ReportItems>
573                </TableCell>
574                <TableCell>
575                  <ReportItems>
576                    <Textbox Name="textbox27">
577                      <Style>
578                        <BorderColor>
579                          <Default>LightGrey</Default>
580                        </BorderColor>
581                        <BorderStyle>
582                          <Default>Solid</Default>
583                        </BorderStyle>
584                        <BorderWidth>
585                          <Default>0.5pt</Default>
586                        </BorderWidth>
587                        <FontWeight>700</FontWeight>
588                        <TextAlign>Center</TextAlign>
589                        <PaddingLeft>2pt</PaddingLeft>
590                        <PaddingRight>2pt</PaddingRight>
591                        <PaddingTop>2pt</PaddingTop>
592                        <PaddingBottom>2pt</PaddingBottom>
593                      </Style>
594                      <ZIndex>15</ZIndex>
595                      <CanGrow>true</CanGrow>
596                      <Value>Wyr.</Value>
597                    </Textbox>
598                  </ReportItems>
599                </TableCell>
600                <TableCell>
601                  <ReportItems>
602                    <Textbox Name="textbox28">
603                      <Style>
604                        <BorderColor>
605                          <Default>LightGrey</Default>
606                        </BorderColor>
607                        <BorderStyle>
608                          <Default>Solid</Default>
609                        </BorderStyle>
610                        <BorderWidth>
611                          <Default>0.5pt</Default>
612                        </BorderWidth>
613                        <FontWeight>700</FontWeight>
614                        <TextAlign>Center</TextAlign>
615                        <PaddingLeft>2pt</PaddingLeft>
616                        <PaddingRight>2pt</PaddingRight>
617                        <PaddingTop>2pt</PaddingTop>
618                        <PaddingBottom>2pt</PaddingBottom>
619                      </Style>
620                      <ZIndex>14</ZIndex>
621                      <CanGrow>true</CanGrow>
622                      <Value>Export</Value>
623                    </Textbox>
624                  </ReportItems>
625                </TableCell>
626                <TableCell>
627                  <ReportItems>
628                    <Textbox Name="textbox6">
629                      <rd:DefaultName>textbox6</rd:DefaultName>
630                      <Style>
631                        <BorderColor>
632                          <Default>LightGrey</Default>
633                        </BorderColor>
634                        <BorderStyle>
635                          <Default>Solid</Default>
636                        </BorderStyle>
637                        <BorderWidth>
638                          <Default>0.5pt</Default>
639                        </BorderWidth>
640                        <FontWeight>700</FontWeight>
641                        <TextAlign>Center</TextAlign>
642                        <PaddingLeft>2pt</PaddingLeft>
643                        <PaddingRight>2pt</PaddingRight>
644                        <PaddingTop>2pt</PaddingTop>
645                        <PaddingBottom>2pt</PaddingBottom>
646                      </Style>
647                      <ZIndex>13</ZIndex>
648                      <CanGrow>true</CanGrow>
649                      <Value>Logo</Value>
650                    </Textbox>
651                  </ReportItems>
652                </TableCell>
653                <TableCell>
654                  <ReportItems>
655                    <Textbox Name="textbox29">
656                      <Style>
657                        <BorderColor>
658                          <Default>LightGrey</Default>
659                        </BorderColor>
660                        <BorderStyle>
661                          <Default>Solid</Default>
662                        </BorderStyle>
663                        <BorderWidth>
664                          <Default>0.5pt</Default>
665                        </BorderWidth>
666                        <FontWeight>700</FontWeight>
667                        <TextAlign>Center</TextAlign>
668                        <PaddingLeft>2pt</PaddingLeft>
669                        <PaddingRight>2pt</PaddingRight>
670                        <PaddingTop>2pt</PaddingTop>
671                        <PaddingBottom>2pt</PaddingBottom>
672                      </Style>
673                      <ZIndex>12</ZIndex>
674                      <CanGrow>true</CanGrow>
675                      <Value>Symbol</Value>
676                    </Textbox>
677                  </ReportItems>
678                </TableCell>
679                <TableCell>
680                  <ReportItems>
681                    <Textbox Name="textbox30">
682                      <Style>
683                        <BorderColor>
684                          <Default>LightGrey</Default>
685                        </BorderColor>
686                        <BorderStyle>
687                          <Default>Solid</Default>
688                        </BorderStyle>
689                        <BorderWidth>
690                          <Default>0.5pt</Default>
691                        </BorderWidth>
692                        <FontWeight>700</FontWeight>
693                        <TextAlign>Center</TextAlign>
694                        <PaddingLeft>2pt</PaddingLeft>
695                        <PaddingRight>2pt</PaddingRight>
696                        <PaddingTop>2pt</PaddingTop>
697                        <PaddingBottom>2pt</PaddingBottom>
698                      </Style>
699                      <ZIndex>11</ZIndex>
700                      <CanGrow>true</CanGrow>
701                      <Value>Data</Value>
702                    </Textbox>
703                  </ReportItems>
704                </TableCell>
705                <TableCell>
706                  <ReportItems>
707                    <Textbox Name="textbox31">
708                      <Style>
709                        <BorderColor>
710                          <Default>LightGrey</Default>
711                        </BorderColor>
712                        <BorderStyle>
713                          <Default>Solid</Default>
714                        </BorderStyle>
715                        <BorderWidth>
716                          <Default>0.5pt</Default>
717                        </BorderWidth>
718                        <FontWeight>700</FontWeight>
719                        <TextAlign>Center</TextAlign>
720                        <PaddingLeft>2pt</PaddingLeft>
721                        <PaddingRight>2pt</PaddingRight>
722                        <PaddingTop>2pt</PaddingTop>
723                        <PaddingBottom>2pt</PaddingBottom>
724                      </Style>
725                      <ZIndex>10</ZIndex>
726                      <CanGrow>true</CanGrow>
727                      <Value>Nr wyd.</Value>
728                    </Textbox>
729                  </ReportItems>
730                </TableCell>
731                <TableCell>
732                  <ReportItems>
733                    <Textbox Name="textbox32">
734                      <Style>
735                        <BorderColor>
736                          <Default>LightGrey</Default>
737                        </BorderColor>
738                        <BorderStyle>
739                          <Default>Solid</Default>
740                        </BorderStyle>
741                        <BorderWidth>
742                          <Default>0.5pt</Default>
743                        </BorderWidth>
744                        <FontWeight>700</FontWeight>
745                        <TextAlign>Center</TextAlign>
746                        <PaddingLeft>2pt</PaddingLeft>
747                        <PaddingRight>2pt</PaddingRight>
748                        <PaddingTop>2pt</PaddingTop>
749                        <PaddingBottom>2pt</PaddingBottom>
750                      </Style>
751                      <ZIndex>9</ZIndex>
752                      <CanGrow>true</CanGrow>
753                      <Value>Liczba ogł.</Value>
754                    </Textbox>
755                  </ReportItems>
756                </TableCell>
757              </TableCells>
758              <Height>0.63492cm</Height>
759            </TableRow>
760          </TableRows>
761        </Header>
762        <TableColumns>
763          <TableColumn>
764            <Width>2.75cm</Width>
765          </TableColumn>
766          <TableColumn>
767            <Width>2cm</Width>
768          </TableColumn>
769          <TableColumn>
770            <Width>1.5cm</Width>
771          </TableColumn>
772          <TableColumn>
773            <Width>1.5cm</Width>
774          </TableColumn>
775          <TableColumn>
776            <Width>1.5cm</Width>
777          </TableColumn>
778          <TableColumn>
779            <Width>2.75cm</Width>
780          </TableColumn>
781          <TableColumn>
782            <Width>2.25cm</Width>
783          </TableColumn>
784          <TableColumn>
785            <Width>2cm</Width>
786          </TableColumn>
787          <TableColumn>
788            <Width>2.25cm</Width>
789          </TableColumn>
790        </TableColumns>
791        <Height>1.90476cm</Height>
792        <Left>0.25cm</Left>
793      </Table>
794    </ReportItems>
795    <Height>2.40476cm</Height>
796  </Body>
797  <Language>en-US</Language>
798  <TopMargin>2.5cm</TopMargin>
799  <PageHeight>29.7cm</PageHeight>
800</Report>
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.