| 129 | | <CommandText>SELECT ROK, ROK_PO, KW, MS, SUM(NETTO) AS netto, COUNT(distinct reklamaId) AS ilosc, tytul, agencja, agent |
| 130 | | FROM (SELECT ROUND(FD.NETTO, 0) AS NETTO, |
| 131 | | fd.reklamaId, |
| 132 | | year(faktury.data_wystawienia) AS ROK, |
| 133 | | DATEPART(QUARTER, faktury.data_wystawienia) AS KW, |
| 134 | | CONVERT(INTEGER,(1.0+DATEPART(QUARTER, faktury.data_wystawienia))/2) AS ROK_PO, |
| 135 | | month(faktury.data_wystawienia) AS MS, |
| 136 | | DATEPART(Week, faktury.data_wystawienia) AS WW, |
| 137 | | faktury.data_wystawienia, FD.tytul, Agencje.Symbol as agencja, Agenci.Symbol as agent |
| 138 | | FROM |
| 139 | | dbo.AGENCJE INNER JOIN dbo.AGENCI ON dbo.AGENCJE.Id_agencji = dbo.AGENCI.ID_AGENCJI |
| 140 | | INNER JOIN dbo.FAKTURY ON dbo.AGENCI.F_ROZ = dbo.FAKTURY.[NUMER_ROZ] |
| 141 | | left join dbo.FAktura_details FD on FAKTURY.id_faktury= FD.id_faktury |
| 142 | | INNER JOIN dbo.Klienci on dbo.Klienci.CustomerId = dbo.Faktury.id_nabywcy |
| 143 | | WHERE (DATEPART(YEAR, faktury.data_wystawienia) >= @od) |
| 144 | | AND (@tytul is null OR FD.tytul = @tytul) |
| 145 | | AND (@agencja is null OR Agencje.id_agencji = @agencja) |
| 146 | | AND (@agent is null OR Agenci.ID_AGENTA = @agent)) AS R |
| 147 | | GROUP BY ROK, ROK_PO, KW, MS, tytul, agencja, agent |
| 148 | | ORDER BY ROK DESC, KW DESC, MS DESC</CommandText> |
| | 156 | <CommandText>SELECT |
| | 157 | Agencja, |
| | 158 | Agent, |
| | 159 | Tytul, |
| | 160 | COUNT(KlientNazwa) AS IloscKlientow, |
| | 161 | ROUND(SUM(Netto), 2) AS SumaNetto, |
| | 162 | Rok, |
| | 163 | Kwartal, |
| | 164 | Miesiac |
| | 165 | FROM FakturyNettoByTytul |
| | 166 | WHERE (YEAR(Data) >= @od) |
| | 167 | AND Tytul IN (@tytul) |
| | 168 | AND Agent IN (@agent) |
| | 169 | --AND Agencja IN (@agencja) |
| | 170 | GROUP BY Agencja, Agent, Tytul, Rok, Kwartal, Miesiac |
| | 171 | ORDER BY Agent, Rok DESC, Kwartal DESC, Miesiac DESC, Tytul</CommandText> |
| 248 | | <ZIndex>2</ZIndex> |
| 249 | | <DataSetName>wgDatyFaktury_ZatwierdzoneDoDruku</DataSetName> |
| 250 | | <PageBreakAtStart>true</PageBreakAtStart> |
| 251 | | <Filters> |
| 252 | | <Filter> |
| 253 | | <FilterExpression>=Fields!rok.Value</FilterExpression> |
| 254 | | <Operator>Equal</Operator> |
| 255 | | <FilterValues> |
| 256 | | <FilterValue>=CInt(2007)</FilterValue> |
| 257 | | </FilterValues> |
| 258 | | </Filter> |
| 259 | | </Filters> |
| 260 | | <Top>19cm</Top> |
| 261 | | <TableGroups> |
| 262 | | <TableGroup> |
| 263 | | <Grouping Name="table1_Group3"> |
| 264 | | <GroupExpressions> |
| 265 | | <GroupExpression>=Fields!agencja.Value</GroupExpression> |
| 266 | | </GroupExpressions> |
| 267 | | </Grouping> |
| 268 | | <Header> |
| 269 | | <TableRows> |
| 270 | | <TableRow> |
| 271 | | <TableCells> |
| 272 | | <TableCell> |
| 273 | | <ReportItems> |
| 274 | | <Textbox Name="textbox5"> |
| 275 | | <rd:DefaultName>textbox5</rd:DefaultName> |
| 276 | | <Style> |
| 277 | | <PaddingLeft>2pt</PaddingLeft> |
| 278 | | <PaddingRight>2pt</PaddingRight> |
| 279 | | <PaddingTop>2pt</PaddingTop> |
| 280 | | <PaddingBottom>2pt</PaddingBottom> |
| 281 | | </Style> |
| 282 | | <ZIndex>14</ZIndex> |
| 283 | | <CanGrow>true</CanGrow> |
| 284 | | <Value /> |
| 285 | | </Textbox> |
| 286 | | </ReportItems> |
| 287 | | </TableCell> |
| 288 | | <TableCell> |
| 289 | | <ReportItems> |
| 290 | | <Textbox Name="textbox11"> |
| 291 | | <rd:DefaultName>textbox11</rd:DefaultName> |
| 292 | | <Style> |
| 293 | | <PaddingLeft>2pt</PaddingLeft> |
| 294 | | <PaddingRight>2pt</PaddingRight> |
| 295 | | <PaddingTop>2pt</PaddingTop> |
| 296 | | <PaddingBottom>2pt</PaddingBottom> |
| 297 | | </Style> |
| 298 | | <ZIndex>13</ZIndex> |
| 299 | | <CanGrow>true</CanGrow> |
| 300 | | <Value /> |
| 301 | | </Textbox> |
| 302 | | </ReportItems> |
| 303 | | </TableCell> |
| 304 | | <TableCell> |
| 305 | | <ReportItems> |
| 306 | | <Textbox Name="textbox13"> |
| 307 | | <rd:DefaultName>textbox13</rd:DefaultName> |
| 308 | | <Style> |
| 309 | | <PaddingLeft>2pt</PaddingLeft> |
| 310 | | <PaddingRight>2pt</PaddingRight> |
| 311 | | <PaddingTop>2pt</PaddingTop> |
| 312 | | <PaddingBottom>2pt</PaddingBottom> |
| 313 | | </Style> |
| 314 | | <ZIndex>12</ZIndex> |
| 315 | | <CanGrow>true</CanGrow> |
| 316 | | <Value /> |
| 317 | | </Textbox> |
| 318 | | </ReportItems> |
| 319 | | </TableCell> |
| 320 | | <TableCell> |
| 321 | | <ReportItems> |
| 322 | | <Textbox Name="textbox14"> |
| 323 | | <rd:DefaultName>textbox14</rd:DefaultName> |
| 324 | | <Style> |
| 325 | | <PaddingLeft>2pt</PaddingLeft> |
| 326 | | <PaddingRight>2pt</PaddingRight> |
| 327 | | <PaddingTop>2pt</PaddingTop> |
| 328 | | <PaddingBottom>2pt</PaddingBottom> |
| 329 | | </Style> |
| 330 | | <ZIndex>11</ZIndex> |
| 331 | | <CanGrow>true</CanGrow> |
| 332 | | <Value /> |
| 333 | | </Textbox> |
| 334 | | </ReportItems> |
| 335 | | </TableCell> |
| 336 | | <TableCell> |
| 337 | | <ReportItems> |
| 338 | | <Textbox Name="textbox15"> |
| 339 | | <rd:DefaultName>textbox15</rd:DefaultName> |
| 340 | | <Style> |
| 341 | | <PaddingLeft>2pt</PaddingLeft> |
| 342 | | <PaddingRight>2pt</PaddingRight> |
| 343 | | <PaddingTop>2pt</PaddingTop> |
| 344 | | <PaddingBottom>2pt</PaddingBottom> |
| 345 | | </Style> |
| 346 | | <ZIndex>10</ZIndex> |
| 347 | | <CanGrow>true</CanGrow> |
| 348 | | <Value /> |
| 349 | | </Textbox> |
| 350 | | </ReportItems> |
| 351 | | </TableCell> |
| 352 | | </TableCells> |
| 353 | | <Height>0.5cm</Height> |
| 354 | | </TableRow> |
| 355 | | </TableRows> |
| 356 | | </Header> |
| 357 | | <Footer> |
| 358 | | <TableRows> |
| 359 | | <TableRow> |
| 360 | | <TableCells> |
| 361 | | <TableCell> |
| 362 | | <ReportItems> |
| 363 | | <Textbox Name="textbox16"> |
| 364 | | <rd:DefaultName>textbox16</rd:DefaultName> |
| 365 | | <Style> |
| 366 | | <BorderColor> |
| 367 | | <Default>LightGrey</Default> |
| 368 | | </BorderColor> |
| 369 | | <BorderStyle> |
| 370 | | <Default>Solid</Default> |
| 371 | | </BorderStyle> |
| 372 | | <BorderWidth> |
| 373 | | <Default>0.5pt</Default> |
| 374 | | </BorderWidth> |
| 375 | | <PaddingLeft>2pt</PaddingLeft> |
| 376 | | <PaddingRight>2pt</PaddingRight> |
| 377 | | <PaddingTop>2pt</PaddingTop> |
| 378 | | <PaddingBottom>2pt</PaddingBottom> |
| 379 | | </Style> |
| 380 | | <ZIndex>4</ZIndex> |
| 381 | | <CanGrow>true</CanGrow> |
| 382 | | <Value /> |
| 383 | | </Textbox> |
| 384 | | </ReportItems> |
| 385 | | </TableCell> |
| 386 | | <TableCell> |
| 387 | | <ReportItems> |
| 388 | | <Textbox Name="textbox17"> |
| 389 | | <rd:DefaultName>textbox17</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 | | <PaddingLeft>2pt</PaddingLeft> |
| 401 | | <PaddingRight>2pt</PaddingRight> |
| 402 | | <PaddingTop>2pt</PaddingTop> |
| 403 | | <PaddingBottom>2pt</PaddingBottom> |
| 404 | | </Style> |
| 405 | | <ZIndex>3</ZIndex> |
| 406 | | <CanGrow>true</CanGrow> |
| 407 | | <Value /> |
| 408 | | </Textbox> |
| 409 | | </ReportItems> |
| 410 | | </TableCell> |
| 411 | | <TableCell> |
| 412 | | <ReportItems> |
| 413 | | <Textbox Name="textbox18"> |
| 414 | | <rd:DefaultName>textbox18</rd:DefaultName> |
| 415 | | <Style> |
| 416 | | <BorderColor> |
| 417 | | <Default>LightGrey</Default> |
| 418 | | </BorderColor> |
| 419 | | <BorderStyle> |
| 420 | | <Default>Solid</Default> |
| 421 | | </BorderStyle> |
| 422 | | <BorderWidth> |
| 423 | | <Default>0.5pt</Default> |
| 424 | | </BorderWidth> |
| 425 | | <PaddingLeft>2pt</PaddingLeft> |
| 426 | | <PaddingRight>2pt</PaddingRight> |
| 427 | | <PaddingTop>2pt</PaddingTop> |
| 428 | | <PaddingBottom>2pt</PaddingBottom> |
| 429 | | </Style> |
| 430 | | <ZIndex>2</ZIndex> |
| 431 | | <CanGrow>true</CanGrow> |
| 432 | | <Value /> |
| 433 | | </Textbox> |
| 434 | | </ReportItems> |
| 435 | | </TableCell> |
| 436 | | <TableCell> |
| 437 | | <ReportItems> |
| 438 | | <Textbox Name="textbox31"> |
| 439 | | <Style> |
| 440 | | <BorderColor> |
| 441 | | <Default>LightGrey</Default> |
| 442 | | </BorderColor> |
| 443 | | <BorderStyle> |
| 444 | | <Default>Solid</Default> |
| 445 | | </BorderStyle> |
| 446 | | <BorderWidth> |
| 447 | | <Default>0.5pt</Default> |
| 448 | | </BorderWidth> |
| 449 | | <TextAlign>Right</TextAlign> |
| 450 | | <PaddingLeft>2pt</PaddingLeft> |
| 451 | | <PaddingRight>2pt</PaddingRight> |
| 452 | | <PaddingTop>2pt</PaddingTop> |
| 453 | | <PaddingBottom>2pt</PaddingBottom> |
| 454 | | </Style> |
| 455 | | <ZIndex>1</ZIndex> |
| 456 | | <CanGrow>true</CanGrow> |
| 457 | | <Value>=Sum(Fields!netto.Value)</Value> |
| 458 | | </Textbox> |
| 459 | | </ReportItems> |
| 460 | | </TableCell> |
| 461 | | <TableCell> |
| 462 | | <ReportItems> |
| 463 | | <Textbox Name="textbox32"> |
| 464 | | <Style> |
| 465 | | <BorderColor> |
| 466 | | <Default>LightGrey</Default> |
| 467 | | </BorderColor> |
| 468 | | <BorderStyle> |
| 469 | | <Default>Solid</Default> |
| 470 | | </BorderStyle> |
| 471 | | <BorderWidth> |
| 472 | | <Default>0.5pt</Default> |
| 473 | | </BorderWidth> |
| 474 | | <TextAlign>Right</TextAlign> |
| 475 | | <PaddingLeft>2pt</PaddingLeft> |
| 476 | | <PaddingRight>2pt</PaddingRight> |
| 477 | | <PaddingTop>2pt</PaddingTop> |
| 478 | | <PaddingBottom>2pt</PaddingBottom> |
| 479 | | </Style> |
| 480 | | <CanGrow>true</CanGrow> |
| 481 | | <Value>=Sum(Fields!ilosc.Value)</Value> |
| 482 | | </Textbox> |
| 483 | | </ReportItems> |
| 484 | | </TableCell> |
| 485 | | </TableCells> |
| 486 | | <Height>0.63492cm</Height> |
| 487 | | </TableRow> |
| 488 | | </TableRows> |
| 489 | | </Footer> |
| 490 | | </TableGroup> |
| 491 | | <TableGroup> |
| 492 | | <Grouping Name="table1_Group4"> |
| 493 | | <GroupExpressions> |
| 494 | | <GroupExpression>=Fields!rok.Value</GroupExpression> |
| 495 | | <GroupExpression>=Fields!agent.Value</GroupExpression> |
| 496 | | </GroupExpressions> |
| 497 | | </Grouping> |
| 498 | | <Header> |
| 499 | | <TableRows> |
| 500 | | <TableRow> |
| 501 | | <TableCells> |
| 502 | | <TableCell> |
| 503 | | <ReportItems> |
| 504 | | <Textbox Name="textbox26"> |
| 505 | | <Style> |
| 506 | | <BorderColor> |
| 507 | | <Default>LightGrey</Default> |
| 508 | | </BorderColor> |
| 509 | | <BorderStyle> |
| 510 | | <Default>Solid</Default> |
| 511 | | </BorderStyle> |
| 512 | | <BorderWidth> |
| 513 | | <Default>0.5pt</Default> |
| 514 | | </BorderWidth> |
| 515 | | <TextAlign>Right</TextAlign> |
| 516 | | <PaddingLeft>2pt</PaddingLeft> |
| 517 | | <PaddingRight>2pt</PaddingRight> |
| 518 | | <PaddingTop>2pt</PaddingTop> |
| 519 | | <PaddingBottom>2pt</PaddingBottom> |
| 520 | | </Style> |
| 521 | | <ZIndex>9</ZIndex> |
| 522 | | <CanGrow>true</CanGrow> |
| 523 | | <Value>=Fields!rok.Value</Value> |
| 524 | | </Textbox> |
| 525 | | </ReportItems> |
| 526 | | </TableCell> |
| 527 | | <TableCell> |
| 528 | | <ReportItems> |
| 529 | | <Textbox Name="textbox27"> |
| 530 | | <Style> |
| 531 | | <BorderColor> |
| 532 | | <Default>LightGrey</Default> |
| 533 | | </BorderColor> |
| 534 | | <BorderStyle> |
| 535 | | <Default>Solid</Default> |
| 536 | | </BorderStyle> |
| 537 | | <BorderWidth> |
| 538 | | <Default>0.5pt</Default> |
| 539 | | </BorderWidth> |
| 540 | | <PaddingLeft>2pt</PaddingLeft> |
| 541 | | <PaddingRight>2pt</PaddingRight> |
| 542 | | <PaddingTop>2pt</PaddingTop> |
| 543 | | <PaddingBottom>2pt</PaddingBottom> |
| 544 | | </Style> |
| 545 | | <ZIndex>8</ZIndex> |
| 546 | | <CanGrow>true</CanGrow> |
| 547 | | <Value>=Fields!agencja.Value</Value> |
| 548 | | </Textbox> |
| 549 | | </ReportItems> |
| 550 | | </TableCell> |
| 551 | | <TableCell> |
| 552 | | <ReportItems> |
| 553 | | <Textbox Name="textbox28"> |
| 554 | | <Style> |
| 555 | | <BorderColor> |
| 556 | | <Default>LightGrey</Default> |
| 557 | | </BorderColor> |
| 558 | | <BorderStyle> |
| 559 | | <Default>Solid</Default> |
| 560 | | </BorderStyle> |
| 561 | | <BorderWidth> |
| 562 | | <Default>0.5pt</Default> |
| 563 | | </BorderWidth> |
| 564 | | <PaddingLeft>2pt</PaddingLeft> |
| 565 | | <PaddingRight>2pt</PaddingRight> |
| 566 | | <PaddingTop>2pt</PaddingTop> |
| 567 | | <PaddingBottom>2pt</PaddingBottom> |
| 568 | | </Style> |
| 569 | | <ZIndex>7</ZIndex> |
| 570 | | <CanGrow>true</CanGrow> |
| 571 | | <Value>=Fields!agent.Value</Value> |
| 572 | | </Textbox> |
| 573 | | </ReportItems> |
| 574 | | </TableCell> |
| 575 | | <TableCell> |
| 576 | | <ReportItems> |
| 577 | | <Textbox Name="textbox29"> |
| 578 | | <Style> |
| 579 | | <BorderColor> |
| 580 | | <Default>LightGrey</Default> |
| 581 | | </BorderColor> |
| 582 | | <BorderStyle> |
| 583 | | <Default>Solid</Default> |
| 584 | | </BorderStyle> |
| 585 | | <BorderWidth> |
| 586 | | <Default>0.5pt</Default> |
| 587 | | </BorderWidth> |
| 588 | | <TextAlign>Right</TextAlign> |
| 589 | | <PaddingLeft>2pt</PaddingLeft> |
| 590 | | <PaddingRight>2pt</PaddingRight> |
| 591 | | <PaddingTop>2pt</PaddingTop> |
| 592 | | <PaddingBottom>2pt</PaddingBottom> |
| 593 | | </Style> |
| 594 | | <ZIndex>6</ZIndex> |
| 595 | | <CanGrow>true</CanGrow> |
| 596 | | <Value>=Sum(Fields!netto.Value)</Value> |
| 597 | | </Textbox> |
| 598 | | </ReportItems> |
| 599 | | </TableCell> |
| 600 | | <TableCell> |
| 601 | | <ReportItems> |
| 602 | | <Textbox Name="textbox30"> |
| 603 | | <Style> |
| 604 | | <BorderColor> |
| 605 | | <Default>LightGrey</Default> |
| 606 | | </BorderColor> |
| 607 | | <BorderStyle> |
| 608 | | <Default>Solid</Default> |
| 609 | | </BorderStyle> |
| 610 | | <BorderWidth> |
| 611 | | <Default>0.5pt</Default> |
| 612 | | </BorderWidth> |
| 613 | | <TextAlign>Right</TextAlign> |
| 614 | | <PaddingLeft>2pt</PaddingLeft> |
| 615 | | <PaddingRight>2pt</PaddingRight> |
| 616 | | <PaddingTop>2pt</PaddingTop> |
| 617 | | <PaddingBottom>2pt</PaddingBottom> |
| 618 | | </Style> |
| 619 | | <ZIndex>5</ZIndex> |
| 620 | | <CanGrow>true</CanGrow> |
| 621 | | <Value>=Sum(Fields!ilosc.Value)</Value> |
| 622 | | </Textbox> |
| 623 | | </ReportItems> |
| 624 | | </TableCell> |
| 625 | | </TableCells> |
| 626 | | <Height>0.75cm</Height> |
| 627 | | </TableRow> |
| 628 | | </TableRows> |
| 629 | | </Header> |
| 630 | | </TableGroup> |
| 631 | | <TableGroup> |
| 632 | | <Grouping Name="table1_Group1"> |
| 633 | | <GroupExpressions> |
| 634 | | <GroupExpression>=Fields!agent.Value</GroupExpression> |
| 635 | | </GroupExpressions> |
| 636 | | </Grouping> |
| 637 | | </TableGroup> |
| 638 | | <TableGroup> |
| 639 | | <Grouping Name="table1_Group2"> |
| 640 | | <GroupExpressions> |
| 641 | | <GroupExpression>=Fields!agencja.Value</GroupExpression> |
| 642 | | </GroupExpressions> |
| 643 | | </Grouping> |
| 644 | | </TableGroup> |
| 645 | | </TableGroups> |
| 646 | | <Width>21.75cm</Width> |
| | 275 | <ZIndex>1</ZIndex> |
| | 276 | <DataSetName>IloscKlientow</DataSetName> |
| | 277 | <Top>11cm</Top> |
| | 278 | <Width>19cm</Width> |
| | 279 | <Details> |
| | 280 | <TableRows> |
| | 281 | <TableRow> |
| | 282 | <TableCells> |
| | 283 | <TableCell> |
| | 284 | <ReportItems> |
| | 285 | <Textbox Name="textbox4"> |
| | 286 | <rd:DefaultName>textbox4</rd:DefaultName> |
| | 287 | <Style> |
| | 288 | <BorderColor> |
| | 289 | <Default>LightGrey</Default> |
| | 290 | </BorderColor> |
| | 291 | <BorderStyle> |
| | 292 | <Default>Solid</Default> |
| | 293 | </BorderStyle> |
| | 294 | <BorderWidth> |
| | 295 | <Default>0.5pt</Default> |
| | 296 | </BorderWidth> |
| | 297 | <FontSize>8pt</FontSize> |
| | 298 | <TextAlign>Center</TextAlign> |
| | 299 | <PaddingLeft>2pt</PaddingLeft> |
| | 300 | <PaddingRight>2pt</PaddingRight> |
| | 301 | <PaddingTop>2pt</PaddingTop> |
| | 302 | <PaddingBottom>2pt</PaddingBottom> |
| | 303 | </Style> |
| | 304 | <ZIndex>7</ZIndex> |
| | 305 | <CanGrow>true</CanGrow> |
| | 306 | <Value>=Fields!Agencja.Value</Value> |
| | 307 | </Textbox> |
| | 308 | </ReportItems> |
| | 309 | </TableCell> |
| | 310 | <TableCell> |
| | 311 | <ReportItems> |
| | 312 | <Textbox Name="textbox5"> |
| | 313 | <rd:DefaultName>textbox5</rd:DefaultName> |
| | 314 | <Style> |
| | 315 | <BorderColor> |
| | 316 | <Default>LightGrey</Default> |
| | 317 | </BorderColor> |
| | 318 | <BorderStyle> |
| | 319 | <Default>Solid</Default> |
| | 320 | </BorderStyle> |
| | 321 | <BorderWidth> |
| | 322 | <Default>0.5pt</Default> |
| | 323 | </BorderWidth> |
| | 324 | <FontSize>8pt</FontSize> |
| | 325 | <TextAlign>Center</TextAlign> |
| | 326 | <PaddingLeft>2pt</PaddingLeft> |
| | 327 | <PaddingRight>2pt</PaddingRight> |
| | 328 | <PaddingTop>2pt</PaddingTop> |
| | 329 | <PaddingBottom>2pt</PaddingBottom> |
| | 330 | </Style> |
| | 331 | <ZIndex>6</ZIndex> |
| | 332 | <CanGrow>true</CanGrow> |
| | 333 | <Value>=Fields!Agent.Value</Value> |
| | 334 | </Textbox> |
| | 335 | </ReportItems> |
| | 336 | </TableCell> |
| | 337 | <TableCell> |
| | 338 | <ReportItems> |
| | 339 | <Textbox Name="textbox11"> |
| | 340 | <rd:DefaultName>textbox11</rd:DefaultName> |
| | 341 | <Style> |
| | 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 | <TextAlign>Center</TextAlign> |
| | 353 | <PaddingLeft>2pt</PaddingLeft> |
| | 354 | <PaddingRight>2pt</PaddingRight> |
| | 355 | <PaddingTop>2pt</PaddingTop> |
| | 356 | <PaddingBottom>2pt</PaddingBottom> |
| | 357 | </Style> |
| | 358 | <ZIndex>5</ZIndex> |
| | 359 | <CanGrow>true</CanGrow> |
| | 360 | <Value>=Fields!Tytul.Value</Value> |
| | 361 | </Textbox> |
| | 362 | </ReportItems> |
| | 363 | </TableCell> |
| | 364 | <TableCell> |
| | 365 | <ReportItems> |
| | 366 | <Textbox Name="textbox6"> |
| | 367 | <rd:DefaultName>textbox6</rd:DefaultName> |
| | 368 | <Style> |
| | 369 | <BorderColor> |
| | 370 | <Default>LightGrey</Default> |
| | 371 | </BorderColor> |
| | 372 | <BorderStyle> |
| | 373 | <Default>Solid</Default> |
| | 374 | </BorderStyle> |
| | 375 | <BorderWidth> |
| | 376 | <Default>0.5pt</Default> |
| | 377 | </BorderWidth> |
| | 378 | <FontSize>8pt</FontSize> |
| | 379 | <TextAlign>Center</TextAlign> |
| | 380 | <PaddingLeft>2pt</PaddingLeft> |
| | 381 | <PaddingRight>2pt</PaddingRight> |
| | 382 | <PaddingTop>2pt</PaddingTop> |
| | 383 | <PaddingBottom>2pt</PaddingBottom> |
| | 384 | </Style> |
| | 385 | <ZIndex>4</ZIndex> |
| | 386 | <CanGrow>true</CanGrow> |
| | 387 | <Value>=Fields!IloscKlientow.Value</Value> |
| | 388 | </Textbox> |
| | 389 | </ReportItems> |
| | 390 | </TableCell> |
| | 391 | <TableCell> |
| | 392 | <ReportItems> |
| | 393 | <Textbox Name="textbox14"> |
| | 394 | <rd:DefaultName>textbox14</rd:DefaultName> |
| | 395 | <Style> |
| | 396 | <BorderColor> |
| | 397 | <Default>LightGrey</Default> |
| | 398 | </BorderColor> |
| | 399 | <BorderStyle> |
| | 400 | <Default>Solid</Default> |
| | 401 | </BorderStyle> |
| | 402 | <BorderWidth> |
| | 403 | <Default>0.5pt</Default> |
| | 404 | </BorderWidth> |
| | 405 | <FontSize>8pt</FontSize> |
| | 406 | <Format>C</Format> |
| | 407 | <TextAlign>Center</TextAlign> |
| | 408 | <PaddingLeft>2pt</PaddingLeft> |
| | 409 | <PaddingRight>2pt</PaddingRight> |
| | 410 | <PaddingTop>2pt</PaddingTop> |
| | 411 | <PaddingBottom>2pt</PaddingBottom> |
| | 412 | </Style> |
| | 413 | <ZIndex>3</ZIndex> |
| | 414 | <CanGrow>true</CanGrow> |
| | 415 | <Value>=Fields!SumaNetto.Value</Value> |
| | 416 | </Textbox> |
| | 417 | </ReportItems> |
| | 418 | </TableCell> |
| | 419 | <TableCell> |
| | 420 | <ReportItems> |
| | 421 | <Textbox Name="textbox17"> |
| | 422 | <rd:DefaultName>textbox17</rd:DefaultName> |
| | 423 | <Style> |
| | 424 | <BorderColor> |
| | 425 | <Default>LightGrey</Default> |
| | 426 | </BorderColor> |
| | 427 | <BorderStyle> |
| | 428 | <Default>Solid</Default> |
| | 429 | </BorderStyle> |
| | 430 | <BorderWidth> |
| | 431 | <Default>0.5pt</Default> |
| | 432 | </BorderWidth> |
| | 433 | <FontSize>8pt</FontSize> |
| | 434 | <TextAlign>Center</TextAlign> |
| | 435 | <PaddingLeft>2pt</PaddingLeft> |
| | 436 | <PaddingRight>2pt</PaddingRight> |
| | 437 | <PaddingTop>2pt</PaddingTop> |
| | 438 | <PaddingBottom>2pt</PaddingBottom> |
| | 439 | </Style> |
| | 440 | <ZIndex>2</ZIndex> |
| | 441 | <CanGrow>true</CanGrow> |
| | 442 | <Value>=Fields!Rok.Value</Value> |
| | 443 | </Textbox> |
| | 444 | </ReportItems> |
| | 445 | </TableCell> |
| | 446 | <TableCell> |
| | 447 | <ReportItems> |
| | 448 | <Textbox Name="textbox20"> |
| | 449 | <rd:DefaultName>textbox20</rd:DefaultName> |
| | 450 | <Style> |
| | 451 | <BorderColor> |
| | 452 | <Default>LightGrey</Default> |
| | 453 | </BorderColor> |
| | 454 | <BorderStyle> |
| | 455 | <Default>Solid</Default> |
| | 456 | </BorderStyle> |
| | 457 | <BorderWidth> |
| | 458 | <Default>0.5pt</Default> |
| | 459 | </BorderWidth> |
| | 460 | <FontSize>8pt</FontSize> |
| | 461 | <TextAlign>Center</TextAlign> |
| | 462 | <PaddingLeft>2pt</PaddingLeft> |
| | 463 | <PaddingRight>2pt</PaddingRight> |
| | 464 | <PaddingTop>2pt</PaddingTop> |
| | 465 | <PaddingBottom>2pt</PaddingBottom> |
| | 466 | </Style> |
| | 467 | <ZIndex>1</ZIndex> |
| | 468 | <CanGrow>true</CanGrow> |
| | 469 | <Value>=Fields!Kwartal.Value</Value> |
| | 470 | </Textbox> |
| | 471 | </ReportItems> |
| | 472 | </TableCell> |
| | 473 | <TableCell> |
| | 474 | <ReportItems> |
| | 475 | <Textbox Name="textbox23"> |
| | 476 | <rd:DefaultName>textbox23</rd:DefaultName> |
| | 477 | <Style> |
| | 478 | <BorderColor> |
| | 479 | <Default>LightGrey</Default> |
| | 480 | </BorderColor> |
| | 481 | <BorderStyle> |
| | 482 | <Default>Solid</Default> |
| | 483 | </BorderStyle> |
| | 484 | <BorderWidth> |
| | 485 | <Default>0.5pt</Default> |
| | 486 | </BorderWidth> |
| | 487 | <FontSize>8pt</FontSize> |
| | 488 | <TextAlign>Center</TextAlign> |
| | 489 | <PaddingLeft>2pt</PaddingLeft> |
| | 490 | <PaddingRight>2pt</PaddingRight> |
| | 491 | <PaddingTop>2pt</PaddingTop> |
| | 492 | <PaddingBottom>2pt</PaddingBottom> |
| | 493 | </Style> |
| | 494 | <CanGrow>true</CanGrow> |
| | 495 | <Value>=Fields!Miesiac.Value</Value> |
| | 496 | </Textbox> |
| | 497 | </ReportItems> |
| | 498 | </TableCell> |
| | 499 | </TableCells> |
| | 500 | <Height>0.63492cm</Height> |
| | 501 | </TableRow> |
| | 502 | </TableRows> |
| | 503 | </Details> |
| | 504 | <Style> |
| | 505 | <BorderColor> |
| | 506 | <Default>LightGrey</Default> |
| | 507 | </BorderColor> |
| | 508 | <BorderStyle> |
| | 509 | <Default>Solid</Default> |
| | 510 | </BorderStyle> |
| | 511 | <BorderWidth> |
| | 512 | <Default>0.5pt</Default> |
| | 513 | </BorderWidth> |
| | 514 | </Style> |
| 735 | | <ZIndex>15</ZIndex> |
| 736 | | <CanGrow>true</CanGrow> |
| 737 | | <Value>ilosc</Value> |
| | 629 | <ZIndex>20</ZIndex> |
| | 630 | <CanGrow>true</CanGrow> |
| | 631 | <Value>IloÅÄ klientów</Value> |
| | 632 | </Textbox> |
| | 633 | </ReportItems> |
| | 634 | </TableCell> |
| | 635 | <TableCell> |
| | 636 | <ReportItems> |
| | 637 | <Textbox Name="textbox13"> |
| | 638 | <rd:DefaultName>textbox13</rd:DefaultName> |
| | 639 | <Style> |
| | 640 | <BackgroundColor>WhiteSmoke</BackgroundColor> |
| | 641 | <BorderColor> |
| | 642 | <Default>LightGrey</Default> |
| | 643 | </BorderColor> |
| | 644 | <BorderStyle> |
| | 645 | <Default>Solid</Default> |
| | 646 | </BorderStyle> |
| | 647 | <BorderWidth> |
| | 648 | <Default>0.5pt</Default> |
| | 649 | </BorderWidth> |
| | 650 | <FontSize>8pt</FontSize> |
| | 651 | <FontWeight>700</FontWeight> |
| | 652 | <TextAlign>Center</TextAlign> |
| | 653 | <PaddingLeft>2pt</PaddingLeft> |
| | 654 | <PaddingRight>2pt</PaddingRight> |
| | 655 | <PaddingTop>2pt</PaddingTop> |
| | 656 | <PaddingBottom>2pt</PaddingBottom> |
| | 657 | </Style> |
| | 658 | <ZIndex>19</ZIndex> |
| | 659 | <CanGrow>true</CanGrow> |
| | 660 | <Value>Suma</Value> |
| | 661 | </Textbox> |
| | 662 | </ReportItems> |
| | 663 | </TableCell> |
| | 664 | <TableCell> |
| | 665 | <ReportItems> |
| | 666 | <Textbox Name="textbox16"> |
| | 667 | <rd:DefaultName>textbox16</rd:DefaultName> |
| | 668 | <Style> |
| | 669 | <BackgroundColor>WhiteSmoke</BackgroundColor> |
| | 670 | <BorderColor> |
| | 671 | <Default>LightGrey</Default> |
| | 672 | </BorderColor> |
| | 673 | <BorderStyle> |
| | 674 | <Default>Solid</Default> |
| | 675 | </BorderStyle> |
| | 676 | <BorderWidth> |
| | 677 | <Default>0.5pt</Default> |
| | 678 | </BorderWidth> |
| | 679 | <FontSize>8pt</FontSize> |
| | 680 | <FontWeight>700</FontWeight> |
| | 681 | <TextAlign>Center</TextAlign> |
| | 682 | <PaddingLeft>2pt</PaddingLeft> |
| | 683 | <PaddingRight>2pt</PaddingRight> |
| | 684 | <PaddingTop>2pt</PaddingTop> |
| | 685 | <PaddingBottom>2pt</PaddingBottom> |
| | 686 | </Style> |
| | 687 | <ZIndex>18</ZIndex> |
| | 688 | <CanGrow>true</CanGrow> |
| | 689 | <Value>Rok</Value> |
| | 690 | </Textbox> |
| | 691 | </ReportItems> |
| | 692 | </TableCell> |
| | 693 | <TableCell> |
| | 694 | <ReportItems> |
| | 695 | <Textbox Name="textbox19"> |
| | 696 | <rd:DefaultName>textbox19</rd:DefaultName> |
| | 697 | <Style> |
| | 698 | <BackgroundColor>WhiteSmoke</BackgroundColor> |
| | 699 | <BorderColor> |
| | 700 | <Default>LightGrey</Default> |
| | 701 | </BorderColor> |
| | 702 | <BorderStyle> |
| | 703 | <Default>Solid</Default> |
| | 704 | </BorderStyle> |
| | 705 | <BorderWidth> |
| | 706 | <Default>0.5pt</Default> |
| | 707 | </BorderWidth> |
| | 708 | <FontSize>8pt</FontSize> |
| | 709 | <FontWeight>700</FontWeight> |
| | 710 | <TextAlign>Center</TextAlign> |
| | 711 | <PaddingLeft>2pt</PaddingLeft> |
| | 712 | <PaddingRight>2pt</PaddingRight> |
| | 713 | <PaddingTop>2pt</PaddingTop> |
| | 714 | <PaddingBottom>2pt</PaddingBottom> |
| | 715 | </Style> |
| | 716 | <ZIndex>17</ZIndex> |
| | 717 | <CanGrow>true</CanGrow> |
| | 718 | <Value>KwartaÅ</Value> |
| | 719 | </Textbox> |
| | 720 | </ReportItems> |
| | 721 | </TableCell> |
| | 722 | <TableCell> |
| | 723 | <ReportItems> |
| | 724 | <Textbox Name="textbox22"> |
| | 725 | <rd:DefaultName>textbox22</rd:DefaultName> |
| | 726 | <Style> |
| | 727 | <BackgroundColor>WhiteSmoke</BackgroundColor> |
| | 728 | <BorderColor> |
| | 729 | <Default>LightGrey</Default> |
| | 730 | </BorderColor> |
| | 731 | <BorderStyle> |
| | 732 | <Default>Solid</Default> |
| | 733 | </BorderStyle> |
| | 734 | <BorderWidth> |
| | 735 | <Default>0.5pt</Default> |
| | 736 | </BorderWidth> |
| | 737 | <FontSize>8pt</FontSize> |
| | 738 | <FontWeight>700</FontWeight> |
| | 739 | <TextAlign>Center</TextAlign> |
| | 740 | <PaddingLeft>2pt</PaddingLeft> |
| | 741 | <PaddingRight>2pt</PaddingRight> |
| | 742 | <PaddingTop>2pt</PaddingTop> |
| | 743 | <PaddingBottom>2pt</PaddingBottom> |
| | 744 | </Style> |
| | 745 | <ZIndex>16</ZIndex> |
| | 746 | <CanGrow>true</CanGrow> |
| | 747 | <Value>MiesiÄ |
| | 748 | c</Value> |
| 763 | | <Height>2.63492cm</Height> |
| | 783 | <Footer> |
| | 784 | <TableRows> |
| | 785 | <TableRow> |
| | 786 | <TableCells> |
| | 787 | <TableCell> |
| | 788 | <ReportItems> |
| | 789 | <Textbox Name="textbox7"> |
| | 790 | <rd:DefaultName>textbox7</rd:DefaultName> |
| | 791 | <Style> |
| | 792 | <PaddingLeft>2pt</PaddingLeft> |
| | 793 | <PaddingRight>2pt</PaddingRight> |
| | 794 | <PaddingTop>2pt</PaddingTop> |
| | 795 | <PaddingBottom>2pt</PaddingBottom> |
| | 796 | </Style> |
| | 797 | <ZIndex>15</ZIndex> |
| | 798 | <CanGrow>true</CanGrow> |
| | 799 | <Value /> |
| | 800 | </Textbox> |
| | 801 | </ReportItems> |
| | 802 | </TableCell> |
| | 803 | <TableCell> |
| | 804 | <ReportItems> |
| | 805 | <Textbox Name="textbox8"> |
| | 806 | <rd:DefaultName>textbox8</rd:DefaultName> |
| | 807 | <Style> |
| | 808 | <PaddingLeft>2pt</PaddingLeft> |
| | 809 | <PaddingRight>2pt</PaddingRight> |
| | 810 | <PaddingTop>2pt</PaddingTop> |
| | 811 | <PaddingBottom>2pt</PaddingBottom> |
| | 812 | </Style> |
| | 813 | <ZIndex>14</ZIndex> |
| | 814 | <CanGrow>true</CanGrow> |
| | 815 | <Value /> |
| | 816 | </Textbox> |
| | 817 | </ReportItems> |
| | 818 | </TableCell> |
| | 819 | <TableCell> |
| | 820 | <ReportItems> |
| | 821 | <Textbox Name="textbox12"> |
| | 822 | <rd:DefaultName>textbox12</rd:DefaultName> |
| | 823 | <Style> |
| | 824 | <PaddingLeft>2pt</PaddingLeft> |
| | 825 | <PaddingRight>2pt</PaddingRight> |
| | 826 | <PaddingTop>2pt</PaddingTop> |
| | 827 | <PaddingBottom>2pt</PaddingBottom> |
| | 828 | </Style> |
| | 829 | <ZIndex>13</ZIndex> |
| | 830 | <CanGrow>true</CanGrow> |
| | 831 | <Value /> |
| | 832 | </Textbox> |
| | 833 | </ReportItems> |
| | 834 | </TableCell> |
| | 835 | <TableCell> |
| | 836 | <ReportItems> |
| | 837 | <Textbox Name="textbox9"> |
| | 838 | <rd:DefaultName>textbox9</rd:DefaultName> |
| | 839 | <Style> |
| | 840 | <PaddingLeft>2pt</PaddingLeft> |
| | 841 | <PaddingRight>2pt</PaddingRight> |
| | 842 | <PaddingTop>2pt</PaddingTop> |
| | 843 | <PaddingBottom>2pt</PaddingBottom> |
| | 844 | </Style> |
| | 845 | <ZIndex>12</ZIndex> |
| | 846 | <CanGrow>true</CanGrow> |
| | 847 | <Value /> |
| | 848 | </Textbox> |
| | 849 | </ReportItems> |
| | 850 | </TableCell> |
| | 851 | <TableCell> |
| | 852 | <ReportItems> |
| | 853 | <Textbox Name="textbox15"> |
| | 854 | <rd:DefaultName>textbox15</rd:DefaultName> |
| | 855 | <Style> |
| | 856 | <PaddingLeft>2pt</PaddingLeft> |
| | 857 | <PaddingRight>2pt</PaddingRight> |
| | 858 | <PaddingTop>2pt</PaddingTop> |
| | 859 | <PaddingBottom>2pt</PaddingBottom> |
| | 860 | </Style> |
| | 861 | <ZIndex>11</ZIndex> |
| | 862 | <CanGrow>true</CanGrow> |
| | 863 | <Value /> |
| | 864 | </Textbox> |
| | 865 | </ReportItems> |
| | 866 | </TableCell> |
| | 867 | <TableCell> |
| | 868 | <ReportItems> |
| | 869 | <Textbox Name="textbox18"> |
| | 870 | <rd:DefaultName>textbox18</rd:DefaultName> |
| | 871 | <Style> |
| | 872 | <PaddingLeft>2pt</PaddingLeft> |
| | 873 | <PaddingRight>2pt</PaddingRight> |
| | 874 | <PaddingTop>2pt</PaddingTop> |
| | 875 | <PaddingBottom>2pt</PaddingBottom> |
| | 876 | </Style> |
| | 877 | <ZIndex>10</ZIndex> |
| | 878 | <CanGrow>true</CanGrow> |
| | 879 | <Value /> |
| | 880 | </Textbox> |
| | 881 | </ReportItems> |
| | 882 | </TableCell> |
| | 883 | <TableCell> |
| | 884 | <ReportItems> |
| | 885 | <Textbox Name="textbox21"> |
| | 886 | <rd:DefaultName>textbox21</rd:DefaultName> |
| | 887 | <Style> |
| | 888 | <PaddingLeft>2pt</PaddingLeft> |
| | 889 | <PaddingRight>2pt</PaddingRight> |
| | 890 | <PaddingTop>2pt</PaddingTop> |
| | 891 | <PaddingBottom>2pt</PaddingBottom> |
| | 892 | </Style> |
| | 893 | <ZIndex>9</ZIndex> |
| | 894 | <CanGrow>true</CanGrow> |
| | 895 | <Value /> |
| | 896 | </Textbox> |
| | 897 | </ReportItems> |
| | 898 | </TableCell> |
| | 899 | <TableCell> |
| | 900 | <ReportItems> |
| | 901 | <Textbox Name="textbox24"> |
| | 902 | <rd:DefaultName>textbox24</rd:DefaultName> |
| | 903 | <Style> |
| | 904 | <PaddingLeft>2pt</PaddingLeft> |
| | 905 | <PaddingRight>2pt</PaddingRight> |
| | 906 | <PaddingTop>2pt</PaddingTop> |
| | 907 | <PaddingBottom>2pt</PaddingBottom> |
| | 908 | </Style> |
| | 909 | <ZIndex>8</ZIndex> |
| | 910 | <CanGrow>true</CanGrow> |
| | 911 | <Value /> |
| | 912 | </Textbox> |
| | 913 | </ReportItems> |
| | 914 | </TableCell> |
| | 915 | </TableCells> |
| | 916 | <Height>0.63492cm</Height> |
| | 917 | </TableRow> |
| | 918 | </TableRows> |
| | 919 | </Footer> |