| 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>1e8bf6ee-b870-4136-9d0f-9ff369b416ba</rd:DataSourceID>
|
|---|
| 6 | <DataSourceReference>BAZA_REKLAM</DataSourceReference>
|
|---|
| 7 | </DataSource>
|
|---|
| 8 | </DataSources>
|
|---|
| 9 | <InteractiveHeight>29.7cm</InteractiveHeight>
|
|---|
| 10 | <rd:DrawGrid>true</rd:DrawGrid>
|
|---|
| 11 | <InteractiveWidth>21cm</InteractiveWidth>
|
|---|
| 12 | <rd:GridSpacing>0.25cm</rd:GridSpacing>
|
|---|
| 13 | <rd:SnapToGrid>true</rd:SnapToGrid>
|
|---|
| 14 | <RightMargin>2.5cm</RightMargin>
|
|---|
| 15 | <LeftMargin>2.5cm</LeftMargin>
|
|---|
| 16 | <BottomMargin>2.5cm</BottomMargin>
|
|---|
| 17 | <rd:ReportID>a55bcbb2-d119-4d31-94a1-9e47c6a0501b</rd:ReportID>
|
|---|
| 18 | <PageWidth>29.7cm</PageWidth>
|
|---|
| 19 | <DataSets>
|
|---|
| 20 | <DataSet Name="WykonanieBudzetu">
|
|---|
| 21 | <Fields>
|
|---|
| 22 | <Field Name="UNIA">
|
|---|
| 23 | <DataField>UNIA</DataField>
|
|---|
| 24 | <rd:TypeName>System.String</rd:TypeName>
|
|---|
| 25 | </Field>
|
|---|
| 26 | <Field Name="AGENCJA">
|
|---|
| 27 | <DataField>AGENCJA</DataField>
|
|---|
| 28 | <rd:TypeName>System.String</rd:TypeName>
|
|---|
| 29 | </Field>
|
|---|
| 30 | <Field Name="ROK">
|
|---|
| 31 | <DataField>ROK</DataField>
|
|---|
| 32 | <rd:TypeName>System.Int16</rd:TypeName>
|
|---|
| 33 | </Field>
|
|---|
| 34 | <Field Name="ROK_PO">
|
|---|
| 35 | <DataField>ROK_PO</DataField>
|
|---|
| 36 | <rd:TypeName>System.Int32</rd:TypeName>
|
|---|
| 37 | </Field>
|
|---|
| 38 | <Field Name="ID">
|
|---|
| 39 | <DataField />
|
|---|
| 40 | <rd:TypeName>System.Int32</rd:TypeName>
|
|---|
| 41 | </Field>
|
|---|
| 42 | <Field Name="MS">
|
|---|
| 43 | <DataField>MS</DataField>
|
|---|
| 44 | <rd:TypeName>System.Int16</rd:TypeName>
|
|---|
| 45 | </Field>
|
|---|
| 46 | <Field Name="PLANOWANY_BUDZET_AGENCJI">
|
|---|
| 47 | <DataField>PLANOWANY_BUDZET_AGENCJI</DataField>
|
|---|
| 48 | <rd:TypeName>System.Int32</rd:TypeName>
|
|---|
| 49 | </Field>
|
|---|
| 50 | <Field Name="PLAN_BIURA">
|
|---|
| 51 | <DataField>PLAN_BIURA</DataField>
|
|---|
| 52 | <rd:TypeName>System.Int32</rd:TypeName>
|
|---|
| 53 | </Field>
|
|---|
| 54 | <Field Name="WYKONANY_BUDZET_AGENCJI">
|
|---|
| 55 | <DataField>WYKONANY_BUDZET_AGENCJI</DataField>
|
|---|
| 56 | <rd:TypeName>System.Int32</rd:TypeName>
|
|---|
| 57 | </Field>
|
|---|
| 58 | <Field Name="procent">
|
|---|
| 59 | <DataField>procent</DataField>
|
|---|
| 60 | <rd:TypeName>System.Decimal</rd:TypeName>
|
|---|
| 61 | </Field>
|
|---|
| 62 | </Fields>
|
|---|
| 63 | <Query>
|
|---|
| 64 | <DataSourceName>BAZA_REKLAM</DataSourceName>
|
|---|
| 65 | <CommandText>SELECT UNIA,AGENCJA,ROK,(CONVERT(INTEGER,(1.0+datepart(quarter,data)))/2) AS ROK_PO, datepart(quarter,data),MS,
|
|---|
| 66 | SUM(PLANOWANY_BUDZET_AGENCJI) AS PLANOWANY_BUDZET_AGENCJI,
|
|---|
| 67 | SUM(PLAN_BIURA) AS PLAN_BIURA,
|
|---|
| 68 | SUM(WYKONANY_BUDZET_AGENCJI) AS WYKONANY_BUDZET_AGENCJI,
|
|---|
| 69 | avg(procent) as procent
|
|---|
| 70 | FROM
|
|---|
| 71 | (
|
|---|
| 72 | SELECT PL.Id_agencji, PL.AGENCJA, PL.ROK, PL.MS, PL.PLANOWANY_BUDZET_AGENCJI, PL.WYKONANY_BUDZET_AGENCJI, dbo.BUDZET_BIUR.BUDZET AS
|
|---|
| 73 | PLAN_BIURA, CONVERT (datetime, CONVERT (nvarchar, PL.ROK) + '-' + CONVERT (nvarchar, PL.MS) + '-1') AS data,
|
|---|
| 74 | 1.0 * PL.WYKONANY_BUDZET_AGENCJI / dbo.BUDZET_BIUR.BUDZET AS procent, PL.Unia FROM (SELECT dbo.Agencje.Unia ,
|
|---|
| 75 | dbo.AGENCJE.Symbol AS AGENCJA , dbo.[PLAN].ROK , dbo.[PLAN].MS , SUM(dbo.[PLAN].BUDZET) AS PLANOWANY_BUDZET_AGENCJI ,
|
|---|
| 76 | SUM(dbo.[PLAN].W_BUDZET) AS WYKONANY_BUDZET_AGENCJI , dbo.AGENCJE.Id_agencji
|
|---|
| 77 | FROM dbo.AGENCI INNER JOIN dbo.AGENCJE ON dbo.AGENCI.ID_AGENCJI = dbo.AGENCJE.Id_agencji
|
|---|
| 78 | INNER JOIN dbo.[PLAN] ON dbo.AGENCI.Symbol = dbo.[PLAN].SYMBOL WHERE (abs(dbo.AGENCJE.aktywna) = 1)
|
|---|
| 79 | GROUP BY dbo.agencje.unia , dbo.AGENCJE.Symbol , dbo.[PLAN].ROK , dbo.[PLAN].MS , dbo.AGENCJE.Id_agencji) PL
|
|---|
| 80 | LEFT OUTER JOIN dbo.BUDZET_BIUR ON PL.Id_agencji = dbo.BUDZET_BIUR.ID_BIURA AND PL.ROK = dbo.BUDZET_BIUR.ROK AND PL.MS = dbo.BUDZET_BIUR.MS
|
|---|
| 81 | WHERE dbo.BUDZET_BIUR.BUDZET <> 0 ) W1
|
|---|
| 82 | group by UNIA,AGENCJA,ROK,CONVERT(INTEGER,(1.0+datepart(quarter,data)))/2, datepart(quarter,data),MS</CommandText>
|
|---|
| 83 | <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
|
|---|
| 84 | </Query>
|
|---|
| 85 | </DataSet>
|
|---|
| 86 | </DataSets>
|
|---|
| 87 | <Code>Public Shared Function NazwaMiesiaca(ByVal Value As String) As String
|
|---|
| 88 |
|
|---|
| 89 | Select Case Value
|
|---|
| 90 | Case 1
|
|---|
| 91 | NazwaMiesiaca ="styczeÅ"
|
|---|
| 92 | Case 2
|
|---|
| 93 | NazwaMiesiaca ="luty"
|
|---|
| 94 | Case 3
|
|---|
| 95 | NazwaMiesiaca ="marzec"
|
|---|
| 96 | Case 4
|
|---|
| 97 | NazwaMiesiaca ="kwiecieÅ"
|
|---|
| 98 | Case 5
|
|---|
| 99 | NazwaMiesiaca ="maj"
|
|---|
| 100 | Case 6
|
|---|
| 101 | NazwaMiesiaca ="czerwiec"
|
|---|
| 102 | Case 7
|
|---|
| 103 | NazwaMiesiaca ="lipiec"
|
|---|
| 104 | Case 8
|
|---|
| 105 | NazwaMiesiaca ="sierpieÅ"
|
|---|
| 106 | Case 9
|
|---|
| 107 | NazwaMiesiaca ="wrzesieÅ"
|
|---|
| 108 | Case 10
|
|---|
| 109 | NazwaMiesiaca ="październik"
|
|---|
| 110 | Case 11
|
|---|
| 111 | NazwaMiesiaca ="listopad"
|
|---|
| 112 | Case 12
|
|---|
| 113 | NazwaMiesiaca ="grudzieÅ"
|
|---|
| 114 | End Select
|
|---|
| 115 |
|
|---|
| 116 | End Function </Code>
|
|---|
| 117 | <Width>23.75cm</Width>
|
|---|
| 118 | <Body>
|
|---|
| 119 | <ColumnSpacing>1cm</ColumnSpacing>
|
|---|
| 120 | <ReportItems>
|
|---|
| 121 | <Textbox Name="textbox4">
|
|---|
| 122 | <rd:DefaultName>textbox4</rd:DefaultName>
|
|---|
| 123 | <Top>0.25cm</Top>
|
|---|
| 124 | <Width>6.5cm</Width>
|
|---|
| 125 | <Style>
|
|---|
| 126 | <FontSize>14pt</FontSize>
|
|---|
| 127 | <FontWeight>700</FontWeight>
|
|---|
| 128 | <TextAlign>Center</TextAlign>
|
|---|
| 129 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 130 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 131 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 132 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 133 | </Style>
|
|---|
| 134 | <ZIndex>1</ZIndex>
|
|---|
| 135 | <CanGrow>true</CanGrow>
|
|---|
| 136 | <Left>8.25cm</Left>
|
|---|
| 137 | <Height>0.63492cm</Height>
|
|---|
| 138 | <Value>WYKONANIE BUDŻETU</Value>
|
|---|
| 139 | </Textbox>
|
|---|
| 140 | <Table Name="table1">
|
|---|
| 141 | <DataSetName>WykonanieBudzetu</DataSetName>
|
|---|
| 142 | <Top>1.25cm</Top>
|
|---|
| 143 | <TableGroups>
|
|---|
| 144 | <TableGroup>
|
|---|
| 145 | <Grouping Name="table1_Group1">
|
|---|
| 146 | <GroupExpressions>
|
|---|
| 147 | <GroupExpression>=Fields!AGENCJA.Value</GroupExpression>
|
|---|
| 148 | </GroupExpressions>
|
|---|
| 149 | </Grouping>
|
|---|
| 150 | <Header>
|
|---|
| 151 | <TableRows>
|
|---|
| 152 | <TableRow>
|
|---|
| 153 | <TableCells>
|
|---|
| 154 | <TableCell>
|
|---|
| 155 | <ReportItems>
|
|---|
| 156 | <Textbox Name="AGENCJA">
|
|---|
| 157 | <rd:DefaultName>AGENCJA</rd:DefaultName>
|
|---|
| 158 | <Style>
|
|---|
| 159 | <BackgroundColor>WhiteSmoke</BackgroundColor>
|
|---|
| 160 | <BorderColor>
|
|---|
| 161 | <Default>LightGrey</Default>
|
|---|
| 162 | </BorderColor>
|
|---|
| 163 | <BorderStyle>
|
|---|
| 164 | <Left>Solid</Left>
|
|---|
| 165 | <Top>Solid</Top>
|
|---|
| 166 | <Bottom>Solid</Bottom>
|
|---|
| 167 | </BorderStyle>
|
|---|
| 168 | <BorderWidth>
|
|---|
| 169 | <Default>0.5pt</Default>
|
|---|
| 170 | </BorderWidth>
|
|---|
| 171 | <FontSize>8pt</FontSize>
|
|---|
| 172 | <TextAlign>Center</TextAlign>
|
|---|
| 173 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 174 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 175 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 176 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 177 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 178 | </Style>
|
|---|
| 179 | <ZIndex>53</ZIndex>
|
|---|
| 180 | <CanGrow>true</CanGrow>
|
|---|
| 181 | <Value>=Fields!AGENCJA.Value</Value>
|
|---|
| 182 | </Textbox>
|
|---|
| 183 | </ReportItems>
|
|---|
| 184 | </TableCell>
|
|---|
| 185 | <TableCell>
|
|---|
| 186 | <ReportItems>
|
|---|
| 187 | <Textbox Name="textbox23">
|
|---|
| 188 | <rd:DefaultName>textbox23</rd:DefaultName>
|
|---|
| 189 | <Style>
|
|---|
| 190 | <BackgroundColor>WhiteSmoke</BackgroundColor>
|
|---|
| 191 | <BorderColor>
|
|---|
| 192 | <Default>LightGrey</Default>
|
|---|
| 193 | </BorderColor>
|
|---|
| 194 | <BorderStyle>
|
|---|
| 195 | <Top>Solid</Top>
|
|---|
| 196 | <Bottom>Solid</Bottom>
|
|---|
| 197 | </BorderStyle>
|
|---|
| 198 | <BorderWidth>
|
|---|
| 199 | <Default>0.5pt</Default>
|
|---|
| 200 | </BorderWidth>
|
|---|
| 201 | <FontSize>8pt</FontSize>
|
|---|
| 202 | <TextAlign>Center</TextAlign>
|
|---|
| 203 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 204 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 205 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 206 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 207 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 208 | </Style>
|
|---|
| 209 | <ZIndex>52</ZIndex>
|
|---|
| 210 | <CanGrow>true</CanGrow>
|
|---|
| 211 | <Value />
|
|---|
| 212 | </Textbox>
|
|---|
| 213 | </ReportItems>
|
|---|
| 214 | </TableCell>
|
|---|
| 215 | <TableCell>
|
|---|
| 216 | <ReportItems>
|
|---|
| 217 | <Textbox Name="textbox24">
|
|---|
| 218 | <rd:DefaultName>textbox24</rd:DefaultName>
|
|---|
| 219 | <Style>
|
|---|
| 220 | <BackgroundColor>WhiteSmoke</BackgroundColor>
|
|---|
| 221 | <BorderColor>
|
|---|
| 222 | <Default>LightGrey</Default>
|
|---|
| 223 | </BorderColor>
|
|---|
| 224 | <BorderStyle>
|
|---|
| 225 | <Top>Solid</Top>
|
|---|
| 226 | <Bottom>Solid</Bottom>
|
|---|
| 227 | </BorderStyle>
|
|---|
| 228 | <BorderWidth>
|
|---|
| 229 | <Default>0.5pt</Default>
|
|---|
| 230 | </BorderWidth>
|
|---|
| 231 | <FontSize>8pt</FontSize>
|
|---|
| 232 | <TextAlign>Center</TextAlign>
|
|---|
| 233 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 234 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 235 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 236 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 237 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 238 | </Style>
|
|---|
| 239 | <ZIndex>51</ZIndex>
|
|---|
| 240 | <CanGrow>true</CanGrow>
|
|---|
| 241 | <Value />
|
|---|
| 242 | </Textbox>
|
|---|
| 243 | </ReportItems>
|
|---|
| 244 | </TableCell>
|
|---|
| 245 | <TableCell>
|
|---|
| 246 | <ReportItems>
|
|---|
| 247 | <Textbox Name="textbox25">
|
|---|
| 248 | <rd:DefaultName>textbox25</rd:DefaultName>
|
|---|
| 249 | <Style>
|
|---|
| 250 | <BackgroundColor>WhiteSmoke</BackgroundColor>
|
|---|
| 251 | <BorderColor>
|
|---|
| 252 | <Default>LightGrey</Default>
|
|---|
| 253 | </BorderColor>
|
|---|
| 254 | <BorderStyle>
|
|---|
| 255 | <Top>Solid</Top>
|
|---|
| 256 | <Bottom>Solid</Bottom>
|
|---|
| 257 | </BorderStyle>
|
|---|
| 258 | <BorderWidth>
|
|---|
| 259 | <Default>0.5pt</Default>
|
|---|
| 260 | </BorderWidth>
|
|---|
| 261 | <FontSize>8pt</FontSize>
|
|---|
| 262 | <TextAlign>Center</TextAlign>
|
|---|
| 263 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 264 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 265 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 266 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 267 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 268 | </Style>
|
|---|
| 269 | <ZIndex>50</ZIndex>
|
|---|
| 270 | <CanGrow>true</CanGrow>
|
|---|
| 271 | <Value />
|
|---|
| 272 | </Textbox>
|
|---|
| 273 | </ReportItems>
|
|---|
| 274 | </TableCell>
|
|---|
| 275 | <TableCell>
|
|---|
| 276 | <ReportItems>
|
|---|
| 277 | <Textbox Name="textbox26">
|
|---|
| 278 | <rd:DefaultName>textbox26</rd:DefaultName>
|
|---|
| 279 | <Style>
|
|---|
| 280 | <BackgroundColor>WhiteSmoke</BackgroundColor>
|
|---|
| 281 | <BorderColor>
|
|---|
| 282 | <Default>LightGrey</Default>
|
|---|
| 283 | </BorderColor>
|
|---|
| 284 | <BorderStyle>
|
|---|
| 285 | <Top>Solid</Top>
|
|---|
| 286 | <Bottom>Solid</Bottom>
|
|---|
| 287 | </BorderStyle>
|
|---|
| 288 | <BorderWidth>
|
|---|
| 289 | <Default>0.5pt</Default>
|
|---|
| 290 | </BorderWidth>
|
|---|
| 291 | <FontSize>8pt</FontSize>
|
|---|
| 292 | <TextAlign>Center</TextAlign>
|
|---|
| 293 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 294 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 295 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 296 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 297 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 298 | </Style>
|
|---|
| 299 | <ZIndex>49</ZIndex>
|
|---|
| 300 | <CanGrow>true</CanGrow>
|
|---|
| 301 | <Value />
|
|---|
| 302 | </Textbox>
|
|---|
| 303 | </ReportItems>
|
|---|
| 304 | </TableCell>
|
|---|
| 305 | <TableCell>
|
|---|
| 306 | <ReportItems>
|
|---|
| 307 | <Textbox Name="PLANOWANY_BUDZET_AGENCJI_1">
|
|---|
| 308 | <rd:DefaultName>PLANOWANY_BUDZET_AGENCJI_1</rd:DefaultName>
|
|---|
| 309 | <Style>
|
|---|
| 310 | <BackgroundColor>WhiteSmoke</BackgroundColor>
|
|---|
| 311 | <BorderColor>
|
|---|
| 312 | <Default>LightGrey</Default>
|
|---|
| 313 | </BorderColor>
|
|---|
| 314 | <BorderStyle>
|
|---|
| 315 | <Default>Solid</Default>
|
|---|
| 316 | </BorderStyle>
|
|---|
| 317 | <BorderWidth>
|
|---|
| 318 | <Default>0.5pt</Default>
|
|---|
| 319 | </BorderWidth>
|
|---|
| 320 | <FontSize>8pt</FontSize>
|
|---|
| 321 | <Format>C</Format>
|
|---|
| 322 | <TextAlign>Center</TextAlign>
|
|---|
| 323 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 324 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 325 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 326 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 327 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 328 | <Language>pl</Language>
|
|---|
| 329 | </Style>
|
|---|
| 330 | <ZIndex>48</ZIndex>
|
|---|
| 331 | <CanGrow>true</CanGrow>
|
|---|
| 332 | <Value>=Sum(Fields!PLANOWANY_BUDZET_AGENCJI.Value)</Value>
|
|---|
| 333 | </Textbox>
|
|---|
| 334 | </ReportItems>
|
|---|
| 335 | </TableCell>
|
|---|
| 336 | <TableCell>
|
|---|
| 337 | <ReportItems>
|
|---|
| 338 | <Textbox Name="PLAN_BIURA">
|
|---|
| 339 | <rd:DefaultName>PLAN_BIURA</rd:DefaultName>
|
|---|
| 340 | <Style>
|
|---|
| 341 | <BackgroundColor>WhiteSmoke</BackgroundColor>
|
|---|
| 342 | <BorderColor>
|
|---|
| 343 | <Default>LightGrey</Default>
|
|---|
| 344 | </BorderColor>
|
|---|
| 345 | <BorderStyle>
|
|---|
| 346 | <Default>Solid</Default>
|
|---|
| 347 | </BorderStyle>
|
|---|
| 348 | <BorderWidth>
|
|---|
| 349 | <Default>0.5pt</Default>
|
|---|
| 350 | </BorderWidth>
|
|---|
| 351 | <FontSize>8pt</FontSize>
|
|---|
| 352 | <Format>C</Format>
|
|---|
| 353 | <TextAlign>Center</TextAlign>
|
|---|
| 354 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 355 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 356 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 357 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 358 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 359 | <Language>pl</Language>
|
|---|
| 360 | </Style>
|
|---|
| 361 | <ZIndex>47</ZIndex>
|
|---|
| 362 | <CanGrow>true</CanGrow>
|
|---|
| 363 | <Value>=Sum(Fields!PLAN_BIURA.Value)</Value>
|
|---|
| 364 | </Textbox>
|
|---|
| 365 | </ReportItems>
|
|---|
| 366 | </TableCell>
|
|---|
| 367 | <TableCell>
|
|---|
| 368 | <ReportItems>
|
|---|
| 369 | <Textbox Name="WYKONANY_BUDZET_AGENCJI">
|
|---|
| 370 | <rd:DefaultName>WYKONANY_BUDZET_AGENCJI</rd:DefaultName>
|
|---|
| 371 | <Style>
|
|---|
| 372 | <BackgroundColor>WhiteSmoke</BackgroundColor>
|
|---|
| 373 | <BorderColor>
|
|---|
| 374 | <Default>LightGrey</Default>
|
|---|
| 375 | </BorderColor>
|
|---|
| 376 | <BorderStyle>
|
|---|
| 377 | <Default>Solid</Default>
|
|---|
| 378 | </BorderStyle>
|
|---|
| 379 | <BorderWidth>
|
|---|
| 380 | <Default>0.5pt</Default>
|
|---|
| 381 | </BorderWidth>
|
|---|
| 382 | <FontSize>8pt</FontSize>
|
|---|
| 383 | <Format>C</Format>
|
|---|
| 384 | <TextAlign>Center</TextAlign>
|
|---|
| 385 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 386 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 387 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 388 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 389 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 390 | <Language>pl</Language>
|
|---|
| 391 | </Style>
|
|---|
| 392 | <ZIndex>46</ZIndex>
|
|---|
| 393 | <CanGrow>true</CanGrow>
|
|---|
| 394 | <Value>=Sum(Fields!WYKONANY_BUDZET_AGENCJI.Value)</Value>
|
|---|
| 395 | </Textbox>
|
|---|
| 396 | </ReportItems>
|
|---|
| 397 | </TableCell>
|
|---|
| 398 | <TableCell>
|
|---|
| 399 | <ReportItems>
|
|---|
| 400 | <Textbox Name="textbox28">
|
|---|
| 401 | <rd:DefaultName>textbox28</rd:DefaultName>
|
|---|
| 402 | <Style>
|
|---|
| 403 | <BackgroundColor>WhiteSmoke</BackgroundColor>
|
|---|
| 404 | <BorderColor>
|
|---|
| 405 | <Default>LightGrey</Default>
|
|---|
| 406 | </BorderColor>
|
|---|
| 407 | <BorderStyle>
|
|---|
| 408 | <Default>Solid</Default>
|
|---|
| 409 | </BorderStyle>
|
|---|
| 410 | <BorderWidth>
|
|---|
| 411 | <Default>0.5pt</Default>
|
|---|
| 412 | </BorderWidth>
|
|---|
| 413 | <FontSize>8pt</FontSize>
|
|---|
| 414 | <TextAlign>Center</TextAlign>
|
|---|
| 415 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 416 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 417 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 418 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 419 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 420 | </Style>
|
|---|
| 421 | <ZIndex>45</ZIndex>
|
|---|
| 422 | <CanGrow>true</CanGrow>
|
|---|
| 423 | <Value />
|
|---|
| 424 | </Textbox>
|
|---|
| 425 | </ReportItems>
|
|---|
| 426 | </TableCell>
|
|---|
| 427 | </TableCells>
|
|---|
| 428 | <Height>0.63492cm</Height>
|
|---|
| 429 | </TableRow>
|
|---|
| 430 | </TableRows>
|
|---|
| 431 | </Header>
|
|---|
| 432 | </TableGroup>
|
|---|
| 433 | <TableGroup>
|
|---|
| 434 | <Grouping Name="table1_Group2">
|
|---|
| 435 | <GroupExpressions>
|
|---|
| 436 | <GroupExpression>=Fields!ROK.Value</GroupExpression>
|
|---|
| 437 | </GroupExpressions>
|
|---|
| 438 | </Grouping>
|
|---|
| 439 | <Sorting>
|
|---|
| 440 | <SortBy>
|
|---|
| 441 | <SortExpression>=Fields!ROK.Value</SortExpression>
|
|---|
| 442 | <Direction>Descending</Direction>
|
|---|
| 443 | </SortBy>
|
|---|
| 444 | </Sorting>
|
|---|
| 445 | <Header>
|
|---|
| 446 | <TableRows>
|
|---|
| 447 | <TableRow>
|
|---|
| 448 | <Visibility>
|
|---|
| 449 | <Hidden>true</Hidden>
|
|---|
| 450 | <ToggleItem>AGENCJA</ToggleItem>
|
|---|
| 451 | </Visibility>
|
|---|
| 452 | <TableCells>
|
|---|
| 453 | <TableCell>
|
|---|
| 454 | <ReportItems>
|
|---|
| 455 | <Textbox Name="textbox29">
|
|---|
| 456 | <rd:DefaultName>textbox29</rd:DefaultName>
|
|---|
| 457 | <Style>
|
|---|
| 458 | <BorderWidth>
|
|---|
| 459 | <Default>0.5pt</Default>
|
|---|
| 460 | </BorderWidth>
|
|---|
| 461 | <FontSize>8pt</FontSize>
|
|---|
| 462 | <TextAlign>Center</TextAlign>
|
|---|
| 463 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 464 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 465 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 466 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 467 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 468 | </Style>
|
|---|
| 469 | <ZIndex>44</ZIndex>
|
|---|
| 470 | <CanGrow>true</CanGrow>
|
|---|
| 471 | <Value />
|
|---|
| 472 | </Textbox>
|
|---|
| 473 | </ReportItems>
|
|---|
| 474 | </TableCell>
|
|---|
| 475 | <TableCell>
|
|---|
| 476 | <ReportItems>
|
|---|
| 477 | <Textbox Name="ROK">
|
|---|
| 478 | <rd:DefaultName>ROK</rd:DefaultName>
|
|---|
| 479 | <Style>
|
|---|
| 480 | <BorderColor>
|
|---|
| 481 | <Default>LightGrey</Default>
|
|---|
| 482 | </BorderColor>
|
|---|
| 483 | <BorderStyle>
|
|---|
| 484 | <Left>Solid</Left>
|
|---|
| 485 | <Top>Solid</Top>
|
|---|
| 486 | <Bottom>Solid</Bottom>
|
|---|
| 487 | </BorderStyle>
|
|---|
| 488 | <BorderWidth>
|
|---|
| 489 | <Default>0.5pt</Default>
|
|---|
| 490 | </BorderWidth>
|
|---|
| 491 | <FontSize>8pt</FontSize>
|
|---|
| 492 | <TextAlign>Center</TextAlign>
|
|---|
| 493 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 494 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 495 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 496 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 497 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 498 | </Style>
|
|---|
| 499 | <ZIndex>43</ZIndex>
|
|---|
| 500 | <CanGrow>true</CanGrow>
|
|---|
| 501 | <Value>=Fields!ROK.Value</Value>
|
|---|
| 502 | </Textbox>
|
|---|
| 503 | </ReportItems>
|
|---|
| 504 | </TableCell>
|
|---|
| 505 | <TableCell>
|
|---|
| 506 | <ReportItems>
|
|---|
| 507 | <Textbox Name="textbox31">
|
|---|
| 508 | <rd:DefaultName>textbox31</rd:DefaultName>
|
|---|
| 509 | <Style>
|
|---|
| 510 | <BorderColor>
|
|---|
| 511 | <Default>LightGrey</Default>
|
|---|
| 512 | </BorderColor>
|
|---|
| 513 | <BorderStyle>
|
|---|
| 514 | <Top>Solid</Top>
|
|---|
| 515 | <Bottom>Solid</Bottom>
|
|---|
| 516 | </BorderStyle>
|
|---|
| 517 | <BorderWidth>
|
|---|
| 518 | <Default>0.5pt</Default>
|
|---|
| 519 | </BorderWidth>
|
|---|
| 520 | <FontSize>8pt</FontSize>
|
|---|
| 521 | <TextAlign>Center</TextAlign>
|
|---|
| 522 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 523 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 524 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 525 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 526 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 527 | </Style>
|
|---|
| 528 | <ZIndex>42</ZIndex>
|
|---|
| 529 | <CanGrow>true</CanGrow>
|
|---|
| 530 | <Value />
|
|---|
| 531 | </Textbox>
|
|---|
| 532 | </ReportItems>
|
|---|
| 533 | </TableCell>
|
|---|
| 534 | <TableCell>
|
|---|
| 535 | <ReportItems>
|
|---|
| 536 | <Textbox Name="textbox32">
|
|---|
| 537 | <rd:DefaultName>textbox32</rd:DefaultName>
|
|---|
| 538 | <Style>
|
|---|
| 539 | <BorderColor>
|
|---|
| 540 | <Default>LightGrey</Default>
|
|---|
| 541 | </BorderColor>
|
|---|
| 542 | <BorderStyle>
|
|---|
| 543 | <Top>Solid</Top>
|
|---|
| 544 | <Bottom>Solid</Bottom>
|
|---|
| 545 | </BorderStyle>
|
|---|
| 546 | <BorderWidth>
|
|---|
| 547 | <Default>0.5pt</Default>
|
|---|
| 548 | </BorderWidth>
|
|---|
| 549 | <FontSize>8pt</FontSize>
|
|---|
| 550 | <TextAlign>Center</TextAlign>
|
|---|
| 551 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 552 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 553 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 554 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 555 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 556 | </Style>
|
|---|
| 557 | <ZIndex>41</ZIndex>
|
|---|
| 558 | <CanGrow>true</CanGrow>
|
|---|
| 559 | <Value />
|
|---|
| 560 | </Textbox>
|
|---|
| 561 | </ReportItems>
|
|---|
| 562 | </TableCell>
|
|---|
| 563 | <TableCell>
|
|---|
| 564 | <ReportItems>
|
|---|
| 565 | <Textbox Name="textbox33">
|
|---|
| 566 | <rd:DefaultName>textbox33</rd:DefaultName>
|
|---|
| 567 | <Style>
|
|---|
| 568 | <BorderColor>
|
|---|
| 569 | <Default>LightGrey</Default>
|
|---|
| 570 | </BorderColor>
|
|---|
| 571 | <BorderStyle>
|
|---|
| 572 | <Top>Solid</Top>
|
|---|
| 573 | <Bottom>Solid</Bottom>
|
|---|
| 574 | </BorderStyle>
|
|---|
| 575 | <BorderWidth>
|
|---|
| 576 | <Default>0.5pt</Default>
|
|---|
| 577 | </BorderWidth>
|
|---|
| 578 | <FontSize>8pt</FontSize>
|
|---|
| 579 | <TextAlign>Center</TextAlign>
|
|---|
| 580 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 581 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 582 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 583 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 584 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 585 | </Style>
|
|---|
| 586 | <ZIndex>40</ZIndex>
|
|---|
| 587 | <CanGrow>true</CanGrow>
|
|---|
| 588 | <Value />
|
|---|
| 589 | </Textbox>
|
|---|
| 590 | </ReportItems>
|
|---|
| 591 | </TableCell>
|
|---|
| 592 | <TableCell>
|
|---|
| 593 | <ReportItems>
|
|---|
| 594 | <Textbox Name="textbox27">
|
|---|
| 595 | <Style>
|
|---|
| 596 | <BorderColor>
|
|---|
| 597 | <Default>LightGrey</Default>
|
|---|
| 598 | </BorderColor>
|
|---|
| 599 | <BorderStyle>
|
|---|
| 600 | <Default>Solid</Default>
|
|---|
| 601 | </BorderStyle>
|
|---|
| 602 | <BorderWidth>
|
|---|
| 603 | <Default>0.5pt</Default>
|
|---|
| 604 | </BorderWidth>
|
|---|
| 605 | <FontSize>8pt</FontSize>
|
|---|
| 606 | <Format>C</Format>
|
|---|
| 607 | <TextAlign>Center</TextAlign>
|
|---|
| 608 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 609 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 610 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 611 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 612 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 613 | <Language>pl</Language>
|
|---|
| 614 | </Style>
|
|---|
| 615 | <ZIndex>39</ZIndex>
|
|---|
| 616 | <CanGrow>true</CanGrow>
|
|---|
| 617 | <Value>=Sum(Fields!PLANOWANY_BUDZET_AGENCJI.Value)</Value>
|
|---|
| 618 | </Textbox>
|
|---|
| 619 | </ReportItems>
|
|---|
| 620 | </TableCell>
|
|---|
| 621 | <TableCell>
|
|---|
| 622 | <ReportItems>
|
|---|
| 623 | <Textbox Name="textbox61">
|
|---|
| 624 | <Style>
|
|---|
| 625 | <BorderColor>
|
|---|
| 626 | <Default>LightGrey</Default>
|
|---|
| 627 | </BorderColor>
|
|---|
| 628 | <BorderStyle>
|
|---|
| 629 | <Default>Solid</Default>
|
|---|
| 630 | </BorderStyle>
|
|---|
| 631 | <BorderWidth>
|
|---|
| 632 | <Default>0.5pt</Default>
|
|---|
| 633 | </BorderWidth>
|
|---|
| 634 | <FontSize>8pt</FontSize>
|
|---|
| 635 | <Format>C</Format>
|
|---|
| 636 | <TextAlign>Center</TextAlign>
|
|---|
| 637 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 638 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 639 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 640 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 641 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 642 | <Language>pl</Language>
|
|---|
| 643 | </Style>
|
|---|
| 644 | <ZIndex>38</ZIndex>
|
|---|
| 645 | <CanGrow>true</CanGrow>
|
|---|
| 646 | <Value>=Sum(Fields!PLAN_BIURA.Value)</Value>
|
|---|
| 647 | </Textbox>
|
|---|
| 648 | </ReportItems>
|
|---|
| 649 | </TableCell>
|
|---|
| 650 | <TableCell>
|
|---|
| 651 | <ReportItems>
|
|---|
| 652 | <Textbox Name="textbox30">
|
|---|
| 653 | <Style>
|
|---|
| 654 | <BorderColor>
|
|---|
| 655 | <Default>LightGrey</Default>
|
|---|
| 656 | </BorderColor>
|
|---|
| 657 | <BorderStyle>
|
|---|
| 658 | <Default>Solid</Default>
|
|---|
| 659 | </BorderStyle>
|
|---|
| 660 | <BorderWidth>
|
|---|
| 661 | <Default>0.5pt</Default>
|
|---|
| 662 | </BorderWidth>
|
|---|
| 663 | <FontSize>8pt</FontSize>
|
|---|
| 664 | <Format>C</Format>
|
|---|
| 665 | <TextAlign>Center</TextAlign>
|
|---|
| 666 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 667 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 668 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 669 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 670 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 671 | <Language>pl</Language>
|
|---|
| 672 | </Style>
|
|---|
| 673 | <ZIndex>37</ZIndex>
|
|---|
| 674 | <CanGrow>true</CanGrow>
|
|---|
| 675 | <Value>=Sum(Fields!WYKONANY_BUDZET_AGENCJI.Value)</Value>
|
|---|
| 676 | </Textbox>
|
|---|
| 677 | </ReportItems>
|
|---|
| 678 | </TableCell>
|
|---|
| 679 | <TableCell>
|
|---|
| 680 | <ReportItems>
|
|---|
| 681 | <Textbox Name="textbox35">
|
|---|
| 682 | <rd:DefaultName>textbox35</rd:DefaultName>
|
|---|
| 683 | <Style>
|
|---|
| 684 | <BorderColor>
|
|---|
| 685 | <Default>LightGrey</Default>
|
|---|
| 686 | </BorderColor>
|
|---|
| 687 | <BorderStyle>
|
|---|
| 688 | <Default>Solid</Default>
|
|---|
| 689 | </BorderStyle>
|
|---|
| 690 | <BorderWidth>
|
|---|
| 691 | <Default>0.5pt</Default>
|
|---|
| 692 | </BorderWidth>
|
|---|
| 693 | <FontSize>8pt</FontSize>
|
|---|
| 694 | <TextAlign>Center</TextAlign>
|
|---|
| 695 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 696 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 697 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 698 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 699 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 700 | </Style>
|
|---|
| 701 | <ZIndex>36</ZIndex>
|
|---|
| 702 | <CanGrow>true</CanGrow>
|
|---|
| 703 | <Value />
|
|---|
| 704 | </Textbox>
|
|---|
| 705 | </ReportItems>
|
|---|
| 706 | </TableCell>
|
|---|
| 707 | </TableCells>
|
|---|
| 708 | <Height>0.63492cm</Height>
|
|---|
| 709 | </TableRow>
|
|---|
| 710 | </TableRows>
|
|---|
| 711 | </Header>
|
|---|
| 712 | </TableGroup>
|
|---|
| 713 | <TableGroup>
|
|---|
| 714 | <Grouping Name="table1_Group3">
|
|---|
| 715 | <GroupExpressions>
|
|---|
| 716 | <GroupExpression>=Fields!ROK_PO.Value</GroupExpression>
|
|---|
| 717 | </GroupExpressions>
|
|---|
| 718 | </Grouping>
|
|---|
| 719 | <Header>
|
|---|
| 720 | <TableRows>
|
|---|
| 721 | <TableRow>
|
|---|
| 722 | <Visibility>
|
|---|
| 723 | <Hidden>true</Hidden>
|
|---|
| 724 | <ToggleItem>ROK</ToggleItem>
|
|---|
| 725 | </Visibility>
|
|---|
| 726 | <TableCells>
|
|---|
| 727 | <TableCell>
|
|---|
| 728 | <ReportItems>
|
|---|
| 729 | <Textbox Name="textbox36">
|
|---|
| 730 | <rd:DefaultName>textbox36</rd:DefaultName>
|
|---|
| 731 | <Style>
|
|---|
| 732 | <BorderWidth>
|
|---|
| 733 | <Default>0.5pt</Default>
|
|---|
| 734 | </BorderWidth>
|
|---|
| 735 | <FontSize>8pt</FontSize>
|
|---|
| 736 | <TextAlign>Center</TextAlign>
|
|---|
| 737 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 738 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 739 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 740 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 741 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 742 | </Style>
|
|---|
| 743 | <ZIndex>35</ZIndex>
|
|---|
| 744 | <CanGrow>true</CanGrow>
|
|---|
| 745 | <Value />
|
|---|
| 746 | </Textbox>
|
|---|
| 747 | </ReportItems>
|
|---|
| 748 | </TableCell>
|
|---|
| 749 | <TableCell>
|
|---|
| 750 | <ReportItems>
|
|---|
| 751 | <Textbox Name="textbox37">
|
|---|
| 752 | <rd:DefaultName>textbox37</rd:DefaultName>
|
|---|
| 753 | <Style>
|
|---|
| 754 | <BorderWidth>
|
|---|
| 755 | <Default>0.5pt</Default>
|
|---|
| 756 | </BorderWidth>
|
|---|
| 757 | <FontSize>8pt</FontSize>
|
|---|
| 758 | <TextAlign>Center</TextAlign>
|
|---|
| 759 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 760 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 761 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 762 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 763 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 764 | </Style>
|
|---|
| 765 | <ZIndex>34</ZIndex>
|
|---|
| 766 | <CanGrow>true</CanGrow>
|
|---|
| 767 | <Value />
|
|---|
| 768 | </Textbox>
|
|---|
| 769 | </ReportItems>
|
|---|
| 770 | </TableCell>
|
|---|
| 771 | <TableCell>
|
|---|
| 772 | <ReportItems>
|
|---|
| 773 | <Textbox Name="ROK_PO">
|
|---|
| 774 | <rd:DefaultName>ROK_PO</rd:DefaultName>
|
|---|
| 775 | <Style>
|
|---|
| 776 | <BorderColor>
|
|---|
| 777 | <Default>LightGrey</Default>
|
|---|
| 778 | </BorderColor>
|
|---|
| 779 | <BorderStyle>
|
|---|
| 780 | <Left>Solid</Left>
|
|---|
| 781 | <Top>Solid</Top>
|
|---|
| 782 | <Bottom>Solid</Bottom>
|
|---|
| 783 | </BorderStyle>
|
|---|
| 784 | <BorderWidth>
|
|---|
| 785 | <Default>0.5pt</Default>
|
|---|
| 786 | </BorderWidth>
|
|---|
| 787 | <FontSize>8pt</FontSize>
|
|---|
| 788 | <TextAlign>Center</TextAlign>
|
|---|
| 789 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 790 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 791 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 792 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 793 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 794 | </Style>
|
|---|
| 795 | <ZIndex>33</ZIndex>
|
|---|
| 796 | <CanGrow>true</CanGrow>
|
|---|
| 797 | <Value>=Fields!ROK_PO.Value</Value>
|
|---|
| 798 | </Textbox>
|
|---|
| 799 | </ReportItems>
|
|---|
| 800 | </TableCell>
|
|---|
| 801 | <TableCell>
|
|---|
| 802 | <ReportItems>
|
|---|
| 803 | <Textbox Name="textbox39">
|
|---|
| 804 | <rd:DefaultName>textbox39</rd:DefaultName>
|
|---|
| 805 | <Style>
|
|---|
| 806 | <BorderColor>
|
|---|
| 807 | <Default>LightGrey</Default>
|
|---|
| 808 | </BorderColor>
|
|---|
| 809 | <BorderStyle>
|
|---|
| 810 | <Top>Solid</Top>
|
|---|
| 811 | <Bottom>Solid</Bottom>
|
|---|
| 812 | </BorderStyle>
|
|---|
| 813 | <BorderWidth>
|
|---|
| 814 | <Default>0.5pt</Default>
|
|---|
| 815 | </BorderWidth>
|
|---|
| 816 | <FontSize>8pt</FontSize>
|
|---|
| 817 | <TextAlign>Center</TextAlign>
|
|---|
| 818 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 819 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 820 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 821 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 822 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 823 | </Style>
|
|---|
| 824 | <ZIndex>32</ZIndex>
|
|---|
| 825 | <CanGrow>true</CanGrow>
|
|---|
| 826 | <Value />
|
|---|
| 827 | </Textbox>
|
|---|
| 828 | </ReportItems>
|
|---|
| 829 | </TableCell>
|
|---|
| 830 | <TableCell>
|
|---|
| 831 | <ReportItems>
|
|---|
| 832 | <Textbox Name="textbox40">
|
|---|
| 833 | <rd:DefaultName>textbox40</rd:DefaultName>
|
|---|
| 834 | <Style>
|
|---|
| 835 | <BorderColor>
|
|---|
| 836 | <Default>LightGrey</Default>
|
|---|
| 837 | </BorderColor>
|
|---|
| 838 | <BorderStyle>
|
|---|
| 839 | <Top>Solid</Top>
|
|---|
| 840 | <Bottom>Solid</Bottom>
|
|---|
| 841 | </BorderStyle>
|
|---|
| 842 | <BorderWidth>
|
|---|
| 843 | <Default>0.5pt</Default>
|
|---|
| 844 | </BorderWidth>
|
|---|
| 845 | <FontSize>8pt</FontSize>
|
|---|
| 846 | <TextAlign>Center</TextAlign>
|
|---|
| 847 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 848 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 849 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 850 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 851 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 852 | </Style>
|
|---|
| 853 | <ZIndex>31</ZIndex>
|
|---|
| 854 | <CanGrow>true</CanGrow>
|
|---|
| 855 | <Value />
|
|---|
| 856 | </Textbox>
|
|---|
| 857 | </ReportItems>
|
|---|
| 858 | </TableCell>
|
|---|
| 859 | <TableCell>
|
|---|
| 860 | <ReportItems>
|
|---|
| 861 | <Textbox Name="textbox34">
|
|---|
| 862 | <Style>
|
|---|
| 863 | <BorderColor>
|
|---|
| 864 | <Default>LightGrey</Default>
|
|---|
| 865 | </BorderColor>
|
|---|
| 866 | <BorderStyle>
|
|---|
| 867 | <Default>Solid</Default>
|
|---|
| 868 | </BorderStyle>
|
|---|
| 869 | <BorderWidth>
|
|---|
| 870 | <Default>0.5pt</Default>
|
|---|
| 871 | </BorderWidth>
|
|---|
| 872 | <FontSize>8pt</FontSize>
|
|---|
| 873 | <Format>C</Format>
|
|---|
| 874 | <TextAlign>Center</TextAlign>
|
|---|
| 875 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 876 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 877 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 878 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 879 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 880 | <Language>pl</Language>
|
|---|
| 881 | </Style>
|
|---|
| 882 | <ZIndex>30</ZIndex>
|
|---|
| 883 | <CanGrow>true</CanGrow>
|
|---|
| 884 | <Value>=Sum(Fields!PLANOWANY_BUDZET_AGENCJI.Value)</Value>
|
|---|
| 885 | </Textbox>
|
|---|
| 886 | </ReportItems>
|
|---|
| 887 | </TableCell>
|
|---|
| 888 | <TableCell>
|
|---|
| 889 | <ReportItems>
|
|---|
| 890 | <Textbox Name="textbox62">
|
|---|
| 891 | <Style>
|
|---|
| 892 | <BorderColor>
|
|---|
| 893 | <Default>LightGrey</Default>
|
|---|
| 894 | </BorderColor>
|
|---|
| 895 | <BorderStyle>
|
|---|
| 896 | <Default>Solid</Default>
|
|---|
| 897 | </BorderStyle>
|
|---|
| 898 | <BorderWidth>
|
|---|
| 899 | <Default>0.5pt</Default>
|
|---|
| 900 | </BorderWidth>
|
|---|
| 901 | <FontSize>8pt</FontSize>
|
|---|
| 902 | <Format>C</Format>
|
|---|
| 903 | <TextAlign>Center</TextAlign>
|
|---|
| 904 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 905 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 906 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 907 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 908 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 909 | <Language>pl</Language>
|
|---|
| 910 | </Style>
|
|---|
| 911 | <ZIndex>29</ZIndex>
|
|---|
| 912 | <CanGrow>true</CanGrow>
|
|---|
| 913 | <Value>=Sum(Fields!PLAN_BIURA.Value)</Value>
|
|---|
| 914 | </Textbox>
|
|---|
| 915 | </ReportItems>
|
|---|
| 916 | </TableCell>
|
|---|
| 917 | <TableCell>
|
|---|
| 918 | <ReportItems>
|
|---|
| 919 | <Textbox Name="textbox38">
|
|---|
| 920 | <Style>
|
|---|
| 921 | <BorderColor>
|
|---|
| 922 | <Default>LightGrey</Default>
|
|---|
| 923 | </BorderColor>
|
|---|
| 924 | <BorderStyle>
|
|---|
| 925 | <Default>Solid</Default>
|
|---|
| 926 | </BorderStyle>
|
|---|
| 927 | <BorderWidth>
|
|---|
| 928 | <Default>0.5pt</Default>
|
|---|
| 929 | </BorderWidth>
|
|---|
| 930 | <FontSize>8pt</FontSize>
|
|---|
| 931 | <Format>C</Format>
|
|---|
| 932 | <TextAlign>Center</TextAlign>
|
|---|
| 933 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 934 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 935 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 936 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 937 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 938 | <Language>pl</Language>
|
|---|
| 939 | </Style>
|
|---|
| 940 | <ZIndex>28</ZIndex>
|
|---|
| 941 | <CanGrow>true</CanGrow>
|
|---|
| 942 | <Value>=Sum(Fields!WYKONANY_BUDZET_AGENCJI.Value)</Value>
|
|---|
| 943 | </Textbox>
|
|---|
| 944 | </ReportItems>
|
|---|
| 945 | </TableCell>
|
|---|
| 946 | <TableCell>
|
|---|
| 947 | <ReportItems>
|
|---|
| 948 | <Textbox Name="textbox42">
|
|---|
| 949 | <rd:DefaultName>textbox42</rd:DefaultName>
|
|---|
| 950 | <Style>
|
|---|
| 951 | <BorderColor>
|
|---|
| 952 | <Default>LightGrey</Default>
|
|---|
| 953 | </BorderColor>
|
|---|
| 954 | <BorderStyle>
|
|---|
| 955 | <Default>Solid</Default>
|
|---|
| 956 | </BorderStyle>
|
|---|
| 957 | <BorderWidth>
|
|---|
| 958 | <Default>0.5pt</Default>
|
|---|
| 959 | </BorderWidth>
|
|---|
| 960 | <FontSize>8pt</FontSize>
|
|---|
| 961 | <TextAlign>Center</TextAlign>
|
|---|
| 962 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 963 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 964 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 965 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 966 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 967 | </Style>
|
|---|
| 968 | <ZIndex>27</ZIndex>
|
|---|
| 969 | <CanGrow>true</CanGrow>
|
|---|
| 970 | <Value />
|
|---|
| 971 | </Textbox>
|
|---|
| 972 | </ReportItems>
|
|---|
| 973 | </TableCell>
|
|---|
| 974 | </TableCells>
|
|---|
| 975 | <Height>0.63492cm</Height>
|
|---|
| 976 | </TableRow>
|
|---|
| 977 | </TableRows>
|
|---|
| 978 | </Header>
|
|---|
| 979 | </TableGroup>
|
|---|
| 980 | <TableGroup>
|
|---|
| 981 | <Grouping Name="table1_Group4">
|
|---|
| 982 | <GroupExpressions>
|
|---|
| 983 | <GroupExpression>=Fields!ID.Value</GroupExpression>
|
|---|
| 984 | </GroupExpressions>
|
|---|
| 985 | </Grouping>
|
|---|
| 986 | <Header>
|
|---|
| 987 | <TableRows>
|
|---|
| 988 | <TableRow>
|
|---|
| 989 | <Visibility>
|
|---|
| 990 | <Hidden>true</Hidden>
|
|---|
| 991 | <ToggleItem>ROK_PO</ToggleItem>
|
|---|
| 992 | </Visibility>
|
|---|
| 993 | <TableCells>
|
|---|
| 994 | <TableCell>
|
|---|
| 995 | <ReportItems>
|
|---|
| 996 | <Textbox Name="textbox43">
|
|---|
| 997 | <rd:DefaultName>textbox43</rd:DefaultName>
|
|---|
| 998 | <Style>
|
|---|
| 999 | <BorderWidth>
|
|---|
| 1000 | <Default>0.5pt</Default>
|
|---|
| 1001 | </BorderWidth>
|
|---|
| 1002 | <FontSize>8pt</FontSize>
|
|---|
| 1003 | <TextAlign>Center</TextAlign>
|
|---|
| 1004 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1005 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1006 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1007 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1008 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1009 | </Style>
|
|---|
| 1010 | <ZIndex>26</ZIndex>
|
|---|
| 1011 | <CanGrow>true</CanGrow>
|
|---|
| 1012 | <Value />
|
|---|
| 1013 | </Textbox>
|
|---|
| 1014 | </ReportItems>
|
|---|
| 1015 | </TableCell>
|
|---|
| 1016 | <TableCell>
|
|---|
| 1017 | <ReportItems>
|
|---|
| 1018 | <Textbox Name="textbox44">
|
|---|
| 1019 | <rd:DefaultName>textbox44</rd:DefaultName>
|
|---|
| 1020 | <Style>
|
|---|
| 1021 | <BorderWidth>
|
|---|
| 1022 | <Default>0.5pt</Default>
|
|---|
| 1023 | </BorderWidth>
|
|---|
| 1024 | <FontSize>8pt</FontSize>
|
|---|
| 1025 | <TextAlign>Center</TextAlign>
|
|---|
| 1026 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1027 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1028 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1029 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1030 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1031 | </Style>
|
|---|
| 1032 | <ZIndex>25</ZIndex>
|
|---|
| 1033 | <CanGrow>true</CanGrow>
|
|---|
| 1034 | <Value />
|
|---|
| 1035 | </Textbox>
|
|---|
| 1036 | </ReportItems>
|
|---|
| 1037 | </TableCell>
|
|---|
| 1038 | <TableCell>
|
|---|
| 1039 | <ReportItems>
|
|---|
| 1040 | <Textbox Name="textbox45">
|
|---|
| 1041 | <rd:DefaultName>textbox45</rd:DefaultName>
|
|---|
| 1042 | <Style>
|
|---|
| 1043 | <BorderWidth>
|
|---|
| 1044 | <Default>0.5pt</Default>
|
|---|
| 1045 | </BorderWidth>
|
|---|
| 1046 | <FontSize>8pt</FontSize>
|
|---|
| 1047 | <TextAlign>Center</TextAlign>
|
|---|
| 1048 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1049 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1050 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1051 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1052 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1053 | </Style>
|
|---|
| 1054 | <ZIndex>24</ZIndex>
|
|---|
| 1055 | <CanGrow>true</CanGrow>
|
|---|
| 1056 | <Value />
|
|---|
| 1057 | </Textbox>
|
|---|
| 1058 | </ReportItems>
|
|---|
| 1059 | </TableCell>
|
|---|
| 1060 | <TableCell>
|
|---|
| 1061 | <ReportItems>
|
|---|
| 1062 | <Textbox Name="ID">
|
|---|
| 1063 | <rd:DefaultName>ID</rd:DefaultName>
|
|---|
| 1064 | <Style>
|
|---|
| 1065 | <BorderColor>
|
|---|
| 1066 | <Default>LightGrey</Default>
|
|---|
| 1067 | </BorderColor>
|
|---|
| 1068 | <BorderStyle>
|
|---|
| 1069 | <Left>Solid</Left>
|
|---|
| 1070 | <Top>Solid</Top>
|
|---|
| 1071 | <Bottom>Solid</Bottom>
|
|---|
| 1072 | </BorderStyle>
|
|---|
| 1073 | <BorderWidth>
|
|---|
| 1074 | <Default>0.5pt</Default>
|
|---|
| 1075 | </BorderWidth>
|
|---|
| 1076 | <FontSize>8pt</FontSize>
|
|---|
| 1077 | <TextAlign>Center</TextAlign>
|
|---|
| 1078 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1079 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1080 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1081 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1082 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1083 | </Style>
|
|---|
| 1084 | <ZIndex>23</ZIndex>
|
|---|
| 1085 | <CanGrow>true</CanGrow>
|
|---|
| 1086 | <Value>=Fields!ID.Value</Value>
|
|---|
| 1087 | </Textbox>
|
|---|
| 1088 | </ReportItems>
|
|---|
| 1089 | </TableCell>
|
|---|
| 1090 | <TableCell>
|
|---|
| 1091 | <ReportItems>
|
|---|
| 1092 | <Textbox Name="textbox47">
|
|---|
| 1093 | <rd:DefaultName>textbox47</rd:DefaultName>
|
|---|
| 1094 | <Style>
|
|---|
| 1095 | <BorderColor>
|
|---|
| 1096 | <Default>LightGrey</Default>
|
|---|
| 1097 | </BorderColor>
|
|---|
| 1098 | <BorderStyle>
|
|---|
| 1099 | <Top>Solid</Top>
|
|---|
| 1100 | <Bottom>Solid</Bottom>
|
|---|
| 1101 | </BorderStyle>
|
|---|
| 1102 | <BorderWidth>
|
|---|
| 1103 | <Default>0.5pt</Default>
|
|---|
| 1104 | </BorderWidth>
|
|---|
| 1105 | <FontSize>8pt</FontSize>
|
|---|
| 1106 | <TextAlign>Center</TextAlign>
|
|---|
| 1107 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1108 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1109 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1110 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1111 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1112 | </Style>
|
|---|
| 1113 | <ZIndex>22</ZIndex>
|
|---|
| 1114 | <CanGrow>true</CanGrow>
|
|---|
| 1115 | <Value />
|
|---|
| 1116 | </Textbox>
|
|---|
| 1117 | </ReportItems>
|
|---|
| 1118 | </TableCell>
|
|---|
| 1119 | <TableCell>
|
|---|
| 1120 | <ReportItems>
|
|---|
| 1121 | <Textbox Name="textbox41">
|
|---|
| 1122 | <Style>
|
|---|
| 1123 | <BorderColor>
|
|---|
| 1124 | <Default>LightGrey</Default>
|
|---|
| 1125 | </BorderColor>
|
|---|
| 1126 | <BorderStyle>
|
|---|
| 1127 | <Default>Solid</Default>
|
|---|
| 1128 | </BorderStyle>
|
|---|
| 1129 | <BorderWidth>
|
|---|
| 1130 | <Default>0.5pt</Default>
|
|---|
| 1131 | </BorderWidth>
|
|---|
| 1132 | <FontSize>8pt</FontSize>
|
|---|
| 1133 | <Format>C</Format>
|
|---|
| 1134 | <TextAlign>Center</TextAlign>
|
|---|
| 1135 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1136 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1137 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1138 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1139 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1140 | <Language>pl</Language>
|
|---|
| 1141 | </Style>
|
|---|
| 1142 | <ZIndex>21</ZIndex>
|
|---|
| 1143 | <CanGrow>true</CanGrow>
|
|---|
| 1144 | <Value>=Sum(Fields!PLANOWANY_BUDZET_AGENCJI.Value)</Value>
|
|---|
| 1145 | </Textbox>
|
|---|
| 1146 | </ReportItems>
|
|---|
| 1147 | </TableCell>
|
|---|
| 1148 | <TableCell>
|
|---|
| 1149 | <ReportItems>
|
|---|
| 1150 | <Textbox Name="textbox63">
|
|---|
| 1151 | <Style>
|
|---|
| 1152 | <BorderColor>
|
|---|
| 1153 | <Default>LightGrey</Default>
|
|---|
| 1154 | </BorderColor>
|
|---|
| 1155 | <BorderStyle>
|
|---|
| 1156 | <Default>Solid</Default>
|
|---|
| 1157 | </BorderStyle>
|
|---|
| 1158 | <BorderWidth>
|
|---|
| 1159 | <Default>0.5pt</Default>
|
|---|
| 1160 | </BorderWidth>
|
|---|
| 1161 | <FontSize>8pt</FontSize>
|
|---|
| 1162 | <Format>C</Format>
|
|---|
| 1163 | <TextAlign>Center</TextAlign>
|
|---|
| 1164 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1165 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1166 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1167 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1168 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1169 | <Language>pl</Language>
|
|---|
| 1170 | </Style>
|
|---|
| 1171 | <ZIndex>20</ZIndex>
|
|---|
| 1172 | <CanGrow>true</CanGrow>
|
|---|
| 1173 | <Value>=Sum(Fields!PLAN_BIURA.Value)</Value>
|
|---|
| 1174 | </Textbox>
|
|---|
| 1175 | </ReportItems>
|
|---|
| 1176 | </TableCell>
|
|---|
| 1177 | <TableCell>
|
|---|
| 1178 | <ReportItems>
|
|---|
| 1179 | <Textbox Name="textbox46">
|
|---|
| 1180 | <Style>
|
|---|
| 1181 | <BorderColor>
|
|---|
| 1182 | <Default>LightGrey</Default>
|
|---|
| 1183 | </BorderColor>
|
|---|
| 1184 | <BorderStyle>
|
|---|
| 1185 | <Default>Solid</Default>
|
|---|
| 1186 | </BorderStyle>
|
|---|
| 1187 | <BorderWidth>
|
|---|
| 1188 | <Default>0.5pt</Default>
|
|---|
| 1189 | </BorderWidth>
|
|---|
| 1190 | <FontSize>8pt</FontSize>
|
|---|
| 1191 | <Format>C</Format>
|
|---|
| 1192 | <TextAlign>Center</TextAlign>
|
|---|
| 1193 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1194 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1195 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1196 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1197 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1198 | <Language>pl</Language>
|
|---|
| 1199 | </Style>
|
|---|
| 1200 | <ZIndex>19</ZIndex>
|
|---|
| 1201 | <CanGrow>true</CanGrow>
|
|---|
| 1202 | <Value>=Sum(Fields!WYKONANY_BUDZET_AGENCJI.Value)</Value>
|
|---|
| 1203 | </Textbox>
|
|---|
| 1204 | </ReportItems>
|
|---|
| 1205 | </TableCell>
|
|---|
| 1206 | <TableCell>
|
|---|
| 1207 | <ReportItems>
|
|---|
| 1208 | <Textbox Name="textbox49">
|
|---|
| 1209 | <rd:DefaultName>textbox49</rd:DefaultName>
|
|---|
| 1210 | <Style>
|
|---|
| 1211 | <BorderColor>
|
|---|
| 1212 | <Default>LightGrey</Default>
|
|---|
| 1213 | </BorderColor>
|
|---|
| 1214 | <BorderStyle>
|
|---|
| 1215 | <Default>Solid</Default>
|
|---|
| 1216 | </BorderStyle>
|
|---|
| 1217 | <BorderWidth>
|
|---|
| 1218 | <Default>0.5pt</Default>
|
|---|
| 1219 | </BorderWidth>
|
|---|
| 1220 | <FontSize>8pt</FontSize>
|
|---|
| 1221 | <TextAlign>Center</TextAlign>
|
|---|
| 1222 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1223 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1224 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1225 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1226 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1227 | </Style>
|
|---|
| 1228 | <ZIndex>18</ZIndex>
|
|---|
| 1229 | <CanGrow>true</CanGrow>
|
|---|
| 1230 | <Value />
|
|---|
| 1231 | </Textbox>
|
|---|
| 1232 | </ReportItems>
|
|---|
| 1233 | </TableCell>
|
|---|
| 1234 | </TableCells>
|
|---|
| 1235 | <Height>0.63492cm</Height>
|
|---|
| 1236 | </TableRow>
|
|---|
| 1237 | </TableRows>
|
|---|
| 1238 | </Header>
|
|---|
| 1239 | </TableGroup>
|
|---|
| 1240 | <TableGroup>
|
|---|
| 1241 | <Grouping Name="table1_Group5">
|
|---|
| 1242 | <GroupExpressions>
|
|---|
| 1243 | <GroupExpression>=Fields!MS.Value</GroupExpression>
|
|---|
| 1244 | </GroupExpressions>
|
|---|
| 1245 | </Grouping>
|
|---|
| 1246 | <Header>
|
|---|
| 1247 | <TableRows>
|
|---|
| 1248 | <TableRow>
|
|---|
| 1249 | <Visibility>
|
|---|
| 1250 | <Hidden>true</Hidden>
|
|---|
| 1251 | <ToggleItem>ID</ToggleItem>
|
|---|
| 1252 | </Visibility>
|
|---|
| 1253 | <TableCells>
|
|---|
| 1254 | <TableCell>
|
|---|
| 1255 | <ReportItems>
|
|---|
| 1256 | <Textbox Name="textbox50">
|
|---|
| 1257 | <rd:DefaultName>textbox50</rd:DefaultName>
|
|---|
| 1258 | <Style>
|
|---|
| 1259 | <BorderWidth>
|
|---|
| 1260 | <Default>0.5pt</Default>
|
|---|
| 1261 | </BorderWidth>
|
|---|
| 1262 | <FontSize>8pt</FontSize>
|
|---|
| 1263 | <TextAlign>Center</TextAlign>
|
|---|
| 1264 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1265 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1266 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1267 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1268 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1269 | </Style>
|
|---|
| 1270 | <ZIndex>17</ZIndex>
|
|---|
| 1271 | <CanGrow>true</CanGrow>
|
|---|
| 1272 | <Value />
|
|---|
| 1273 | </Textbox>
|
|---|
| 1274 | </ReportItems>
|
|---|
| 1275 | </TableCell>
|
|---|
| 1276 | <TableCell>
|
|---|
| 1277 | <ReportItems>
|
|---|
| 1278 | <Textbox Name="textbox51">
|
|---|
| 1279 | <rd:DefaultName>textbox51</rd:DefaultName>
|
|---|
| 1280 | <Style>
|
|---|
| 1281 | <BorderWidth>
|
|---|
| 1282 | <Default>0.5pt</Default>
|
|---|
| 1283 | </BorderWidth>
|
|---|
| 1284 | <FontSize>8pt</FontSize>
|
|---|
| 1285 | <TextAlign>Center</TextAlign>
|
|---|
| 1286 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1287 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1288 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1289 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1290 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1291 | </Style>
|
|---|
| 1292 | <ZIndex>16</ZIndex>
|
|---|
| 1293 | <CanGrow>true</CanGrow>
|
|---|
| 1294 | <Value />
|
|---|
| 1295 | </Textbox>
|
|---|
| 1296 | </ReportItems>
|
|---|
| 1297 | </TableCell>
|
|---|
| 1298 | <TableCell>
|
|---|
| 1299 | <ReportItems>
|
|---|
| 1300 | <Textbox Name="textbox52">
|
|---|
| 1301 | <rd:DefaultName>textbox52</rd:DefaultName>
|
|---|
| 1302 | <Style>
|
|---|
| 1303 | <BorderWidth>
|
|---|
| 1304 | <Default>0.5pt</Default>
|
|---|
| 1305 | </BorderWidth>
|
|---|
| 1306 | <FontSize>8pt</FontSize>
|
|---|
| 1307 | <TextAlign>Center</TextAlign>
|
|---|
| 1308 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1309 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1310 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1311 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1312 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1313 | </Style>
|
|---|
| 1314 | <ZIndex>15</ZIndex>
|
|---|
| 1315 | <CanGrow>true</CanGrow>
|
|---|
| 1316 | <Value />
|
|---|
| 1317 | </Textbox>
|
|---|
| 1318 | </ReportItems>
|
|---|
| 1319 | </TableCell>
|
|---|
| 1320 | <TableCell>
|
|---|
| 1321 | <ReportItems>
|
|---|
| 1322 | <Textbox Name="textbox53">
|
|---|
| 1323 | <rd:DefaultName>textbox53</rd:DefaultName>
|
|---|
| 1324 | <Style>
|
|---|
| 1325 | <BorderWidth>
|
|---|
| 1326 | <Default>0.5pt</Default>
|
|---|
| 1327 | </BorderWidth>
|
|---|
| 1328 | <FontSize>8pt</FontSize>
|
|---|
| 1329 | <TextAlign>Center</TextAlign>
|
|---|
| 1330 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1331 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1332 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1333 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1334 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1335 | </Style>
|
|---|
| 1336 | <ZIndex>14</ZIndex>
|
|---|
| 1337 | <CanGrow>true</CanGrow>
|
|---|
| 1338 | <Value />
|
|---|
| 1339 | </Textbox>
|
|---|
| 1340 | </ReportItems>
|
|---|
| 1341 | </TableCell>
|
|---|
| 1342 | <TableCell>
|
|---|
| 1343 | <ReportItems>
|
|---|
| 1344 | <Textbox Name="MS">
|
|---|
| 1345 | <rd:DefaultName>MS</rd:DefaultName>
|
|---|
| 1346 | <Style>
|
|---|
| 1347 | <BorderColor>
|
|---|
| 1348 | <Default>LightGrey</Default>
|
|---|
| 1349 | </BorderColor>
|
|---|
| 1350 | <BorderStyle>
|
|---|
| 1351 | <Left>Solid</Left>
|
|---|
| 1352 | <Top>Solid</Top>
|
|---|
| 1353 | <Bottom>Solid</Bottom>
|
|---|
| 1354 | </BorderStyle>
|
|---|
| 1355 | <BorderWidth>
|
|---|
| 1356 | <Default>0.5pt</Default>
|
|---|
| 1357 | </BorderWidth>
|
|---|
| 1358 | <FontSize>8pt</FontSize>
|
|---|
| 1359 | <TextAlign>Center</TextAlign>
|
|---|
| 1360 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1361 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1362 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1363 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1364 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1365 | </Style>
|
|---|
| 1366 | <ZIndex>13</ZIndex>
|
|---|
| 1367 | <CanGrow>true</CanGrow>
|
|---|
| 1368 | <Value>=Code.NazwaMiesiaca(Fields!MS.Value)</Value>
|
|---|
| 1369 | </Textbox>
|
|---|
| 1370 | </ReportItems>
|
|---|
| 1371 | </TableCell>
|
|---|
| 1372 | <TableCell>
|
|---|
| 1373 | <ReportItems>
|
|---|
| 1374 | <Textbox Name="textbox48">
|
|---|
| 1375 | <Style>
|
|---|
| 1376 | <BorderColor>
|
|---|
| 1377 | <Default>LightGrey</Default>
|
|---|
| 1378 | </BorderColor>
|
|---|
| 1379 | <BorderStyle>
|
|---|
| 1380 | <Default>Solid</Default>
|
|---|
| 1381 | </BorderStyle>
|
|---|
| 1382 | <BorderWidth>
|
|---|
| 1383 | <Default>0.5pt</Default>
|
|---|
| 1384 | </BorderWidth>
|
|---|
| 1385 | <FontSize>8pt</FontSize>
|
|---|
| 1386 | <Format>C</Format>
|
|---|
| 1387 | <TextAlign>Center</TextAlign>
|
|---|
| 1388 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1389 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1390 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1391 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1392 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1393 | <Language>pl</Language>
|
|---|
| 1394 | </Style>
|
|---|
| 1395 | <ZIndex>12</ZIndex>
|
|---|
| 1396 | <CanGrow>true</CanGrow>
|
|---|
| 1397 | <Value>=Sum(Fields!PLANOWANY_BUDZET_AGENCJI.Value)</Value>
|
|---|
| 1398 | </Textbox>
|
|---|
| 1399 | </ReportItems>
|
|---|
| 1400 | </TableCell>
|
|---|
| 1401 | <TableCell>
|
|---|
| 1402 | <ReportItems>
|
|---|
| 1403 | <Textbox Name="textbox64">
|
|---|
| 1404 | <Style>
|
|---|
| 1405 | <BorderColor>
|
|---|
| 1406 | <Default>LightGrey</Default>
|
|---|
| 1407 | </BorderColor>
|
|---|
| 1408 | <BorderStyle>
|
|---|
| 1409 | <Default>Solid</Default>
|
|---|
| 1410 | </BorderStyle>
|
|---|
| 1411 | <BorderWidth>
|
|---|
| 1412 | <Default>0.5pt</Default>
|
|---|
| 1413 | </BorderWidth>
|
|---|
| 1414 | <FontSize>8pt</FontSize>
|
|---|
| 1415 | <Format>C</Format>
|
|---|
| 1416 | <TextAlign>Center</TextAlign>
|
|---|
| 1417 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1418 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1419 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1420 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1421 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1422 | <Language>pl</Language>
|
|---|
| 1423 | </Style>
|
|---|
| 1424 | <ZIndex>11</ZIndex>
|
|---|
| 1425 | <CanGrow>true</CanGrow>
|
|---|
| 1426 | <Value>=Sum(Fields!PLAN_BIURA.Value)</Value>
|
|---|
| 1427 | </Textbox>
|
|---|
| 1428 | </ReportItems>
|
|---|
| 1429 | </TableCell>
|
|---|
| 1430 | <TableCell>
|
|---|
| 1431 | <ReportItems>
|
|---|
| 1432 | <Textbox Name="textbox54">
|
|---|
| 1433 | <Style>
|
|---|
| 1434 | <BorderColor>
|
|---|
| 1435 | <Default>LightGrey</Default>
|
|---|
| 1436 | </BorderColor>
|
|---|
| 1437 | <BorderStyle>
|
|---|
| 1438 | <Default>Solid</Default>
|
|---|
| 1439 | </BorderStyle>
|
|---|
| 1440 | <BorderWidth>
|
|---|
| 1441 | <Default>0.5pt</Default>
|
|---|
| 1442 | </BorderWidth>
|
|---|
| 1443 | <FontSize>8pt</FontSize>
|
|---|
| 1444 | <Format>C</Format>
|
|---|
| 1445 | <TextAlign>Center</TextAlign>
|
|---|
| 1446 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1447 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1448 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1449 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1450 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1451 | <Language>pl</Language>
|
|---|
| 1452 | </Style>
|
|---|
| 1453 | <ZIndex>10</ZIndex>
|
|---|
| 1454 | <CanGrow>true</CanGrow>
|
|---|
| 1455 | <Value>=Sum(Fields!WYKONANY_BUDZET_AGENCJI.Value)</Value>
|
|---|
| 1456 | </Textbox>
|
|---|
| 1457 | </ReportItems>
|
|---|
| 1458 | </TableCell>
|
|---|
| 1459 | <TableCell>
|
|---|
| 1460 | <ReportItems>
|
|---|
| 1461 | <Textbox Name="procent_2">
|
|---|
| 1462 | <rd:DefaultName>procent_2</rd:DefaultName>
|
|---|
| 1463 | <Style>
|
|---|
| 1464 | <BorderColor>
|
|---|
| 1465 | <Default>LightGrey</Default>
|
|---|
| 1466 | </BorderColor>
|
|---|
| 1467 | <BorderStyle>
|
|---|
| 1468 | <Default>Solid</Default>
|
|---|
| 1469 | </BorderStyle>
|
|---|
| 1470 | <BorderWidth>
|
|---|
| 1471 | <Default>0.5pt</Default>
|
|---|
| 1472 | </BorderWidth>
|
|---|
| 1473 | <FontSize>8pt</FontSize>
|
|---|
| 1474 | <Format>P</Format>
|
|---|
| 1475 | <TextAlign>Center</TextAlign>
|
|---|
| 1476 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1477 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1478 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1479 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1480 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1481 | </Style>
|
|---|
| 1482 | <ZIndex>9</ZIndex>
|
|---|
| 1483 | <CanGrow>true</CanGrow>
|
|---|
| 1484 | <Value>=Fields!procent.Value</Value>
|
|---|
| 1485 | </Textbox>
|
|---|
| 1486 | </ReportItems>
|
|---|
| 1487 | </TableCell>
|
|---|
| 1488 | </TableCells>
|
|---|
| 1489 | <Height>0.63492cm</Height>
|
|---|
| 1490 | </TableRow>
|
|---|
| 1491 | </TableRows>
|
|---|
| 1492 | </Header>
|
|---|
| 1493 | </TableGroup>
|
|---|
| 1494 | </TableGroups>
|
|---|
| 1495 | <Style>
|
|---|
| 1496 | <FontSize>8pt</FontSize>
|
|---|
| 1497 | </Style>
|
|---|
| 1498 | <Header>
|
|---|
| 1499 | <TableRows>
|
|---|
| 1500 | <TableRow>
|
|---|
| 1501 | <TableCells>
|
|---|
| 1502 | <TableCell>
|
|---|
| 1503 | <ReportItems>
|
|---|
| 1504 | <Textbox Name="textbox1">
|
|---|
| 1505 | <rd:DefaultName>textbox1</rd:DefaultName>
|
|---|
| 1506 | <Style>
|
|---|
| 1507 | <BackgroundColor>White</BackgroundColor>
|
|---|
| 1508 | <BorderColor>
|
|---|
| 1509 | <Default>LightGrey</Default>
|
|---|
| 1510 | </BorderColor>
|
|---|
| 1511 | <BorderStyle>
|
|---|
| 1512 | <Default>Solid</Default>
|
|---|
| 1513 | </BorderStyle>
|
|---|
| 1514 | <BorderWidth>
|
|---|
| 1515 | <Default>0.5pt</Default>
|
|---|
| 1516 | </BorderWidth>
|
|---|
| 1517 | <FontSize>8pt</FontSize>
|
|---|
| 1518 | <FontWeight>700</FontWeight>
|
|---|
| 1519 | <TextAlign>Center</TextAlign>
|
|---|
| 1520 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1521 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1522 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1523 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1524 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1525 | <Calendar>Gregorian</Calendar>
|
|---|
| 1526 | </Style>
|
|---|
| 1527 | <ZIndex>62</ZIndex>
|
|---|
| 1528 | <CanGrow>true</CanGrow>
|
|---|
| 1529 | <Value>Agencja</Value>
|
|---|
| 1530 | </Textbox>
|
|---|
| 1531 | </ReportItems>
|
|---|
| 1532 | </TableCell>
|
|---|
| 1533 | <TableCell>
|
|---|
| 1534 | <ReportItems>
|
|---|
| 1535 | <Textbox Name="textbox19">
|
|---|
| 1536 | <rd:DefaultName>textbox19</rd:DefaultName>
|
|---|
| 1537 | <Style>
|
|---|
| 1538 | <BackgroundColor>White</BackgroundColor>
|
|---|
| 1539 | <BorderColor>
|
|---|
| 1540 | <Default>LightGrey</Default>
|
|---|
| 1541 | </BorderColor>
|
|---|
| 1542 | <BorderStyle>
|
|---|
| 1543 | <Default>Solid</Default>
|
|---|
| 1544 | </BorderStyle>
|
|---|
| 1545 | <BorderWidth>
|
|---|
| 1546 | <Default>0.5pt</Default>
|
|---|
| 1547 | </BorderWidth>
|
|---|
| 1548 | <FontSize>8pt</FontSize>
|
|---|
| 1549 | <FontWeight>700</FontWeight>
|
|---|
| 1550 | <TextAlign>Center</TextAlign>
|
|---|
| 1551 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1552 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1553 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1554 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1555 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1556 | <Calendar>Gregorian</Calendar>
|
|---|
| 1557 | </Style>
|
|---|
| 1558 | <ZIndex>61</ZIndex>
|
|---|
| 1559 | <CanGrow>true</CanGrow>
|
|---|
| 1560 | <Value>Rok</Value>
|
|---|
| 1561 | </Textbox>
|
|---|
| 1562 | </ReportItems>
|
|---|
| 1563 | </TableCell>
|
|---|
| 1564 | <TableCell>
|
|---|
| 1565 | <ReportItems>
|
|---|
| 1566 | <Textbox Name="textbox16">
|
|---|
| 1567 | <rd:DefaultName>textbox16</rd:DefaultName>
|
|---|
| 1568 | <Style>
|
|---|
| 1569 | <BackgroundColor>White</BackgroundColor>
|
|---|
| 1570 | <BorderColor>
|
|---|
| 1571 | <Default>LightGrey</Default>
|
|---|
| 1572 | </BorderColor>
|
|---|
| 1573 | <BorderStyle>
|
|---|
| 1574 | <Default>Solid</Default>
|
|---|
| 1575 | </BorderStyle>
|
|---|
| 1576 | <BorderWidth>
|
|---|
| 1577 | <Default>0.5pt</Default>
|
|---|
| 1578 | </BorderWidth>
|
|---|
| 1579 | <FontSize>8pt</FontSize>
|
|---|
| 1580 | <FontWeight>700</FontWeight>
|
|---|
| 1581 | <TextAlign>Center</TextAlign>
|
|---|
| 1582 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1583 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1584 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1585 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1586 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1587 | <Calendar>Gregorian</Calendar>
|
|---|
| 1588 | </Style>
|
|---|
| 1589 | <ZIndex>60</ZIndex>
|
|---|
| 1590 | <CanGrow>true</CanGrow>
|
|---|
| 1591 | <Value>PóÅrocze</Value>
|
|---|
| 1592 | </Textbox>
|
|---|
| 1593 | </ReportItems>
|
|---|
| 1594 | </TableCell>
|
|---|
| 1595 | <TableCell>
|
|---|
| 1596 | <ReportItems>
|
|---|
| 1597 | <Textbox Name="textbox13">
|
|---|
| 1598 | <rd:DefaultName>textbox13</rd:DefaultName>
|
|---|
| 1599 | <Style>
|
|---|
| 1600 | <BackgroundColor>White</BackgroundColor>
|
|---|
| 1601 | <BorderColor>
|
|---|
| 1602 | <Default>LightGrey</Default>
|
|---|
| 1603 | </BorderColor>
|
|---|
| 1604 | <BorderStyle>
|
|---|
| 1605 | <Default>Solid</Default>
|
|---|
| 1606 | </BorderStyle>
|
|---|
| 1607 | <BorderWidth>
|
|---|
| 1608 | <Default>0.5pt</Default>
|
|---|
| 1609 | </BorderWidth>
|
|---|
| 1610 | <FontSize>8pt</FontSize>
|
|---|
| 1611 | <FontWeight>700</FontWeight>
|
|---|
| 1612 | <TextAlign>Center</TextAlign>
|
|---|
| 1613 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1614 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1615 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1616 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1617 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1618 | <Calendar>Gregorian</Calendar>
|
|---|
| 1619 | </Style>
|
|---|
| 1620 | <ZIndex>59</ZIndex>
|
|---|
| 1621 | <CanGrow>true</CanGrow>
|
|---|
| 1622 | <Value>KwartaÅ</Value>
|
|---|
| 1623 | </Textbox>
|
|---|
| 1624 | </ReportItems>
|
|---|
| 1625 | </TableCell>
|
|---|
| 1626 | <TableCell>
|
|---|
| 1627 | <ReportItems>
|
|---|
| 1628 | <Textbox Name="textbox10">
|
|---|
| 1629 | <rd:DefaultName>textbox10</rd:DefaultName>
|
|---|
| 1630 | <Style>
|
|---|
| 1631 | <BackgroundColor>White</BackgroundColor>
|
|---|
| 1632 | <BorderColor>
|
|---|
| 1633 | <Default>LightGrey</Default>
|
|---|
| 1634 | </BorderColor>
|
|---|
| 1635 | <BorderStyle>
|
|---|
| 1636 | <Default>Solid</Default>
|
|---|
| 1637 | </BorderStyle>
|
|---|
| 1638 | <BorderWidth>
|
|---|
| 1639 | <Default>0.5pt</Default>
|
|---|
| 1640 | </BorderWidth>
|
|---|
| 1641 | <FontSize>8pt</FontSize>
|
|---|
| 1642 | <FontWeight>700</FontWeight>
|
|---|
| 1643 | <TextAlign>Center</TextAlign>
|
|---|
| 1644 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1645 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1646 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1647 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1648 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1649 | <Calendar>Gregorian</Calendar>
|
|---|
| 1650 | </Style>
|
|---|
| 1651 | <ZIndex>58</ZIndex>
|
|---|
| 1652 | <CanGrow>true</CanGrow>
|
|---|
| 1653 | <Value>MiesiÄ
c</Value>
|
|---|
| 1654 | </Textbox>
|
|---|
| 1655 | </ReportItems>
|
|---|
| 1656 | </TableCell>
|
|---|
| 1657 | <TableCell>
|
|---|
| 1658 | <ReportItems>
|
|---|
| 1659 | <Textbox Name="textbox2">
|
|---|
| 1660 | <rd:DefaultName>textbox2</rd:DefaultName>
|
|---|
| 1661 | <Style>
|
|---|
| 1662 | <BackgroundColor>White</BackgroundColor>
|
|---|
| 1663 | <BorderColor>
|
|---|
| 1664 | <Default>LightGrey</Default>
|
|---|
| 1665 | </BorderColor>
|
|---|
| 1666 | <BorderStyle>
|
|---|
| 1667 | <Default>Solid</Default>
|
|---|
| 1668 | </BorderStyle>
|
|---|
| 1669 | <BorderWidth>
|
|---|
| 1670 | <Default>0.5pt</Default>
|
|---|
| 1671 | </BorderWidth>
|
|---|
| 1672 | <FontSize>8pt</FontSize>
|
|---|
| 1673 | <FontWeight>700</FontWeight>
|
|---|
| 1674 | <TextAlign>Center</TextAlign>
|
|---|
| 1675 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1676 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1677 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1678 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1679 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1680 | <Calendar>Gregorian</Calendar>
|
|---|
| 1681 | </Style>
|
|---|
| 1682 | <ZIndex>57</ZIndex>
|
|---|
| 1683 | <CanGrow>true</CanGrow>
|
|---|
| 1684 | <Value>PLANOWANY BUDZET AGENCJI</Value>
|
|---|
| 1685 | </Textbox>
|
|---|
| 1686 | </ReportItems>
|
|---|
| 1687 | </TableCell>
|
|---|
| 1688 | <TableCell>
|
|---|
| 1689 | <ReportItems>
|
|---|
| 1690 | <Textbox Name="textbox60">
|
|---|
| 1691 | <rd:DefaultName>textbox60</rd:DefaultName>
|
|---|
| 1692 | <Style>
|
|---|
| 1693 | <BackgroundColor>White</BackgroundColor>
|
|---|
| 1694 | <BorderColor>
|
|---|
| 1695 | <Default>LightGrey</Default>
|
|---|
| 1696 | </BorderColor>
|
|---|
| 1697 | <BorderStyle>
|
|---|
| 1698 | <Default>Solid</Default>
|
|---|
| 1699 | </BorderStyle>
|
|---|
| 1700 | <BorderWidth>
|
|---|
| 1701 | <Default>0.5pt</Default>
|
|---|
| 1702 | </BorderWidth>
|
|---|
| 1703 | <FontSize>8pt</FontSize>
|
|---|
| 1704 | <FontWeight>700</FontWeight>
|
|---|
| 1705 | <TextAlign>Center</TextAlign>
|
|---|
| 1706 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1707 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1708 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1709 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1710 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1711 | <Calendar>Gregorian</Calendar>
|
|---|
| 1712 | </Style>
|
|---|
| 1713 | <ZIndex>56</ZIndex>
|
|---|
| 1714 | <CanGrow>true</CanGrow>
|
|---|
| 1715 | <Value>PLAN BIURA</Value>
|
|---|
| 1716 | </Textbox>
|
|---|
| 1717 | </ReportItems>
|
|---|
| 1718 | </TableCell>
|
|---|
| 1719 | <TableCell>
|
|---|
| 1720 | <ReportItems>
|
|---|
| 1721 | <Textbox Name="textbox22">
|
|---|
| 1722 | <rd:DefaultName>textbox22</rd:DefaultName>
|
|---|
| 1723 | <Style>
|
|---|
| 1724 | <BackgroundColor>White</BackgroundColor>
|
|---|
| 1725 | <BorderColor>
|
|---|
| 1726 | <Default>LightGrey</Default>
|
|---|
| 1727 | </BorderColor>
|
|---|
| 1728 | <BorderStyle>
|
|---|
| 1729 | <Default>Solid</Default>
|
|---|
| 1730 | </BorderStyle>
|
|---|
| 1731 | <BorderWidth>
|
|---|
| 1732 | <Default>0.5pt</Default>
|
|---|
| 1733 | </BorderWidth>
|
|---|
| 1734 | <FontSize>8pt</FontSize>
|
|---|
| 1735 | <FontWeight>700</FontWeight>
|
|---|
| 1736 | <TextAlign>Center</TextAlign>
|
|---|
| 1737 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1738 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1739 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1740 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1741 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1742 | <Calendar>Gregorian</Calendar>
|
|---|
| 1743 | </Style>
|
|---|
| 1744 | <ZIndex>55</ZIndex>
|
|---|
| 1745 | <CanGrow>true</CanGrow>
|
|---|
| 1746 | <Value>WYKONANY BUDZET AGENCJI</Value>
|
|---|
| 1747 | </Textbox>
|
|---|
| 1748 | </ReportItems>
|
|---|
| 1749 | </TableCell>
|
|---|
| 1750 | <TableCell>
|
|---|
| 1751 | <ReportItems>
|
|---|
| 1752 | <Textbox Name="textbox3">
|
|---|
| 1753 | <rd:DefaultName>textbox3</rd:DefaultName>
|
|---|
| 1754 | <Style>
|
|---|
| 1755 | <BackgroundColor>White</BackgroundColor>
|
|---|
| 1756 | <BorderColor>
|
|---|
| 1757 | <Default>LightGrey</Default>
|
|---|
| 1758 | </BorderColor>
|
|---|
| 1759 | <BorderStyle>
|
|---|
| 1760 | <Default>Solid</Default>
|
|---|
| 1761 | </BorderStyle>
|
|---|
| 1762 | <BorderWidth>
|
|---|
| 1763 | <Default>0.5pt</Default>
|
|---|
| 1764 | </BorderWidth>
|
|---|
| 1765 | <FontSize>8pt</FontSize>
|
|---|
| 1766 | <FontWeight>700</FontWeight>
|
|---|
| 1767 | <TextAlign>Center</TextAlign>
|
|---|
| 1768 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1769 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1770 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1771 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1772 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1773 | <Calendar>Gregorian</Calendar>
|
|---|
| 1774 | </Style>
|
|---|
| 1775 | <ZIndex>54</ZIndex>
|
|---|
| 1776 | <CanGrow>true</CanGrow>
|
|---|
| 1777 | <Value>procent</Value>
|
|---|
| 1778 | </Textbox>
|
|---|
| 1779 | </ReportItems>
|
|---|
| 1780 | </TableCell>
|
|---|
| 1781 | </TableCells>
|
|---|
| 1782 | <Height>0.63492cm</Height>
|
|---|
| 1783 | </TableRow>
|
|---|
| 1784 | </TableRows>
|
|---|
| 1785 | </Header>
|
|---|
| 1786 | <TableColumns>
|
|---|
| 1787 | <TableColumn>
|
|---|
| 1788 | <Width>3.25cm</Width>
|
|---|
| 1789 | </TableColumn>
|
|---|
| 1790 | <TableColumn>
|
|---|
| 1791 | <Width>2.25cm</Width>
|
|---|
| 1792 | </TableColumn>
|
|---|
| 1793 | <TableColumn>
|
|---|
| 1794 | <Width>2.25cm</Width>
|
|---|
| 1795 | </TableColumn>
|
|---|
| 1796 | <TableColumn>
|
|---|
| 1797 | <Width>2.25cm</Width>
|
|---|
| 1798 | </TableColumn>
|
|---|
| 1799 | <TableColumn>
|
|---|
| 1800 | <Width>2.25cm</Width>
|
|---|
| 1801 | </TableColumn>
|
|---|
| 1802 | <TableColumn>
|
|---|
| 1803 | <Width>3.25cm</Width>
|
|---|
| 1804 | </TableColumn>
|
|---|
| 1805 | <TableColumn>
|
|---|
| 1806 | <Width>3cm</Width>
|
|---|
| 1807 | </TableColumn>
|
|---|
| 1808 | <TableColumn>
|
|---|
| 1809 | <Width>2.5cm</Width>
|
|---|
| 1810 | </TableColumn>
|
|---|
| 1811 | <TableColumn>
|
|---|
| 1812 | <Width>2.75cm</Width>
|
|---|
| 1813 | </TableColumn>
|
|---|
| 1814 | </TableColumns>
|
|---|
| 1815 | <Footer>
|
|---|
| 1816 | <TableRows>
|
|---|
| 1817 | <TableRow>
|
|---|
| 1818 | <TableCells>
|
|---|
| 1819 | <TableCell>
|
|---|
| 1820 | <ReportItems>
|
|---|
| 1821 | <Textbox Name="textbox7">
|
|---|
| 1822 | <rd:DefaultName>textbox7</rd:DefaultName>
|
|---|
| 1823 | <Style>
|
|---|
| 1824 | <BorderWidth>
|
|---|
| 1825 | <Default>0.5pt</Default>
|
|---|
| 1826 | </BorderWidth>
|
|---|
| 1827 | <FontSize>8pt</FontSize>
|
|---|
| 1828 | <TextAlign>Center</TextAlign>
|
|---|
| 1829 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1830 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1831 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1832 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1833 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1834 | </Style>
|
|---|
| 1835 | <ZIndex>8</ZIndex>
|
|---|
| 1836 | <CanGrow>true</CanGrow>
|
|---|
| 1837 | <Value />
|
|---|
| 1838 | </Textbox>
|
|---|
| 1839 | </ReportItems>
|
|---|
| 1840 | </TableCell>
|
|---|
| 1841 | <TableCell>
|
|---|
| 1842 | <ReportItems>
|
|---|
| 1843 | <Textbox Name="textbox21">
|
|---|
| 1844 | <rd:DefaultName>textbox21</rd:DefaultName>
|
|---|
| 1845 | <Style>
|
|---|
| 1846 | <BorderWidth>
|
|---|
| 1847 | <Default>0.5pt</Default>
|
|---|
| 1848 | </BorderWidth>
|
|---|
| 1849 | <FontSize>8pt</FontSize>
|
|---|
| 1850 | <TextAlign>Center</TextAlign>
|
|---|
| 1851 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1852 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1853 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1854 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1855 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1856 | </Style>
|
|---|
| 1857 | <ZIndex>7</ZIndex>
|
|---|
| 1858 | <CanGrow>true</CanGrow>
|
|---|
| 1859 | <Value />
|
|---|
| 1860 | </Textbox>
|
|---|
| 1861 | </ReportItems>
|
|---|
| 1862 | </TableCell>
|
|---|
| 1863 | <TableCell>
|
|---|
| 1864 | <ReportItems>
|
|---|
| 1865 | <Textbox Name="textbox18">
|
|---|
| 1866 | <rd:DefaultName>textbox18</rd:DefaultName>
|
|---|
| 1867 | <Style>
|
|---|
| 1868 | <BorderWidth>
|
|---|
| 1869 | <Default>0.5pt</Default>
|
|---|
| 1870 | </BorderWidth>
|
|---|
| 1871 | <FontSize>8pt</FontSize>
|
|---|
| 1872 | <TextAlign>Center</TextAlign>
|
|---|
| 1873 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1874 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1875 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1876 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1877 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1878 | </Style>
|
|---|
| 1879 | <ZIndex>6</ZIndex>
|
|---|
| 1880 | <CanGrow>true</CanGrow>
|
|---|
| 1881 | <Value />
|
|---|
| 1882 | </Textbox>
|
|---|
| 1883 | </ReportItems>
|
|---|
| 1884 | </TableCell>
|
|---|
| 1885 | <TableCell>
|
|---|
| 1886 | <ReportItems>
|
|---|
| 1887 | <Textbox Name="textbox15">
|
|---|
| 1888 | <rd:DefaultName>textbox15</rd:DefaultName>
|
|---|
| 1889 | <Style>
|
|---|
| 1890 | <BorderWidth>
|
|---|
| 1891 | <Default>0.5pt</Default>
|
|---|
| 1892 | </BorderWidth>
|
|---|
| 1893 | <FontSize>8pt</FontSize>
|
|---|
| 1894 | <TextAlign>Center</TextAlign>
|
|---|
| 1895 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1896 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1897 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1898 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1899 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1900 | </Style>
|
|---|
| 1901 | <ZIndex>5</ZIndex>
|
|---|
| 1902 | <CanGrow>true</CanGrow>
|
|---|
| 1903 | <Value />
|
|---|
| 1904 | </Textbox>
|
|---|
| 1905 | </ReportItems>
|
|---|
| 1906 | </TableCell>
|
|---|
| 1907 | <TableCell>
|
|---|
| 1908 | <ReportItems>
|
|---|
| 1909 | <Textbox Name="textbox12">
|
|---|
| 1910 | <rd:DefaultName>textbox12</rd:DefaultName>
|
|---|
| 1911 | <Style>
|
|---|
| 1912 | <BorderWidth>
|
|---|
| 1913 | <Default>0.5pt</Default>
|
|---|
| 1914 | </BorderWidth>
|
|---|
| 1915 | <FontSize>8pt</FontSize>
|
|---|
| 1916 | <TextAlign>Center</TextAlign>
|
|---|
| 1917 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1918 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1919 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1920 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1921 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1922 | </Style>
|
|---|
| 1923 | <ZIndex>4</ZIndex>
|
|---|
| 1924 | <CanGrow>true</CanGrow>
|
|---|
| 1925 | <Value />
|
|---|
| 1926 | </Textbox>
|
|---|
| 1927 | </ReportItems>
|
|---|
| 1928 | </TableCell>
|
|---|
| 1929 | <TableCell>
|
|---|
| 1930 | <ReportItems>
|
|---|
| 1931 | <Textbox Name="textbox8">
|
|---|
| 1932 | <rd:DefaultName>textbox8</rd:DefaultName>
|
|---|
| 1933 | <Style>
|
|---|
| 1934 | <BorderWidth>
|
|---|
| 1935 | <Default>0.5pt</Default>
|
|---|
| 1936 | </BorderWidth>
|
|---|
| 1937 | <FontSize>8pt</FontSize>
|
|---|
| 1938 | <TextAlign>Center</TextAlign>
|
|---|
| 1939 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1940 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1941 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1942 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1943 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1944 | </Style>
|
|---|
| 1945 | <ZIndex>3</ZIndex>
|
|---|
| 1946 | <CanGrow>true</CanGrow>
|
|---|
| 1947 | <Value />
|
|---|
| 1948 | </Textbox>
|
|---|
| 1949 | </ReportItems>
|
|---|
| 1950 | </TableCell>
|
|---|
| 1951 | <TableCell>
|
|---|
| 1952 | <ReportItems>
|
|---|
| 1953 | <Textbox Name="textbox67">
|
|---|
| 1954 | <rd:DefaultName>textbox67</rd:DefaultName>
|
|---|
| 1955 | <Style>
|
|---|
| 1956 | <BorderWidth>
|
|---|
| 1957 | <Default>0.5pt</Default>
|
|---|
| 1958 | </BorderWidth>
|
|---|
| 1959 | <FontSize>8pt</FontSize>
|
|---|
| 1960 | <TextAlign>Center</TextAlign>
|
|---|
| 1961 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1962 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1963 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1964 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1965 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1966 | </Style>
|
|---|
| 1967 | <ZIndex>2</ZIndex>
|
|---|
| 1968 | <CanGrow>true</CanGrow>
|
|---|
| 1969 | <Value />
|
|---|
| 1970 | </Textbox>
|
|---|
| 1971 | </ReportItems>
|
|---|
| 1972 | </TableCell>
|
|---|
| 1973 | <TableCell>
|
|---|
| 1974 | <ReportItems>
|
|---|
| 1975 | <Textbox Name="textbox59">
|
|---|
| 1976 | <rd:DefaultName>textbox59</rd:DefaultName>
|
|---|
| 1977 | <Style>
|
|---|
| 1978 | <BorderWidth>
|
|---|
| 1979 | <Default>0.5pt</Default>
|
|---|
| 1980 | </BorderWidth>
|
|---|
| 1981 | <FontSize>8pt</FontSize>
|
|---|
| 1982 | <TextAlign>Center</TextAlign>
|
|---|
| 1983 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 1984 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 1985 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 1986 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 1987 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 1988 | </Style>
|
|---|
| 1989 | <ZIndex>1</ZIndex>
|
|---|
| 1990 | <CanGrow>true</CanGrow>
|
|---|
| 1991 | <Value />
|
|---|
| 1992 | </Textbox>
|
|---|
| 1993 | </ReportItems>
|
|---|
| 1994 | </TableCell>
|
|---|
| 1995 | <TableCell>
|
|---|
| 1996 | <ReportItems>
|
|---|
| 1997 | <Textbox Name="textbox9">
|
|---|
| 1998 | <rd:DefaultName>textbox9</rd:DefaultName>
|
|---|
| 1999 | <Style>
|
|---|
| 2000 | <BorderWidth>
|
|---|
| 2001 | <Default>0.5pt</Default>
|
|---|
| 2002 | </BorderWidth>
|
|---|
| 2003 | <FontSize>8pt</FontSize>
|
|---|
| 2004 | <TextAlign>Center</TextAlign>
|
|---|
| 2005 | <VerticalAlign>Middle</VerticalAlign>
|
|---|
| 2006 | <PaddingLeft>2pt</PaddingLeft>
|
|---|
| 2007 | <PaddingRight>2pt</PaddingRight>
|
|---|
| 2008 | <PaddingTop>2pt</PaddingTop>
|
|---|
| 2009 | <PaddingBottom>2pt</PaddingBottom>
|
|---|
| 2010 | </Style>
|
|---|
| 2011 | <CanGrow>true</CanGrow>
|
|---|
| 2012 | <Value />
|
|---|
| 2013 | </Textbox>
|
|---|
| 2014 | </ReportItems>
|
|---|
| 2015 | </TableCell>
|
|---|
| 2016 | </TableCells>
|
|---|
| 2017 | <Height>0.63492cm</Height>
|
|---|
| 2018 | </TableRow>
|
|---|
| 2019 | </TableRows>
|
|---|
| 2020 | </Footer>
|
|---|
| 2021 | </Table>
|
|---|
| 2022 | </ReportItems>
|
|---|
| 2023 | <Height>5.69444cm</Height>
|
|---|
| 2024 | </Body>
|
|---|
| 2025 | <Language>en-US</Language>
|
|---|
| 2026 | <TopMargin>2.5cm</TopMargin>
|
|---|
| 2027 | <PageHeight>21cm</PageHeight>
|
|---|
| 2028 | </Report> |
|---|