Skip to content

Commit 11cb95f

Browse files
committed
Update for FlexiBee 2020.2.5
1 parent 4c4469a commit 11cb95f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+195
-117
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ composer.lock
1313
/debian/php-spojenet-flexibee.substvars
1414
/debian/php-flexibee.substvars
1515
/debian/php-flexibee.debhelper.log
16+
/debian/php-spojenet-flexibee-dev.substvars

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
repoversion=$(shell LANG=C aptitude show php-flexibee | grep Version: | awk '{print $$2}')
22
nextversion=$(shell echo $(repoversion) | perl -ne 'chomp; print join(".", splice(@{[split/\./,$$_]}, 0, -1), map {++$$_} pop @{[split/\./,$$_]}), "\n";')
33

4-
4+
all:
55

66
fresh:
77
git pull

debian/.debhelper/generated/php-flexibee/installed-by-dh_install

Whitespace-only changes.

debian/.debhelper/generated/php-spojenet-flexibee/installed-by-dh_install

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,6 @@
4141
./src/FlexiPeeHP/Zavazek.php
4242
./src/FlexiPeeHP/Zurnal.php
4343
./debian/composer.json
44-
./debian/test/composer.json
45-
./debian/test/config.json
46-
./debian/test/flexibeeping.php
4744
./static/Actions.json
4845
./static/EvidenceFullList.json
4946
./static/EvidenceList.json

debian/control

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,12 @@ Priority: optional
1818
Description: PHP Based FlexiBee RestAPI/Json library
1919
Allow you read and write operations on czech accounting system FlexiBee
2020

21-
Package: php-flexibee
22-
Depends: ${misc:Depends}, php-spojenet-flexibee
21+
Package: php-spojenet-flexibee-dev
22+
Depends: ${misc:Depends}, php-spojenet-flexibee, php-vitexsoftware-ease-core-dev
2323
Architecture: all
2424
Section: web
2525
Priority: optional
26-
Description: PHP Based FlexiBee RestAPI/Json library metapackage
27-
Backward compatibility package for spojenet/flexibee PHP library
26+
Description: PHP Based FlexiBee RestAPI/Json library development files
27+
PHPUnit classes used for testing php-flexibee functionality
28+
2829

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
src/FlexiPeeHP/*.php /usr/share/php/FlexiPeeHP
22
debian/composer.json /usr/share/php/FlexiPeeHP
3-
debian/test/* /usr/share/doc/FlexiPeeHP
43
static/* /usr/share/php/FlexiPeeHP/static

debian/rules

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ override_dh_auto_test:
88

99
override_dh_install:
1010
jq '.address = "'`dpkg-parsechangelog | sed -n 's/^Version: //p'`'"' debian/composer.json |sponge debian/composer.json
11-
composer update
1211
dh_install
1312
sed -i -e "s/\/\.\.\/\.\.\//\//g" debian/php-spojenet-flexibee/usr/share/php/FlexiPeeHP/FlexiBeeRO.php
1413
./debian/fixversion.sh

debian/test/composer.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,21 @@
88
"email": "[email protected]"
99
}
1010
],
11-
"minimum-stability": "dev",
11+
"minimum-stability": "stable",
1212
"config": {
1313
"vendor-dir": "/tmp/flexibeehpdebiantest"
1414
},
1515
"require": {
1616
"deb/flexibee": "*",
1717
"deb/ease-core": "*"
1818
},
19+
"autoload-dev": {
20+
"psr-4": {
21+
"Test\\Ease\\": "../EaseCoreTests",
22+
"Test\\FlexiPeeHP\\": "./",
23+
"Test\\": "testing/"
24+
}
25+
},
1926
"repositories": [
2027
{
2128
"type": "path",

src/FlexiPeeHP/Actions.php

Lines changed: 60 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Actions
2121
*
2222
* @var string
2323
*/
24-
static public $version = '2020.2.3.2';
24+
static public $version = '2020.2.5';
2525

2626
/**
2727
* Evidence doklad (#dokladView) Actions.
@@ -422,11 +422,11 @@ class Actions
422422
),
423423
);
424424
/**
425-
* Evidence mzdy-bankovni-spojeni (Bankovní spojení) Actions.
425+
* Evidence adresar-bankovni-ucet (Bankovní spojení) Actions.
426426
*
427427
* @var array
428428
*/
429-
static public $mzdyBankovniSpojeni = array (
429+
static public $adresarBankovniUcet = array (
430430
'new' =>
431431
array (
432432
'actionId' => 'new',
@@ -465,11 +465,11 @@ class Actions
465465
),
466466
);
467467
/**
468-
* Evidence adresar-bankovni-ucet (Bankovní spojení) Actions.
468+
* Evidence mzdy-bankovni-spojeni (Bankovní spojení) Actions.
469469
*
470470
* @var array
471471
*/
472-
static public $adresarBankovniUcet = array (
472+
static public $mzdyBankovniSpojeni = array (
473473
'new' =>
474474
array (
475475
'actionId' => 'new',
@@ -2402,6 +2402,49 @@ class Actions
24022402
'isRealAction' => 'false',
24032403
'isService' => 'NO',
24042404
),
2405+
);
2406+
/**
2407+
* Evidence kusovnik (Kusovník) Actions.
2408+
*
2409+
* @var array
2410+
*/
2411+
static public $kusovnik = array (
2412+
'new' =>
2413+
array (
2414+
'actionId' => 'new',
2415+
'actionName' => 'Přidat',
2416+
'needInstance' => 'false',
2417+
'actionMakesSense' => 'ONLY_WITHOUT_INSTANCE_AND_NOT_IN_CREATE',
2418+
'isRealAction' => 'false',
2419+
'isService' => 'NO',
2420+
),
2421+
'copy' =>
2422+
array (
2423+
'actionId' => 'copy',
2424+
'actionName' => 'Vytvořit kopii',
2425+
'needInstance' => 'true',
2426+
'actionMakesSense' => 'ONLY_WITH_INSTANCE_AND_NOT_IN_EDIT',
2427+
'isRealAction' => 'false',
2428+
'isService' => 'ON_MOBILE',
2429+
),
2430+
'edit' =>
2431+
array (
2432+
'actionId' => 'edit',
2433+
'actionName' => 'Změnit',
2434+
'needInstance' => 'true',
2435+
'actionMakesSense' => 'ONLY_WITH_INSTANCE_AND_NOT_IN_EDIT',
2436+
'isRealAction' => 'false',
2437+
'isService' => 'NO',
2438+
),
2439+
'delete' =>
2440+
array (
2441+
'actionId' => 'delete',
2442+
'actionName' => 'Smazat',
2443+
'needInstance' => 'true',
2444+
'actionMakesSense' => 'ONLY_WITH_INSTANCE',
2445+
'isRealAction' => 'false',
2446+
'isService' => 'NO',
2447+
),
24052448
);
24062449
/**
24072450
* Evidence intrastat-kod-nomenklatury (Kódy nomenklatury) Actions.
@@ -2963,11 +3006,11 @@ class Actions
29633006
),
29643007
);
29653008
/**
2966-
* Evidence cenikovy-pohyb-nakup (Nákupní, prodejní a skladové pohyby) Actions.
3009+
* Evidence cenikovy-pohyb-prodej (Nákupní, prodejní a skladové pohyby) Actions.
29673010
*
29683011
* @var array
29693012
*/
2970-
static public $cenikovyPohybNakup = array (
3013+
static public $cenikovyPohybProdej = array (
29713014
'new' =>
29723015
array (
29733016
'actionId' => 'new',
@@ -3006,11 +3049,11 @@ class Actions
30063049
),
30073050
);
30083051
/**
3009-
* Evidence cenikovy-pohyb-prodej (Nákupní, prodejní a skladové pohyby) Actions.
3052+
* Evidence cenikovy-pohyb-nakup (Nákupní, prodejní a skladové pohyby) Actions.
30103053
*
30113054
* @var array
30123055
*/
3013-
static public $cenikovyPohybProdej = array (
3056+
static public $cenikovyPohybNakup = array (
30143057
'new' =>
30153058
array (
30163059
'actionId' => 'new',
@@ -5016,11 +5059,11 @@ class Actions
50165059
),
50175060
);
50185061
/**
5019-
* Evidence prace-mesic (Práce pro střediska) Actions.
5062+
* Evidence prace (Práce pro střediska) Actions.
50205063
*
50215064
* @var array
50225065
*/
5023-
static public $praceMesic = array (
5066+
static public $prace = array (
50245067
'new' =>
50255068
array (
50265069
'actionId' => 'new',
@@ -5059,11 +5102,11 @@ class Actions
50595102
),
50605103
);
50615104
/**
5062-
* Evidence prace (Práce pro střediska) Actions.
5105+
* Evidence prace-mesic (Práce pro střediska) Actions.
50635106
*
50645107
* @var array
50655108
*/
5066-
static public $prace = array (
5109+
static public $praceMesic = array (
50675110
'new' =>
50685111
array (
50695112
'actionId' => 'new',
@@ -8511,11 +8554,11 @@ class Actions
85118554
),
85128555
);
85138556
/**
8514-
* Evidence umisteni-ve-skladu-police (Umístění ve skladu) Actions.
8557+
* Evidence umisteni-ve-skladu-regal (Umístění ve skladu) Actions.
85158558
*
85168559
* @var array
85178560
*/
8518-
static public $umisteniVeSkladuPolice = array (
8561+
static public $umisteniVeSkladuRegal = array (
85198562
'new' =>
85208563
array (
85218564
'actionId' => 'new',
@@ -8597,11 +8640,11 @@ class Actions
85978640
),
85988641
);
85998642
/**
8600-
* Evidence umisteni-ve-skladu-regal (Umístění ve skladu) Actions.
8643+
* Evidence umisteni-ve-skladu-police (Umístění ve skladu) Actions.
86018644
*
86028645
* @var array
86038646
*/
8604-
static public $umisteniVeSkladuRegal = array (
8647+
static public $umisteniVeSkladuPolice = array (
86058648
'new' =>
86068649
array (
86078650
'actionId' => 'new',

0 commit comments

Comments
 (0)