Skip to content

Commit 7dfbf5e

Browse files
author
Vítězslav Dvořák
committed
Merge branch 'main' of github.com:Spoje-NET/php-abraflexi
2 parents 1f21d01 + 1c8f106 commit 7dfbf5e

32 files changed

Lines changed: 1611 additions & 1098 deletions

.github/workflows/daily-static-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0 # Ensure all tags are fetched
1919

.github/workflows/php.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919

2020
- name: Validate composer.json and composer.lock
2121
run: composer validate --strict
2222

2323
- name: Cache Composer packages
2424
id: composer-cache
25-
uses: actions/cache@v4
25+
uses: actions/cache@v5
2626
with:
2727
path: vendor
2828
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"API-Client",
1515
"FinTech"
1616
],
17+
"type": "library",
1718
"require": {
1819
"php": "^8.1",
1920
"ext-json": "*",
@@ -41,7 +42,7 @@
4142
"phpstan/phpstan": "*",
4243
"friendsofphp/php-cs-fixer": "^3.89",
4344
"ergebnis/composer-normalize": "^2.48",
44-
"ergebnis/php-cs-fixer-config": "^6.57"
45+
"ergebnis/php-cs-fixer-config": "^6.58"
4546
},
4647
"scripts": {
4748
"post-install-cmd": [

debian/changelog

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1-
php-spojenet-abraflexi (3.6.5) UNRELEASED; urgency=medium
1+
php-spojenet-abraflexi (3.6.6) UNRELEASED; urgency=medium
2+
3+
* ExtID parsing fix II
4+
5+
-- vitex <info@vitexsoftware.cz> Tue, 09 Dec 2025 01:52:18 +0100
6+
7+
php-spojenet-abraflexi (3.6.5) experimental; urgency=medium
28

39
* ExtID parsing fix
410

5-
-- vitex <info@vitexsoftware.cz> Thu, 20 Nov 2025 00:15:49 +0100
11+
-- vitex <info@vitexsoftware.cz> Tue, 09 Dec 2025 01:52:12 +0100
612

713
php-spojenet-abraflexi (3.6.4) experimental; urgency=medium
814

src/AbraFlexi/Actions.php

Lines changed: 89 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class Actions
2424
/**
2525
* Source AbraFlexi server version.
2626
*/
27-
public static string $version = '2025.8.4';
27+
public static string $version = '2025.9.1';
2828

2929
/**
3030
* Evidence adresar (Adresy firem) Actions.
@@ -3946,6 +3946,54 @@ class Actions
39463946
],
39473947
];
39483948

3949+
/**
3950+
* Evidence banka-polozka (Položky banky a vzájemných zápočtů) Actions.
3951+
*
3952+
* @var array<string, array<string, string>>
3953+
*/
3954+
public static array $bankaPolozka = [
3955+
'new' => [
3956+
'actionId' => 'new',
3957+
'actionName' => 'Přidat',
3958+
'needInstance' => 'false',
3959+
'actionMakesSense' => 'ONLY_WITHOUT_INSTANCE_AND_NOT_IN_CREATE',
3960+
'isRealAction' => 'false',
3961+
'isService' => 'NO',
3962+
],
3963+
'copy' => [
3964+
'actionId' => 'copy',
3965+
'actionName' => 'Vytvořit kopii',
3966+
'needInstance' => 'true',
3967+
'actionMakesSense' => 'ONLY_WITH_INSTANCE_AND_NOT_IN_EDIT',
3968+
'isRealAction' => 'false',
3969+
'isService' => 'ON_MOBILE',
3970+
],
3971+
'edit' => [
3972+
'actionId' => 'edit',
3973+
'actionName' => 'Změnit',
3974+
'needInstance' => 'true',
3975+
'actionMakesSense' => 'ONLY_WITH_INSTANCE_AND_NOT_IN_EDIT',
3976+
'isRealAction' => 'false',
3977+
'isService' => 'NO',
3978+
],
3979+
'delete' => [
3980+
'actionId' => 'delete',
3981+
'actionName' => 'Smazat',
3982+
'needInstance' => 'true',
3983+
'actionMakesSense' => 'ONLY_WITH_INSTANCE',
3984+
'isRealAction' => 'false',
3985+
'isService' => 'NO',
3986+
],
3987+
'storno' => [
3988+
'actionId' => 'storno',
3989+
'actionName' => 'Storno položky',
3990+
'needInstance' => 'true',
3991+
'actionMakesSense' => 'ONLY_WITH_INSTANCE',
3992+
'isRealAction' => 'true',
3993+
'isService' => 'NO',
3994+
],
3995+
];
3996+
39493997
/**
39503998
* Evidence interni-doklad-polozka (Položky interních dokladů) Actions.
39513999
*
@@ -4698,54 +4746,6 @@ class Actions
46984746
],
46994747
];
47004748

4701-
/**
4702-
* Evidence banka-polozka (Položky vzájemných zápočtů) Actions.
4703-
*
4704-
* @var array<string, array<string, string>>
4705-
*/
4706-
public static array $bankaPolozka = [
4707-
'new' => [
4708-
'actionId' => 'new',
4709-
'actionName' => 'Přidat',
4710-
'needInstance' => 'false',
4711-
'actionMakesSense' => 'ONLY_WITHOUT_INSTANCE_AND_NOT_IN_CREATE',
4712-
'isRealAction' => 'false',
4713-
'isService' => 'NO',
4714-
],
4715-
'copy' => [
4716-
'actionId' => 'copy',
4717-
'actionName' => 'Vytvořit kopii',
4718-
'needInstance' => 'true',
4719-
'actionMakesSense' => 'ONLY_WITH_INSTANCE_AND_NOT_IN_EDIT',
4720-
'isRealAction' => 'false',
4721-
'isService' => 'ON_MOBILE',
4722-
],
4723-
'edit' => [
4724-
'actionId' => 'edit',
4725-
'actionName' => 'Změnit',
4726-
'needInstance' => 'true',
4727-
'actionMakesSense' => 'ONLY_WITH_INSTANCE_AND_NOT_IN_EDIT',
4728-
'isRealAction' => 'false',
4729-
'isService' => 'NO',
4730-
],
4731-
'delete' => [
4732-
'actionId' => 'delete',
4733-
'actionName' => 'Smazat',
4734-
'needInstance' => 'true',
4735-
'actionMakesSense' => 'ONLY_WITH_INSTANCE',
4736-
'isRealAction' => 'false',
4737-
'isService' => 'NO',
4738-
],
4739-
'storno' => [
4740-
'actionId' => 'storno',
4741-
'actionName' => 'Storno položky',
4742-
'needInstance' => 'true',
4743-
'actionMakesSense' => 'ONLY_WITH_INSTANCE',
4744-
'isRealAction' => 'true',
4745-
'isService' => 'NO',
4746-
],
4747-
];
4748-
47494749
/**
47504750
* Evidence poplatek (Poplatky) Actions.
47514751
*
@@ -10002,6 +10002,46 @@ class Actions
1000210002
],
1000310003
];
1000410004

10005+
/**
10006+
* Evidence def-store (Úložiště definic) Actions.
10007+
*
10008+
* @var array<string, array<string, string>>
10009+
*/
10010+
public static array $defStore = [
10011+
'new' => [
10012+
'actionId' => 'new',
10013+
'actionName' => 'Přidat',
10014+
'needInstance' => 'false',
10015+
'actionMakesSense' => 'ONLY_WITHOUT_INSTANCE_AND_NOT_IN_CREATE',
10016+
'isRealAction' => 'false',
10017+
'isService' => 'NO',
10018+
],
10019+
'copy' => [
10020+
'actionId' => 'copy',
10021+
'actionName' => 'Vytvořit kopii',
10022+
'needInstance' => 'true',
10023+
'actionMakesSense' => 'ONLY_WITH_INSTANCE_AND_NOT_IN_EDIT',
10024+
'isRealAction' => 'false',
10025+
'isService' => 'ON_MOBILE',
10026+
],
10027+
'edit' => [
10028+
'actionId' => 'edit',
10029+
'actionName' => 'Změnit',
10030+
'needInstance' => 'true',
10031+
'actionMakesSense' => 'ONLY_WITH_INSTANCE_AND_NOT_IN_EDIT',
10032+
'isRealAction' => 'false',
10033+
'isService' => 'NO',
10034+
],
10035+
'delete' => [
10036+
'actionId' => 'delete',
10037+
'actionName' => 'Smazat',
10038+
'needInstance' => 'true',
10039+
'actionMakesSense' => 'ONLY_WITH_INSTANCE',
10040+
'isRealAction' => 'false',
10041+
'isService' => 'NO',
10042+
],
10043+
];
10044+
1000510045
/**
1000610046
* Evidence global-store (Úložiště globálního nastavení) Actions.
1000710047
*

0 commit comments

Comments
 (0)