From 7f60b8c87750a1ac2d7ac2a68750c88903897d53 Mon Sep 17 00:00:00 2001 From: Cybervitexus Date: Wed, 13 Nov 2024 20:29:41 +0100 Subject: [PATCH 1/6] Create php.yml --- .github/workflows/php.yml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/php.yml diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml new file mode 100644 index 0000000..7d257b5 --- /dev/null +++ b/.github/workflows/php.yml @@ -0,0 +1,39 @@ +name: PHP Composer + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Validate composer.json and composer.lock + run: composer validate --strict + + - name: Cache Composer packages + id: composer-cache + uses: actions/cache@v3 + with: + path: vendor + key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} + restore-keys: | + ${{ runner.os }}-php- + + - name: Install dependencies + run: composer install --prefer-dist --no-progress + + # Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit" + # Docs: https://getcomposer.org/doc/articles/scripts.md + + # - name: Run test suite + # run: composer run-script test From 8cf40513cd68fcd52f8cede9d81b24101938643f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=C4=9Bzslav=20Dvo=C5=99=C3=A1k?= Date: Wed, 13 Nov 2024 21:20:50 +0100 Subject: [PATCH 2/6] UpdateDependencies --- composer.json | 6 +-- src/mServer/Client.php | 5 +-- src/mServer/Response.php | 12 +++--- tests/src/mServer/ResponseTest.php | 64 +++++++++++++++++++----------- 4 files changed, 53 insertions(+), 34 deletions(-) diff --git a/composer.json b/composer.json index fd6923b..1693e41 100644 --- a/composer.json +++ b/composer.json @@ -941,8 +941,8 @@ "require": { "ext-curl": "*", "ext-iconv": "*", - "goetas-webservices/xsd2php-runtime": "^0.2.16", - "lightools/xml": "v2.0.0", + "goetas-webservices/xsd2php-runtime": "0.2.17", + "lightools/xml": "3.0.0", "riesenia/pohoda": ">=1.5 || dev-master", "vitexsoftware/ease-core": "dev-main", "jms/serializer": "^3.28" @@ -951,7 +951,7 @@ "goetas-webservices/xsd2php": "^0.4.11", "phpunit/phpunit": "*", "phpstan/phpstan": "*", - "friendsofphp/php-cs-fixer": "^3.61", + "friendsofphp/php-cs-fixer": "3.64.0", "ergebnis/composer-normalize": "^2.43", "ergebnis/php-cs-fixer-config": "^6.34" }, diff --git a/src/mServer/Client.php b/src/mServer/Client.php index e469093..a9886ac 100644 --- a/src/mServer/Client.php +++ b/src/mServer/Client.php @@ -427,8 +427,6 @@ public function performRequest($urlSuffix = '', $method = 'POST') /** * Response processing handler. * - * @param int $httpCode - * * @return bool */ public function processResponse(int $httpCode) @@ -436,6 +434,7 @@ public function processResponse(int $httpCode) switch ($httpCode) { case 0: $this->lastResponseMessage = '0: '.$this->lastCurlError; + break; case 400: $this->lastResponseMessage = '400: Bad request'; @@ -494,7 +493,7 @@ public function processResponse(int $httpCode) break; default: - $this->lastResponseMessage = $httpCode . ': ok'; + $this->lastResponseMessage = $httpCode.': ok'; $this->response = new Response($this); // if ($this->response->isOk() === false) { diff --git a/src/mServer/Response.php b/src/mServer/Response.php index ead0a30..ae93f88 100644 --- a/src/mServer/Response.php +++ b/src/mServer/Response.php @@ -148,7 +148,7 @@ public function processResponseData($responseData): void foreach ($responseData as $key => $value) { switch ($key) { case 'lAdb:addressbook': - $this->parsed = $this->processListAddressBook(array_key_exists(0, $value) ? $value : [$value]); + $this->parsed = $this->processListAddressBook(\array_key_exists(0, $value) ? $value : [$value]); break; case 'rdc:producedDetails': @@ -160,7 +160,7 @@ public function processResponseData($responseData): void break; case 'lst:bank': - $this->parsed = $this->processBank(array_key_exists(0, $value) ? $value : [$value]); + $this->parsed = $this->processBank(\array_key_exists(0, $value) ? $value : [$value]); break; case '@version': @@ -475,15 +475,17 @@ public function processBank(array $bank): array foreach ($bank as $bankEntry) { if (\is_array($bankEntry)) { $striped = self::stripArrayNames('bnk', $bankEntry); - if (array_key_exists('bankHeader', $striped)) { + + if (\array_key_exists('bankHeader', $striped)) { $bankItems[$striped['bankHeader']['id']] = $striped; - } elseif (array_key_exists('bankItem', $striped)) { + } elseif (\array_key_exists('bankItem', $striped)) { $bankItems[$striped['bankItem']['id']] = $striped; - } elseif(array_key_exists('id', $striped)) { + } elseif (\array_key_exists('id', $striped)) { $bankItems[$striped['id']] = $striped; } } } + return self::stripArrayNames('typ', $bankItems); } } diff --git a/tests/src/mServer/ResponseTest.php b/tests/src/mServer/ResponseTest.php index 402a7c8..adf3e20 100644 --- a/tests/src/mServer/ResponseTest.php +++ b/tests/src/mServer/ResponseTest.php @@ -20,15 +20,16 @@ /** * Generated by PHPUnit_SkeletonGenerator on 2021-01-01 at 21:47:42. */ -class ResponseTest extends \PHPUnit\Framework\TestCase { - +class ResponseTest extends \PHPUnit\Framework\TestCase +{ protected Response $object; /** * Sets up the fixture, for example, opens a network connection. * This method is called before a test is executed. */ - protected function setUp(): void { + protected function setUp(): void + { $this->object = new Response(); } @@ -36,8 +37,8 @@ protected function setUp(): void { * Tears down the fixture, for example, closes a network connection. * This method is called after a test is executed. */ - protected function tearDown(): void { - + protected function tearDown(): void + { } /** @@ -45,7 +46,8 @@ protected function tearDown(): void { * * @todo Implement testuseCaller(). */ - public function testuseCaller(): void { + public function testuseCaller(): void + { $this->assertEquals('', $this->object->useCaller()); // Remove the following lines when you implement this test. $this->markTestIncomplete('This test has not been implemented yet.'); @@ -56,7 +58,8 @@ public function testuseCaller(): void { * * @todo Implement testprocessResponsePack(). */ - public function testprocessResponsePack(): void { + public function testprocessResponsePack(): void + { $this->assertEquals('', $this->object->processResponsePack()); // Remove the following lines when you implement this test. $this->markTestIncomplete('This test has not been implemented yet.'); @@ -67,7 +70,8 @@ public function testprocessResponsePack(): void { * * @todo Implement testprocessResponsePackItem(). */ - public function testprocessResponsePackItem(): void { + public function testprocessResponsePackItem(): void + { $this->assertEquals('', $this->object->processResponsePackItem()); // Remove the following lines when you implement this test. $this->markTestIncomplete('This test has not been implemented yet.'); @@ -78,7 +82,8 @@ public function testprocessResponsePackItem(): void { * * @todo Implement testprocessProducedDetails(). */ - public function testprocessProducedDetails(): void { + public function testprocessProducedDetails(): void + { $this->assertEquals('', $this->object->processProducedDetails()); // Remove the following lines when you implement this test. $this->markTestIncomplete('This test has not been implemented yet.'); @@ -89,7 +94,8 @@ public function testprocessProducedDetails(): void { * * @todo Implement testprocessImportDetails(). */ - public function testprocessImportDetails(): void { + public function testprocessImportDetails(): void + { $this->assertEquals('', $this->object->processImportDetails()); // Remove the following lines when you implement this test. $this->markTestIncomplete('This test has not been implemented yet.'); @@ -100,7 +106,8 @@ public function testprocessImportDetails(): void { * * @todo Implement testprocessResponseData(). */ - public function testprocessResponseData(): void { + public function testprocessResponseData(): void + { $this->assertEquals('', $this->object->processResponseData()); // Remove the following lines when you implement this test. $this->markTestIncomplete('This test has not been implemented yet.'); @@ -111,7 +118,8 @@ public function testprocessResponseData(): void { * * @todo Implement testtypesToArray(). */ - public function testtypesToArray(): void { + public function testtypesToArray(): void + { $this->assertEquals('', $this->object->typesToArray()); // Remove the following lines when you implement this test. $this->markTestIncomplete('This test has not been implemented yet.'); @@ -122,7 +130,8 @@ public function testtypesToArray(): void { * * @todo Implement testtypeToArray(). */ - public function testtypeToArray(): void { + public function testtypeToArray(): void + { $this->assertEquals('', $this->object->typeToArray()); // Remove the following lines when you implement this test. $this->markTestIncomplete('This test has not been implemented yet.'); @@ -133,7 +142,8 @@ public function testtypeToArray(): void { * * @todo Implement testgetNote(). */ - public function testgetNote(): void { + public function testgetNote(): void + { $this->assertEquals('', $this->object->getNote()); // Remove the following lines when you implement this test. $this->markTestIncomplete('This test has not been implemented yet.'); @@ -144,7 +154,8 @@ public function testgetNote(): void { * * @todo Implement testisOk(). */ - public function testisOk(): void { + public function testisOk(): void + { $this->assertEquals('', $this->object->isOk()); // Remove the following lines when you implement this test. $this->markTestIncomplete('This test has not been implemented yet.'); @@ -155,7 +166,8 @@ public function testisOk(): void { * * @todo Implement testgetState(). */ - public function testgetState(): void { + public function testgetState(): void + { $this->assertEquals('', $this->object->getState()); // Remove the following lines when you implement this test. $this->markTestIncomplete('This test has not been implemented yet.'); @@ -166,7 +178,8 @@ public function testgetState(): void { * * @todo Implement testgetAgendaData(). */ - public function testgetAgendaData(): void { + public function testgetAgendaData(): void + { $this->assertEquals('', $this->object->getAgendaData()); // Remove the following lines when you implement this test. $this->markTestIncomplete('This test has not been implemented yet.'); @@ -177,7 +190,8 @@ public function testgetAgendaData(): void { * * @todo Implement testprepareElement(). */ - public function testprepareElement(): void { + public function testprepareElement(): void + { $this->assertEquals('', $this->object->prepareElement()); // Remove the following lines when you implement this test. $this->markTestIncomplete('This test has not been implemented yet.'); @@ -188,7 +202,8 @@ public function testprepareElement(): void { * * @todo Implement testanyXmlToArray(). */ - public function testanyXmlToArray(): void { + public function testanyXmlToArray(): void + { $this->assertEquals('', $this->object->anyXmlToArray()); // Remove the following lines when you implement this test. $this->markTestIncomplete('This test has not been implemented yet.'); @@ -199,7 +214,8 @@ public function testanyXmlToArray(): void { * * @todo Implement testparse(). */ - public function testparse(): void { + public function testparse(): void + { $this->assertEquals('', $this->object->parse()); // Remove the following lines when you implement this test. $this->markTestIncomplete('This test has not been implemented yet.'); @@ -210,16 +226,18 @@ public function testparse(): void { * * @todo Implement testxmlToArray(). */ - public function testxmlToArray(): void { + public function testxmlToArray(): void + { $this->assertEquals('', $this->object->xmlToArray()); // Remove the following lines when you implement this test. $this->markTestIncomplete('This test has not been implemented yet.'); } - + /** * @covers \mServer\Response::processBank */ - public function testprocessBank() { + public function testprocessBank(): void + { $bankData = '[{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"1"},"bnk:bankType":{"$":"receipt"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB0040001"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"004"},"bnk:numberMovement":{"$":"0001"}},"bnk:symVar":{"$":"230800001"},"bnk:dateStatement":{"$":"2023-05-31"},"bnk:datePayment":{"$":"2023-05-10"},"bnk:accounting":{"typ:id":{"$":"106"},"typ:ids":{"$":"5Bp"}},"bnk:text":{"$":"\u00dahrada VZ c. 230800001"},"bnk:partnerIdentity":{"typ:id":{"$":"21"},"typ:address":{"typ:company":{"$":"ZET s.r.o."},"typ:name":{"$":"Ondrej Mar\u0161\u00edk"},"typ:city":{"$":"Praha 3"},"typ:street":{"$":"Komensk\u00e9ho 78"},"typ:zip":{"$":"130 00"},"typ:ico":{"$":"56541223"},"typ:dic":{"$":"CZ56541223"}}},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:paymentAccount":{"typ:accountNo":{"$":"1071743463"},"typ:bankCode":{"$":"2700"}},"bnk:symConst":{"$":"0308"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"false"}},"bnk:bankDetail":{"bnk:bankItem":{"bnk:text":{"$":"\u00dahrada VZ c. 230800001"},"bnk:homeCurrency":{"bnk:unitPrice":{"$":"10890"}},"bnk:symPar":{"$":"230800001"},"bnk:accounting":{"typ:id":{"$":"106"},"typ:ids":{"$":"5Bp"}}}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"10890"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"2"},"bnk:bankType":{"$":"expense"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB0010002"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"001"},"bnk:numberMovement":{"$":"0002"}},"bnk:symVar":{"$":"165798"},"bnk:dateStatement":{"$":"2023-01-31"},"bnk:datePayment":{"$":"2023-01-15"},"bnk:accounting":{"typ:id":{"$":"110"},"typ:ids":{"$":"2Bv"}},"bnk:text":{"$":"\u00dahrada PZ c. 165798, Prijat\u00e1 z\u00e1lohov\u00e1 faktura od dodavatele"},"bnk:partnerIdentity":{"typ:id":{"$":"7"},"typ:address":{"typ:company":{"$":"AK - Media a. s."},"typ:name":{"$":"Mgr. Ivana Kr\u00e1tk\u00e1"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Masarykovo n\u00e1mest\u00ed 6"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"33044934"},"typ:dic":{"$":"CZ33044934"}}},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:paymentAccount":{"typ:accountNo":{"$":"833645081"},"typ:bankCode":{"$":"0100"}},"bnk:symConst":{"$":"0308"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"false"}},"bnk:bankDetail":{"bnk:bankItem":{"bnk:text":{"$":"\u00dahrada PZ c. 165798"},"bnk:homeCurrency":{"bnk:unitPrice":{"$":"10000"}},"bnk:symPar":{"$":"165798"},"bnk:accounting":{"typ:id":{"$":"110"},"typ:ids":{"$":"2Bv"}}}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"10000"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"3"},"bnk:bankType":{"$":"receipt"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB0040003"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"004"},"bnk:numberMovement":{"$":"0003"}},"bnk:symVar":{"$":"230100006"},"bnk:dateStatement":{"$":"2023-05-31"},"bnk:datePayment":{"$":"2023-05-25"},"bnk:accounting":{"typ:id":{"$":"5"},"typ:ids":{"$":"1Bp"}},"bnk:text":{"$":"\u00dahrada FV c. 230100006"},"bnk:partnerIdentity":{"typ:id":{"$":"13"},"typ:address":{"typ:company":{"$":"INTEAK spol. s r. o."},"typ:division":{"$":"prodejna"},"typ:name":{"$":"David J\u00e1nsk\u00fd"},"typ:city":{"$":"Bene\u0161ovice"},"typ:street":{"$":"Jir\u00edho z Podebrad 35"},"typ:zip":{"$":"463 48"},"typ:ico":{"$":"85236972"},"typ:dic":{"$":"CZ85236972"}}},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:paymentAccount":{"typ:accountNo":{"$":"241271004"},"typ:bankCode":{"$":"2600"}},"bnk:symConst":{"$":"0308"},"bnk:activity":{"typ:id":{"$":"3"},"typ:ids":{"$":"SLU\u017dBY"}},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"false"}},"bnk:bankDetail":{"bnk:bankItem":{"bnk:text":{"$":"\u00dahrada FV c. 230100006"},"bnk:homeCurrency":{"bnk:unitPrice":{"$":"300000"}},"bnk:symPar":{"$":"230100006"},"bnk:accounting":{"typ:id":{"$":"5"},"typ:ids":{"$":"1Bp"}}}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"300000"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"7"},"bnk:bankType":{"$":"receipt"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB0030002"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"003"},"bnk:numberMovement":{"$":"0002"}},"bnk:symVar":{"$":"230100002"},"bnk:dateStatement":{"$":"2023-03-31"},"bnk:datePayment":{"$":"2023-03-17"},"bnk:accounting":{"typ:id":{"$":"5"},"typ:ids":{"$":"1Bp"}},"bnk:text":{"$":"\u00dahrada FV c. 230100002"},"bnk:partnerIdentity":{"typ:id":{"$":"20"},"typ:address":{"typ:company":{"$":"Vladim\u00edr \u0160imek - JIPO"},"typ:name":{"$":"Vladim\u00edr \u0160imek"},"typ:city":{"$":"Brtnice"},"typ:street":{"$":"Zahradn\u00ed 8"},"typ:zip":{"$":"588 32"},"typ:ico":{"$":"74120396"},"typ:dic":{"$":"CZ74120396"}}},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:paymentAccount":{"typ:accountNo":{"$":"19-4660550217"},"typ:bankCode":{"$":"0800"}},"bnk:symConst":{"$":"0308"},"bnk:activity":{"typ:id":{"$":"3"},"typ:ids":{"$":"SLU\u017dBY"}},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"false"}},"bnk:bankDetail":{"bnk:bankItem":{"bnk:text":{"$":"\u00dahrada FV c. 230100002"},"bnk:homeCurrency":{"bnk:unitPrice":{"$":"48073"}},"bnk:symPar":{"$":"230100002"},"bnk:accounting":{"typ:id":{"$":"5"},"typ:ids":{"$":"1Bp"}}}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"48073"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"8"},"bnk:bankType":{"$":"receipt"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB0040002"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"004"},"bnk:numberMovement":{"$":"0002"}},"bnk:symVar":{"$":"230800002"},"bnk:dateStatement":{"$":"2023-05-31"},"bnk:datePayment":{"$":"2023-05-10"},"bnk:accounting":{"typ:id":{"$":"106"},"typ:ids":{"$":"5Bp"}},"bnk:text":{"$":"\u00dahrada VZ c. 230800002"},"bnk:partnerIdentity":{"typ:id":{"$":"7"},"typ:address":{"typ:company":{"$":"AK - Media a. s."},"typ:name":{"$":"Mgr. Ivana Kr\u00e1tk\u00e1"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Masarykovo n\u00e1mest\u00ed 6"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"33044934"},"typ:dic":{"$":"CZ33044934"}}},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:paymentAccount":{"typ:accountNo":{"$":"833645081"},"typ:bankCode":{"$":"0100"}},"bnk:symConst":{"$":"0308"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"false"}},"bnk:bankDetail":{"bnk:bankItem":{"bnk:text":{"$":"\u00dahrada VZ c. 230800002"},"bnk:homeCurrency":{"bnk:unitPrice":{"$":"10000"}},"bnk:symPar":{"$":"230800002"},"bnk:accounting":{"typ:id":{"$":"106"},"typ:ids":{"$":"5Bp"}}}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"10000"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"9"},"bnk:bankType":{"$":"expense"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB0030003"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"003"},"bnk:numberMovement":{"$":"0003"}},"bnk:symVar":{"$":"13223"},"bnk:dateStatement":{"$":"2023-03-31"},"bnk:datePayment":{"$":"2023-03-25"},"bnk:accounting":{"typ:id":{"$":"9"},"typ:ids":{"$":"1Bv"}},"bnk:text":{"$":"\u00dahrada FP c. 13223, Faktura dodavatele"},"bnk:partnerIdentity":{"typ:id":{"$":"13"},"typ:address":{"typ:company":{"$":"INTEAK spol. s r. o."},"typ:division":{"$":"prodejna"},"typ:name":{"$":"David J\u00e1nsk\u00fd"},"typ:city":{"$":"Bene\u0161ovice"},"typ:street":{"$":"Jir\u00edho z Podebrad 35"},"typ:zip":{"$":"463 48"},"typ:ico":{"$":"85236972"},"typ:dic":{"$":"CZ85236972"}}},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:paymentAccount":{"typ:accountNo":{"$":"241271004"},"typ:bankCode":{"$":"2600"}},"bnk:symConst":{"$":"0308"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"false"}},"bnk:bankDetail":{"bnk:bankItem":{"bnk:text":{"$":"\u00dahrada FP c. 13223"},"bnk:homeCurrency":{"bnk:unitPrice":{"$":"160325"}},"bnk:symPar":{"$":"13223"},"bnk:accounting":{"typ:id":{"$":"9"},"typ:ids":{"$":"1Bv"}}}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"160325"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"10"},"bnk:bankType":{"$":"receipt"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB0030001"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"003"},"bnk:numberMovement":{"$":"0001"}},"bnk:dateStatement":{"$":"2023-03-31"},"bnk:datePayment":{"$":"2023-03-12"},"bnk:accounting":{"typ:id":{"$":"6"},"typ:ids":{"$":"2Bp"}},"bnk:text":{"$":"Prevod hotovosti z pokladny"},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:symConst":{"$":"0308"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"false"}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"30000"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"11"},"bnk:bankType":{"$":"receipt"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:statementNumber":{"bnk:statementNumber":[]},"bnk:dateStatement":{"$":"2023-01-01"},"bnk:datePayment":{"$":"2023-01-01"},"bnk:accounting":{"typ:id":{"$":"3"},"typ:ids":{"$":"Bez"},"typ:accountingType":{"$":"withoutAccounting"}},"bnk:text":{"$":"Poc\u00e1tecn\u00ed stav \u00factu"},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:symConst":{"$":"0308"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"false"}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"162804"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"12"},"bnk:bankType":{"$":"receipt"},"bnk:account":{"typ:id":{"$":"4"},"typ:ids":{"$":"CSOB"}},"bnk:statementNumber":{"bnk:statementNumber":[]},"bnk:dateStatement":{"$":"2023-01-01"},"bnk:datePayment":{"$":"2023-01-01"},"bnk:accounting":{"typ:id":{"$":"3"},"typ:ids":{"$":"Bez"},"typ:accountingType":{"$":"withoutAccounting"}},"bnk:text":{"$":"Poc\u00e1tecn\u00ed stav \u00factu"},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:symConst":{"$":"0308"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"false"}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"57048.48"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}},"bnk:foreignCurrency":{"typ:currency":{"typ:id":{"$":"9"},"typ:ids":{"$":"EUR"}},"typ:rate":{"$":"27.68"},"typ:amount":{"$":"1"},"typ:priceSum":{"$":"2061"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"14"},"bnk:bankType":{"$":"expense"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB0010001"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"001"},"bnk:numberMovement":{"$":"0001"}},"bnk:symVar":{"$":"1343101218"},"bnk:dateStatement":{"$":"2023-01-31"},"bnk:datePayment":{"$":"2023-01-02"},"bnk:accounting":{"typ:id":{"$":"147"},"typ:ids":{"$":"dBv"}},"bnk:text":{"$":"\u00dahrada OZ c. 1343101218, Leasingov\u00e1 spl\u00e1tka - \u0160koda Octavia"},"bnk:partnerIdentity":{"typ:id":{"$":"19"},"typ:address":{"typ:company":{"$":"\u0160kofin a. s."},"typ:name":{"$":"Jan B\u00e1rta"},"typ:city":{"$":"Praha 10"},"typ:street":{"$":"Masarykova tr\u00edda 15"},"typ:zip":{"$":"100 00"},"typ:ico":{"$":"18876630"},"typ:dic":{"$":"CZ18876630"}}},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:paymentAccount":{"typ:accountNo":{"$":"125679504"},"typ:bankCode":{"$":"0100"}},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"false"}},"bnk:bankDetail":{"bnk:bankItem":{"bnk:text":{"$":"\u00dahrada OZ c. 1343101218"},"bnk:homeCurrency":{"bnk:unitPrice":{"$":"10915"}},"bnk:symPar":{"$":"1343101218"},"bnk:accounting":{"typ:id":{"$":"147"},"typ:ids":{"$":"dBv"}}}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"10915"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"15"},"bnk:bankType":{"$":"expense"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB0010003"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"001"},"bnk:numberMovement":{"$":"0003"}},"bnk:dateStatement":{"$":"2023-01-31"},"bnk:datePayment":{"$":"2023-01-31"},"bnk:accounting":{"typ:id":{"$":"13"},"typ:ids":{"$":"4Bv"}},"bnk:text":{"$":"Poplatky za veden\u00ed \u00factu"},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:symConst":{"$":"0308"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"false"}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"250"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"16"},"bnk:bankType":{"$":"receipt"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB0010004"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"001"},"bnk:numberMovement":{"$":"0004"}},"bnk:dateStatement":{"$":"2023-01-31"},"bnk:datePayment":{"$":"2023-01-31"},"bnk:accounting":{"typ:id":{"$":"7"},"typ:ids":{"$":"3Bp"}},"bnk:text":{"$":"Pripsan\u00e9 \u00faroky"},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:symConst":{"$":"0308"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"false"}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"178.96"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"17"},"bnk:bankType":{"$":"expense"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB0020001"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"002"},"bnk:numberMovement":{"$":"0001"}},"bnk:symVar":{"$":"1343101218"},"bnk:dateStatement":{"$":"2023-02-28"},"bnk:datePayment":{"$":"2023-02-01"},"bnk:accounting":{"typ:id":{"$":"147"},"typ:ids":{"$":"dBv"}},"bnk:text":{"$":"\u00dahrada OZ c. 1343101218, Leasingov\u00e1 spl\u00e1tka - \u0160koda Octavia"},"bnk:partnerIdentity":{"typ:id":{"$":"19"},"typ:address":{"typ:company":{"$":"\u0160kofin a. s."},"typ:name":{"$":"Jan B\u00e1rta"},"typ:city":{"$":"Praha 10"},"typ:street":{"$":"Masarykova tr\u00edda 15"},"typ:zip":{"$":"100 00"},"typ:ico":{"$":"18876630"},"typ:dic":{"$":"CZ18876630"}}},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:paymentAccount":{"typ:accountNo":{"$":"125679504"},"typ:bankCode":{"$":"0100"}},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"false"}},"bnk:bankDetail":{"bnk:bankItem":{"bnk:text":{"$":"\u00dahrada OZ c. 1343101218"},"bnk:homeCurrency":{"bnk:unitPrice":{"$":"10915"}},"bnk:symPar":{"$":"1343101218"},"bnk:accounting":{"typ:id":{"$":"147"},"typ:ids":{"$":"dBv"}}}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"10915"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"18"},"bnk:bankType":{"$":"expense"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB0020002"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"002"},"bnk:numberMovement":{"$":"0002"}},"bnk:dateStatement":{"$":"2023-02-28"},"bnk:datePayment":{"$":"2023-02-28"},"bnk:accounting":{"typ:id":{"$":"11"},"typ:ids":{"$":"8Bv"}},"bnk:text":{"$":"Banka v\u00fddej"},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:symConst":{"$":"0308"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"false"}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"3860"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"22"},"bnk:bankType":{"$":"expense"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB92024"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"9"},"bnk:numberMovement":{"$":"2024"}},"bnk:dateStatement":{"$":"2024-09-10"},"bnk:datePayment":{"$":"2024-09-10"},"bnk:accounting":{"typ:id":{"$":"9"},"typ:ids":{"$":"1Bv"}},"bnk:text":{"$":"770871 INKASO 4861\/23\/021\/SME\/PRP"},"bnk:partnerIdentity":{"typ:address":{"typ:name":{"$":"Loan Repayment Comp."}}},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:paymentAccount":{"typ:accountNo":{"$":"6430089575"},"typ:bankCode":{"$":"5500"}},"bnk:symPar":{"$":"6727959302"},"bnk:note":{"$":"Imported by Pohoda RaiffeisenBank Statements dev-main"},"bnk:intNote":{"$":"Import Job 109765"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"true"}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"41805.55"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"24"},"bnk:bankType":{"$":"expense"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB92024"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"9"},"bnk:numberMovement":{"$":"2024"}},"bnk:dateStatement":{"$":"2024-09-10"},"bnk:datePayment":{"$":"2024-09-10"},"bnk:accounting":{"typ:id":{"$":"9"},"typ:ids":{"$":"1Bv"}},"bnk:text":{"$":"770871 INKASO 4861\/23\/021\/SME\/PRP"},"bnk:partnerIdentity":{"typ:address":{"typ:name":{"$":"Loan Repayment Comp."}}},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:paymentAccount":{"typ:accountNo":{"$":"6430089575"},"typ:bankCode":{"$":"5500"}},"bnk:symPar":{"$":"6727959302"},"bnk:note":{"$":"Imported by Pohoda RaiffeisenBank Statements dev-main"},"bnk:intNote":{"$":"Import Job 109765"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"true"}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"41805.55"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"25"},"bnk:bankType":{"$":"expense"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB92024"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"9"},"bnk:numberMovement":{"$":"2024"}},"bnk:dateStatement":{"$":"2024-09-10"},"bnk:datePayment":{"$":"2024-09-10"},"bnk:accounting":{"typ:id":{"$":"9"},"typ:ids":{"$":"1Bv"}},"bnk:text":{"$":"770871 INKASO 4861\/23\/021\/SME\/PRP"},"bnk:partnerIdentity":{"typ:address":{"typ:name":{"$":"Loan Repayment Comp."}}},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:paymentAccount":{"typ:accountNo":{"$":"6430089575"},"typ:bankCode":{"$":"5500"}},"bnk:symPar":{"$":"6727959302"},"bnk:note":{"$":"Imported by Pohoda RaiffeisenBank Statements dev-main"},"bnk:intNote":{"$":"Import Job 109765"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"true"}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"41805.55"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"26"},"bnk:bankType":{"$":"expense"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB92024"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"9"},"bnk:numberMovement":{"$":"2024"}},"bnk:dateStatement":{"$":"2024-09-10"},"bnk:datePayment":{"$":"2024-09-10"},"bnk:accounting":{"typ:id":{"$":"9"},"typ:ids":{"$":"1Bv"}},"bnk:text":{"$":"770871 INKASO 4861\/23\/021\/SME\/PRP"},"bnk:partnerIdentity":{"typ:address":{"typ:name":{"$":"Loan Repayment Comp."}}},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:paymentAccount":{"typ:accountNo":{"$":"6430089575"},"typ:bankCode":{"$":"5500"}},"bnk:symPar":{"$":"6727959302"},"bnk:note":{"$":"Imported by Pohoda RaiffeisenBank Statements dev-main"},"bnk:intNote":{"$":"Import Job 109765"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"true"}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"41805.55"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"27"},"bnk:bankType":{"$":"receipt"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB92024"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"9"},"bnk:numberMovement":{"$":"2024"}},"bnk:symVar":{"$":"178282024"},"bnk:dateStatement":{"$":"2024-09-11"},"bnk:datePayment":{"$":"2024-09-11"},"bnk:accounting":{"typ:id":{"$":"5"},"typ:ids":{"$":"1Bp"}},"bnk:text":{"$":"LICENCE MICROSOFT 365 - OD 28.7.2024 DO 27.8.2024"},"bnk:partnerIdentity":{"typ:address":{"typ:name":{"$":"ALA SENSORS s.r.o."}}},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:paymentAccount":{"typ:accountNo":{"$":"213085319"},"typ:bankCode":{"$":"0800"}},"bnk:symConst":{"$":"0"},"bnk:symPar":{"$":"6735349568"},"bnk:note":{"$":"Imported by Pohoda RaiffeisenBank Statements dev-main"},"bnk:intNote":{"$":"Import Job 109765"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"true"}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"629.2"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"28"},"bnk:bankType":{"$":"receipt"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB92024"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"9"},"bnk:numberMovement":{"$":"2024"}},"bnk:symVar":{"$":"178342024"},"bnk:dateStatement":{"$":"2024-09-16"},"bnk:datePayment":{"$":"2024-09-16"},"bnk:accounting":{"typ:id":{"$":"5"},"typ:ids":{"$":"1Bp"}},"bnk:text":{"$":"MICROSOFT 365 - LICENCE - BUSINESSBASIC - 6.7.2024 - 5.8.20"},"bnk:partnerIdentity":{"typ:address":{"typ:name":{"$":"Search Executive s.r"}}},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:paymentAccount":{"typ:accountNo":{"$":"6147519349"},"typ:bankCode":{"$":"0800"}},"bnk:symConst":{"$":"0"},"bnk:symPar":{"$":"6752122886"},"bnk:note":{"$":"Imported by Pohoda RaiffeisenBank Statements dev-main"},"bnk:intNote":{"$":"Import Job 109765"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"true"}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"629.2"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"29"},"bnk:bankType":{"$":"receipt"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB92024"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"9"},"bnk:numberMovement":{"$":"2024"}},"bnk:symVar":{"$":"178322024"},"bnk:dateStatement":{"$":"2024-09-17"},"bnk:datePayment":{"$":"2024-09-17"},"bnk:accounting":{"typ:id":{"$":"5"},"typ:ids":{"$":"1Bp"}},"bnk:text":{"$":"MICROSOFT 365 - LICENCE - 6.7.2024 - 5.8.2024"},"bnk:partnerIdentity":{"typ:address":{"typ:name":{"$":"MAH s.r.o."}}},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:paymentAccount":{"typ:accountNo":{"$":"2096097036"},"typ:bankCode":{"$":"5500"}},"bnk:symPar":{"$":"6755907208"},"bnk:note":{"$":"Imported by Pohoda RaiffeisenBank Statements dev-main"},"bnk:intNote":{"$":"Import Job 109765"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"true"}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"968"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"30"},"bnk:bankType":{"$":"receipt"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB92024"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"9"},"bnk:numberMovement":{"$":"2024"}},"bnk:symVar":{"$":"177922024"},"bnk:dateStatement":{"$":"2024-09-17"},"bnk:datePayment":{"$":"2024-09-17"},"bnk:accounting":{"typ:id":{"$":"5"},"typ:ids":{"$":"1Bp"}},"bnk:text":{"$":"2024\/07 IT"},"bnk:partnerIdentity":{"typ:address":{"typ:name":{"$":"propoj\u00edme s.r.o."}}},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:paymentAccount":{"typ:accountNo":{"$":"6260979339"},"typ:bankCode":{"$":"0800"}},"bnk:symConst":{"$":"0"},"bnk:symPar":{"$":"6755995098"},"bnk:note":{"$":"Imported by Pohoda RaiffeisenBank Statements dev-main"},"bnk:intNote":{"$":"Import Job 109765"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"true"}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"1452"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"31"},"bnk:bankType":{"$":"receipt"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB92024"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"9"},"bnk:numberMovement":{"$":"2024"}},"bnk:symVar":{"$":"178142024"},"bnk:dateStatement":{"$":"2024-09-18"},"bnk:datePayment":{"$":"2024-09-18"},"bnk:accounting":{"typ:id":{"$":"5"},"typ:ids":{"$":"1Bp"}},"bnk:text":{"$":"Import BV z XML"},"bnk:partnerIdentity":{"typ:address":{"typ:name":{"$":"DARAMIS MANAGEMENT s"}}},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:paymentAccount":{"typ:accountNo":{"$":"5140016517"},"typ:bankCode":{"$":"5500"}},"bnk:symConst":{"$":"0308"},"bnk:symPar":{"$":"6759647789"},"bnk:note":{"$":"Imported by Pohoda RaiffeisenBank Statements dev-main"},"bnk:intNote":{"$":"Import Job 109765"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"true"}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"4840"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"32"},"bnk:bankType":{"$":"receipt"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB92024"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"9"},"bnk:numberMovement":{"$":"2024"}},"bnk:symVar":{"$":"178352024"},"bnk:dateStatement":{"$":"2024-09-18"},"bnk:datePayment":{"$":"2024-09-18"},"bnk:accounting":{"typ:id":{"$":"5"},"typ:ids":{"$":"1Bp"}},"bnk:text":{"$":"Import BV z XML"},"bnk:partnerIdentity":{"typ:address":{"typ:name":{"$":"VYDAVATELSTV\u00cd V\u00cdKEND"}}},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:paymentAccount":{"typ:accountNo":{"$":"27-9230970257"},"typ:bankCode":{"$":"0100"}},"bnk:symConst":{"$":"308"},"bnk:symPar":{"$":"6759849693"},"bnk:note":{"$":"Imported by Pohoda RaiffeisenBank Statements dev-main"},"bnk:intNote":{"$":"Import Job 109765"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"true"}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"484"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"33"},"bnk:bankType":{"$":"receipt"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB92024"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"9"},"bnk:numberMovement":{"$":"2024"}},"bnk:symVar":{"$":"178312024"},"bnk:dateStatement":{"$":"2024-09-24"},"bnk:datePayment":{"$":"2024-09-24"},"bnk:accounting":{"typ:id":{"$":"5"},"typ:ids":{"$":"1Bp"}},"bnk:text":{"$":"MICROSOFT 365 - LICENCE - BUSINESSSTANDARD - 23.7.2024 - 22"},"bnk:partnerIdentity":{"typ:address":{"typ:name":{"$":"Ing.arch.Hoffman Pat"}}},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:paymentAccount":{"typ:accountNo":{"$":"148665359"},"typ:bankCode":{"$":"0800"}},"bnk:symConst":{"$":"0308"},"bnk:symPar":{"$":"6777237432"},"bnk:note":{"$":"Imported by Pohoda RaiffeisenBank Statements dev-main"},"bnk:intNote":{"$":"Import Job 109765"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"true"}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"2613.6"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"34"},"bnk:bankType":{"$":"receipt"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB92024"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"9"},"bnk:numberMovement":{"$":"2024"}},"bnk:symVar":{"$":"178332024"},"bnk:dateStatement":{"$":"2024-09-29"},"bnk:datePayment":{"$":"2024-09-29"},"bnk:accounting":{"typ:id":{"$":"5"},"typ:ids":{"$":"1Bp"}},"bnk:text":{"$":"LICENCE MICROSOFT 365 - 08\/2024"},"bnk:partnerIdentity":{"typ:address":{"typ:name":{"$":"MFD Management s.r.o"}}},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:paymentAccount":{"typ:accountNo":{"$":"6346517389"},"typ:bankCode":{"$":"0800"}},"bnk:symConst":{"$":"0"},"bnk:symPar":{"$":"6790917961"},"bnk:note":{"$":"Imported by Pohoda RaiffeisenBank Statements dev-main"},"bnk:intNote":{"$":"Import Job 109765"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"false"}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"1282.6"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"35"},"bnk:bankType":{"$":"receipt"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB92024"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"9"},"bnk:numberMovement":{"$":"2024"}},"bnk:symVar":{"$":"178322024"},"bnk:dateStatement":{"$":"2024-09-30"},"bnk:datePayment":{"$":"2024-09-30"},"bnk:accounting":{"typ:id":{"$":"5"},"typ:ids":{"$":"1Bp"}},"bnk:text":{"$":"MICROSOFT 365 - LICENCE - 6.7.2024 - 5.8.2024"},"bnk:partnerIdentity":{"typ:address":{"typ:name":{"$":"DETOMO GROUP s.r.o."}}},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:paymentAccount":{"typ:accountNo":{"$":"1041063002"},"typ:bankCode":{"$":"5500"}},"bnk:symPar":{"$":"6793077926"},"bnk:note":{"$":"Imported by Pohoda RaiffeisenBank Statements dev-main"},"bnk:intNote":{"$":"Import Job 109765"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"true"}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"968"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"36"},"bnk:bankType":{"$":"expense"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB92024"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"9"},"bnk:numberMovement":{"$":"2024"}},"bnk:dateStatement":{"$":"2024-09-30"},"bnk:datePayment":{"$":"2024-09-30"},"bnk:accounting":{"typ:id":{"$":"9"},"typ:ids":{"$":"1Bv"}},"bnk:text":{"$":"Souhrnn\u00e1 polo\u017eka k \u00factu 2800061687."},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:symConst":{"$":"898"},"bnk:symPar":{"$":"6794732023"},"bnk:note":{"$":"Imported by Pohoda RaiffeisenBank Statements dev-main"},"bnk:intNote":{"$":"Import Job 109765"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"true"}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"99"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"37"},"bnk:bankType":{"$":"expense"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB92024"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"9"},"bnk:numberMovement":{"$":"2024"}},"bnk:dateStatement":{"$":"2024-09-30"},"bnk:datePayment":{"$":"2024-09-30"},"bnk:accounting":{"typ:id":{"$":"9"},"typ:ids":{"$":"1Bv"}},"bnk:text":{"$":"\u00darok 09\/2024"},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:symConst":{"$":"598"},"bnk:symPar":{"$":"6795564214"},"bnk:note":{"$":"Imported by Pohoda RaiffeisenBank Statements dev-main"},"bnk:intNote":{"$":"Import Job 109765"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"true"}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"1669.56"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}},{"@version":"2.0","bnk:bankHeader":{"bnk:id":{"$":"38"},"bnk:bankType":{"$":"expense"},"bnk:account":{"typ:id":{"$":"2"},"typ:ids":{"$":"KB"}},"bnk:number":{"$":"KB92024"},"bnk:statementNumber":{"bnk:statementNumber":{"$":"9"},"bnk:numberMovement":{"$":"2024"}},"bnk:dateStatement":{"$":"2024-09-30"},"bnk:datePayment":{"$":"2024-09-30"},"bnk:accounting":{"typ:id":{"$":"9"},"typ:ids":{"$":"1Bv"}},"bnk:text":{"$":"\u00darok 09\/2024"},"bnk:myIdentity":{"typ:address":{"typ:company":{"$":"Nov\u00e1k"},"typ:surname":{"$":"Nov\u00e1k"},"typ:name":{"$":"Jan"},"typ:city":{"$":"Jihlava 1"},"typ:street":{"$":"Horn\u00ed"},"typ:number":{"$":"15"},"typ:zip":{"$":"586 01"},"typ:ico":{"$":"12345678"},"typ:dic":{"$":"CZ12345678"},"typ:phone":{"$":"569 876 542"},"typ:mobilPhone":{"$":"602 852 369"},"typ:fax":{"$":"564 563 216"},"typ:email":{"$":"info@novak.cz"},"typ:www":{"$":"www.novak.cz"}}},"bnk:symConst":{"$":"898"},"bnk:symPar":{"$":"6795566057"},"bnk:note":{"$":"Imported by Pohoda RaiffeisenBank Statements dev-main"},"bnk:intNote":{"$":"Import Job 109765"},"bnk:lock2":{"$":"false"},"bnk:markRecord":{"$":"true"}},"bnk:bankSummary":{"bnk:roundingDocument":{"$":"none"},"bnk:roundingVAT":{"$":"none"},"bnk:homeCurrency":{"typ:priceNone":{"$":"15.84"},"typ:priceLow":{"$":"0"},"typ:priceLowVAT":{"@rate":"15","$":"0"},"typ:priceLowSum":{"$":"0"},"typ:priceHigh":{"$":"0"},"typ:priceHighVAT":{"@rate":"21","$":"0"},"typ:priceHighSum":{"$":"0"},"typ:price3":{"$":"0"},"typ:price3VAT":{"@rate":"10","$":"0"},"typ:price3Sum":{"$":"0"},"typ:round":{"typ:priceRound":{"$":"0"}}}}}]'; $processedData = '{"1":{"@version":"2.0","bankHeader":{"id":"1","bankType":"receipt","account":{"id":"2","ids":"KB"},"number":"KB0040001","statementNumber":{"statementNumber":"004","numberMovement":"0001"},"symVar":"230800001","dateStatement":"2023-05-31","datePayment":"2023-05-10","accounting":{"id":"106","ids":"5Bp"},"text":"\u00dahrada VZ c. 230800001","partnerIdentity":{"id":"21","address":{"company":"ZET s.r.o.","name":"Ondrej Mar\u0161\u00edk","city":"Praha 3","street":"Komensk\u00e9ho 78","zip":"130 00","ico":"56541223","dic":"CZ56541223"}},"myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"paymentAccount":{"accountNo":"1071743463","bankCode":"2700"},"symConst":"0308","lock2":"false","markRecord":"false"},"bankDetail":{"bankItem":{"text":"\u00dahrada VZ c. 230800001","homeCurrency":{"unitPrice":"10890"},"symPar":"230800001","accounting":{"id":"106","ids":"5Bp"}}},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"10890","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"2":{"@version":"2.0","bankHeader":{"id":"2","bankType":"expense","account":{"id":"2","ids":"KB"},"number":"KB0010002","statementNumber":{"statementNumber":"001","numberMovement":"0002"},"symVar":"165798","dateStatement":"2023-01-31","datePayment":"2023-01-15","accounting":{"id":"110","ids":"2Bv"},"text":"\u00dahrada PZ c. 165798, Prijat\u00e1 z\u00e1lohov\u00e1 faktura od dodavatele","partnerIdentity":{"id":"7","address":{"company":"AK - Media a. s.","name":"Mgr. Ivana Kr\u00e1tk\u00e1","city":"Jihlava 1","street":"Masarykovo n\u00e1mest\u00ed 6","zip":"586 01","ico":"33044934","dic":"CZ33044934"}},"myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"paymentAccount":{"accountNo":"833645081","bankCode":"0100"},"symConst":"0308","lock2":"false","markRecord":"false"},"bankDetail":{"bankItem":{"text":"\u00dahrada PZ c. 165798","homeCurrency":{"unitPrice":"10000"},"symPar":"165798","accounting":{"id":"110","ids":"2Bv"}}},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"10000","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"3":{"@version":"2.0","bankHeader":{"id":"3","bankType":"receipt","account":{"id":"2","ids":"KB"},"number":"KB0040003","statementNumber":{"statementNumber":"004","numberMovement":"0003"},"symVar":"230100006","dateStatement":"2023-05-31","datePayment":"2023-05-25","accounting":{"id":"5","ids":"1Bp"},"text":"\u00dahrada FV c. 230100006","partnerIdentity":{"id":"13","address":{"company":"INTEAK spol. s r. o.","division":"prodejna","name":"David J\u00e1nsk\u00fd","city":"Bene\u0161ovice","street":"Jir\u00edho z Podebrad 35","zip":"463 48","ico":"85236972","dic":"CZ85236972"}},"myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"paymentAccount":{"accountNo":"241271004","bankCode":"2600"},"symConst":"0308","activity":{"id":"3","ids":"SLU\u017dBY"},"lock2":"false","markRecord":"false"},"bankDetail":{"bankItem":{"text":"\u00dahrada FV c. 230100006","homeCurrency":{"unitPrice":"300000"},"symPar":"230100006","accounting":{"id":"5","ids":"1Bp"}}},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"300000","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"7":{"@version":"2.0","bankHeader":{"id":"7","bankType":"receipt","account":{"id":"2","ids":"KB"},"number":"KB0030002","statementNumber":{"statementNumber":"003","numberMovement":"0002"},"symVar":"230100002","dateStatement":"2023-03-31","datePayment":"2023-03-17","accounting":{"id":"5","ids":"1Bp"},"text":"\u00dahrada FV c. 230100002","partnerIdentity":{"id":"20","address":{"company":"Vladim\u00edr \u0160imek - JIPO","name":"Vladim\u00edr \u0160imek","city":"Brtnice","street":"Zahradn\u00ed 8","zip":"588 32","ico":"74120396","dic":"CZ74120396"}},"myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"paymentAccount":{"accountNo":"19-4660550217","bankCode":"0800"},"symConst":"0308","activity":{"id":"3","ids":"SLU\u017dBY"},"lock2":"false","markRecord":"false"},"bankDetail":{"bankItem":{"text":"\u00dahrada FV c. 230100002","homeCurrency":{"unitPrice":"48073"},"symPar":"230100002","accounting":{"id":"5","ids":"1Bp"}}},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"48073","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"8":{"@version":"2.0","bankHeader":{"id":"8","bankType":"receipt","account":{"id":"2","ids":"KB"},"number":"KB0040002","statementNumber":{"statementNumber":"004","numberMovement":"0002"},"symVar":"230800002","dateStatement":"2023-05-31","datePayment":"2023-05-10","accounting":{"id":"106","ids":"5Bp"},"text":"\u00dahrada VZ c. 230800002","partnerIdentity":{"id":"7","address":{"company":"AK - Media a. s.","name":"Mgr. Ivana Kr\u00e1tk\u00e1","city":"Jihlava 1","street":"Masarykovo n\u00e1mest\u00ed 6","zip":"586 01","ico":"33044934","dic":"CZ33044934"}},"myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"paymentAccount":{"accountNo":"833645081","bankCode":"0100"},"symConst":"0308","lock2":"false","markRecord":"false"},"bankDetail":{"bankItem":{"text":"\u00dahrada VZ c. 230800002","homeCurrency":{"unitPrice":"10000"},"symPar":"230800002","accounting":{"id":"106","ids":"5Bp"}}},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"10000","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"9":{"@version":"2.0","bankHeader":{"id":"9","bankType":"expense","account":{"id":"2","ids":"KB"},"number":"KB0030003","statementNumber":{"statementNumber":"003","numberMovement":"0003"},"symVar":"13223","dateStatement":"2023-03-31","datePayment":"2023-03-25","accounting":{"id":"9","ids":"1Bv"},"text":"\u00dahrada FP c. 13223, Faktura dodavatele","partnerIdentity":{"id":"13","address":{"company":"INTEAK spol. s r. o.","division":"prodejna","name":"David J\u00e1nsk\u00fd","city":"Bene\u0161ovice","street":"Jir\u00edho z Podebrad 35","zip":"463 48","ico":"85236972","dic":"CZ85236972"}},"myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"paymentAccount":{"accountNo":"241271004","bankCode":"2600"},"symConst":"0308","lock2":"false","markRecord":"false"},"bankDetail":{"bankItem":{"text":"\u00dahrada FP c. 13223","homeCurrency":{"unitPrice":"160325"},"symPar":"13223","accounting":{"id":"9","ids":"1Bv"}}},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"160325","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"10":{"@version":"2.0","bankHeader":{"id":"10","bankType":"receipt","account":{"id":"2","ids":"KB"},"number":"KB0030001","statementNumber":{"statementNumber":"003","numberMovement":"0001"},"dateStatement":"2023-03-31","datePayment":"2023-03-12","accounting":{"id":"6","ids":"2Bp"},"text":"Prevod hotovosti z pokladny","myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"symConst":"0308","lock2":"false","markRecord":"false"},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"30000","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"11":{"@version":"2.0","bankHeader":{"id":"11","bankType":"receipt","account":{"id":"2","ids":"KB"},"statementNumber":{"statementNumber":[]},"dateStatement":"2023-01-01","datePayment":"2023-01-01","accounting":{"id":"3","ids":"Bez","accountingType":"withoutAccounting"},"text":"Poc\u00e1tecn\u00ed stav \u00factu","myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"symConst":"0308","lock2":"false","markRecord":"false"},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"162804","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"12":{"@version":"2.0","bankHeader":{"id":"12","bankType":"receipt","account":{"id":"4","ids":"CSOB"},"statementNumber":{"statementNumber":[]},"dateStatement":"2023-01-01","datePayment":"2023-01-01","accounting":{"id":"3","ids":"Bez","accountingType":"withoutAccounting"},"text":"Poc\u00e1tecn\u00ed stav \u00factu","myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"symConst":"0308","lock2":"false","markRecord":"false"},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"57048.48","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}},"foreignCurrency":{"currency":{"id":"9","ids":"EUR"},"rate":"27.68","amount":"1","priceSum":"2061","round":{"priceRound":"0"}}}},"14":{"@version":"2.0","bankHeader":{"id":"14","bankType":"expense","account":{"id":"2","ids":"KB"},"number":"KB0010001","statementNumber":{"statementNumber":"001","numberMovement":"0001"},"symVar":"1343101218","dateStatement":"2023-01-31","datePayment":"2023-01-02","accounting":{"id":"147","ids":"dBv"},"text":"\u00dahrada OZ c. 1343101218, Leasingov\u00e1 spl\u00e1tka - \u0160koda Octavia","partnerIdentity":{"id":"19","address":{"company":"\u0160kofin a. s.","name":"Jan B\u00e1rta","city":"Praha 10","street":"Masarykova tr\u00edda 15","zip":"100 00","ico":"18876630","dic":"CZ18876630"}},"myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"paymentAccount":{"accountNo":"125679504","bankCode":"0100"},"lock2":"false","markRecord":"false"},"bankDetail":{"bankItem":{"text":"\u00dahrada OZ c. 1343101218","homeCurrency":{"unitPrice":"10915"},"symPar":"1343101218","accounting":{"id":"147","ids":"dBv"}}},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"10915","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"15":{"@version":"2.0","bankHeader":{"id":"15","bankType":"expense","account":{"id":"2","ids":"KB"},"number":"KB0010003","statementNumber":{"statementNumber":"001","numberMovement":"0003"},"dateStatement":"2023-01-31","datePayment":"2023-01-31","accounting":{"id":"13","ids":"4Bv"},"text":"Poplatky za veden\u00ed \u00factu","myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"symConst":"0308","lock2":"false","markRecord":"false"},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"250","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"16":{"@version":"2.0","bankHeader":{"id":"16","bankType":"receipt","account":{"id":"2","ids":"KB"},"number":"KB0010004","statementNumber":{"statementNumber":"001","numberMovement":"0004"},"dateStatement":"2023-01-31","datePayment":"2023-01-31","accounting":{"id":"7","ids":"3Bp"},"text":"Pripsan\u00e9 \u00faroky","myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"symConst":"0308","lock2":"false","markRecord":"false"},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"178.96","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"17":{"@version":"2.0","bankHeader":{"id":"17","bankType":"expense","account":{"id":"2","ids":"KB"},"number":"KB0020001","statementNumber":{"statementNumber":"002","numberMovement":"0001"},"symVar":"1343101218","dateStatement":"2023-02-28","datePayment":"2023-02-01","accounting":{"id":"147","ids":"dBv"},"text":"\u00dahrada OZ c. 1343101218, Leasingov\u00e1 spl\u00e1tka - \u0160koda Octavia","partnerIdentity":{"id":"19","address":{"company":"\u0160kofin a. s.","name":"Jan B\u00e1rta","city":"Praha 10","street":"Masarykova tr\u00edda 15","zip":"100 00","ico":"18876630","dic":"CZ18876630"}},"myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"paymentAccount":{"accountNo":"125679504","bankCode":"0100"},"lock2":"false","markRecord":"false"},"bankDetail":{"bankItem":{"text":"\u00dahrada OZ c. 1343101218","homeCurrency":{"unitPrice":"10915"},"symPar":"1343101218","accounting":{"id":"147","ids":"dBv"}}},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"10915","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"18":{"@version":"2.0","bankHeader":{"id":"18","bankType":"expense","account":{"id":"2","ids":"KB"},"number":"KB0020002","statementNumber":{"statementNumber":"002","numberMovement":"0002"},"dateStatement":"2023-02-28","datePayment":"2023-02-28","accounting":{"id":"11","ids":"8Bv"},"text":"Banka v\u00fddej","myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"symConst":"0308","lock2":"false","markRecord":"false"},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"3860","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"22":{"@version":"2.0","bankHeader":{"id":"22","bankType":"expense","account":{"id":"2","ids":"KB"},"number":"KB92024","statementNumber":{"statementNumber":"9","numberMovement":"2024"},"dateStatement":"2024-09-10","datePayment":"2024-09-10","accounting":{"id":"9","ids":"1Bv"},"text":"770871 INKASO 4861\/23\/021\/SME\/PRP","partnerIdentity":{"address":{"name":"Loan Repayment Comp."}},"myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"paymentAccount":{"accountNo":"6430089575","bankCode":"5500"},"symPar":"6727959302","note":"Imported by Pohoda RaiffeisenBank Statements dev-main","intNote":"Import Job 109765","lock2":"false","markRecord":"true"},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"41805.55","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"24":{"@version":"2.0","bankHeader":{"id":"24","bankType":"expense","account":{"id":"2","ids":"KB"},"number":"KB92024","statementNumber":{"statementNumber":"9","numberMovement":"2024"},"dateStatement":"2024-09-10","datePayment":"2024-09-10","accounting":{"id":"9","ids":"1Bv"},"text":"770871 INKASO 4861\/23\/021\/SME\/PRP","partnerIdentity":{"address":{"name":"Loan Repayment Comp."}},"myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"paymentAccount":{"accountNo":"6430089575","bankCode":"5500"},"symPar":"6727959302","note":"Imported by Pohoda RaiffeisenBank Statements dev-main","intNote":"Import Job 109765","lock2":"false","markRecord":"true"},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"41805.55","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"25":{"@version":"2.0","bankHeader":{"id":"25","bankType":"expense","account":{"id":"2","ids":"KB"},"number":"KB92024","statementNumber":{"statementNumber":"9","numberMovement":"2024"},"dateStatement":"2024-09-10","datePayment":"2024-09-10","accounting":{"id":"9","ids":"1Bv"},"text":"770871 INKASO 4861\/23\/021\/SME\/PRP","partnerIdentity":{"address":{"name":"Loan Repayment Comp."}},"myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"paymentAccount":{"accountNo":"6430089575","bankCode":"5500"},"symPar":"6727959302","note":"Imported by Pohoda RaiffeisenBank Statements dev-main","intNote":"Import Job 109765","lock2":"false","markRecord":"true"},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"41805.55","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"26":{"@version":"2.0","bankHeader":{"id":"26","bankType":"expense","account":{"id":"2","ids":"KB"},"number":"KB92024","statementNumber":{"statementNumber":"9","numberMovement":"2024"},"dateStatement":"2024-09-10","datePayment":"2024-09-10","accounting":{"id":"9","ids":"1Bv"},"text":"770871 INKASO 4861\/23\/021\/SME\/PRP","partnerIdentity":{"address":{"name":"Loan Repayment Comp."}},"myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"paymentAccount":{"accountNo":"6430089575","bankCode":"5500"},"symPar":"6727959302","note":"Imported by Pohoda RaiffeisenBank Statements dev-main","intNote":"Import Job 109765","lock2":"false","markRecord":"true"},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"41805.55","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"27":{"@version":"2.0","bankHeader":{"id":"27","bankType":"receipt","account":{"id":"2","ids":"KB"},"number":"KB92024","statementNumber":{"statementNumber":"9","numberMovement":"2024"},"symVar":"178282024","dateStatement":"2024-09-11","datePayment":"2024-09-11","accounting":{"id":"5","ids":"1Bp"},"text":"LICENCE MICROSOFT 365 - OD 28.7.2024 DO 27.8.2024","partnerIdentity":{"address":{"name":"ALA SENSORS s.r.o."}},"myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"paymentAccount":{"accountNo":"213085319","bankCode":"0800"},"symConst":"0","symPar":"6735349568","note":"Imported by Pohoda RaiffeisenBank Statements dev-main","intNote":"Import Job 109765","lock2":"false","markRecord":"true"},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"629.2","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"28":{"@version":"2.0","bankHeader":{"id":"28","bankType":"receipt","account":{"id":"2","ids":"KB"},"number":"KB92024","statementNumber":{"statementNumber":"9","numberMovement":"2024"},"symVar":"178342024","dateStatement":"2024-09-16","datePayment":"2024-09-16","accounting":{"id":"5","ids":"1Bp"},"text":"MICROSOFT 365 - LICENCE - BUSINESSBASIC - 6.7.2024 - 5.8.20","partnerIdentity":{"address":{"name":"Search Executive s.r"}},"myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"paymentAccount":{"accountNo":"6147519349","bankCode":"0800"},"symConst":"0","symPar":"6752122886","note":"Imported by Pohoda RaiffeisenBank Statements dev-main","intNote":"Import Job 109765","lock2":"false","markRecord":"true"},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"629.2","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"29":{"@version":"2.0","bankHeader":{"id":"29","bankType":"receipt","account":{"id":"2","ids":"KB"},"number":"KB92024","statementNumber":{"statementNumber":"9","numberMovement":"2024"},"symVar":"178322024","dateStatement":"2024-09-17","datePayment":"2024-09-17","accounting":{"id":"5","ids":"1Bp"},"text":"MICROSOFT 365 - LICENCE - 6.7.2024 - 5.8.2024","partnerIdentity":{"address":{"name":"MAH s.r.o."}},"myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"paymentAccount":{"accountNo":"2096097036","bankCode":"5500"},"symPar":"6755907208","note":"Imported by Pohoda RaiffeisenBank Statements dev-main","intNote":"Import Job 109765","lock2":"false","markRecord":"true"},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"968","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"30":{"@version":"2.0","bankHeader":{"id":"30","bankType":"receipt","account":{"id":"2","ids":"KB"},"number":"KB92024","statementNumber":{"statementNumber":"9","numberMovement":"2024"},"symVar":"177922024","dateStatement":"2024-09-17","datePayment":"2024-09-17","accounting":{"id":"5","ids":"1Bp"},"text":"2024\/07 IT","partnerIdentity":{"address":{"name":"propoj\u00edme s.r.o."}},"myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"paymentAccount":{"accountNo":"6260979339","bankCode":"0800"},"symConst":"0","symPar":"6755995098","note":"Imported by Pohoda RaiffeisenBank Statements dev-main","intNote":"Import Job 109765","lock2":"false","markRecord":"true"},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"1452","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"31":{"@version":"2.0","bankHeader":{"id":"31","bankType":"receipt","account":{"id":"2","ids":"KB"},"number":"KB92024","statementNumber":{"statementNumber":"9","numberMovement":"2024"},"symVar":"178142024","dateStatement":"2024-09-18","datePayment":"2024-09-18","accounting":{"id":"5","ids":"1Bp"},"text":"Import BV z XML","partnerIdentity":{"address":{"name":"DARAMIS MANAGEMENT s"}},"myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"paymentAccount":{"accountNo":"5140016517","bankCode":"5500"},"symConst":"0308","symPar":"6759647789","note":"Imported by Pohoda RaiffeisenBank Statements dev-main","intNote":"Import Job 109765","lock2":"false","markRecord":"true"},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"4840","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"32":{"@version":"2.0","bankHeader":{"id":"32","bankType":"receipt","account":{"id":"2","ids":"KB"},"number":"KB92024","statementNumber":{"statementNumber":"9","numberMovement":"2024"},"symVar":"178352024","dateStatement":"2024-09-18","datePayment":"2024-09-18","accounting":{"id":"5","ids":"1Bp"},"text":"Import BV z XML","partnerIdentity":{"address":{"name":"VYDAVATELSTV\u00cd V\u00cdKEND"}},"myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"paymentAccount":{"accountNo":"27-9230970257","bankCode":"0100"},"symConst":"308","symPar":"6759849693","note":"Imported by Pohoda RaiffeisenBank Statements dev-main","intNote":"Import Job 109765","lock2":"false","markRecord":"true"},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"484","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"33":{"@version":"2.0","bankHeader":{"id":"33","bankType":"receipt","account":{"id":"2","ids":"KB"},"number":"KB92024","statementNumber":{"statementNumber":"9","numberMovement":"2024"},"symVar":"178312024","dateStatement":"2024-09-24","datePayment":"2024-09-24","accounting":{"id":"5","ids":"1Bp"},"text":"MICROSOFT 365 - LICENCE - BUSINESSSTANDARD - 23.7.2024 - 22","partnerIdentity":{"address":{"name":"Ing.arch.Hoffman Pat"}},"myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"paymentAccount":{"accountNo":"148665359","bankCode":"0800"},"symConst":"0308","symPar":"6777237432","note":"Imported by Pohoda RaiffeisenBank Statements dev-main","intNote":"Import Job 109765","lock2":"false","markRecord":"true"},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"2613.6","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"34":{"@version":"2.0","bankHeader":{"id":"34","bankType":"receipt","account":{"id":"2","ids":"KB"},"number":"KB92024","statementNumber":{"statementNumber":"9","numberMovement":"2024"},"symVar":"178332024","dateStatement":"2024-09-29","datePayment":"2024-09-29","accounting":{"id":"5","ids":"1Bp"},"text":"LICENCE MICROSOFT 365 - 08\/2024","partnerIdentity":{"address":{"name":"MFD Management s.r.o"}},"myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"paymentAccount":{"accountNo":"6346517389","bankCode":"0800"},"symConst":"0","symPar":"6790917961","note":"Imported by Pohoda RaiffeisenBank Statements dev-main","intNote":"Import Job 109765","lock2":"false","markRecord":"false"},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"1282.6","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"35":{"@version":"2.0","bankHeader":{"id":"35","bankType":"receipt","account":{"id":"2","ids":"KB"},"number":"KB92024","statementNumber":{"statementNumber":"9","numberMovement":"2024"},"symVar":"178322024","dateStatement":"2024-09-30","datePayment":"2024-09-30","accounting":{"id":"5","ids":"1Bp"},"text":"MICROSOFT 365 - LICENCE - 6.7.2024 - 5.8.2024","partnerIdentity":{"address":{"name":"DETOMO GROUP s.r.o."}},"myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"paymentAccount":{"accountNo":"1041063002","bankCode":"5500"},"symPar":"6793077926","note":"Imported by Pohoda RaiffeisenBank Statements dev-main","intNote":"Import Job 109765","lock2":"false","markRecord":"true"},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"968","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"36":{"@version":"2.0","bankHeader":{"id":"36","bankType":"expense","account":{"id":"2","ids":"KB"},"number":"KB92024","statementNumber":{"statementNumber":"9","numberMovement":"2024"},"dateStatement":"2024-09-30","datePayment":"2024-09-30","accounting":{"id":"9","ids":"1Bv"},"text":"Souhrnn\u00e1 polo\u017eka k \u00factu 2800061687.","myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"symConst":"898","symPar":"6794732023","note":"Imported by Pohoda RaiffeisenBank Statements dev-main","intNote":"Import Job 109765","lock2":"false","markRecord":"true"},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"99","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"37":{"@version":"2.0","bankHeader":{"id":"37","bankType":"expense","account":{"id":"2","ids":"KB"},"number":"KB92024","statementNumber":{"statementNumber":"9","numberMovement":"2024"},"dateStatement":"2024-09-30","datePayment":"2024-09-30","accounting":{"id":"9","ids":"1Bv"},"text":"\u00darok 09\/2024","myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"symConst":"598","symPar":"6795564214","note":"Imported by Pohoda RaiffeisenBank Statements dev-main","intNote":"Import Job 109765","lock2":"false","markRecord":"true"},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"1669.56","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}},"38":{"@version":"2.0","bankHeader":{"id":"38","bankType":"expense","account":{"id":"2","ids":"KB"},"number":"KB92024","statementNumber":{"statementNumber":"9","numberMovement":"2024"},"dateStatement":"2024-09-30","datePayment":"2024-09-30","accounting":{"id":"9","ids":"1Bv"},"text":"\u00darok 09\/2024","myIdentity":{"address":{"company":"Nov\u00e1k","surname":"Nov\u00e1k","name":"Jan","city":"Jihlava 1","street":"Horn\u00ed","number":"15","zip":"586 01","ico":"12345678","dic":"CZ12345678","phone":"569 876 542","mobilPhone":"602 852 369","fax":"564 563 216","email":"info@novak.cz","www":"www.novak.cz"}},"symConst":"898","symPar":"6795566057","note":"Imported by Pohoda RaiffeisenBank Statements dev-main","intNote":"Import Job 109765","lock2":"false","markRecord":"true"},"bankSummary":{"roundingDocument":"none","roundingVAT":"none","homeCurrency":{"priceNone":"15.84","priceLow":"0","priceLowVAT":"0","priceLowSum":"0","priceHigh":"0","priceHighVAT":"0","priceHighSum":"0","price3":"0","price3VAT":"0","price3Sum":"0","round":{"priceRound":"0"}}}}}'; $this->assertEquals(json_decode($processedData), $this->processBank(json_decode($bankData))); From b429787f7fb3b2c61fdc1b77792779ce8bac3bc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=C4=9Bzslav=20Dvo=C5=99=C3=A1k?= Date: Wed, 13 Nov 2024 21:27:04 +0100 Subject: [PATCH 3/6] use latest stable dependencies --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 1693e41..778c879 100644 --- a/composer.json +++ b/composer.json @@ -943,8 +943,8 @@ "ext-iconv": "*", "goetas-webservices/xsd2php-runtime": "0.2.17", "lightools/xml": "3.0.0", - "riesenia/pohoda": ">=1.5 || dev-master", - "vitexsoftware/ease-core": "dev-main", + "riesenia/pohoda": "1.21.0", + "vitexsoftware/ease-core": "1.44.2", "jms/serializer": "^3.28" }, "require-dev": { From 937c954686d55219a71990706143ab99c9512f28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=C4=9Bzslav=20Dvo=C5=99=C3=A1k?= Date: Wed, 13 Nov 2024 21:31:34 +0100 Subject: [PATCH 4/6] try to use semantic versioning of dependencies to make github action green --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 778c879..e57388a 100644 --- a/composer.json +++ b/composer.json @@ -942,9 +942,9 @@ "ext-curl": "*", "ext-iconv": "*", "goetas-webservices/xsd2php-runtime": "0.2.17", - "lightools/xml": "3.0.0", - "riesenia/pohoda": "1.21.0", - "vitexsoftware/ease-core": "1.44.2", + "lightools/xml": "^3.0", + "riesenia/pohoda": "^1.21", + "vitexsoftware/ease-core": "^1.44", "jms/serializer": "^3.28" }, "require-dev": { From 97f006bfb0a657261318c006ec5b53d1ba6991d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=C4=9Bzslav=20Dvo=C5=99=C3=A1k?= Date: Wed, 13 Nov 2024 23:44:18 +0100 Subject: [PATCH 5/6] more strict types --- src/mServer/Adressbook.php | 10 +++------- src/mServer/Bank.php | 6 ++++-- src/mServer/Client.php | 10 +++------- src/mServer/Invoice.php | 3 ++- tests/update-address.php | 2 +- 5 files changed, 13 insertions(+), 18 deletions(-) diff --git a/src/mServer/Adressbook.php b/src/mServer/Adressbook.php index fb4314d..9eecebb 100644 --- a/src/mServer/Adressbook.php +++ b/src/mServer/Adressbook.php @@ -30,23 +30,19 @@ class Adressbook extends Client /** * Request XML helper. */ - public \Riesenia\Pohoda\Addressbook $requestXml = null; + public ?\Riesenia\Pohoda\Addressbook $requestXml = null; /** * AddressBook records name column. */ - public string $nameColumn = 'address:company'; - - /** - * AddressBook records name column. - */ - public string $nameColumn = 'address:company'; + public ?string $nameColumn = 'address:company'; /** * Create Agenda document using given data. * * @param array $data */ + #[\Override] public function create($data): void { $this->requestXml = $this->pohoda->createAddressbook($data); diff --git a/src/mServer/Bank.php b/src/mServer/Bank.php index 398f3ea..84eaa02 100644 --- a/src/mServer/Bank.php +++ b/src/mServer/Bank.php @@ -42,6 +42,7 @@ class Bank extends Client * * @param array $data */ + #[\Override] public function create($data): void { $this->requestXml = $this->pohoda->createBank($data); @@ -62,13 +63,14 @@ public function takeData($data) \Ease\Functions::divDataArray($data, $summaryData, 'homeCurrency'); \Ease\Functions::divDataArray($data, $summaryData, 'foreignCurrency'); $taken = parent::takeData($data); - - return $taken + $this->addSummary($summaryData); + $this->addSummary($summaryData); + return $taken; } /** * {@inheritDoc} */ + #[\Override] public function setObjectName($forceName = '') { return parent::setObjectName($forceName ?: $this->getDataValue('account').'@'.$this->getObjectName()); diff --git a/src/mServer/Client.php b/src/mServer/Client.php index a9886ac..9783a88 100644 --- a/src/mServer/Client.php +++ b/src/mServer/Client.php @@ -213,7 +213,7 @@ public function reset(): void { $this->dataReset(); $this->pohoda = new Pohoda($this->ico); - $this->pohoda->setApplicationName(Functions::cfg('APP_NAME', 'PHPmPohoda')); + $this->pohoda->setApplicationName(\Ease\Shared::cfg('APP_NAME', 'PHPmPohoda')); $this->xmlCache = sys_get_temp_dir().'/phpmPohoda_'.Functions::randomString().'.xml'; $this->pohoda->open($this->xmlCache, microtime(), 'generated by PHPmPohoda'); @@ -543,12 +543,10 @@ public function takeData($data) /** * Create Agenda document using given data. - * - * @param array $data */ - public function create($data) + public function create(string $data) { - $this->requestXml = $this->pohoda->create($data); + $this->requestXml = $this->pohoda->create($this->agenda, $data); return empty($this->requestXml) ? 0 : 1; } @@ -557,8 +555,6 @@ public function create($data) * Insert prepared record to Pohoda. * * @param array $data extra data - * - * @return int */ public function addToPohoda($data = []) { diff --git a/src/mServer/Invoice.php b/src/mServer/Invoice.php index 527a457..6b0f97b 100644 --- a/src/mServer/Invoice.php +++ b/src/mServer/Invoice.php @@ -30,7 +30,7 @@ class Invoice extends Client /** * Request XML helper. */ - public \Riesenia\Pohoda\Invoice $requestXml = null; + public ?\Riesenia\Pohoda\Invoice $requestXml = null; /* public function getElementMap($extra = []) { @@ -76,6 +76,7 @@ static function xmlDeserialize(\Sabre\Xml\Reader $reader) { * * @param array $data */ + #[\Override] public function create($data): void { if (\array_key_exists('invoiceSummary', $data)) { diff --git a/tests/update-address.php b/tests/update-address.php index 87a15ea..290264a 100644 --- a/tests/update-address.php +++ b/tests/update-address.php @@ -87,4 +87,4 @@ ]; $addresser = new Adressbook($addressBookRecord, \Ease\Shared::instanced()->loadConfig(__DIR__.'/.env')); -$addresser->updateInPohoda(null, ['extId' => ['exSystemName' => \Ease\Functions::cfg('APP_NAME'), 'ids' => (string) $extID]]); +$addresser->updateInPohoda(null, ['extId' => ['exSystemName' => \Ease\Shared::cfg('APP_NAME'), 'ids' => (string) $extID]]); From 255155f56e55d306114527568671c72cb94b8638 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=C4=9Bzslav=20Dvo=C5=99=C3=A1k?= Date: Thu, 14 Nov 2024 00:11:28 +0100 Subject: [PATCH 6/6] more strict types --- src/mServer/Bank.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mServer/Bank.php b/src/mServer/Bank.php index 84eaa02..b2e6496 100644 --- a/src/mServer/Bank.php +++ b/src/mServer/Bank.php @@ -64,6 +64,7 @@ public function takeData($data) \Ease\Functions::divDataArray($data, $summaryData, 'foreignCurrency'); $taken = parent::takeData($data); $this->addSummary($summaryData); + return $taken; }