root/trunk/RaportySQL/zestawienieKOREKTA.rdl @ 280

Wersja 130, 118.9 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>e5d5aefc-c060-4acf-ace0-880e37109740</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>ID</ValueField>
23          <LabelField>ID</LabelField>
24        </DataSetReference>
25      </ValidValues>
26    </ReportParameter>
27    <ReportParameter Name="grafik">
28      <DataType>String</DataType>
29      <Nullable>true</Nullable>
30      <DefaultValue>
31        <DataSetReference>
32          <DataSetName>ListaGrafikow</DataSetName>
33          <ValueField>value</ValueField>
34        </DataSetReference>
35      </DefaultValue>
36      <Prompt>korekta</Prompt>
37      <ValidValues>
38        <DataSetReference>
39          <DataSetName>ListaGrafikow</DataSetName>
40          <ValueField>value</ValueField>
41          <LabelField>label</LabelField>
42        </DataSetReference>
43      </ValidValues>
44    </ReportParameter>
45  </ReportParameters>
46  <rd:DrawGrid>true</rd:DrawGrid>
47  <InteractiveWidth>21cm</InteractiveWidth>
48  <rd:GridSpacing>0.15cm</rd:GridSpacing>
49  <rd:SnapToGrid>true</rd:SnapToGrid>
50  <RightMargin>1cm</RightMargin>
51  <LeftMargin>1cm</LeftMargin>
52  <BottomMargin>1cm</BottomMargin>
53  <rd:ReportID>bff5fc89-1c85-4310-9ba7-98571163acd3</rd:ReportID>
54  <PageWidth>21cm</PageWidth>
55  <DataSets>
56    <DataSet Name="DTP">
57      <Fields>
58        <Field Name="ROK">
59          <DataField>rok</DataField>
60          <rd:TypeName>System.Int32</rd:TypeName>
61        </Field>
62        <Field Name="MS">
63          <DataField>ms</DataField>
64          <rd:TypeName>System.Int32</rd:TypeName>
65        </Field>
66        <Field Name="dzien">
67          <DataField>dzien</DataField>
68          <rd:TypeName>System.Int32</rd:TypeName>
69        </Field>
70        <Field Name="korekta">
71          <DataField>korekta</DataField>
72          <rd:TypeName>System.String</rd:TypeName>
73        </Field>
74        <Field Name="ID">
75          <DataField />
76          <rd:TypeName>System.Int32</rd:TypeName>
77        </Field>
78        <Field Name="sredni_czas_produkcji">
79          <DataField>sredni_czas_produkcji</DataField>
80          <rd:TypeName>System.Int32</rd:TypeName>
81        </Field>
82        <Field Name="sredni_czas_dtp">
83          <DataField>sredni_czas_dtp</DataField>
84          <rd:TypeName>System.Int32</rd:TypeName>
85        </Field>
86        <Field Name="sredni_czas_korekta">
87          <DataField>sredni_czas_korekta</DataField>
88          <rd:TypeName>System.Int32</rd:TypeName>
89        </Field>
90        <Field Name="sredni_czas_pokorekcie">
91          <DataField>sredni_czas_pokorekcie</DataField>
92          <rd:TypeName>System.Int32</rd:TypeName>
93        </Field>
94        <Field Name="sredni_czas_calej_produkcji">
95          <DataField>sredni_czas_calej_produkcji</DataField>
96          <rd:TypeName>System.Int32</rd:TypeName>
97        </Field>
98      </Fields>
99      <Query>
100        <DataSourceName>BAZA_REKLAM</DataSourceName>
101        <CommandText>select year(data_agent) as rok,
102month(data_agent) as ms,
103day(data_agent) as dzien, korekta, count(data_agent),
104sum(sc1) as sredni_czas_produkcji,
105sum(sc2) as sredni_czas_dtp,
106sum(sc3) as sredni_czas_korekta,
107sum(sc4) as sredni_czas_pokorekcie,
108sum(al) as sredni_czas_calej_produkcji from (
109select data_agent, korekta,
110datediff(minute,data_agent,data_produkcja) as sc1,
111datediff(minute,data_produkcja,data_dtp) as sc2,
112datediff(minute,data_dtp,data_korekta) as sc3,
113datediff(minute,data_dtp_po_kor,data_akceptacji) as sc4,
114datediff(minute,data_agent,data_akceptacji) as al
115 from produkcja  where year(data_agent)=@rok and (@grafik is null OR korekta=@grafik)
116) t
117group by year(data_agent),month(data_agent),day(data_agent), korekta
118order by year(data_agent),month(data_agent),day(data_agent)</CommandText>
119        <QueryParameters>
120          <QueryParameter Name="@rok">
121            <Value>=Parameters!rok.Value</Value>
122          </QueryParameter>
123          <QueryParameter Name="@grafik">
124            <Value>=Parameters!grafik.Value</Value>
125          </QueryParameter>
126        </QueryParameters>
127        <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
128      </Query>
129    </DataSet>
130    <DataSet Name="ListaLat">
131      <Fields>
132        <Field Name="ID">
133          <DataField />
134          <rd:TypeName>System.Int32</rd:TypeName>
135        </Field>
136      </Fields>
137      <Query>
138        <DataSourceName>BAZA_REKLAM</DataSourceName>
139        <CommandText>select distinct year(data_agent) from produkcja order by year(data_agent)  desc</CommandText>
140        <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
141      </Query>
142    </DataSet>
143    <DataSet Name="ListaGrafikow">
144      <Fields>
145        <Field Name="value">
146          <DataField>value</DataField>
147          <rd:TypeName>System.String</rd:TypeName>
148        </Field>
149        <Field Name="label">
150          <DataField>label</DataField>
151          <rd:TypeName>System.String</rd:TypeName>
152        </Field>
153      </Fields>
154      <Query>
155        <DataSourceName>BAZA_REKLAM</DataSourceName>
156        <CommandText>select distinct korekta as value, korekta as label from produkcja
157where year(data_agent)&gt;=2007 and  korekta &lt;&gt; '' and korekta is not null
158union
159select NULL, 'Wszyscy'
160order by korekta</CommandText>
161        <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
162      </Query>
163    </DataSet>
164  </DataSets>
165  <Code>Public Shared Function MS(ByVal Value As Integer) As String
166  Dim strReply As String 
167  Select Case (Value)   
168        Case 1
169            strReply = "styczeń"       
170        Case 2
171            strReply = "luty"           
172        Case 3
173            strReply = "marzec"
174        Case 4
175            strReply = "kwiecień"
176                Case 5
177            strReply = "maj"
178                Case 6
179            strReply = "czerwiec"
180                Case 7
181                        strReply = "lipiec"
182                Case 8
183                        strReply = "sierpień"
184                Case 9
185                        strReply = "wrzesień"
186                Case 10
187                        strReply = "październik"
188                Case 11
189                        strReply = "listopad"
190                Case 12
191                        strReply = "grudzień"
192    End Select
193        MS = strReply
194End Function</Code>
195  <Width>29.25cm</Width>
196  <Body>
197    <ColumnSpacing>1cm</ColumnSpacing>
198    <ReportItems>
199      <Table Name="table1">
200        <ZIndex>1</ZIndex>
201        <DataSetName>DTP</DataSetName>
202        <Top>1.2cm</Top>
203        <TableGroups>
204          <TableGroup>
205            <Grouping Name="table1_Group1">
206              <GroupExpressions>
207                <GroupExpression>=Fields!ROK.Value</GroupExpression>
208              </GroupExpressions>
209            </Grouping>
210            <Header>
211              <TableRows>
212                <TableRow>
213                  <TableCells>
214                    <TableCell>
215                      <ReportItems>
216                        <Textbox Name="ROK">
217                          <rd:DefaultName>ROK</rd:DefaultName>
218                          <Style>
219                            <BorderColor>
220                              <Default>LightGrey</Default>
221                            </BorderColor>
222                            <BorderStyle>
223                              <Left>Solid</Left>
224                              <Right>None</Right>
225                              <Top>Solid</Top>
226                              <Bottom>Solid</Bottom>
227                            </BorderStyle>
228                            <BorderWidth>
229                              <Default>0.5pt</Default>
230                            </BorderWidth>
231                            <TextAlign>Center</TextAlign>
232                            <PaddingLeft>2pt</PaddingLeft>
233                            <PaddingRight>2pt</PaddingRight>
234                            <PaddingTop>2pt</PaddingTop>
235                            <PaddingBottom>2pt</PaddingBottom>
236                          </Style>
237                          <ZIndex>74</ZIndex>
238                          <CanGrow>true</CanGrow>
239                          <Value>=Fields!ROK.Value</Value>
240                        </Textbox>
241                      </ReportItems>
242                    </TableCell>
243                    <TableCell>
244                      <ReportItems>
245                        <Textbox Name="textbox5">
246                          <rd:DefaultName>textbox5</rd:DefaultName>
247                          <Style>
248                            <BorderColor>
249                              <Default>LightGrey</Default>
250                            </BorderColor>
251                            <BorderStyle>
252                              <Left>None</Left>
253                              <Right>None</Right>
254                              <Top>Solid</Top>
255                              <Bottom>Solid</Bottom>
256                            </BorderStyle>
257                            <BorderWidth>
258                              <Default>0.5pt</Default>
259                            </BorderWidth>
260                            <TextAlign>Center</TextAlign>
261                            <PaddingLeft>2pt</PaddingLeft>
262                            <PaddingRight>2pt</PaddingRight>
263                            <PaddingTop>2pt</PaddingTop>
264                            <PaddingBottom>2pt</PaddingBottom>
265                          </Style>
266                          <ZIndex>73</ZIndex>
267                          <CanGrow>true</CanGrow>
268                          <Value />
269                        </Textbox>
270                      </ReportItems>
271                    </TableCell>
272                    <TableCell>
273                      <ReportItems>
274                        <Textbox Name="textbox14">
275                          <rd:DefaultName>textbox14</rd:DefaultName>
276                          <Style>
277                            <BorderColor>
278                              <Default>LightGrey</Default>
279                            </BorderColor>
280                            <BorderStyle>
281                              <Left>None</Left>
282                              <Right>None</Right>
283                              <Top>Solid</Top>
284                              <Bottom>Solid</Bottom>
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>72</ZIndex>
296                          <CanGrow>true</CanGrow>
297                          <Value />
298                        </Textbox>
299                      </ReportItems>
300                    </TableCell>
301                    <TableCell>
302                      <ReportItems>
303                        <Textbox Name="textbox11">
304                          <rd:DefaultName>textbox11</rd:DefaultName>
305                          <Style>
306                            <BorderColor>
307                              <Default>LightGrey</Default>
308                            </BorderColor>
309                            <BorderStyle>
310                              <Left>None</Left>
311                              <Right>Solid</Right>
312                              <Top>Solid</Top>
313                              <Bottom>Solid</Bottom>
314                            </BorderStyle>
315                            <BorderWidth>
316                              <Default>0.5pt</Default>
317                            </BorderWidth>
318                            <TextAlign>Center</TextAlign>
319                            <PaddingLeft>2pt</PaddingLeft>
320                            <PaddingRight>2pt</PaddingRight>
321                            <PaddingTop>2pt</PaddingTop>
322                            <PaddingBottom>2pt</PaddingBottom>
323                          </Style>
324                          <ZIndex>71</ZIndex>
325                          <CanGrow>true</CanGrow>
326                          <Value />
327                        </Textbox>
328                      </ReportItems>
329                    </TableCell>
330                    <TableCell>
331                      <ReportItems>
332                        <Textbox Name="ID">
333                          <rd:DefaultName>ID</rd:DefaultName>
334                          <Style>
335                            <BorderColor>
336                              <Default>LightGrey</Default>
337                            </BorderColor>
338                            <BorderStyle>
339                              <Default>Solid</Default>
340                            </BorderStyle>
341                            <BorderWidth>
342                              <Default>0.5pt</Default>
343                            </BorderWidth>
344                            <FontWeight>700</FontWeight>
345                            <TextAlign>Center</TextAlign>
346                            <PaddingLeft>2pt</PaddingLeft>
347                            <PaddingRight>2pt</PaddingRight>
348                            <PaddingTop>2pt</PaddingTop>
349                            <PaddingBottom>2pt</PaddingBottom>
350                          </Style>
351                          <ZIndex>70</ZIndex>
352                          <CanGrow>true</CanGrow>
353                          <Value>=Sum(Fields!ID.Value)</Value>
354                        </Textbox>
355                      </ReportItems>
356                    </TableCell>
357                    <TableCell>
358                      <ReportItems>
359                        <Textbox Name="sredni_czas_produkcji_8">
360                          <rd:DefaultName>sredni_czas_produkcji_8</rd:DefaultName>
361                          <Style>
362                            <BorderColor>
363                              <Default>LightGrey</Default>
364                            </BorderColor>
365                            <BorderStyle>
366                              <Left>None</Left>
367                              <Right>Solid</Right>
368                              <Top>Solid</Top>
369                              <Bottom>Solid</Bottom>
370                            </BorderStyle>
371                            <BorderWidth>
372                              <Default>0.5pt</Default>
373                            </BorderWidth>
374                            <TextAlign>Center</TextAlign>
375                            <PaddingLeft>2pt</PaddingLeft>
376                            <PaddingRight>2pt</PaddingRight>
377                            <PaddingTop>2pt</PaddingTop>
378                            <PaddingBottom>2pt</PaddingBottom>
379                          </Style>
380                          <ZIndex>69</ZIndex>
381                          <CanGrow>true</CanGrow>
382                          <Value>=Sum(Fields!sredni_czas_produkcji.Value)</Value>
383                        </Textbox>
384                      </ReportItems>
385                    </TableCell>
386                    <TableCell>
387                      <ReportItems>
388                        <Textbox Name="sredni_czas_produkcji_1">
389                          <rd:DefaultName>sredni_czas_produkcji_1</rd:DefaultName>
390                          <Style>
391                            <BorderColor>
392                              <Default>LightGrey</Default>
393                            </BorderColor>
394                            <BorderStyle>
395                              <Default>Solid</Default>
396                            </BorderStyle>
397                            <BorderWidth>
398                              <Default>0.5pt</Default>
399                            </BorderWidth>
400                            <FontWeight>700</FontWeight>
401                            <TextAlign>Center</TextAlign>
402                            <PaddingLeft>2pt</PaddingLeft>
403                            <PaddingRight>2pt</PaddingRight>
404                            <PaddingTop>2pt</PaddingTop>
405                            <PaddingBottom>2pt</PaddingBottom>
406                          </Style>
407                          <ZIndex>68</ZIndex>
408                          <CanGrow>true</CanGrow>
409                          <Value>=iif(Sum(Fields!ID.Value) &lt;&gt;0, Round(Sum(Fields!sredni_czas_produkcji.Value)/Sum(Fields!ID.Value)),"")</Value>
410                        </Textbox>
411                      </ReportItems>
412                    </TableCell>
413                    <TableCell>
414                      <ReportItems>
415                        <Textbox Name="sredni_czas_dtp_1">
416                          <rd:DefaultName>sredni_czas_dtp_1</rd:DefaultName>
417                          <Style>
418                            <BorderColor>
419                              <Default>LightGrey</Default>
420                            </BorderColor>
421                            <BorderStyle>
422                              <Default>Solid</Default>
423                            </BorderStyle>
424                            <BorderWidth>
425                              <Default>0.5pt</Default>
426                            </BorderWidth>
427                            <TextAlign>Center</TextAlign>
428                            <PaddingLeft>2pt</PaddingLeft>
429                            <PaddingRight>2pt</PaddingRight>
430                            <PaddingTop>2pt</PaddingTop>
431                            <PaddingBottom>2pt</PaddingBottom>
432                          </Style>
433                          <ZIndex>67</ZIndex>
434                          <CanGrow>true</CanGrow>
435                          <Value>=Sum(Fields!sredni_czas_dtp.Value)</Value>
436                        </Textbox>
437                      </ReportItems>
438                    </TableCell>
439                    <TableCell>
440                      <ReportItems>
441                        <Textbox Name="sredni_czas_produkcji_3">
442                          <rd:DefaultName>sredni_czas_produkcji_3</rd:DefaultName>
443                          <Style>
444                            <BorderColor>
445                              <Default>LightGrey</Default>
446                            </BorderColor>
447                            <BorderStyle>
448                              <Default>Solid</Default>
449                            </BorderStyle>
450                            <BorderWidth>
451                              <Default>0.5pt</Default>
452                            </BorderWidth>
453                            <FontWeight>700</FontWeight>
454                            <TextAlign>Center</TextAlign>
455                            <PaddingLeft>2pt</PaddingLeft>
456                            <PaddingRight>2pt</PaddingRight>
457                            <PaddingTop>2pt</PaddingTop>
458                            <PaddingBottom>2pt</PaddingBottom>
459                          </Style>
460                          <ZIndex>66</ZIndex>
461                          <CanGrow>true</CanGrow>
462                          <Value>=iif(Sum(Fields!ID.Value) &lt;&gt;0, Round(Sum(Fields!sredni_czas_dtp.Value)/Sum(Fields!ID.Value)),"")</Value>
463                        </Textbox>
464                      </ReportItems>
465                    </TableCell>
466                    <TableCell>
467                      <ReportItems>
468                        <Textbox Name="sredni_czas_korekta_1">
469                          <rd:DefaultName>sredni_czas_korekta_1</rd:DefaultName>
470                          <Style>
471                            <BorderColor>
472                              <Default>LightGrey</Default>
473                            </BorderColor>
474                            <BorderStyle>
475                              <Default>Solid</Default>
476                            </BorderStyle>
477                            <BorderWidth>
478                              <Default>0.5pt</Default>
479                            </BorderWidth>
480                            <TextAlign>Center</TextAlign>
481                            <PaddingLeft>2pt</PaddingLeft>
482                            <PaddingRight>2pt</PaddingRight>
483                            <PaddingTop>2pt</PaddingTop>
484                            <PaddingBottom>2pt</PaddingBottom>
485                          </Style>
486                          <ZIndex>65</ZIndex>
487                          <CanGrow>true</CanGrow>
488                          <Value>=Sum(Fields!sredni_czas_korekta.Value)</Value>
489                        </Textbox>
490                      </ReportItems>
491                    </TableCell>
492                    <TableCell>
493                      <ReportItems>
494                        <Textbox Name="sredni_czas_produkcji_4">
495                          <rd:DefaultName>sredni_czas_produkcji_4</rd:DefaultName>
496                          <Style>
497                            <BorderColor>
498                              <Default>LightGrey</Default>
499                            </BorderColor>
500                            <BorderStyle>
501                              <Default>Solid</Default>
502                            </BorderStyle>
503                            <BorderWidth>
504                              <Default>0.5pt</Default>
505                            </BorderWidth>
506                            <FontWeight>700</FontWeight>
507                            <TextAlign>Center</TextAlign>
508                            <PaddingLeft>2pt</PaddingLeft>
509                            <PaddingRight>2pt</PaddingRight>
510                            <PaddingTop>2pt</PaddingTop>
511                            <PaddingBottom>2pt</PaddingBottom>
512                          </Style>
513                          <ZIndex>64</ZIndex>
514                          <CanGrow>true</CanGrow>
515                          <Value>=iif(Sum(Fields!ID.Value) &lt;&gt;0, Round(Sum(Fields!sredni_czas_korekta.Value)/Sum(Fields!ID.Value)),"")</Value>
516                        </Textbox>
517                      </ReportItems>
518                    </TableCell>
519                    <TableCell>
520                      <ReportItems>
521                        <Textbox Name="sredni_czas_pokorekcie_3">
522                          <rd:DefaultName>sredni_czas_pokorekcie_3</rd:DefaultName>
523                          <Style>
524                            <BorderColor>
525                              <Default>LightGrey</Default>
526                            </BorderColor>
527                            <BorderStyle>
528                              <Default>Solid</Default>
529                            </BorderStyle>
530                            <BorderWidth>
531                              <Default>0.5pt</Default>
532                            </BorderWidth>
533                            <TextAlign>Center</TextAlign>
534                            <PaddingLeft>2pt</PaddingLeft>
535                            <PaddingRight>2pt</PaddingRight>
536                            <PaddingTop>2pt</PaddingTop>
537                            <PaddingBottom>2pt</PaddingBottom>
538                          </Style>
539                          <ZIndex>63</ZIndex>
540                          <CanGrow>true</CanGrow>
541                          <Value>=Sum(Fields!sredni_czas_pokorekcie.Value)</Value>
542                        </Textbox>
543                      </ReportItems>
544                    </TableCell>
545                    <TableCell>
546                      <ReportItems>
547                        <Textbox Name="sredni_czas_produkcji_6">
548                          <rd:DefaultName>sredni_czas_produkcji_6</rd:DefaultName>
549                          <Style>
550                            <BorderColor>
551                              <Default>LightGrey</Default>
552                            </BorderColor>
553                            <BorderStyle>
554                              <Default>Solid</Default>
555                            </BorderStyle>
556                            <BorderWidth>
557                              <Default>0.5pt</Default>
558                            </BorderWidth>
559                            <FontWeight>700</FontWeight>
560                            <TextAlign>Center</TextAlign>
561                            <PaddingLeft>2pt</PaddingLeft>
562                            <PaddingRight>2pt</PaddingRight>
563                            <PaddingTop>2pt</PaddingTop>
564                            <PaddingBottom>2pt</PaddingBottom>
565                          </Style>
566                          <ZIndex>62</ZIndex>
567                          <CanGrow>true</CanGrow>
568                          <Value>=iif(Sum(Fields!ID.Value) &lt;&gt;0, Round(Sum(Fields!sredni_czas_pokorekcie.Value)/Sum(Fields!ID.Value)),"")</Value>
569                        </Textbox>
570                      </ReportItems>
571                    </TableCell>
572                    <TableCell>
573                      <ReportItems>
574                        <Textbox Name="sredni_czas_calej_produkcji_3">
575                          <rd:DefaultName>sredni_czas_calej_produkcji_3</rd:DefaultName>
576                          <Style>
577                            <BorderColor>
578                              <Default>LightGrey</Default>
579                            </BorderColor>
580                            <BorderStyle>
581                              <Default>Solid</Default>
582                            </BorderStyle>
583                            <BorderWidth>
584                              <Default>0.5pt</Default>
585                            </BorderWidth>
586                            <TextAlign>Center</TextAlign>
587                            <PaddingLeft>2pt</PaddingLeft>
588                            <PaddingRight>2pt</PaddingRight>
589                            <PaddingTop>2pt</PaddingTop>
590                            <PaddingBottom>2pt</PaddingBottom>
591                          </Style>
592                          <ZIndex>61</ZIndex>
593                          <CanGrow>true</CanGrow>
594                          <Value>=Sum(Fields!sredni_czas_calej_produkcji.Value)</Value>
595                        </Textbox>
596                      </ReportItems>
597                    </TableCell>
598                    <TableCell>
599                      <ReportItems>
600                        <Textbox Name="sredni_czas_calej_produkcji">
601                          <rd:DefaultName>sredni_czas_calej_produkcji</rd:DefaultName>
602                          <Style>
603                            <BorderColor>
604                              <Default>LightGrey</Default>
605                            </BorderColor>
606                            <BorderStyle>
607                              <Default>Solid</Default>
608                            </BorderStyle>
609                            <BorderWidth>
610                              <Default>0.5pt</Default>
611                            </BorderWidth>
612                            <FontWeight>700</FontWeight>
613                            <TextAlign>Center</TextAlign>
614                            <PaddingLeft>2pt</PaddingLeft>
615                            <PaddingRight>2pt</PaddingRight>
616                            <PaddingTop>2pt</PaddingTop>
617                            <PaddingBottom>2pt</PaddingBottom>
618                          </Style>
619                          <ZIndex>60</ZIndex>
620                          <CanGrow>true</CanGrow>
621                          <Value>=iif(Sum(Fields!ID.Value) &lt;&gt;0, Round(Sum(Fields!sredni_czas_calej_produkcji.Value)/Sum(Fields!ID.Value)),"")</Value>
622                        </Textbox>
623                      </ReportItems>
624                    </TableCell>
625                  </TableCells>
626                  <Height>0.63492cm</Height>
627                </TableRow>
628              </TableRows>
629            </Header>
630          </TableGroup>
631          <TableGroup>
632            <Grouping Name="table1_Group2">
633              <GroupExpressions>
634                <GroupExpression>=Fields!MS.Value</GroupExpression>
635              </GroupExpressions>
636            </Grouping>
637            <Header>
638              <TableRows>
639                <TableRow>
640                  <Visibility>
641                    <Hidden>true</Hidden>
642                    <ToggleItem>ROK</ToggleItem>
643                  </Visibility>
644                  <TableCells>
645                    <TableCell>
646                      <ReportItems>
647                        <Textbox Name="textbox4">
648                          <rd:DefaultName>textbox4</rd:DefaultName>
649                          <Style>
650                            <TextAlign>Center</TextAlign>
651                            <PaddingLeft>2pt</PaddingLeft>
652                            <PaddingRight>2pt</PaddingRight>
653                            <PaddingTop>2pt</PaddingTop>
654                            <PaddingBottom>2pt</PaddingBottom>
655                          </Style>
656                          <ZIndex>59</ZIndex>
657                          <CanGrow>true</CanGrow>
658                          <Value />
659                        </Textbox>
660                      </ReportItems>
661                    </TableCell>
662                    <TableCell>
663                      <ReportItems>
664                        <Textbox Name="MS">
665                          <rd:DefaultName>MS</rd:DefaultName>
666                          <Style>
667                            <BackgroundColor>WhiteSmoke</BackgroundColor>
668                            <BorderColor>
669                              <Default>LightGrey</Default>
670                            </BorderColor>
671                            <BorderStyle>
672                              <Left>Solid</Left>
673                              <Right>None</Right>
674                              <Top>Solid</Top>
675                              <Bottom>Solid</Bottom>
676                            </BorderStyle>
677                            <BorderWidth>
678                              <Default>0.5pt</Default>
679                            </BorderWidth>
680                            <TextAlign>Center</TextAlign>
681                            <PaddingLeft>2pt</PaddingLeft>
682                            <PaddingRight>2pt</PaddingRight>
683                            <PaddingTop>2pt</PaddingTop>
684                            <PaddingBottom>2pt</PaddingBottom>
685                          </Style>
686                          <ZIndex>58</ZIndex>
687                          <CanGrow>true</CanGrow>
688                          <Value>=Code.MS(Fields!MS.Value)</Value>
689                        </Textbox>
690                      </ReportItems>
691                    </TableCell>
692                    <TableCell>
693                      <ReportItems>
694                        <Textbox Name="textbox12">
695                          <rd:DefaultName>textbox12</rd:DefaultName>
696                          <Style>
697                            <BackgroundColor>WhiteSmoke</BackgroundColor>
698                            <BorderColor>
699                              <Default>LightGrey</Default>
700                            </BorderColor>
701                            <BorderStyle>
702                              <Left>None</Left>
703                              <Right>None</Right>
704                              <Top>Solid</Top>
705                              <Bottom>Solid</Bottom>
706                            </BorderStyle>
707                            <BorderWidth>
708                              <Default>0.5pt</Default>
709                            </BorderWidth>
710                            <TextAlign>Center</TextAlign>
711                            <PaddingLeft>2pt</PaddingLeft>
712                            <PaddingRight>2pt</PaddingRight>
713                            <PaddingTop>2pt</PaddingTop>
714                            <PaddingBottom>2pt</PaddingBottom>
715                          </Style>
716                          <ZIndex>57</ZIndex>
717                          <CanGrow>true</CanGrow>
718                          <Value />
719                        </Textbox>
720                      </ReportItems>
721                    </TableCell>
722                    <TableCell>
723                      <ReportItems>
724                        <Textbox Name="textbox33">
725                          <rd:DefaultName>textbox33</rd:DefaultName>
726                          <Style>
727                            <BackgroundColor>WhiteSmoke</BackgroundColor>
728                            <BorderColor>
729                              <Default>LightGrey</Default>
730                            </BorderColor>
731                            <BorderStyle>
732                              <Left>None</Left>
733                              <Right>None</Right>
734                              <Top>Solid</Top>
735                              <Bottom>Solid</Bottom>
736                            </BorderStyle>
737                            <BorderWidth>
738                              <Default>0.5pt</Default>
739                            </BorderWidth>
740                            <TextAlign>Center</TextAlign>
741                            <PaddingLeft>2pt</PaddingLeft>
742                            <PaddingRight>2pt</PaddingRight>
743                            <PaddingTop>2pt</PaddingTop>
744                            <PaddingBottom>2pt</PaddingBottom>
745                          </Style>
746                          <ZIndex>56</ZIndex>
747                          <CanGrow>true</CanGrow>
748                          <Value />
749                        </Textbox>
750                      </ReportItems>
751                    </TableCell>
752                    <TableCell>
753                      <ReportItems>
754                        <Textbox Name="ID_1">
755                          <rd:DefaultName>ID_1</rd:DefaultName>
756                          <Style>
757                            <BackgroundColor>WhiteSmoke</BackgroundColor>
758                            <BorderColor>
759                              <Default>LightGrey</Default>
760                            </BorderColor>
761                            <BorderStyle>
762                              <Default>Solid</Default>
763                            </BorderStyle>
764                            <BorderWidth>
765                              <Default>0.5pt</Default>
766                            </BorderWidth>
767                            <FontWeight>700</FontWeight>
768                            <TextAlign>Center</TextAlign>
769                            <PaddingLeft>2pt</PaddingLeft>
770                            <PaddingRight>2pt</PaddingRight>
771                            <PaddingTop>2pt</PaddingTop>
772                            <PaddingBottom>2pt</PaddingBottom>
773                          </Style>
774                          <ZIndex>55</ZIndex>
775                          <CanGrow>true</CanGrow>
776                          <Value>=Sum(Fields!ID.Value)</Value>
777                        </Textbox>
778                      </ReportItems>
779                    </TableCell>
780                    <TableCell>
781                      <ReportItems>
782                        <Textbox Name="sredni_czas_produkcji_9">
783                          <rd:DefaultName>sredni_czas_produkcji_9</rd:DefaultName>
784                          <Style>
785                            <BackgroundColor>WhiteSmoke</BackgroundColor>
786                            <BorderColor>
787                              <Default>LightGrey</Default>
788                            </BorderColor>
789                            <BorderStyle>
790                              <Left>None</Left>
791                              <Right>None</Right>
792                              <Top>Solid</Top>
793                              <Bottom>Solid</Bottom>
794                            </BorderStyle>
795                            <BorderWidth>
796                              <Default>0.5pt</Default>
797                            </BorderWidth>
798                            <TextAlign>Center</TextAlign>
799                            <PaddingLeft>2pt</PaddingLeft>
800                            <PaddingRight>2pt</PaddingRight>
801                            <PaddingTop>2pt</PaddingTop>
802                            <PaddingBottom>2pt</PaddingBottom>
803                          </Style>
804                          <ZIndex>54</ZIndex>
805                          <CanGrow>true</CanGrow>
806                          <Value>=Sum(Fields!sredni_czas_produkcji.Value)</Value>
807                        </Textbox>
808                      </ReportItems>
809                    </TableCell>
810                    <TableCell>
811                      <ReportItems>
812                        <Textbox Name="sredni_czas_produkcji">
813                          <rd:DefaultName>sredni_czas_produkcji</rd:DefaultName>
814                          <Style>
815                            <BackgroundColor>WhiteSmoke</BackgroundColor>
816                            <BorderColor>
817                              <Default>LightGrey</Default>
818                            </BorderColor>
819                            <BorderStyle>
820                              <Default>Solid</Default>
821                            </BorderStyle>
822                            <BorderWidth>
823                              <Default>0.5pt</Default>
824                            </BorderWidth>
825                            <FontWeight>700</FontWeight>
826                            <TextAlign>Center</TextAlign>
827                            <PaddingLeft>2pt</PaddingLeft>
828                            <PaddingRight>2pt</PaddingRight>
829                            <PaddingTop>2pt</PaddingTop>
830                            <PaddingBottom>2pt</PaddingBottom>
831                          </Style>
832                          <ZIndex>53</ZIndex>
833                          <CanGrow>true</CanGrow>
834                          <Value>=iif(Sum(Fields!ID.Value) &lt;&gt;0, Round(Sum(Fields!sredni_czas_produkcji.Value)/Sum(Fields!ID.Value)),"")</Value>
835                        </Textbox>
836                      </ReportItems>
837                    </TableCell>
838                    <TableCell>
839                      <ReportItems>
840                        <Textbox Name="sredni_czas_dtp_2">
841                          <rd:DefaultName>sredni_czas_dtp_2</rd:DefaultName>
842                          <Style>
843                            <BackgroundColor>WhiteSmoke</BackgroundColor>
844                            <BorderColor>
845                              <Default>LightGrey</Default>
846                            </BorderColor>
847                            <BorderStyle>
848                              <Default>Solid</Default>
849                            </BorderStyle>
850                            <BorderWidth>
851                              <Default>0.5pt</Default>
852                            </BorderWidth>
853                            <TextAlign>Center</TextAlign>
854                            <PaddingLeft>2pt</PaddingLeft>
855                            <PaddingRight>2pt</PaddingRight>
856                            <PaddingTop>2pt</PaddingTop>
857                            <PaddingBottom>2pt</PaddingBottom>
858                          </Style>
859                          <ZIndex>52</ZIndex>
860                          <CanGrow>true</CanGrow>
861                          <Value>=Sum(Fields!sredni_czas_dtp.Value)</Value>
862                        </Textbox>
863                      </ReportItems>
864                    </TableCell>
865                    <TableCell>
866                      <ReportItems>
867                        <Textbox Name="sredni_czas_produkcji_2">
868                          <rd:DefaultName>sredni_czas_produkcji_2</rd:DefaultName>
869                          <Style>
870                            <BackgroundColor>WhiteSmoke</BackgroundColor>
871                            <BorderColor>
872                              <Default>LightGrey</Default>
873                            </BorderColor>
874                            <BorderStyle>
875                              <Default>Solid</Default>
876                            </BorderStyle>
877                            <BorderWidth>
878                              <Default>0.5pt</Default>
879                            </BorderWidth>
880                            <FontWeight>700</FontWeight>
881                            <TextAlign>Center</TextAlign>
882                            <PaddingLeft>2pt</PaddingLeft>
883                            <PaddingRight>2pt</PaddingRight>
884                            <PaddingTop>2pt</PaddingTop>
885                            <PaddingBottom>2pt</PaddingBottom>
886                          </Style>
887                          <ZIndex>51</ZIndex>
888                          <CanGrow>true</CanGrow>
889                          <Value>=iif(Sum(Fields!ID.Value) &lt;&gt;0, Round(Sum(Fields!sredni_czas_dtp.Value)/Sum(Fields!ID.Value)),"")</Value>
890                        </Textbox>
891                      </ReportItems>
892                    </TableCell>
893                    <TableCell>
894                      <ReportItems>
895                        <Textbox Name="sredni_czas_korekta_2">
896                          <rd:DefaultName>sredni_czas_korekta_2</rd:DefaultName>
897                          <Style>
898                            <BackgroundColor>WhiteSmoke</BackgroundColor>
899                            <BorderColor>
900                              <Default>LightGrey</Default>
901                            </BorderColor>
902                            <BorderStyle>
903                              <Default>Solid</Default>
904                            </BorderStyle>
905                            <BorderWidth>
906                              <Default>0.5pt</Default>
907                            </BorderWidth>
908                            <TextAlign>Center</TextAlign>
909                            <PaddingLeft>2pt</PaddingLeft>
910                            <PaddingRight>2pt</PaddingRight>
911                            <PaddingTop>2pt</PaddingTop>
912                            <PaddingBottom>2pt</PaddingBottom>
913                          </Style>
914                          <ZIndex>50</ZIndex>
915                          <CanGrow>true</CanGrow>
916                          <Value>=Sum(Fields!sredni_czas_korekta.Value)</Value>
917                        </Textbox>
918                      </ReportItems>
919                    </TableCell>
920                    <TableCell>
921                      <ReportItems>
922                        <Textbox Name="sredni_czas_produkcji_5">
923                          <rd:DefaultName>sredni_czas_produkcji_5</rd:DefaultName>
924                          <Style>
925                            <BackgroundColor>WhiteSmoke</BackgroundColor>
926                            <BorderColor>
927                              <Default>LightGrey</Default>
928                            </BorderColor>
929                            <BorderStyle>
930                              <Default>Solid</Default>
931                            </BorderStyle>
932                            <BorderWidth>
933                              <Default>0.5pt</Default>
934                            </BorderWidth>
935                            <FontWeight>700</FontWeight>
936                            <TextAlign>Center</TextAlign>
937                            <PaddingLeft>2pt</PaddingLeft>
938                            <PaddingRight>2pt</PaddingRight>
939                            <PaddingTop>2pt</PaddingTop>
940                            <PaddingBottom>2pt</PaddingBottom>
941                          </Style>
942                          <ZIndex>49</ZIndex>
943                          <CanGrow>true</CanGrow>
944                          <Value>=iif(Sum(Fields!ID.Value) &lt;&gt;0, Round(Sum(Fields!sredni_czas_korekta.Value)/Sum(Fields!ID.Value)),"")</Value>
945                        </Textbox>
946                      </ReportItems>
947                    </TableCell>
948                    <TableCell>
949                      <ReportItems>
950                        <Textbox Name="sredni_czas_pokorekcie_4">
951                          <rd:DefaultName>sredni_czas_pokorekcie_4</rd:DefaultName>
952                          <Style>
953                            <BackgroundColor>WhiteSmoke</BackgroundColor>
954                            <BorderColor>
955                              <Default>LightGrey</Default>
956                            </BorderColor>
957                            <BorderStyle>
958                              <Default>Solid</Default>
959                            </BorderStyle>
960                            <BorderWidth>
961                              <Default>0.5pt</Default>
962                            </BorderWidth>
963                            <TextAlign>Center</TextAlign>
964                            <PaddingLeft>2pt</PaddingLeft>
965                            <PaddingRight>2pt</PaddingRight>
966                            <PaddingTop>2pt</PaddingTop>
967                            <PaddingBottom>2pt</PaddingBottom>
968                          </Style>
969                          <ZIndex>48</ZIndex>
970                          <CanGrow>true</CanGrow>
971                          <Value>=Sum(Fields!sredni_czas_pokorekcie.Value)</Value>
972                        </Textbox>
973                      </ReportItems>
974                    </TableCell>
975                    <TableCell>
976                      <ReportItems>
977                        <Textbox Name="sredni_czas_pokorekcie">
978                          <rd:DefaultName>sredni_czas_pokorekcie</rd:DefaultName>
979                          <Style>
980                            <BackgroundColor>WhiteSmoke</BackgroundColor>
981                            <BorderColor>
982                              <Default>LightGrey</Default>
983                            </BorderColor>
984                            <BorderStyle>
985                              <Default>Solid</Default>
986                            </BorderStyle>
987                            <BorderWidth>
988                              <Default>0.5pt</Default>
989                            </BorderWidth>
990                            <FontWeight>700</FontWeight>
991                            <TextAlign>Center</TextAlign>
992                            <PaddingLeft>2pt</PaddingLeft>
993                            <PaddingRight>2pt</PaddingRight>
994                            <PaddingTop>2pt</PaddingTop>
995                            <PaddingBottom>2pt</PaddingBottom>
996                          </Style>
997                          <ZIndex>47</ZIndex>
998                          <CanGrow>true</CanGrow>
999                          <Value>=iif(Sum(Fields!ID.Value) &lt;&gt;0, Round(Sum(Fields!sredni_czas_pokorekcie.Value)/Sum(Fields!ID.Value)),"")</Value>
1000                        </Textbox>
1001                      </ReportItems>
1002                    </TableCell>
1003                    <TableCell>
1004                      <ReportItems>
1005                        <Textbox Name="sredni_czas_calej_produkcji_4">
1006                          <rd:DefaultName>sredni_czas_calej_produkcji_4</rd:DefaultName>
1007                          <Style>
1008                            <BackgroundColor>WhiteSmoke</BackgroundColor>
1009                            <BorderColor>
1010                              <Default>LightGrey</Default>
1011                            </BorderColor>
1012                            <BorderStyle>
1013                              <Default>Solid</Default>
1014                            </BorderStyle>
1015                            <BorderWidth>
1016                              <Default>0.5pt</Default>
1017                            </BorderWidth>
1018                            <TextAlign>Center</TextAlign>
1019                            <PaddingLeft>2pt</PaddingLeft>
1020                            <PaddingRight>2pt</PaddingRight>
1021                            <PaddingTop>2pt</PaddingTop>
1022                            <PaddingBottom>2pt</PaddingBottom>
1023                          </Style>
1024                          <ZIndex>46</ZIndex>
1025                          <CanGrow>true</CanGrow>
1026                          <Value>=Sum(Fields!sredni_czas_calej_produkcji.Value)</Value>
1027                        </Textbox>
1028                      </ReportItems>
1029                    </TableCell>
1030                    <TableCell>
1031                      <ReportItems>
1032                        <Textbox Name="sredni_czas_calej_produkcji_1">
1033                          <rd:DefaultName>sredni_czas_calej_produkcji_1</rd:DefaultName>
1034                          <Style>
1035                            <BackgroundColor>WhiteSmoke</BackgroundColor>
1036                            <BorderColor>
1037                              <Default>LightGrey</Default>
1038                            </BorderColor>
1039                            <BorderStyle>
1040                              <Default>Solid</Default>
1041                            </BorderStyle>
1042                            <BorderWidth>
1043                              <Default>0.5pt</Default>
1044                            </BorderWidth>
1045                            <FontWeight>700</FontWeight>
1046                            <TextAlign>Center</TextAlign>
1047                            <PaddingLeft>2pt</PaddingLeft>
1048                            <PaddingRight>2pt</PaddingRight>
1049                            <PaddingTop>2pt</PaddingTop>
1050                            <PaddingBottom>2pt</PaddingBottom>
1051                          </Style>
1052                          <ZIndex>45</ZIndex>
1053                          <CanGrow>true</CanGrow>
1054                          <Value>=iif(Sum(Fields!ID.Value) &lt;&gt;0, Round(Sum(Fields!sredni_czas_calej_produkcji.Value)/Sum(Fields!ID.Value)),"")</Value>
1055                        </Textbox>
1056                      </ReportItems>
1057                    </TableCell>
1058                  </TableCells>
1059                  <Height>0.63492cm</Height>
1060                </TableRow>
1061              </TableRows>
1062            </Header>
1063          </TableGroup>
1064          <TableGroup>
1065            <Grouping Name="table1_Group3">
1066              <GroupExpressions>
1067                <GroupExpression>=Fields!dzien.Value</GroupExpression>
1068              </GroupExpressions>
1069            </Grouping>
1070            <Header>
1071              <TableRows>
1072                <TableRow>
1073                  <Visibility>
1074                    <Hidden>true</Hidden>
1075                    <ToggleItem>MS</ToggleItem>
1076                  </Visibility>
1077                  <TableCells>
1078                    <TableCell>
1079                      <ReportItems>
1080                        <Textbox Name="textbox31">
1081                          <rd:DefaultName>textbox31</rd:DefaultName>
1082                          <Style>
1083                            <TextAlign>Center</TextAlign>
1084                            <PaddingLeft>2pt</PaddingLeft>
1085                            <PaddingRight>2pt</PaddingRight>
1086                            <PaddingTop>2pt</PaddingTop>
1087                            <PaddingBottom>2pt</PaddingBottom>
1088                          </Style>
1089                          <ZIndex>44</ZIndex>
1090                          <CanGrow>true</CanGrow>
1091                          <Value />
1092                        </Textbox>
1093                      </ReportItems>
1094                    </TableCell>
1095                    <TableCell>
1096                      <ReportItems>
1097                        <Textbox Name="textbox42">
1098                          <rd:DefaultName>textbox42</rd:DefaultName>
1099                          <Style>
1100                            <TextAlign>Center</TextAlign>
1101                            <PaddingLeft>2pt</PaddingLeft>
1102                            <PaddingRight>2pt</PaddingRight>
1103                            <PaddingTop>2pt</PaddingTop>
1104                            <PaddingBottom>2pt</PaddingBottom>
1105                          </Style>
1106                          <ZIndex>43</ZIndex>
1107                          <CanGrow>true</CanGrow>
1108                          <Value />
1109                        </Textbox>
1110                      </ReportItems>
1111                    </TableCell>
1112                    <TableCell>
1113                      <ReportItems>
1114                        <Textbox Name="dzien">
1115                          <rd:DefaultName>dzien</rd:DefaultName>
1116                          <Style>
1117                            <BorderColor>
1118                              <Default>LightGrey</Default>
1119                            </BorderColor>
1120                            <BorderStyle>
1121                              <Left>Solid</Left>
1122                              <Right>None</Right>
1123                              <Top>Solid</Top>
1124                              <Bottom>Solid</Bottom>
1125                            </BorderStyle>
1126                            <BorderWidth>
1127                              <Default>0.5pt</Default>
1128                            </BorderWidth>
1129                            <TextAlign>Center</TextAlign>
1130                            <PaddingLeft>2pt</PaddingLeft>
1131                            <PaddingRight>2pt</PaddingRight>
1132                            <PaddingTop>2pt</PaddingTop>
1133                            <PaddingBottom>2pt</PaddingBottom>
1134                          </Style>
1135                          <ZIndex>42</ZIndex>
1136                          <CanGrow>true</CanGrow>
1137                          <Value>=Fields!dzien.Value</Value>
1138                        </Textbox>
1139                      </ReportItems>
1140                    </TableCell>
1141                    <TableCell>
1142                      <ReportItems>
1143                        <Textbox Name="textbox15">
1144                          <rd:DefaultName>textbox15</rd:DefaultName>
1145                          <Style>
1146                            <BorderColor>
1147                              <Default>LightGrey</Default>
1148                            </BorderColor>
1149                            <BorderStyle>
1150                              <Left>None</Left>
1151                              <Right>Solid</Right>
1152                              <Top>Solid</Top>
1153                              <Bottom>Solid</Bottom>
1154                            </BorderStyle>
1155                            <BorderWidth>
1156                              <Default>0.5pt</Default>
1157                            </BorderWidth>
1158                            <TextAlign>Center</TextAlign>
1159                            <PaddingLeft>2pt</PaddingLeft>
1160                            <PaddingRight>2pt</PaddingRight>
1161                            <PaddingTop>2pt</PaddingTop>
1162                            <PaddingBottom>2pt</PaddingBottom>
1163                          </Style>
1164                          <ZIndex>41</ZIndex>
1165                          <CanGrow>true</CanGrow>
1166                          <Value />
1167                        </Textbox>
1168                      </ReportItems>
1169                    </TableCell>
1170                    <TableCell>
1171                      <ReportItems>
1172                        <Textbox Name="ID_2">
1173                          <rd:DefaultName>ID_2</rd:DefaultName>
1174                          <Style>
1175                            <BorderColor>
1176                              <Default>LightGrey</Default>
1177                            </BorderColor>
1178                            <BorderStyle>
1179                              <Default>Solid</Default>
1180                            </BorderStyle>
1181                            <BorderWidth>
1182                              <Default>0.5pt</Default>
1183                            </BorderWidth>
1184                            <FontWeight>700</FontWeight>
1185                            <TextAlign>Center</TextAlign>
1186                            <PaddingLeft>2pt</PaddingLeft>
1187                            <PaddingRight>2pt</PaddingRight>
1188                            <PaddingTop>2pt</PaddingTop>
1189                            <PaddingBottom>2pt</PaddingBottom>
1190                          </Style>
1191                          <ZIndex>40</ZIndex>
1192                          <CanGrow>true</CanGrow>
1193                          <Value>=Sum(Fields!ID.Value)</Value>
1194                        </Textbox>
1195                      </ReportItems>
1196                    </TableCell>
1197                    <TableCell>
1198                      <ReportItems>
1199                        <Textbox Name="sredni_czas_produkcji_10">
1200                          <rd:DefaultName>sredni_czas_produkcji_10</rd:DefaultName>
1201                          <Style>
1202                            <BorderColor>
1203                              <Default>LightGrey</Default>
1204                            </BorderColor>
1205                            <BorderStyle>
1206                              <Left>None</Left>
1207                              <Right>Solid</Right>
1208                              <Top>Solid</Top>
1209                              <Bottom>Solid</Bottom>
1210                            </BorderStyle>
1211                            <BorderWidth>
1212                              <Default>0.5pt</Default>
1213                            </BorderWidth>
1214                            <TextAlign>Center</TextAlign>
1215                            <PaddingLeft>2pt</PaddingLeft>
1216                            <PaddingRight>2pt</PaddingRight>
1217                            <PaddingTop>2pt</PaddingTop>
1218                            <PaddingBottom>2pt</PaddingBottom>
1219                          </Style>
1220                          <ZIndex>39</ZIndex>
1221                          <CanGrow>true</CanGrow>
1222                          <Value>=Sum(Fields!sredni_czas_produkcji.Value)</Value>
1223                        </Textbox>
1224                      </ReportItems>
1225                    </TableCell>
1226                    <TableCell>
1227                      <ReportItems>
1228                        <Textbox Name="sredni_czas_produkcji_7">
1229                          <rd:DefaultName>sredni_czas_produkcji_7</rd:DefaultName>
1230                          <Style>
1231                            <BorderColor>
1232                              <Default>LightGrey</Default>
1233                            </BorderColor>
1234                            <BorderStyle>
1235                              <Default>Solid</Default>
1236                            </BorderStyle>
1237                            <BorderWidth>
1238                              <Default>0.5pt</Default>
1239                            </BorderWidth>
1240                            <FontWeight>700</FontWeight>
1241                            <TextAlign>Center</TextAlign>
1242                            <PaddingLeft>2pt</PaddingLeft>
1243                            <PaddingRight>2pt</PaddingRight>
1244                            <PaddingTop>2pt</PaddingTop>
1245                            <PaddingBottom>2pt</PaddingBottom>
1246                          </Style>
1247                          <ZIndex>38</ZIndex>
1248                          <CanGrow>true</CanGrow>
1249                          <Value>=iif(Sum(Fields!ID.Value) &lt;&gt;0, Round(Sum(Fields!sredni_czas_produkcji.Value)/Sum(Fields!ID.Value)),"")</Value>
1250                        </Textbox>
1251                      </ReportItems>
1252                    </TableCell>
1253                    <TableCell>
1254                      <ReportItems>
1255                        <Textbox Name="sredni_czas_dtp_3">
1256                          <rd:DefaultName>sredni_czas_dtp_3</rd:DefaultName>
1257                          <Style>
1258                            <BorderColor>
1259                              <Default>LightGrey</Default>
1260                            </BorderColor>
1261                            <BorderStyle>
1262                              <Default>Solid</Default>
1263                            </BorderStyle>
1264                            <BorderWidth>
1265                              <Default>0.5pt</Default>
1266                            </BorderWidth>
1267                            <TextAlign>Center</TextAlign>
1268                            <PaddingLeft>2pt</PaddingLeft>
1269                            <PaddingRight>2pt</PaddingRight>
1270                            <PaddingTop>2pt</PaddingTop>
1271                            <PaddingBottom>2pt</PaddingBottom>
1272                          </Style>
1273                          <ZIndex>37</ZIndex>
1274                          <CanGrow>true</CanGrow>
1275                          <Value>=Sum(Fields!sredni_czas_dtp.Value)</Value>
1276                        </Textbox>
1277                      </ReportItems>
1278                    </TableCell>
1279                    <TableCell>
1280                      <ReportItems>
1281                        <Textbox Name="sredni_czas_dtp">
1282                          <rd:DefaultName>sredni_czas_dtp</rd:DefaultName>
1283                          <Style>
1284                            <BorderColor>
1285                              <Default>LightGrey</Default>
1286                            </BorderColor>
1287                            <BorderStyle>
1288                              <Default>Solid</Default>
1289                            </BorderStyle>
1290                            <BorderWidth>
1291                              <Default>0.5pt</Default>
1292                            </BorderWidth>
1293                            <FontWeight>700</FontWeight>
1294                            <TextAlign>Center</TextAlign>
1295                            <PaddingLeft>2pt</PaddingLeft>
1296                            <PaddingRight>2pt</PaddingRight>
1297                            <PaddingTop>2pt</PaddingTop>
1298                            <PaddingBottom>2pt</PaddingBottom>
1299                          </Style>
1300                          <ZIndex>36</ZIndex>
1301                          <CanGrow>true</CanGrow>
1302                          <Value>=iif(Sum(Fields!ID.Value) &lt;&gt;0, Round(Sum(Fields!sredni_czas_dtp.Value)/Sum(Fields!ID.Value)),"")</Value>
1303                        </Textbox>
1304                      </ReportItems>
1305                    </TableCell>
1306                    <TableCell>
1307                      <ReportItems>
1308                        <Textbox Name="sredni_czas_korekta_3">
1309                          <rd:DefaultName>sredni_czas_korekta_3</rd:DefaultName>
1310                          <Style>
1311                            <BorderColor>
1312                              <Default>LightGrey</Default>
1313                            </BorderColor>
1314                            <BorderStyle>
1315                              <Default>Solid</Default>
1316                            </BorderStyle>
1317                            <BorderWidth>
1318                              <Default>0.5pt</Default>
1319                            </BorderWidth>
1320                            <TextAlign>Center</TextAlign>
1321                            <PaddingLeft>2pt</PaddingLeft>
1322                            <PaddingRight>2pt</PaddingRight>
1323                            <PaddingTop>2pt</PaddingTop>
1324                            <PaddingBottom>2pt</PaddingBottom>
1325                          </Style>
1326                          <ZIndex>35</ZIndex>
1327                          <CanGrow>true</CanGrow>
1328                          <Value>=Sum(Fields!sredni_czas_korekta.Value)</Value>
1329                        </Textbox>
1330                      </ReportItems>
1331                    </TableCell>
1332                    <TableCell>
1333                      <ReportItems>
1334                        <Textbox Name="sredni_czas_korekta">
1335                          <rd:DefaultName>sredni_czas_korekta</rd:DefaultName>
1336                          <Style>
1337                            <BorderColor>
1338                              <Default>LightGrey</Default>
1339                            </BorderColor>
1340                            <BorderStyle>
1341                              <Default>Solid</Default>
1342                            </BorderStyle>
1343                            <BorderWidth>
1344                              <Default>0.5pt</Default>
1345                            </BorderWidth>
1346                            <FontWeight>700</FontWeight>
1347                            <TextAlign>Center</TextAlign>
1348                            <PaddingLeft>2pt</PaddingLeft>
1349                            <PaddingRight>2pt</PaddingRight>
1350                            <PaddingTop>2pt</PaddingTop>
1351                            <PaddingBottom>2pt</PaddingBottom>
1352                          </Style>
1353                          <ZIndex>34</ZIndex>
1354                          <CanGrow>true</CanGrow>
1355                          <Value>=iif(Sum(Fields!ID.Value) &lt;&gt;0, Round(Sum(Fields!sredni_czas_korekta.Value)/Sum(Fields!ID.Value)),"")</Value>
1356                        </Textbox>
1357                      </ReportItems>
1358                    </TableCell>
1359                    <TableCell>
1360                      <ReportItems>
1361                        <Textbox Name="sredni_czas_pokorekcie_5">
1362                          <rd:DefaultName>sredni_czas_pokorekcie_5</rd:DefaultName>
1363                          <Style>
1364                            <BorderColor>
1365                              <Default>LightGrey</Default>
1366                            </BorderColor>
1367                            <BorderStyle>
1368                              <Default>Solid</Default>
1369                            </BorderStyle>
1370                            <BorderWidth>
1371                              <Default>0.5pt</Default>
1372                            </BorderWidth>
1373                            <TextAlign>Center</TextAlign>
1374                            <PaddingLeft>2pt</PaddingLeft>
1375                            <PaddingRight>2pt</PaddingRight>
1376                            <PaddingTop>2pt</PaddingTop>
1377                            <PaddingBottom>2pt</PaddingBottom>
1378                          </Style>
1379                          <ZIndex>33</ZIndex>
1380                          <CanGrow>true</CanGrow>
1381                          <Value>=Sum(Fields!sredni_czas_pokorekcie.Value)</Value>
1382                        </Textbox>
1383                      </ReportItems>
1384                    </TableCell>
1385                    <TableCell>
1386                      <ReportItems>
1387                        <Textbox Name="sredni_czas_pokorekcie_1">
1388                          <rd:DefaultName>sredni_czas_pokorekcie_1</rd:DefaultName>
1389                          <Style>
1390                            <BorderColor>
1391                              <Default>LightGrey</Default>
1392                            </BorderColor>
1393                            <BorderStyle>
1394                              <Default>Solid</Default>
1395                            </BorderStyle>
1396                            <BorderWidth>
1397                              <Default>0.5pt</Default>
1398                            </BorderWidth>
1399                            <FontWeight>700</FontWeight>
1400                            <TextAlign>Center</TextAlign>
1401                            <PaddingLeft>2pt</PaddingLeft>
1402                            <PaddingRight>2pt</PaddingRight>
1403                            <PaddingTop>2pt</PaddingTop>
1404                            <PaddingBottom>2pt</PaddingBottom>
1405                          </Style>
1406                          <ZIndex>32</ZIndex>
1407                          <CanGrow>true</CanGrow>
1408                          <Value>=iif(Sum(Fields!ID.Value) &lt;&gt;0, Round(Sum(Fields!sredni_czas_pokorekcie.Value)/Sum(Fields!ID.Value)),"")</Value>
1409                        </Textbox>
1410                      </ReportItems>
1411                    </TableCell>
1412                    <TableCell>
1413                      <ReportItems>
1414                        <Textbox Name="sredni_czas_calej_produkcji_5">
1415                          <rd:DefaultName>sredni_czas_calej_produkcji_5</rd:DefaultName>
1416                          <Style>
1417                            <BorderColor>
1418                              <Default>LightGrey</Default>
1419                            </BorderColor>
1420                            <BorderStyle>
1421                              <Default>Solid</Default>
1422                            </BorderStyle>
1423                            <BorderWidth>
1424                              <Default>0.5pt</Default>
1425                            </BorderWidth>
1426                            <TextAlign>Center</TextAlign>
1427                            <PaddingLeft>2pt</PaddingLeft>
1428                            <PaddingRight>2pt</PaddingRight>
1429                            <PaddingTop>2pt</PaddingTop>
1430                            <PaddingBottom>2pt</PaddingBottom>
1431                          </Style>
1432                          <ZIndex>31</ZIndex>
1433                          <CanGrow>true</CanGrow>
1434                          <Value>=Sum(Fields!sredni_czas_calej_produkcji.Value)</Value>
1435                        </Textbox>
1436                      </ReportItems>
1437                    </TableCell>
1438                    <TableCell>
1439                      <ReportItems>
1440                        <Textbox Name="sredni_czas_calej_produkcji_2">
1441                          <rd:DefaultName>sredni_czas_calej_produkcji_2</rd:DefaultName>
1442                          <Style>
1443                            <BorderColor>
1444                              <Default>LightGrey</Default>
1445                            </BorderColor>
1446                            <BorderStyle>
1447                              <Default>Solid</Default>
1448                            </BorderStyle>
1449                            <BorderWidth>
1450                              <Default>0.5pt</Default>
1451                            </BorderWidth>
1452                            <FontWeight>700</FontWeight>
1453                            <TextAlign>Center</TextAlign>
1454                            <PaddingLeft>2pt</PaddingLeft>
1455                            <PaddingRight>2pt</PaddingRight>
1456                            <PaddingTop>2pt</PaddingTop>
1457                            <PaddingBottom>2pt</PaddingBottom>
1458                          </Style>
1459                          <ZIndex>30</ZIndex>
1460                          <CanGrow>true</CanGrow>
1461                          <Value>=iif(Sum(Fields!ID.Value) &lt;&gt;0, Round(Sum(Fields!sredni_czas_calej_produkcji.Value)/Sum(Fields!ID.Value)),"")</Value>
1462                        </Textbox>
1463                      </ReportItems>
1464                    </TableCell>
1465                  </TableCells>
1466                  <Height>0.63492cm</Height>
1467                </TableRow>
1468              </TableRows>
1469            </Header>
1470          </TableGroup>
1471          <TableGroup>
1472            <Grouping Name="table1_Group4">
1473              <GroupExpressions>
1474                <GroupExpression>=Fields!korekta.Value</GroupExpression>
1475              </GroupExpressions>
1476            </Grouping>
1477            <Header>
1478              <TableRows>
1479                <TableRow>
1480                  <Visibility>
1481                    <Hidden>true</Hidden>
1482                    <ToggleItem>dzien</ToggleItem>
1483                  </Visibility>
1484                  <TableCells>
1485                    <TableCell>
1486                      <ReportItems>
1487                        <Textbox Name="textbox17">
1488                          <rd:DefaultName>textbox17</rd:DefaultName>
1489                          <Style>
1490                            <PaddingLeft>2pt</PaddingLeft>
1491                            <PaddingRight>2pt</PaddingRight>
1492                            <PaddingTop>2pt</PaddingTop>
1493                            <PaddingBottom>2pt</PaddingBottom>
1494                          </Style>
1495                          <ZIndex>29</ZIndex>
1496                          <CanGrow>true</CanGrow>
1497                          <Value />
1498                        </Textbox>
1499                      </ReportItems>
1500                    </TableCell>
1501                    <TableCell>
1502                      <ReportItems>
1503                        <Textbox Name="textbox18">
1504                          <rd:DefaultName>textbox18</rd:DefaultName>
1505                          <Style>
1506                            <TextAlign>Center</TextAlign>
1507                            <PaddingLeft>2pt</PaddingLeft>
1508                            <PaddingRight>2pt</PaddingRight>
1509                            <PaddingTop>2pt</PaddingTop>
1510                            <PaddingBottom>2pt</PaddingBottom>
1511                          </Style>
1512                          <ZIndex>28</ZIndex>
1513                          <CanGrow>true</CanGrow>
1514                          <Value />
1515                        </Textbox>
1516                      </ReportItems>
1517                    </TableCell>
1518                    <TableCell>
1519                      <ReportItems>
1520                        <Textbox Name="textbox19">
1521                          <rd:DefaultName>textbox19</rd:DefaultName>
1522                          <Style>
1523                            <TextAlign>Center</TextAlign>
1524                            <PaddingLeft>2pt</PaddingLeft>
1525                            <PaddingRight>2pt</PaddingRight>
1526                            <PaddingTop>2pt</PaddingTop>
1527                            <PaddingBottom>2pt</PaddingBottom>
1528                          </Style>
1529                          <ZIndex>27</ZIndex>
1530                          <CanGrow>true</CanGrow>
1531                          <Value />
1532                        </Textbox>
1533                      </ReportItems>
1534                    </TableCell>
1535                    <TableCell>
1536                      <ReportItems>
1537                        <Textbox Name="dtp">
1538                          <rd:DefaultName>dtp</rd:DefaultName>
1539                          <Style>
1540                            <BorderColor>
1541                              <Default>LightGrey</Default>
1542                            </BorderColor>
1543                            <BorderStyle>
1544                              <Default>Solid</Default>
1545                            </BorderStyle>
1546                            <BorderWidth>
1547                              <Default>0.5pt</Default>
1548                            </BorderWidth>
1549                            <TextAlign>Center</TextAlign>
1550                            <PaddingLeft>2pt</PaddingLeft>
1551                            <PaddingRight>2pt</PaddingRight>
1552                            <PaddingTop>2pt</PaddingTop>
1553                            <PaddingBottom>2pt</PaddingBottom>
1554                          </Style>
1555                          <ZIndex>26</ZIndex>
1556                          <CanGrow>true</CanGrow>
1557                          <Value>=Fields!korekta.Value</Value>
1558                        </Textbox>
1559                      </ReportItems>
1560                    </TableCell>
1561                    <TableCell>
1562                      <ReportItems>
1563                        <Textbox Name="ID_3">
1564                          <rd:DefaultName>ID_3</rd:DefaultName>
1565                          <Style>
1566                            <BorderColor>
1567                              <Default>LightGrey</Default>
1568                            </BorderColor>
1569                            <BorderStyle>
1570                              <Default>Solid</Default>
1571                            </BorderStyle>
1572                            <BorderWidth>
1573                              <Default>0.5pt</Default>
1574                            </BorderWidth>
1575                            <FontWeight>700</FontWeight>
1576                            <TextAlign>Center</TextAlign>
1577                            <PaddingLeft>2pt</PaddingLeft>
1578                            <PaddingRight>2pt</PaddingRight>
1579                            <PaddingTop>2pt</PaddingTop>
1580                            <PaddingBottom>2pt</PaddingBottom>
1581                          </Style>
1582                          <ZIndex>25</ZIndex>
1583                          <CanGrow>true</CanGrow>
1584                          <Value>=Sum(Fields!ID.Value)</Value>
1585                        </Textbox>
1586                      </ReportItems>
1587                    </TableCell>
1588                    <TableCell>
1589                      <ReportItems>
1590                        <Textbox Name="sredni_czas_produkcji_11">
1591                          <rd:DefaultName>sredni_czas_produkcji_11</rd:DefaultName>
1592                          <Style>
1593                            <BorderColor>
1594                              <Default>LightGrey</Default>
1595                            </BorderColor>
1596                            <BorderStyle>
1597                              <Default>Solid</Default>
1598                            </BorderStyle>
1599                            <BorderWidth>
1600                              <Default>0.5pt</Default>
1601                            </BorderWidth>
1602                            <TextAlign>Center</TextAlign>
1603                            <PaddingLeft>2pt</PaddingLeft>
1604                            <PaddingRight>2pt</PaddingRight>
1605                            <PaddingTop>2pt</PaddingTop>
1606                            <PaddingBottom>2pt</PaddingBottom>
1607                          </Style>
1608                          <ZIndex>24</ZIndex>
1609                          <CanGrow>true</CanGrow>
1610                          <Value>=Sum(Fields!sredni_czas_produkcji.Value)</Value>
1611                        </Textbox>
1612                      </ReportItems>
1613                    </TableCell>
1614                    <TableCell>
1615                      <ReportItems>
1616                        <Textbox Name="textbox20">
1617                          <Style>
1618                            <BorderColor>
1619                              <Default>LightGrey</Default>
1620                            </BorderColor>
1621                            <BorderStyle>
1622                              <Default>Solid</Default>
1623                            </BorderStyle>
1624                            <BorderWidth>
1625                              <Default>0.5pt</Default>
1626                            </BorderWidth>
1627                            <FontWeight>700</FontWeight>
1628                            <TextAlign>Center</TextAlign>
1629                            <PaddingLeft>2pt</PaddingLeft>
1630                            <PaddingRight>2pt</PaddingRight>
1631                            <PaddingTop>2pt</PaddingTop>
1632                            <PaddingBottom>2pt</PaddingBottom>
1633                          </Style>
1634                          <ZIndex>23</ZIndex>
1635                          <CanGrow>true</CanGrow>
1636                          <Value>=iif(Sum(Fields!ID.Value) &lt;&gt;0, Round(Sum(Fields!sredni_czas_produkcji.Value)/Sum(Fields!ID.Value)),"")</Value>
1637                        </Textbox>
1638                      </ReportItems>
1639                    </TableCell>
1640                    <TableCell>
1641                      <ReportItems>
1642                        <Textbox Name="sredni_czas_dtp_4">
1643                          <rd:DefaultName>sredni_czas_dtp_4</rd:DefaultName>
1644                          <Style>
1645                            <BorderColor>
1646                              <Default>LightGrey</Default>
1647                            </BorderColor>
1648                            <BorderStyle>
1649                              <Default>Solid</Default>
1650                            </BorderStyle>
1651                            <BorderWidth>
1652                              <Default>0.5pt</Default>
1653                            </BorderWidth>
1654                            <TextAlign>Center</TextAlign>
1655                            <PaddingLeft>2pt</PaddingLeft>
1656                            <PaddingRight>2pt</PaddingRight>
1657                            <PaddingTop>2pt</PaddingTop>
1658                            <PaddingBottom>2pt</PaddingBottom>
1659                          </Style>
1660                          <ZIndex>22</ZIndex>
1661                          <CanGrow>true</CanGrow>
1662                          <Value>=Sum(Fields!sredni_czas_dtp.Value)</Value>
1663                        </Textbox>
1664                      </ReportItems>
1665                    </TableCell>
1666                    <TableCell>
1667                      <ReportItems>
1668                        <Textbox Name="textbox34">
1669                          <Style>
1670                            <BorderColor>
1671                              <Default>LightGrey</Default>
1672                            </BorderColor>
1673                            <BorderStyle>
1674                              <Default>Solid</Default>
1675                            </BorderStyle>
1676                            <BorderWidth>
1677                              <Default>0.5pt</Default>
1678                            </BorderWidth>
1679                            <FontWeight>700</FontWeight>
1680                            <TextAlign>Center</TextAlign>
1681                            <PaddingLeft>2pt</PaddingLeft>
1682                            <PaddingRight>2pt</PaddingRight>
1683                            <PaddingTop>2pt</PaddingTop>
1684                            <PaddingBottom>2pt</PaddingBottom>
1685                          </Style>
1686                          <ZIndex>21</ZIndex>
1687                          <CanGrow>true</CanGrow>
1688                          <Value>=iif(Sum(Fields!ID.Value) &lt;&gt;0, Round(Sum(Fields!sredni_czas_dtp.Value)/Sum(Fields!ID.Value)),"")</Value>
1689                        </Textbox>
1690                      </ReportItems>
1691                    </TableCell>
1692                    <TableCell>
1693                      <ReportItems>
1694                        <Textbox Name="sredni_czas_pokorekcie_2">
1695                          <rd:DefaultName>sredni_czas_pokorekcie_2</rd:DefaultName>
1696                          <Style>
1697                            <BorderColor>
1698                              <Default>LightGrey</Default>
1699                            </BorderColor>
1700                            <BorderStyle>
1701                              <Default>Solid</Default>
1702                            </BorderStyle>
1703                            <BorderWidth>
1704                              <Default>0.5pt</Default>
1705                            </BorderWidth>
1706                            <TextAlign>Center</TextAlign>
1707                            <PaddingLeft>2pt</PaddingLeft>
1708                            <PaddingRight>2pt</PaddingRight>
1709                            <PaddingTop>2pt</PaddingTop>
1710                            <PaddingBottom>2pt</PaddingBottom>
1711                          </Style>
1712                          <ZIndex>20</ZIndex>
1713                          <CanGrow>true</CanGrow>
1714                          <Value>=Sum(Fields!sredni_czas_pokorekcie.Value)</Value>
1715                        </Textbox>
1716                      </ReportItems>
1717                    </TableCell>
1718                    <TableCell>
1719                      <ReportItems>
1720                        <Textbox Name="textbox37">
1721                          <Style>
1722                            <BorderColor>
1723                              <Default>LightGrey</Default>
1724                            </BorderColor>
1725                            <BorderStyle>
1726                              <Default>Solid</Default>
1727                            </BorderStyle>
1728                            <BorderWidth>
1729                              <Default>0.5pt</Default>
1730                            </BorderWidth>
1731                            <FontWeight>700</FontWeight>
1732                            <TextAlign>Center</TextAlign>
1733                            <PaddingLeft>2pt</PaddingLeft>
1734                            <PaddingRight>2pt</PaddingRight>
1735                            <PaddingTop>2pt</PaddingTop>
1736                            <PaddingBottom>2pt</PaddingBottom>
1737                          </Style>
1738                          <ZIndex>19</ZIndex>
1739                          <CanGrow>true</CanGrow>
1740                          <Value>=iif(Sum(Fields!ID.Value) &lt;&gt;0, Round(Sum(Fields!sredni_czas_korekta.Value)/Sum(Fields!ID.Value)),"")</Value>
1741                        </Textbox>
1742                      </ReportItems>
1743                    </TableCell>
1744                    <TableCell>
1745                      <ReportItems>
1746                        <Textbox Name="sredni_czas_pokorekcie_6">
1747                          <rd:DefaultName>sredni_czas_pokorekcie_6</rd:DefaultName>
1748                          <Style>
1749                            <BorderColor>
1750                              <Default>LightGrey</Default>
1751                            </BorderColor>
1752                            <BorderStyle>
1753                              <Default>Solid</Default>
1754                            </BorderStyle>
1755                            <BorderWidth>
1756                              <Default>0.5pt</Default>
1757                            </BorderWidth>
1758                            <TextAlign>Center</TextAlign>
1759                            <PaddingLeft>2pt</PaddingLeft>
1760                            <PaddingRight>2pt</PaddingRight>
1761                            <PaddingTop>2pt</PaddingTop>
1762                            <PaddingBottom>2pt</PaddingBottom>
1763                          </Style>
1764                          <ZIndex>18</ZIndex>
1765                          <CanGrow>true</CanGrow>
1766                          <Value>=Sum(Fields!sredni_czas_pokorekcie.Value)</Value>
1767                        </Textbox>
1768                      </ReportItems>
1769                    </TableCell>
1770                    <TableCell>
1771                      <ReportItems>
1772                        <Textbox Name="textbox38">
1773                          <Style>
1774                            <BorderColor>
1775                              <Default>LightGrey</Default>
1776                            </BorderColor>
1777                            <BorderStyle>
1778                              <Default>Solid</Default>
1779                            </BorderStyle>
1780                            <BorderWidth>
1781                              <Default>0.5pt</Default>
1782                            </BorderWidth>
1783                            <FontWeight>700</FontWeight>
1784                            <TextAlign>Center</TextAlign>
1785                            <PaddingLeft>2pt</PaddingLeft>
1786                            <PaddingRight>2pt</PaddingRight>
1787                            <PaddingTop>2pt</PaddingTop>
1788                            <PaddingBottom>2pt</PaddingBottom>
1789                          </Style>
1790                          <ZIndex>17</ZIndex>
1791                          <CanGrow>true</CanGrow>
1792                          <Value>=iif(Sum(Fields!ID.Value) &lt;&gt;0, Round(Sum(Fields!sredni_czas_pokorekcie.Value)/Sum(Fields!ID.Value)),"")</Value>
1793                        </Textbox>
1794                      </ReportItems>
1795                    </TableCell>
1796                    <TableCell>
1797                      <ReportItems>
1798                        <Textbox Name="sredni_czas_calej_produkcji_6">
1799                          <rd:DefaultName>sredni_czas_calej_produkcji_6</rd:DefaultName>
1800                          <Style>
1801                            <BorderColor>
1802                              <Default>LightGrey</Default>
1803                            </BorderColor>
1804                            <BorderStyle>
1805                              <Default>Solid</Default>
1806                            </BorderStyle>
1807                            <BorderWidth>
1808                              <Default>0.5pt</Default>
1809                            </BorderWidth>
1810                            <TextAlign>Center</TextAlign>
1811                            <PaddingLeft>2pt</PaddingLeft>
1812                            <PaddingRight>2pt</PaddingRight>
1813                            <PaddingTop>2pt</PaddingTop>
1814                            <PaddingBottom>2pt</PaddingBottom>
1815                          </Style>
1816                          <ZIndex>16</ZIndex>
1817                          <CanGrow>true</CanGrow>
1818                          <Value>=Sum(Fields!sredni_czas_calej_produkcji.Value)</Value>
1819                        </Textbox>
1820                      </ReportItems>
1821                    </TableCell>
1822                    <TableCell>
1823                      <ReportItems>
1824                        <Textbox Name="textbox39">
1825                          <Style>
1826                            <BorderColor>
1827                              <Default>LightGrey</Default>
1828                            </BorderColor>
1829                            <BorderStyle>
1830                              <Default>Solid</Default>
1831                            </BorderStyle>
1832                            <BorderWidth>
1833                              <Default>0.5pt</Default>
1834                            </BorderWidth>
1835                            <FontWeight>700</FontWeight>
1836                            <TextAlign>Center</TextAlign>
1837                            <PaddingLeft>2pt</PaddingLeft>
1838                            <PaddingRight>2pt</PaddingRight>
1839                            <PaddingTop>2pt</PaddingTop>
1840                            <PaddingBottom>2pt</PaddingBottom>
1841                          </Style>
1842                          <ZIndex>15</ZIndex>
1843                          <CanGrow>true</CanGrow>
1844                          <Value>=iif(Sum(Fields!ID.Value) &lt;&gt;0, Round(Sum(Fields!sredni_czas_calej_produkcji.Value)/Sum(Fields!ID.Value)),"")</Value>
1845                        </Textbox>
1846                      </ReportItems>
1847                    </TableCell>
1848                  </TableCells>
1849                  <Height>0.63492cm</Height>
1850                </TableRow>
1851              </TableRows>
1852            </Header>
1853          </TableGroup>
1854        </TableGroups>
1855        <Header>
1856          <TableRows>
1857            <TableRow>
1858              <TableCells>
1859                <TableCell>
1860                  <ReportItems>
1861                    <Textbox Name="textbox1">
1862                      <rd:DefaultName>textbox1</rd:DefaultName>
1863                      <Style>
1864                        <BackgroundColor>WhiteSmoke</BackgroundColor>
1865                        <BorderColor>
1866                          <Default>LightGrey</Default>
1867                        </BorderColor>
1868                        <BorderStyle>
1869                          <Default>Solid</Default>
1870                        </BorderStyle>
1871                        <BorderWidth>
1872                          <Default>0.5pt</Default>
1873                        </BorderWidth>
1874                        <FontWeight>700</FontWeight>
1875                        <TextAlign>Center</TextAlign>
1876                        <PaddingLeft>2pt</PaddingLeft>
1877                        <PaddingRight>2pt</PaddingRight>
1878                        <PaddingTop>2pt</PaddingTop>
1879                        <PaddingBottom>2pt</PaddingBottom>
1880                      </Style>
1881                      <ZIndex>89</ZIndex>
1882                      <CanGrow>true</CanGrow>
1883                      <Value>ROK</Value>
1884                    </Textbox>
1885                  </ReportItems>
1886                </TableCell>
1887                <TableCell>
1888                  <ReportItems>
1889                    <Textbox Name="textbox2">
1890                      <rd:DefaultName>textbox2</rd:DefaultName>
1891                      <Style>
1892                        <BackgroundColor>WhiteSmoke</BackgroundColor>
1893                        <BorderColor>
1894                          <Default>LightGrey</Default>
1895                        </BorderColor>
1896                        <BorderStyle>
1897                          <Default>Solid</Default>
1898                        </BorderStyle>
1899                        <BorderWidth>
1900                          <Default>0.5pt</Default>
1901                        </BorderWidth>
1902                        <FontWeight>700</FontWeight>
1903                        <TextAlign>Center</TextAlign>
1904                        <PaddingLeft>2pt</PaddingLeft>
1905                        <PaddingRight>2pt</PaddingRight>
1906                        <PaddingTop>2pt</PaddingTop>
1907                        <PaddingBottom>2pt</PaddingBottom>
1908                      </Style>
1909                      <ZIndex>88</ZIndex>
1910                      <CanGrow>true</CanGrow>
1911                      <Value>MS</Value>
1912                    </Textbox>
1913                  </ReportItems>
1914                </TableCell>
1915                <TableCell>
1916                  <ReportItems>
1917                    <Textbox Name="textbox6">
1918                      <rd:DefaultName>textbox6</rd:DefaultName>
1919                      <Style>
1920                        <BackgroundColor>WhiteSmoke</BackgroundColor>
1921                        <BorderColor>
1922                          <Default>LightGrey</Default>
1923                        </BorderColor>
1924                        <BorderStyle>
1925                          <Default>Solid</Default>
1926                        </BorderStyle>
1927                        <BorderWidth>
1928                          <Default>0.5pt</Default>
1929                        </BorderWidth>
1930                        <FontWeight>700</FontWeight>
1931                        <TextAlign>Center</TextAlign>
1932                        <PaddingLeft>2pt</PaddingLeft>
1933                        <PaddingRight>2pt</PaddingRight>
1934                        <PaddingTop>2pt</PaddingTop>
1935                        <PaddingBottom>2pt</PaddingBottom>
1936                      </Style>
1937                      <ZIndex>87</ZIndex>
1938                      <CanGrow>true</CanGrow>
1939                      <Value>D</Value>
1940                    </Textbox>
1941                  </ReportItems>
1942                </TableCell>
1943                <TableCell>
1944                  <ReportItems>
1945                    <Textbox Name="textbox10">
1946                      <rd:DefaultName>textbox10</rd:DefaultName>
1947                      <Style>
1948                        <BackgroundColor>WhiteSmoke</BackgroundColor>
1949                        <BorderColor>
1950                          <Default>LightGrey</Default>
1951                        </BorderColor>
1952                        <BorderStyle>
1953                          <Default>Solid</Default>
1954                        </BorderStyle>
1955                        <BorderWidth>
1956                          <Default>0.5pt</Default>
1957                        </BorderWidth>
1958                        <FontWeight>700</FontWeight>
1959                        <TextAlign>Center</TextAlign>
1960                        <PaddingLeft>2pt</PaddingLeft>
1961                        <PaddingRight>2pt</PaddingRight>
1962                        <PaddingTop>2pt</PaddingTop>
1963                        <PaddingBottom>2pt</PaddingBottom>
1964                      </Style>
1965                      <ZIndex>86</ZIndex>
1966                      <CanGrow>true</CanGrow>
1967                      <Value>KOREKTA</Value>
1968                    </Textbox>
1969                  </ReportItems>
1970                </TableCell>
1971                <TableCell>
1972                  <ReportItems>
1973                    <Textbox Name="textbox21">
1974                      <rd:DefaultName>textbox21</rd:DefaultName>
1975                      <Style>
1976                        <BackgroundColor>WhiteSmoke</BackgroundColor>
1977                        <BorderColor>
1978                          <Default>LightGrey</Default>
1979                        </BorderColor>
1980                        <BorderStyle>
1981                          <Default>Solid</Default>
1982                        </BorderStyle>
1983                        <BorderWidth>
1984                          <Default>0.5pt</Default>
1985                        </BorderWidth>
1986                        <FontWeight>700</FontWeight>
1987                        <TextAlign>Center</TextAlign>
1988                        <PaddingLeft>2pt</PaddingLeft>
1989                        <PaddingRight>2pt</PaddingRight>
1990                        <PaddingTop>2pt</PaddingTop>
1991                        <PaddingBottom>2pt</PaddingBottom>
1992                      </Style>
1993                      <ZIndex>85</ZIndex>
1994                      <CanGrow>true</CanGrow>
1995                      <Value>IL</Value>
1996                    </Textbox>
1997                  </ReportItems>
1998                </TableCell>
1999                <TableCell>
2000                  <ReportItems>
2001                    <Textbox Name="textbox24">
2002                      <rd:DefaultName>textbox24</rd:DefaultName>
2003                      <Style>
2004                        <BackgroundColor>WhiteSmoke</BackgroundColor>
2005                        <BorderColor>
2006                          <Default>LightGrey</Default>
2007                        </BorderColor>
2008                        <BorderStyle>
2009                          <Default>Solid</Default>
2010                        </BorderStyle>
2011                        <BorderWidth>
2012                          <Default>0.5pt</Default>
2013                        </BorderWidth>
2014                        <FontWeight>700</FontWeight>
2015                        <TextAlign>Center</TextAlign>
2016                        <PaddingLeft>2pt</PaddingLeft>
2017                        <PaddingRight>2pt</PaddingRight>
2018                        <PaddingTop>2pt</PaddingTop>
2019                        <PaddingBottom>2pt</PaddingBottom>
2020                      </Style>
2021                      <ZIndex>84</ZIndex>
2022                      <CanGrow>true</CanGrow>
2023                      <Value>czas produkcji</Value>
2024                    </Textbox>
2025                  </ReportItems>
2026                </TableCell>
2027                <TableCell>
2028                  <ReportItems>
2029                    <Textbox Name="textbox3">
2030                      <rd:DefaultName>textbox3</rd:DefaultName>
2031                      <Style>
2032                        <BackgroundColor>WhiteSmoke</BackgroundColor>
2033                        <BorderColor>
2034                          <Default>LightGrey</Default>
2035                        </BorderColor>
2036                        <BorderStyle>
2037                          <Default>Solid</Default>
2038                        </BorderStyle>
2039                        <BorderWidth>
2040                          <Default>0.5pt</Default>
2041                        </BorderWidth>
2042                        <FontWeight>700</FontWeight>
2043                        <TextAlign>Center</TextAlign>
2044                        <PaddingLeft>2pt</PaddingLeft>
2045                        <PaddingRight>2pt</PaddingRight>
2046                        <PaddingTop>2pt</PaddingTop>
2047                        <PaddingBottom>2pt</PaddingBottom>
2048                      </Style>
2049                      <ZIndex>83</ZIndex>
2050                      <CanGrow>true</CanGrow>
2051                      <Value>średni czas produkcji</Value>
2052                    </Textbox>
2053                  </ReportItems>
2054                </TableCell>
2055                <TableCell>
2056                  <ReportItems>
2057                    <Textbox Name="textbox25">
2058                      <rd:DefaultName>textbox25</rd:DefaultName>
2059                      <Style>
2060                        <BackgroundColor>WhiteSmoke</BackgroundColor>
2061                        <BorderColor>
2062                          <Default>LightGrey</Default>
2063                        </BorderColor>
2064                        <BorderStyle>
2065                          <Default>Solid</Default>
2066                        </BorderStyle>
2067                        <BorderWidth>
2068                          <Default>0.5pt</Default>
2069                        </BorderWidth>
2070                        <FontWeight>700</FontWeight>
2071                        <TextAlign>Center</TextAlign>
2072                        <PaddingLeft>2pt</PaddingLeft>
2073                        <PaddingRight>2pt</PaddingRight>
2074                        <PaddingTop>2pt</PaddingTop>
2075                        <PaddingBottom>2pt</PaddingBottom>
2076                      </Style>
2077                      <ZIndex>82</ZIndex>
2078                      <CanGrow>true</CanGrow>
2079                      <Value>czas dtp</Value>
2080                    </Textbox>
2081                  </ReportItems>
2082                </TableCell>
2083                <TableCell>
2084                  <ReportItems>
2085                    <Textbox Name="textbox29">
2086                      <rd:DefaultName>textbox29</rd:DefaultName>
2087                      <Style>
2088                        <BackgroundColor>WhiteSmoke</BackgroundColor>
2089                        <BorderColor>
2090                          <Default>LightGrey</Default>
2091                        </BorderColor>
2092                        <BorderStyle>
2093                          <Default>Solid</Default>
2094                        </BorderStyle>
2095                        <BorderWidth>
2096                          <Default>0.5pt</Default>
2097                        </BorderWidth>
2098                        <FontWeight>700</FontWeight>
2099                        <TextAlign>Center</TextAlign>
2100                        <PaddingLeft>2pt</PaddingLeft>
2101                        <PaddingRight>2pt</PaddingRight>
2102                        <PaddingTop>2pt</PaddingTop>
2103                        <PaddingBottom>2pt</PaddingBottom>
2104                      </Style>
2105                      <ZIndex>81</ZIndex>
2106                      <CanGrow>true</CanGrow>
2107                      <Value>średni czas dtp</Value>
2108                    </Textbox>
2109                  </ReportItems>
2110                </TableCell>
2111                <TableCell>
2112                  <ReportItems>
2113                    <Textbox Name="textbox26">
2114                      <rd:DefaultName>textbox26</rd:DefaultName>
2115                      <Style>
2116                        <BackgroundColor>WhiteSmoke</BackgroundColor>
2117                        <BorderColor>
2118                          <Default>LightGrey</Default>
2119                        </BorderColor>
2120                        <BorderStyle>
2121                          <Default>Solid</Default>
2122                        </BorderStyle>
2123                        <BorderWidth>
2124                          <Default>0.5pt</Default>
2125                        </BorderWidth>
2126                        <FontWeight>700</FontWeight>
2127                        <TextAlign>Center</TextAlign>
2128                        <PaddingLeft>2pt</PaddingLeft>
2129                        <PaddingRight>2pt</PaddingRight>
2130                        <PaddingTop>2pt</PaddingTop>
2131                        <PaddingBottom>2pt</PaddingBottom>
2132                      </Style>
2133                      <ZIndex>80</ZIndex>
2134                      <CanGrow>true</CanGrow>
2135                      <Value>czas korekta</Value>
2136                    </Textbox>
2137                  </ReportItems>
2138                </TableCell>
2139                <TableCell>
2140                  <ReportItems>
2141                    <Textbox Name="textbox23">
2142                      <rd:DefaultName>textbox23</rd:DefaultName>
2143                      <Style>
2144                        <BackgroundColor>WhiteSmoke</BackgroundColor>
2145                        <BorderColor>
2146                          <Default>LightGrey</Default>
2147                        </BorderColor>
2148                        <BorderStyle>
2149                          <Default>Solid</Default>
2150                        </BorderStyle>
2151                        <BorderWidth>
2152                          <Default>0.5pt</Default>
2153                        </BorderWidth>
2154                        <FontWeight>700</FontWeight>
2155                        <TextAlign>Center</TextAlign>
2156                        <PaddingLeft>2pt</PaddingLeft>
2157                        <PaddingRight>2pt</PaddingRight>
2158                        <PaddingTop>2pt</PaddingTop>
2159                        <PaddingBottom>2pt</PaddingBottom>
2160                      </Style>
2161                      <ZIndex>79</ZIndex>
2162                      <CanGrow>true</CanGrow>
2163                      <Value>średni czas korekta</Value>
2164                    </Textbox>
2165                  </ReportItems>
2166                </TableCell>
2167                <TableCell>
2168                  <ReportItems>
2169                    <Textbox Name="textbox27">
2170                      <rd:DefaultName>textbox27</rd:DefaultName>
2171                      <Style>
2172                        <BackgroundColor>WhiteSmoke</BackgroundColor>
2173                        <BorderColor>
2174                          <Default>LightGrey</Default>
2175                        </BorderColor>
2176                        <BorderStyle>
2177                          <Default>Solid</Default>
2178                        </BorderStyle>
2179                        <BorderWidth>
2180                          <Default>0.5pt</Default>
2181                        </BorderWidth>
2182                        <FontWeight>700</FontWeight>
2183                        <TextAlign>Center</TextAlign>
2184                        <PaddingLeft>2pt</PaddingLeft>
2185                        <PaddingRight>2pt</PaddingRight>
2186                        <PaddingTop>2pt</PaddingTop>
2187                        <PaddingBottom>2pt</PaddingBottom>
2188                      </Style>
2189                      <ZIndex>78</ZIndex>
2190                      <CanGrow>true</CanGrow>
2191                      <Value>czas po korekcie</Value>
2192                    </Textbox>
2193                  </ReportItems>
2194                </TableCell>
2195                <TableCell>
2196                  <ReportItems>
2197                    <Textbox Name="textbox13">
2198                      <rd:DefaultName>textbox13</rd:DefaultName>
2199                      <Style>
2200                        <BackgroundColor>WhiteSmoke</BackgroundColor>
2201                        <BorderColor>
2202                          <Default>LightGrey</Default>
2203                        </BorderColor>
2204                        <BorderStyle>
2205                          <Default>Solid</Default>
2206                        </BorderStyle>
2207                        <BorderWidth>
2208                          <Default>0.5pt</Default>
2209                        </BorderWidth>
2210                        <FontWeight>700</FontWeight>
2211                        <TextAlign>Center</TextAlign>
2212                        <PaddingLeft>2pt</PaddingLeft>
2213                        <PaddingRight>2pt</PaddingRight>
2214                        <PaddingTop>2pt</PaddingTop>
2215                        <PaddingBottom>2pt</PaddingBottom>
2216                      </Style>
2217                      <ZIndex>77</ZIndex>
2218                      <CanGrow>true</CanGrow>
2219                      <Value>średni czas po korekcie</Value>
2220                    </Textbox>
2221                  </ReportItems>
2222                </TableCell>
2223                <TableCell>
2224                  <ReportItems>
2225                    <Textbox Name="textbox51">
2226                      <rd:DefaultName>textbox51</rd:DefaultName>
2227                      <Style>
2228                        <BackgroundColor>WhiteSmoke</BackgroundColor>
2229                        <BorderColor>
2230                          <Default>LightGrey</Default>
2231                        </BorderColor>
2232                        <BorderStyle>
2233                          <Default>Solid</Default>
2234                        </BorderStyle>
2235                        <BorderWidth>
2236                          <Default>0.5pt</Default>
2237                        </BorderWidth>
2238                        <FontWeight>700</FontWeight>
2239                        <TextAlign>Center</TextAlign>
2240                        <PaddingLeft>2pt</PaddingLeft>
2241                        <PaddingRight>2pt</PaddingRight>
2242                        <PaddingTop>2pt</PaddingTop>
2243                        <PaddingBottom>2pt</PaddingBottom>
2244                      </Style>
2245                      <ZIndex>76</ZIndex>
2246                      <CanGrow>true</CanGrow>
2247                      <Value>czas calej produkcji</Value>
2248                    </Textbox>
2249                  </ReportItems>
2250                </TableCell>
2251                <TableCell>
2252                  <ReportItems>
2253                    <Textbox Name="textbox36">
2254                      <rd:DefaultName>textbox36</rd:DefaultName>
2255                      <Style>
2256                        <BackgroundColor>WhiteSmoke</BackgroundColor>
2257                        <BorderColor>
2258                          <Default>LightGrey</Default>
2259                        </BorderColor>
2260                        <BorderStyle>
2261                          <Default>Solid</Default>
2262                        </BorderStyle>
2263                        <BorderWidth>
2264                          <Default>0.5pt</Default>
2265                        </BorderWidth>
2266                        <FontWeight>700</FontWeight>
2267                        <TextAlign>Center</TextAlign>
2268                        <PaddingLeft>2pt</PaddingLeft>
2269                        <PaddingRight>2pt</PaddingRight>
2270                        <PaddingTop>2pt</PaddingTop>
2271                        <PaddingBottom>2pt</PaddingBottom>
2272                      </Style>
2273                      <ZIndex>75</ZIndex>
2274                      <CanGrow>true</CanGrow>
2275                      <Value>średni czas całej produkcji</Value>
2276                    </Textbox>
2277                  </ReportItems>
2278                </TableCell>
2279              </TableCells>
2280              <Height>0.63492cm</Height>
2281            </TableRow>
2282          </TableRows>
2283        </Header>
2284        <TableColumns>
2285          <TableColumn>
2286            <Width>1.65cm</Width>
2287          </TableColumn>
2288          <TableColumn>
2289            <Width>2.7cm</Width>
2290          </TableColumn>
2291          <TableColumn>
2292            <Width>1.2cm</Width>
2293          </TableColumn>
2294          <TableColumn>
2295            <Width>2.1cm</Width>
2296          </TableColumn>
2297          <TableColumn>
2298            <Width>1.35cm</Width>
2299          </TableColumn>
2300          <TableColumn>
2301            <Width>1.65cm</Width>
2302          </TableColumn>
2303          <TableColumn>
2304            <Width>2.1cm</Width>
2305          </TableColumn>
2306          <TableColumn>
2307            <Width>1.8cm</Width>
2308          </TableColumn>
2309          <TableColumn>
2310            <Width>2.1cm</Width>
2311          </TableColumn>
2312          <TableColumn>
2313            <Width>2.1cm</Width>
2314          </TableColumn>
2315          <TableColumn>
2316            <Width>2.1cm</Width>
2317          </TableColumn>
2318          <TableColumn>
2319            <Width>2.1cm</Width>
2320          </TableColumn>
2321          <TableColumn>
2322            <Width>2.1cm</Width>
2323          </TableColumn>
2324          <TableColumn>
2325            <Width>2.1cm</Width>
2326          </TableColumn>
2327          <TableColumn>
2328            <Width>2.1cm</Width>
2329          </TableColumn>
2330        </TableColumns>
2331        <Footer>
2332          <TableRows>
2333            <TableRow>
2334              <TableCells>
2335                <TableCell>
2336                  <ReportItems>
2337                    <Textbox Name="textbox7">
2338                      <rd:DefaultName>textbox7</rd:DefaultName>
2339                      <Style>
2340                        <PaddingLeft>2pt</PaddingLeft>
2341                        <PaddingRight>2pt</PaddingRight>
2342                        <PaddingTop>2pt</PaddingTop>
2343                        <PaddingBottom>2pt</PaddingBottom>
2344                      </Style>
2345                      <ZIndex>14</ZIndex>
2346                      <CanGrow>true</CanGrow>
2347                      <Value />
2348                    </Textbox>
2349                  </ReportItems>
2350                </TableCell>
2351                <TableCell>
2352                  <ReportItems>
2353                    <Textbox Name="textbox8">
2354                      <rd:DefaultName>textbox8</rd:DefaultName>
2355                      <Style>
2356                        <PaddingLeft>2pt</PaddingLeft>
2357                        <PaddingRight>2pt</PaddingRight>
2358                        <PaddingTop>2pt</PaddingTop>
2359                        <PaddingBottom>2pt</PaddingBottom>
2360                      </Style>
2361                      <ZIndex>13</ZIndex>
2362                      <CanGrow>true</CanGrow>
2363                      <Value />
2364                    </Textbox>
2365                  </ReportItems>
2366                </TableCell>
2367                <TableCell>
2368                  <ReportItems>
2369                    <Textbox Name="textbox30">
2370                      <rd:DefaultName>textbox30</rd:DefaultName>
2371                      <Style>
2372                        <PaddingLeft>2pt</PaddingLeft>
2373                        <PaddingRight>2pt</PaddingRight>
2374                        <PaddingTop>2pt</PaddingTop>
2375                        <PaddingBottom>2pt</PaddingBottom>
2376                      </Style>
2377                      <ZIndex>12</ZIndex>
2378                      <CanGrow>true</CanGrow>
2379                      <Value />
2380                    </Textbox>
2381                  </ReportItems>
2382                </TableCell>
2383                <TableCell>
2384                  <ReportItems>
2385                    <Textbox Name="textbox16">
2386                      <rd:DefaultName>textbox16</rd:DefaultName>
2387                      <Style>
2388                        <PaddingLeft>2pt</PaddingLeft>
2389                        <PaddingRight>2pt</PaddingRight>
2390                        <PaddingTop>2pt</PaddingTop>
2391                        <PaddingBottom>2pt</PaddingBottom>
2392                      </Style>
2393                      <ZIndex>11</ZIndex>
2394                      <CanGrow>true</CanGrow>
2395                      <Value />
2396                    </Textbox>
2397                  </ReportItems>
2398                </TableCell>
2399                <TableCell>
2400                  <ReportItems>
2401                    <Textbox Name="textbox40">
2402                      <rd:DefaultName>textbox40</rd:DefaultName>
2403                      <Style>
2404                        <PaddingLeft>2pt</PaddingLeft>
2405                        <PaddingRight>2pt</PaddingRight>
2406                        <PaddingTop>2pt</PaddingTop>
2407                        <PaddingBottom>2pt</PaddingBottom>
2408                      </Style>
2409                      <ZIndex>10</ZIndex>
2410                      <CanGrow>true</CanGrow>
2411                      <Value />
2412                    </Textbox>
2413                  </ReportItems>
2414                </TableCell>
2415                <TableCell>
2416                  <ReportItems>
2417                    <Textbox Name="textbox44">
2418                      <rd:DefaultName>textbox44</rd:DefaultName>
2419                      <Style>
2420                        <PaddingLeft>2pt</PaddingLeft>
2421                        <PaddingRight>2pt</PaddingRight>
2422                        <PaddingTop>2pt</PaddingTop>
2423                        <PaddingBottom>2pt</PaddingBottom>
2424                      </Style>
2425                      <ZIndex>9</ZIndex>
2426                      <CanGrow>true</CanGrow>
2427                      <Value />
2428                    </Textbox>
2429                  </ReportItems>
2430                </TableCell>
2431                <TableCell>
2432                  <ReportItems>
2433                    <Textbox Name="textbox9">
2434                      <rd:DefaultName>textbox9</rd:DefaultName>
2435                      <Style>
2436                        <PaddingLeft>2pt</PaddingLeft>
2437                        <PaddingRight>2pt</PaddingRight>
2438                        <PaddingTop>2pt</PaddingTop>
2439                        <PaddingBottom>2pt</PaddingBottom>
2440                      </Style>
2441                      <ZIndex>8</ZIndex>
2442                      <CanGrow>true</CanGrow>
2443                      <Value />
2444                    </Textbox>
2445                  </ReportItems>
2446                </TableCell>
2447                <TableCell>
2448                  <ReportItems>
2449                    <Textbox Name="textbox46">
2450                      <rd:DefaultName>textbox46</rd:DefaultName>
2451                      <Style>
2452                        <PaddingLeft>2pt</PaddingLeft>
2453                        <PaddingRight>2pt</PaddingRight>
2454                        <PaddingTop>2pt</PaddingTop>
2455                        <PaddingBottom>2pt</PaddingBottom>
2456                      </Style>
2457                      <ZIndex>7</ZIndex>
2458                      <CanGrow>true</CanGrow>
2459                      <Value />
2460                    </Textbox>
2461                  </ReportItems>
2462                </TableCell>
2463                <TableCell>
2464                  <ReportItems>
2465                    <Textbox Name="textbox35">
2466                      <rd:DefaultName>textbox35</rd:DefaultName>
2467                      <Style>
2468                        <PaddingLeft>2pt</PaddingLeft>
2469                        <PaddingRight>2pt</PaddingRight>
2470                        <PaddingTop>2pt</PaddingTop>
2471                        <PaddingBottom>2pt</PaddingBottom>
2472                      </Style>
2473                      <ZIndex>6</ZIndex>
2474                      <CanGrow>true</CanGrow>
2475                      <Value />
2476                    </Textbox>
2477                  </ReportItems>
2478                </TableCell>
2479                <TableCell>
2480                  <ReportItems>
2481                    <Textbox Name="textbox48">
2482                      <rd:DefaultName>textbox48</rd:DefaultName>
2483                      <Style>
2484                        <PaddingLeft>2pt</PaddingLeft>
2485                        <PaddingRight>2pt</PaddingRight>
2486                        <PaddingTop>2pt</PaddingTop>
2487                        <PaddingBottom>2pt</PaddingBottom>
2488                      </Style>
2489                      <ZIndex>5</ZIndex>
2490                      <CanGrow>true</CanGrow>
2491                      <Value />
2492                    </Textbox>
2493                  </ReportItems>
2494                </TableCell>
2495                <TableCell>
2496                  <ReportItems>
2497                    <Textbox Name="textbox28">
2498                      <rd:DefaultName>textbox28</rd:DefaultName>
2499                      <Style>
2500                        <PaddingLeft>2pt</PaddingLeft>
2501                        <PaddingRight>2pt</PaddingRight>
2502                        <PaddingTop>2pt</PaddingTop>
2503                        <PaddingBottom>2pt</PaddingBottom>
2504                      </Style>
2505                      <ZIndex>4</ZIndex>
2506                      <CanGrow>true</CanGrow>
2507                      <Value />
2508                    </Textbox>
2509                  </ReportItems>
2510                </TableCell>
2511                <TableCell>
2512                  <ReportItems>
2513                    <Textbox Name="textbox50">
2514                      <rd:DefaultName>textbox50</rd:DefaultName>
2515                      <Style>
2516                        <PaddingLeft>2pt</PaddingLeft>
2517                        <PaddingRight>2pt</PaddingRight>
2518                        <PaddingTop>2pt</PaddingTop>
2519                        <PaddingBottom>2pt</PaddingBottom>
2520                      </Style>
2521                      <ZIndex>3</ZIndex>
2522                      <CanGrow>true</CanGrow>
2523                      <Value />
2524                    </Textbox>
2525                  </ReportItems>
2526                </TableCell>
2527                <TableCell>
2528                  <ReportItems>
2529                    <Textbox Name="textbox22">
2530                      <rd:DefaultName>textbox22</rd:DefaultName>
2531                      <Style>
2532                        <PaddingLeft>2pt</PaddingLeft>
2533                        <PaddingRight>2pt</PaddingRight>
2534                        <PaddingTop>2pt</PaddingTop>
2535                        <PaddingBottom>2pt</PaddingBottom>
2536                      </Style>
2537                      <ZIndex>2</ZIndex>
2538                      <CanGrow>true</CanGrow>
2539                      <Value />
2540                    </Textbox>
2541                  </ReportItems>
2542                </TableCell>
2543                <TableCell>
2544                  <ReportItems>
2545                    <Textbox Name="textbox56">
2546                      <rd:DefaultName>textbox56</rd:DefaultName>
2547                      <Style>
2548                        <PaddingLeft>2pt</PaddingLeft>
2549                        <PaddingRight>2pt</PaddingRight>
2550                        <PaddingTop>2pt</PaddingTop>
2551                        <PaddingBottom>2pt</PaddingBottom>
2552                      </Style>
2553                      <ZIndex>1</ZIndex>
2554                      <CanGrow>true</CanGrow>
2555                      <Value />
2556                    </Textbox>
2557                  </ReportItems>
2558                </TableCell>
2559                <TableCell>
2560                  <ReportItems>
2561                    <Textbox Name="textbox41">
2562                      <rd:DefaultName>textbox41</rd:DefaultName>
2563                      <Style>
2564                        <PaddingLeft>2pt</PaddingLeft>
2565                        <PaddingRight>2pt</PaddingRight>
2566                        <PaddingTop>2pt</PaddingTop>
2567                        <PaddingBottom>2pt</PaddingBottom>
2568                      </Style>
2569                      <CanGrow>true</CanGrow>
2570                      <Value />
2571                    </Textbox>
2572                  </ReportItems>
2573                </TableCell>
2574              </TableCells>
2575              <Height>0.63492cm</Height>
2576            </TableRow>
2577          </TableRows>
2578        </Footer>
2579      </Table>
2580      <Textbox Name="textbox32">
2581        <rd:DefaultName>textbox32</rd:DefaultName>
2582        <Top>0.25cm</Top>
2583        <Width>13.25cm</Width>
2584        <Style>
2585          <FontSize>12pt</FontSize>
2586          <FontWeight>700</FontWeight>
2587          <TextAlign>Center</TextAlign>
2588          <PaddingLeft>2pt</PaddingLeft>
2589          <PaddingRight>2pt</PaddingRight>
2590          <PaddingTop>2pt</PaddingTop>
2591          <PaddingBottom>2pt</PaddingBottom>
2592        </Style>
2593        <CanGrow>true</CanGrow>
2594        <Left>4cm</Left>
2595        <Height>0.63492cm</Height>
2596        <Value>ZESTAWIENIE ŚREDNIEGO CZASU PRODUKCJI - KOREKTA</Value>
2597      </Textbox>
2598    </ReportItems>
2599    <Height>5.00952cm</Height>
2600  </Body>
2601  <Language>en-US</Language>
2602  <TopMargin>1cm</TopMargin>
2603  <PageHeight>29.7cm</PageHeight>
2604</Report>
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.