Compare commits
95 Commits
c3c07329b6
...
zg1/zone4
Author | SHA1 | Date | |
---|---|---|---|
f94b8abc66 | |||
649b260685 | |||
fd15196f8e | |||
b15068f21f | |||
48ec3432b1 | |||
37522a8a97 | |||
bf3fe7ffd2 | |||
d288123575 | |||
2822db5e2f | |||
71fdf02bf4 | |||
ffb969e2e2 | |||
70727db07a | |||
7960874f95 | |||
99de8a08ec | |||
6968d15458 | |||
828a9a69b4 | |||
7e0b58e2be | |||
e5508f3ba6
|
|||
f889943a1b | |||
0840e20b82 | |||
a003e880f7 | |||
9aa652d307 | |||
87c23c9d11 | |||
68856b876a | |||
90d545016f | |||
82146f7dfb | |||
ddc5fad05a | |||
917ba07e58 | |||
a5ed998753 | |||
68bd83a63f | |||
a7bb2c1aaf | |||
0c504b4832 | |||
672bd852ed | |||
699a777dfd | |||
869cecdb4a | |||
f85bf40d3d | |||
088228d0ad | |||
fd61002d65 | |||
35f198ba7c | |||
b0b43603b4 | |||
7c6d92b38c | |||
6209855f0b | |||
14807f7a1d | |||
382e2b34ab | |||
9c3147101f | |||
a851b59581 | |||
cc5b4947c2 | |||
de7c644813 | |||
0caaece756 | |||
b20097a867 | |||
fa0a7e2c10 | |||
89d2812724 | |||
d23139f5af | |||
d5425192b6 | |||
8b25cd70b3 | |||
9f83afce3a | |||
c958ed2632 | |||
583955df67 | |||
a6a8ad436a | |||
33e9f2a3f2 | |||
6117764e42 | |||
55f23b4099 | |||
9443f5c372 | |||
1b9e55592f | |||
92e8e0946d | |||
c272d9013d | |||
1dd56a5084 | |||
236c4ea33a | |||
c8dc474476 | |||
8d87f21cce | |||
3c32455a12 | |||
8679da9be4 | |||
f8178f1f7f | |||
2bc06c4027 | |||
24a06b54f3 | |||
0daa7cb254 | |||
e40c1b54c8 | |||
f4771cb2be | |||
760819d4e8 | |||
e4ce5cbd84 | |||
fa90fa90e9 | |||
9f2525e503 | |||
cc62a9b139 | |||
2d27a8a6d4 | |||
2618ee154d | |||
4f5a45f096 | |||
3e7ae97312 | |||
df2ca1901e | |||
bb812c882b | |||
044b9e6834 | |||
8828b75917 | |||
4e4320c4a2 | |||
7013aeea3e | |||
abc5bc57d4 | |||
d7168d096f |
@@ -11,10 +11,8 @@ if [ -z $IFS ]; then
|
|||||||
IFS=$'\n'
|
IFS=$'\n'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
GIT_UPDATE_LOG=/opt/app/tools/atbupdate/update_log.csv
|
GIT_UPDATE_LOG=/opt/app/tools/atbupdate/update_log.csv
|
||||||
|
|
||||||
|
|
||||||
#TODO: use in UpdateController
|
#TODO: use in UpdateController
|
||||||
|
|
||||||
get_blob () { # get the blob of the file(name) passed as $1
|
get_blob () { # get the blob of the file(name) passed as $1
|
||||||
@@ -29,7 +27,6 @@ get_commit_for_blob () {
|
|||||||
grep -q $1 && echo -n {} && head -n 1")
|
grep -q $1 && echo -n {} && head -n 1")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
write_log_file () {
|
write_log_file () {
|
||||||
local now=$(date +"%Y-%m-%dT%T")
|
local now=$(date +"%Y-%m-%dT%T")
|
||||||
for fn in $(git diff-tree -r HEAD@{1} HEAD --name-only); do
|
for fn in $(git diff-tree -r HEAD@{1} HEAD --name-only); do
|
||||||
|
35
.gitignore
vendored
35
.gitignore
vendored
@@ -1,27 +1,16 @@
|
|||||||
# First, ignore everything
|
|
||||||
*
|
*
|
||||||
# Now, whitelist anything that's a directory
|
|
||||||
!*/
|
|
||||||
# And all the file types you're interested in
|
|
||||||
!.gitignore
|
|
||||||
!.githooks/post-merge
|
|
||||||
!.githooks/post-checkout
|
|
||||||
!**/.gitignore
|
|
||||||
!**/.githooks/post-merge
|
|
||||||
!**/.githooks/post-checkout
|
|
||||||
|
|
||||||
## Except
|
## Except
|
||||||
!etc/atb/*
|
!**/.gitignore
|
||||||
!etc/psa_config/*
|
!**/.githooks/post-merge
|
||||||
!etc/psa_update/*
|
!/etc/*.ini
|
||||||
!etc/psa_tariff/*
|
!/etc/atb/*.ini
|
||||||
!etc/dc/*.hex
|
!/etc/psa_config/*
|
||||||
!etc/dc/*.bin
|
!/etc/psa_update/*
|
||||||
!*/etc/*.ini
|
!/etc/psa_tariff/*
|
||||||
!*/etc/atb/*
|
!/etc/dc/dc2c.hex
|
||||||
!*/etc/psa_config/*
|
|
||||||
!*/etc/psa_update/*
|
!/opt/app/ATBAPP/*.ini
|
||||||
!*/etc/psa_tariff/*
|
!/opt/app/sysconfig/*.ini
|
||||||
!*/etc/dc/*.hex
|
!/opt/app/ISMASMgr/*.ini
|
||||||
!*/etc/dc/*.bin
|
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
dc2c.4.33.bin
|
|
16
etc/psa_config/DC2C_cash.json
Normal file
16
etc/psa_config/DC2C_cash.json
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"title":"DC2C_cash ",
|
||||||
|
"project":"DBM Szeged",
|
||||||
|
"version":"1.0.0-2024-07-05",
|
||||||
|
"CoinDenom(15..0)":[200,100,50,0,0,0,0,100,200,100,50,20,10,5,0,3],
|
||||||
|
"CoinValue(15..0)":[730,365,185,0,0,0,0,100,200,100,50,20,10,5,0,3],
|
||||||
|
"CoinAccept(15..0)":[1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,1],
|
||||||
|
"ExchangeRate":365,
|
||||||
|
"TokenChannel":1,
|
||||||
|
"BillValues(7..0)":[0,0,0,0,0,0,0,0],
|
||||||
|
"LocalTaxRate":20,
|
||||||
|
"ForeignTaxRate":19,
|
||||||
|
"Surcharge":0,
|
||||||
|
"Discount":0
|
||||||
|
}
|
||||||
|
|
27
etc/psa_config/DC2C_print22.json
Executable file
27
etc/psa_config/DC2C_print22.json
Executable file
@@ -0,0 +1,27 @@
|
|||||||
|
"title":"DC2C_pri22",
|
||||||
|
"project":"DBM Szeged StartParking",
|
||||||
|
"styl":"size 00",
|
||||||
|
"text":"Automata száma: ",
|
||||||
|
"vari":"manu",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":"Igazoló sz. sorsz: ",
|
||||||
|
"feed":"nl",
|
||||||
|
"vari":"Dynamic07",
|
||||||
|
"feed":"nl",
|
||||||
|
"vari":"Dynamic08",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":"Az igazolo szelvény",
|
||||||
|
"feed":"nl"
|
||||||
|
"text":"a nyugtával együtt érvényes. ",
|
||||||
|
"feed":"nl",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":"Üf. szolg nyitvatartás:",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":"Zrínyi utca 4-8",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":"H - P: 7:45 - 17:00",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":"Tel: (80) 820-500",
|
||||||
|
"feed":"nl",
|
||||||
|
"feed":"nl"
|
||||||
|
}
|
29
etc/psa_config/DC2C_print25.json
Executable file
29
etc/psa_config/DC2C_print25.json
Executable file
@@ -0,0 +1,29 @@
|
|||||||
|
{
|
||||||
|
"title":"DC2C_pri25",
|
||||||
|
"project":"DBM Szeged StopParking",
|
||||||
|
"text":"érvényes.",
|
||||||
|
"feed":"nl",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":"Üf. szolg nyitvatartás:"
|
||||||
|
"feed":"nl",
|
||||||
|
"text":" Zrínyi utca 4-8",
|
||||||
|
"styl":"size 00",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":" H - P: 7:45 - 17:00",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":" Tel: (80) 820-500",
|
||||||
|
"feed":"nl",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":"Szegedi Közlekedési Kft",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":" 6720 Szeged ",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":" Zrínyi utca 4-8.",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":"Adósz: 11092612-2-06",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":" A jegy ára az ÁFA-t",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":" tartalmazza!",
|
||||||
|
"feed":"nl"
|
||||||
|
}
|
34
etc/psa_config/DC2C_print28.json
Executable file
34
etc/psa_config/DC2C_print28.json
Executable file
@@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
"title":"DC2C_pri28",
|
||||||
|
"project":"DBM Szeged Error",
|
||||||
|
"styl":"size 00",
|
||||||
|
"text":" Üf. szolg nyitvatartás:",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":" Zrínyi utca 4-8 ",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":" H - P: 7:45 - 17:00",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":" Tel: (80) 820-500",
|
||||||
|
"feed":"nl",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":"Szegedi Közlekedési Kft",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":" 6720",
|
||||||
|
"text":" Szeged ",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":" Zrínyi utca 4-8",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":"Adósz: ",
|
||||||
|
"text":"11092612-2-06",
|
||||||
|
"feed":"nl",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":"Parkoljon egy érintéssel.",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":"Használja bankkártyáját",
|
||||||
|
"feed":"nl",
|
||||||
|
"text":" automatáinknál",
|
||||||
|
"text":" is!",
|
||||||
|
"feed":"nl",
|
||||||
|
"feed":"eject"
|
||||||
|
|
||||||
|
}
|
Binary file not shown.
@@ -1,4 +1,7 @@
|
|||||||
{
|
{
|
||||||
|
"Project" : "Szeged Zone 1",
|
||||||
|
"Version" : "1.0.1",
|
||||||
|
"Info" : "6725",
|
||||||
"Currency": [
|
"Currency": [
|
||||||
{
|
{
|
||||||
"pcu_id": 2,
|
"pcu_id": 2,
|
||||||
@@ -36,7 +39,7 @@
|
|||||||
"pop_price_night": 0,
|
"pop_price_night": 0,
|
||||||
"pop_min_time": 15,
|
"pop_min_time": 15,
|
||||||
"pop_max_time": 360,
|
"pop_max_time": 360,
|
||||||
"pop_min_price": 0,
|
"pop_min_price": 42,
|
||||||
"pop_carry_over": 1,
|
"pop_carry_over": 1,
|
||||||
"pop_daily_card_price": 990
|
"pop_daily_card_price": 990
|
||||||
}
|
}
|
||||||
@@ -465,182 +468,102 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"SpecialDays": [
|
"SpecialDays": [
|
||||||
{
|
|
||||||
"ped_id": 11,
|
|
||||||
"ped_label": "Christmas 1st day",
|
|
||||||
"ped_date_start": "2023-12-25",
|
|
||||||
"ped_date_end": "2023-12-25",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 13,
|
|
||||||
"ped_label": "Christmas 2nd day",
|
|
||||||
"ped_date_start": "2023-12-26",
|
|
||||||
"ped_date_end": "2023-12-26",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"ped_id": 14,
|
"ped_id": 14,
|
||||||
"ped_label": "Republic Day (Hungary)",
|
"ped_label": "Republic Day (Hungary)",
|
||||||
"ped_date_start": "2024-10-23",
|
"ped_date_start": "2025-10-23",
|
||||||
"ped_date_end": "2024-10-23",
|
"ped_date_end": "2025-10-23",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"ped_id": 2016,
|
|
||||||
"ped_label": "Christmas (Sunday)",
|
|
||||||
"ped_date_start": "2023-12-24",
|
|
||||||
"ped_date_end": "2023-12-24",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2021,
|
|
||||||
"ped_label": "Holiday (Hungary)",
|
|
||||||
"ped_date_start": "2024-08-19",
|
|
||||||
"ped_date_end": "2024-08-19",
|
|
||||||
"ped_period_special_day_id": 1,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"ped_id": 2022,
|
"ped_id": 2022,
|
||||||
"ped_label": "NewYear",
|
"ped_label": "NewYear",
|
||||||
"ped_date_start": "2024-01-01",
|
"ped_date_start": "2025-01-01",
|
||||||
"ped_date_end": "2024-01-01",
|
"ped_date_end": "2025-01-01",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2024,
|
"ped_id": 2024,
|
||||||
"ped_label": "Good Friday",
|
"ped_label": "Good Friday",
|
||||||
"ped_date_start": "2024-03-29",
|
"ped_date_start": "2025-04-18",
|
||||||
"ped_date_end": "2024-03-29",
|
"ped_date_end": "2025-04-18",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2025,
|
"ped_id": 2025,
|
||||||
"ped_label": "Easter Sunday",
|
"ped_label": "Easter Sunday",
|
||||||
"ped_date_start": "2024-03-31",
|
"ped_date_start": "2025-04-20",
|
||||||
"ped_date_end": "2024-03-31",
|
"ped_date_end": "2025-04-20",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2026,
|
"ped_id": 2026,
|
||||||
"ped_label": "Easter Monday",
|
"ped_label": "Easter Monday",
|
||||||
"ped_date_start": "2024-04-01",
|
"ped_date_start": "2025-04-21",
|
||||||
"ped_date_end": "2024-04-01",
|
"ped_date_end": "2025-04-21",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2027,
|
"ped_id": 2027,
|
||||||
"ped_label": "Whit Sunday",
|
"ped_label": "Whit Sunday",
|
||||||
"ped_date_start": "2024-05-19",
|
"ped_date_start": "2025-06-08",
|
||||||
"ped_date_end": "2024-05-19",
|
"ped_date_end": "2025-06-08",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2028,
|
"ped_id": 2028,
|
||||||
"ped_label": "Whit Monday",
|
"ped_label": "Whit Monday",
|
||||||
"ped_date_start": "2024-05-20",
|
"ped_date_start": "2025-06-09",
|
||||||
"ped_date_end": "2024-05-20",
|
"ped_date_end": "2025-06-09",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2029,
|
"ped_id": 2029,
|
||||||
"ped_label": "Revolution Day (Hungary)",
|
"ped_label": "Revolution Day (Hungary)",
|
||||||
"ped_date_start": "2024-03-15",
|
"ped_date_start": "2025-03-15",
|
||||||
"ped_date_end": "2024-03-15",
|
"ped_date_end": "2025-03-15",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2030,
|
"ped_id": 2030,
|
||||||
"ped_label": "Labour Day",
|
"ped_label": "Labour Day",
|
||||||
"ped_date_start": "2024-05-01",
|
"ped_date_start": "2025-05-01",
|
||||||
"ped_date_end": "2024-05-01",
|
"ped_date_end": "2025-05-01",
|
||||||
|
"ped_period_special_day_id": 2,
|
||||||
|
"ped_year": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ped_id": 2060,
|
||||||
|
"ped_label": "Labour Day 2",
|
||||||
|
"ped_date_start": "2025-05-02",
|
||||||
|
"ped_date_end": "2025-05-02",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2031,
|
"ped_id": 2031,
|
||||||
"ped_label": "Saint Stephens Day (Hungary)",
|
"ped_label": "Saint Stephens Day (Hungary)",
|
||||||
"ped_date_start": "2024-08-20",
|
"ped_date_start": "2025-08-20",
|
||||||
"ped_date_end": "2024-08-20",
|
"ped_date_end": "2025-08-20",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2032,
|
"ped_id": 2032,
|
||||||
"ped_label": "All Saints Day",
|
"ped_label": "All Saints Day",
|
||||||
"ped_date_start": "2024-11-01",
|
"ped_date_start": "2025-11-01",
|
||||||
"ped_date_end": "2024-11-01",
|
"ped_date_end": "2025-11-01",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"ped_id": 2034,
|
|
||||||
"ped_label": "Good Friday",
|
|
||||||
"ped_date_start": "2025-04-18",
|
|
||||||
"ped_date_end": "2025-04-18",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2035,
|
|
||||||
"ped_label": "Easter Sunday",
|
|
||||||
"ped_date_start": "2025-04-20",
|
|
||||||
"ped_date_end": "2025-04-20",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2036,
|
|
||||||
"ped_label": "Easter Monday",
|
|
||||||
"ped_date_start": "2025-04-21",
|
|
||||||
"ped_date_end": "2025-04-21",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2037,
|
|
||||||
"ped_label": "Whit Monday",
|
|
||||||
"ped_date_start": "2025-06-09",
|
|
||||||
"ped_date_end": "2025-06-09",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2038,
|
|
||||||
"ped_label": "Whit Sunday",
|
|
||||||
"ped_date_start": "2025-06-08",
|
|
||||||
"ped_date_end": "2025-06-08",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2050,
|
|
||||||
"ped_label": "Uskrs",
|
|
||||||
"ped_date_start": "2023-04-16",
|
|
||||||
"ped_date_end": "2023-04-16",
|
|
||||||
"ped_period_special_day_id": 1,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2051,
|
|
||||||
"ped_label": "Uskrs",
|
|
||||||
"ped_date_start": "2023-04-16",
|
|
||||||
"ped_date_end": "2023-04-16",
|
|
||||||
"ped_period_special_day_id": 1,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"ped_id": 2052,
|
"ped_id": 2052,
|
||||||
"ped_label": "Christmas 1st day",
|
"ped_label": "Christmas 1st day",
|
||||||
@@ -658,10 +581,18 @@
|
|||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2054,
|
"ped_id": 2056,
|
||||||
"ped_label": "Republic Day (Hungary)",
|
"ped_label": "Christmas 3rd day",
|
||||||
"ped_date_start": "2025-10-23",
|
"ped_date_start": "2024-12-27",
|
||||||
"ped_date_end": "2025-10-23",
|
"ped_date_end": "2024-12-27",
|
||||||
|
"ped_period_special_day_id": 2,
|
||||||
|
"ped_year": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ped_id": 2061,
|
||||||
|
"ped_label": "Christmas 4th day",
|
||||||
|
"ped_date_start": "2024-12-28",
|
||||||
|
"ped_date_end": "2024-12-28",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
@@ -675,123 +606,38 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2057,
|
"ped_id": 2057,
|
||||||
"ped_label": "NewYear",
|
"ped_label": "Christmas 1st day",
|
||||||
"ped_date_start": "2025-01-01",
|
"ped_date_start": "2025-12-25",
|
||||||
"ped_date_end": "2025-01-01",
|
"ped_date_end": "2025-12-25",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2058,
|
"ped_id": 2058,
|
||||||
"ped_label": "Good Friday",
|
"ped_label": "Christmas 2nd day",
|
||||||
"ped_date_start": "2026-04-03",
|
"ped_date_start": "2025-12-26",
|
||||||
"ped_date_end": "2026-04-03",
|
"ped_date_end": "2025-12-26",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2059,
|
"ped_id": 2059,
|
||||||
"ped_label": "Easter Sunday",
|
"ped_label": "Christmas 3rd day",
|
||||||
"ped_date_start": "2026-04-05",
|
"ped_date_start": "2025-12-27",
|
||||||
"ped_date_end": "2026-04-05",
|
"ped_date_end": "2025-12-27",
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2060,
|
|
||||||
"ped_label": "Easter Monday",
|
|
||||||
"ped_date_start": "2026-04-05",
|
|
||||||
"ped_date_end": "2026-04-05",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2061,
|
|
||||||
"ped_label": "Whit Sunday",
|
|
||||||
"ped_date_start": "2026-05-24",
|
|
||||||
"ped_date_end": "2026-05-24",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2062,
|
|
||||||
"ped_label": "Whit Monday",
|
|
||||||
"ped_date_start": "2026-05-25",
|
|
||||||
"ped_date_end": "2026-05-25",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2063,
|
|
||||||
"ped_label": "Revolution Day (Hungary)",
|
|
||||||
"ped_date_start": "2025-03-15",
|
|
||||||
"ped_date_end": "2025-03-15",
|
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2064,
|
"ped_id": 2055,
|
||||||
"ped_label": "Labour Day",
|
"ped_label": "Christmas",
|
||||||
"ped_date_start": "2025-05-01",
|
"ped_date_start": "2025-12-24",
|
||||||
"ped_date_end": "2025-05-01",
|
"ped_date_end": "2025-12-24",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2065,
|
|
||||||
"ped_label": "Saint Stephens Day (Hungary)",
|
|
||||||
"ped_date_start": "2025-08-20",
|
|
||||||
"ped_date_end": "2025-08-20",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2066,
|
|
||||||
"ped_label": "All Saints Day",
|
|
||||||
"ped_date_start": "2025-11-01",
|
|
||||||
"ped_date_end": "2025-11-01",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2067,
|
|
||||||
"ped_label": "Good Friday",
|
|
||||||
"ped_date_start": "2027-03-26",
|
|
||||||
"ped_date_end": "2027-03-26",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2068,
|
|
||||||
"ped_label": "Easter Sunday",
|
|
||||||
"ped_date_start": "2027-03-28",
|
|
||||||
"ped_date_end": "2027-03-28",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2069,
|
|
||||||
"ped_label": "Easter Monday",
|
|
||||||
"ped_date_start": "2027-03-29",
|
|
||||||
"ped_date_end": "2024-03-29",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2070,
|
|
||||||
"ped_label": "Whit Monday",
|
|
||||||
"ped_date_start": "2027-05-17",
|
|
||||||
"ped_date_end": "2027-05-17",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2071,
|
|
||||||
"ped_label": "Whit Sunday",
|
|
||||||
"ped_date_start": "2027-05-16",
|
|
||||||
"ped_date_end": "2027-05-16",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@@ -1,4 +1,7 @@
|
|||||||
{
|
{
|
||||||
|
"Project" : "Szeged Zone 2",
|
||||||
|
"Version" : "1.0.1",
|
||||||
|
"Info" : "6724",
|
||||||
"Currency": [
|
"Currency": [
|
||||||
{
|
{
|
||||||
"pcu_id": 2,
|
"pcu_id": 2,
|
||||||
@@ -35,8 +38,8 @@
|
|||||||
"pop_day_night_end_time": "16:27:00",
|
"pop_day_night_end_time": "16:27:00",
|
||||||
"pop_price_night": 0,
|
"pop_price_night": 0,
|
||||||
"pop_min_time": 15,
|
"pop_min_time": 15,
|
||||||
"pop_max_time": 300,
|
"pop_max_time": 360,
|
||||||
"pop_min_price": 0,
|
"pop_min_price": 65,
|
||||||
"pop_carry_over": 1,
|
"pop_carry_over": 1,
|
||||||
"pop_daily_card_price": 1560
|
"pop_daily_card_price": 1560
|
||||||
}
|
}
|
||||||
@@ -465,182 +468,102 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"SpecialDays": [
|
"SpecialDays": [
|
||||||
{
|
|
||||||
"ped_id": 11,
|
|
||||||
"ped_label": "Christmas 1st day",
|
|
||||||
"ped_date_start": "2023-12-25",
|
|
||||||
"ped_date_end": "2023-12-25",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 13,
|
|
||||||
"ped_label": "Christmas 2nd day",
|
|
||||||
"ped_date_start": "2023-12-26",
|
|
||||||
"ped_date_end": "2023-12-26",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"ped_id": 14,
|
"ped_id": 14,
|
||||||
"ped_label": "Republic Day (Hungary)",
|
"ped_label": "Republic Day (Hungary)",
|
||||||
"ped_date_start": "2024-10-23",
|
"ped_date_start": "2025-10-23",
|
||||||
"ped_date_end": "2024-10-23",
|
"ped_date_end": "2025-10-23",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"ped_id": 2016,
|
|
||||||
"ped_label": "Christmas (Sunday)",
|
|
||||||
"ped_date_start": "2023-12-24",
|
|
||||||
"ped_date_end": "2023-12-24",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2021,
|
|
||||||
"ped_label": "Holiday (Hungary)",
|
|
||||||
"ped_date_start": "2024-08-19",
|
|
||||||
"ped_date_end": "2024-08-19",
|
|
||||||
"ped_period_special_day_id": 1,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"ped_id": 2022,
|
"ped_id": 2022,
|
||||||
"ped_label": "NewYear",
|
"ped_label": "NewYear",
|
||||||
"ped_date_start": "2024-01-01",
|
"ped_date_start": "2025-01-01",
|
||||||
"ped_date_end": "2024-01-01",
|
"ped_date_end": "2025-01-01",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2024,
|
"ped_id": 2024,
|
||||||
"ped_label": "Good Friday",
|
"ped_label": "Good Friday",
|
||||||
"ped_date_start": "2024-03-29",
|
"ped_date_start": "2025-04-18",
|
||||||
"ped_date_end": "2024-03-29",
|
"ped_date_end": "2025-04-18",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2025,
|
"ped_id": 2025,
|
||||||
"ped_label": "Easter Sunday",
|
"ped_label": "Easter Sunday",
|
||||||
"ped_date_start": "2024-03-31",
|
"ped_date_start": "2025-04-20",
|
||||||
"ped_date_end": "2024-03-31",
|
"ped_date_end": "2025-04-20",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2026,
|
"ped_id": 2026,
|
||||||
"ped_label": "Easter Monday",
|
"ped_label": "Easter Monday",
|
||||||
"ped_date_start": "2024-04-01",
|
"ped_date_start": "2025-04-21",
|
||||||
"ped_date_end": "2024-04-01",
|
"ped_date_end": "2025-04-21",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2027,
|
"ped_id": 2027,
|
||||||
"ped_label": "Whit Sunday",
|
"ped_label": "Whit Sunday",
|
||||||
"ped_date_start": "2024-05-19",
|
"ped_date_start": "2025-06-08",
|
||||||
"ped_date_end": "2024-05-19",
|
"ped_date_end": "2025-06-08",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2028,
|
"ped_id": 2028,
|
||||||
"ped_label": "Whit Monday",
|
"ped_label": "Whit Monday",
|
||||||
"ped_date_start": "2024-05-20",
|
"ped_date_start": "2025-06-09",
|
||||||
"ped_date_end": "2024-05-20",
|
"ped_date_end": "2025-06-09",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2029,
|
"ped_id": 2029,
|
||||||
"ped_label": "Revolution Day (Hungary)",
|
"ped_label": "Revolution Day (Hungary)",
|
||||||
"ped_date_start": "2024-03-15",
|
"ped_date_start": "2025-03-15",
|
||||||
"ped_date_end": "2024-03-15",
|
"ped_date_end": "2025-03-15",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2030,
|
"ped_id": 2030,
|
||||||
"ped_label": "Labour Day",
|
"ped_label": "Labour Day",
|
||||||
"ped_date_start": "2024-05-01",
|
"ped_date_start": "2025-05-01",
|
||||||
"ped_date_end": "2024-05-01",
|
"ped_date_end": "2025-05-01",
|
||||||
|
"ped_period_special_day_id": 2,
|
||||||
|
"ped_year": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ped_id": 2060,
|
||||||
|
"ped_label": "Labour Day 2",
|
||||||
|
"ped_date_start": "2025-05-02",
|
||||||
|
"ped_date_end": "2025-05-02",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2031,
|
"ped_id": 2031,
|
||||||
"ped_label": "Saint Stephens Day (Hungary)",
|
"ped_label": "Saint Stephens Day (Hungary)",
|
||||||
"ped_date_start": "2024-08-20",
|
"ped_date_start": "2025-08-20",
|
||||||
"ped_date_end": "2024-08-20",
|
"ped_date_end": "2025-08-20",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2032,
|
"ped_id": 2032,
|
||||||
"ped_label": "All Saints Day",
|
"ped_label": "All Saints Day",
|
||||||
"ped_date_start": "2024-11-01",
|
"ped_date_start": "2025-11-01",
|
||||||
"ped_date_end": "2024-11-01",
|
"ped_date_end": "2025-11-01",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"ped_id": 2034,
|
|
||||||
"ped_label": "Good Friday",
|
|
||||||
"ped_date_start": "2025-04-18",
|
|
||||||
"ped_date_end": "2025-04-18",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2035,
|
|
||||||
"ped_label": "Easter Sunday",
|
|
||||||
"ped_date_start": "2025-04-20",
|
|
||||||
"ped_date_end": "2025-04-20",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2036,
|
|
||||||
"ped_label": "Easter Monday",
|
|
||||||
"ped_date_start": "2025-04-21",
|
|
||||||
"ped_date_end": "2025-04-21",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2037,
|
|
||||||
"ped_label": "Whit Monday",
|
|
||||||
"ped_date_start": "2025-06-09",
|
|
||||||
"ped_date_end": "2025-06-09",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2038,
|
|
||||||
"ped_label": "Whit Sunday",
|
|
||||||
"ped_date_start": "2025-06-08",
|
|
||||||
"ped_date_end": "2025-06-08",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2050,
|
|
||||||
"ped_label": "Uskrs",
|
|
||||||
"ped_date_start": "2023-04-16",
|
|
||||||
"ped_date_end": "2023-04-16",
|
|
||||||
"ped_period_special_day_id": 1,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2051,
|
|
||||||
"ped_label": "Uskrs",
|
|
||||||
"ped_date_start": "2023-04-16",
|
|
||||||
"ped_date_end": "2023-04-16",
|
|
||||||
"ped_period_special_day_id": 1,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"ped_id": 2052,
|
"ped_id": 2052,
|
||||||
"ped_label": "Christmas 1st day",
|
"ped_label": "Christmas 1st day",
|
||||||
@@ -658,10 +581,18 @@
|
|||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2054,
|
"ped_id": 2056,
|
||||||
"ped_label": "Republic Day (Hungary)",
|
"ped_label": "Christmas 3rd day",
|
||||||
"ped_date_start": "2025-10-23",
|
"ped_date_start": "2024-12-27",
|
||||||
"ped_date_end": "2025-10-23",
|
"ped_date_end": "2024-12-27",
|
||||||
|
"ped_period_special_day_id": 2,
|
||||||
|
"ped_year": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ped_id": 2061,
|
||||||
|
"ped_label": "Christmas 4th day",
|
||||||
|
"ped_date_start": "2024-12-28",
|
||||||
|
"ped_date_end": "2024-12-28",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
@@ -675,123 +606,39 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2057,
|
"ped_id": 2057,
|
||||||
"ped_label": "NewYear",
|
"ped_label": "Christmas 1st day",
|
||||||
"ped_date_start": "2025-01-01",
|
"ped_date_start": "2025-12-25",
|
||||||
"ped_date_end": "2025-01-01",
|
"ped_date_end": "2025-12-25",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2058,
|
"ped_id": 2058,
|
||||||
"ped_label": "Good Friday",
|
"ped_label": "Christmas 2nd day",
|
||||||
"ped_date_start": "2026-04-03",
|
"ped_date_start": "2025-12-26",
|
||||||
"ped_date_end": "2026-04-03",
|
"ped_date_end": "2025-12-26",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2059,
|
"ped_id": 2059,
|
||||||
"ped_label": "Easter Sunday",
|
"ped_label": "Christmas 3rd day",
|
||||||
"ped_date_start": "2026-04-05",
|
"ped_date_start": "2025-12-27",
|
||||||
"ped_date_end": "2026-04-05",
|
"ped_date_end": "2025-12-27",
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2060,
|
|
||||||
"ped_label": "Easter Monday",
|
|
||||||
"ped_date_start": "2026-04-05",
|
|
||||||
"ped_date_end": "2026-04-05",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2061,
|
|
||||||
"ped_label": "Whit Sunday",
|
|
||||||
"ped_date_start": "2026-05-24",
|
|
||||||
"ped_date_end": "2026-05-24",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2062,
|
|
||||||
"ped_label": "Whit Monday",
|
|
||||||
"ped_date_start": "2026-05-25",
|
|
||||||
"ped_date_end": "2026-05-25",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2063,
|
|
||||||
"ped_label": "Revolution Day (Hungary)",
|
|
||||||
"ped_date_start": "2025-03-15",
|
|
||||||
"ped_date_end": "2025-03-15",
|
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2064,
|
"ped_id": 2055,
|
||||||
"ped_label": "Labour Day",
|
"ped_label": "Christmas",
|
||||||
"ped_date_start": "2025-05-01",
|
"ped_date_start": "2025-12-24",
|
||||||
"ped_date_end": "2025-05-01",
|
"ped_date_end": "2025-12-24",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2065,
|
|
||||||
"ped_label": "Saint Stephens Day (Hungary)",
|
|
||||||
"ped_date_start": "2025-08-20",
|
|
||||||
"ped_date_end": "2025-08-20",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2066,
|
|
||||||
"ped_label": "All Saints Day",
|
|
||||||
"ped_date_start": "2025-11-01",
|
|
||||||
"ped_date_end": "2025-11-01",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2067,
|
|
||||||
"ped_label": "Good Friday",
|
|
||||||
"ped_date_start": "2027-03-26",
|
|
||||||
"ped_date_end": "2027-03-26",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2068,
|
|
||||||
"ped_label": "Easter Sunday",
|
|
||||||
"ped_date_start": "2027-03-28",
|
|
||||||
"ped_date_end": "2027-03-28",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2069,
|
|
||||||
"ped_label": "Easter Monday",
|
|
||||||
"ped_date_start": "2027-03-29",
|
|
||||||
"ped_date_end": "2024-03-29",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2070,
|
|
||||||
"ped_label": "Whit Monday",
|
|
||||||
"ped_date_start": "2027-05-17",
|
|
||||||
"ped_date_end": "2027-05-17",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2071,
|
|
||||||
"ped_label": "Whit Sunday",
|
|
||||||
"ped_date_start": "2027-05-16",
|
|
||||||
"ped_date_end": "2027-05-16",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@@ -1,4 +1,7 @@
|
|||||||
{
|
{
|
||||||
|
"Project" : "Szeged Zone 3",
|
||||||
|
"Version" : "1.0.1",
|
||||||
|
"Info" : "6721",
|
||||||
"Currency": [
|
"Currency": [
|
||||||
{
|
{
|
||||||
"pcu_id": 2,
|
"pcu_id": 2,
|
||||||
@@ -36,7 +39,7 @@
|
|||||||
"pop_price_night": 0,
|
"pop_price_night": 0,
|
||||||
"pop_min_time": 15,
|
"pop_min_time": 15,
|
||||||
"pop_max_time": 360,
|
"pop_max_time": 360,
|
||||||
"pop_min_price": 0,
|
"pop_min_price": 90,
|
||||||
"pop_carry_over": 1,
|
"pop_carry_over": 1,
|
||||||
"pop_daily_card_price": 2160
|
"pop_daily_card_price": 2160
|
||||||
}
|
}
|
||||||
@@ -100,13 +103,6 @@
|
|||||||
"pwd_period_day_in_week_id": 5,
|
"pwd_period_day_in_week_id": 5,
|
||||||
"pwd_time_from": "08:00:00",
|
"pwd_time_from": "08:00:00",
|
||||||
"pwd_time_to": "18:00:00"
|
"pwd_time_to": "18:00:00"
|
||||||
},
|
|
||||||
{
|
|
||||||
"pwd_id": 637,
|
|
||||||
"pwd_period_week_day_id": 37,
|
|
||||||
"pwd_period_day_in_week_id": 6,
|
|
||||||
"pwd_time_from": "08:00:00",
|
|
||||||
"pwd_time_to": "12:00:00"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"PeriodYear": [
|
"PeriodYear": [
|
||||||
@@ -472,182 +468,102 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"SpecialDays": [
|
"SpecialDays": [
|
||||||
{
|
|
||||||
"ped_id": 11,
|
|
||||||
"ped_label": "Christmas 1st day",
|
|
||||||
"ped_date_start": "2023-12-25",
|
|
||||||
"ped_date_end": "2023-12-25",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 13,
|
|
||||||
"ped_label": "Christmas 2nd day",
|
|
||||||
"ped_date_start": "2023-12-26",
|
|
||||||
"ped_date_end": "2023-12-26",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"ped_id": 14,
|
"ped_id": 14,
|
||||||
"ped_label": "Republic Day (Hungary)",
|
"ped_label": "Republic Day (Hungary)",
|
||||||
"ped_date_start": "2024-10-23",
|
"ped_date_start": "2025-10-23",
|
||||||
"ped_date_end": "2024-10-23",
|
"ped_date_end": "2025-10-23",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"ped_id": 2016,
|
|
||||||
"ped_label": "Christmas (Sunday)",
|
|
||||||
"ped_date_start": "2023-12-24",
|
|
||||||
"ped_date_end": "2023-12-24",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2021,
|
|
||||||
"ped_label": "Holiday (Hungary)",
|
|
||||||
"ped_date_start": "2024-08-19",
|
|
||||||
"ped_date_end": "2024-08-19",
|
|
||||||
"ped_period_special_day_id": 1,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"ped_id": 2022,
|
"ped_id": 2022,
|
||||||
"ped_label": "NewYear",
|
"ped_label": "NewYear",
|
||||||
"ped_date_start": "2024-01-01",
|
"ped_date_start": "2025-01-01",
|
||||||
"ped_date_end": "2024-01-01",
|
"ped_date_end": "2025-01-01",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2024,
|
"ped_id": 2024,
|
||||||
"ped_label": "Good Friday",
|
"ped_label": "Good Friday",
|
||||||
"ped_date_start": "2024-03-29",
|
"ped_date_start": "2025-04-18",
|
||||||
"ped_date_end": "2024-03-29",
|
"ped_date_end": "2025-04-18",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2025,
|
"ped_id": 2025,
|
||||||
"ped_label": "Easter Sunday",
|
"ped_label": "Easter Sunday",
|
||||||
"ped_date_start": "2024-03-31",
|
"ped_date_start": "2025-04-20",
|
||||||
"ped_date_end": "2024-03-31",
|
"ped_date_end": "2025-04-20",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2026,
|
"ped_id": 2026,
|
||||||
"ped_label": "Easter Monday",
|
"ped_label": "Easter Monday",
|
||||||
"ped_date_start": "2024-04-01",
|
"ped_date_start": "2025-04-21",
|
||||||
"ped_date_end": "2024-04-01",
|
"ped_date_end": "2025-04-21",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2027,
|
"ped_id": 2027,
|
||||||
"ped_label": "Whit Sunday",
|
"ped_label": "Whit Sunday",
|
||||||
"ped_date_start": "2024-05-19",
|
"ped_date_start": "2025-06-08",
|
||||||
"ped_date_end": "2024-05-19",
|
"ped_date_end": "2025-06-08",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2028,
|
"ped_id": 2028,
|
||||||
"ped_label": "Whit Monday",
|
"ped_label": "Whit Monday",
|
||||||
"ped_date_start": "2024-05-20",
|
"ped_date_start": "2025-06-09",
|
||||||
"ped_date_end": "2024-05-20",
|
"ped_date_end": "2025-06-09",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2029,
|
"ped_id": 2029,
|
||||||
"ped_label": "Revolution Day (Hungary)",
|
"ped_label": "Revolution Day (Hungary)",
|
||||||
"ped_date_start": "2024-03-15",
|
"ped_date_start": "2025-03-15",
|
||||||
"ped_date_end": "2024-03-15",
|
"ped_date_end": "2025-03-15",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2030,
|
"ped_id": 2030,
|
||||||
"ped_label": "Labour Day",
|
"ped_label": "Labour Day",
|
||||||
"ped_date_start": "2024-05-01",
|
"ped_date_start": "2025-05-01",
|
||||||
"ped_date_end": "2024-05-01",
|
"ped_date_end": "2025-05-01",
|
||||||
|
"ped_period_special_day_id": 2,
|
||||||
|
"ped_year": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ped_id": 2060,
|
||||||
|
"ped_label": "Labour Day 2",
|
||||||
|
"ped_date_start": "2025-05-02",
|
||||||
|
"ped_date_end": "2025-05-02",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2031,
|
"ped_id": 2031,
|
||||||
"ped_label": "Saint Stephens Day (Hungary)",
|
"ped_label": "Saint Stephens Day (Hungary)",
|
||||||
"ped_date_start": "2024-08-20",
|
"ped_date_start": "2025-08-20",
|
||||||
"ped_date_end": "2024-08-20",
|
"ped_date_end": "2025-08-20",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2032,
|
"ped_id": 2032,
|
||||||
"ped_label": "All Saints Day",
|
"ped_label": "All Saints Day",
|
||||||
"ped_date_start": "2024-11-01",
|
"ped_date_start": "2025-11-01",
|
||||||
"ped_date_end": "2024-11-01",
|
"ped_date_end": "2025-11-01",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"ped_id": 2034,
|
|
||||||
"ped_label": "Good Friday",
|
|
||||||
"ped_date_start": "2025-04-18",
|
|
||||||
"ped_date_end": "2025-04-18",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2035,
|
|
||||||
"ped_label": "Easter Sunday",
|
|
||||||
"ped_date_start": "2025-04-20",
|
|
||||||
"ped_date_end": "2025-04-20",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2036,
|
|
||||||
"ped_label": "Easter Monday",
|
|
||||||
"ped_date_start": "2025-04-21",
|
|
||||||
"ped_date_end": "2025-04-21",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2037,
|
|
||||||
"ped_label": "Whit Monday",
|
|
||||||
"ped_date_start": "2025-06-09",
|
|
||||||
"ped_date_end": "2025-06-09",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2038,
|
|
||||||
"ped_label": "Whit Sunday",
|
|
||||||
"ped_date_start": "2025-06-08",
|
|
||||||
"ped_date_end": "2025-06-08",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2050,
|
|
||||||
"ped_label": "Uskrs",
|
|
||||||
"ped_date_start": "2023-04-16",
|
|
||||||
"ped_date_end": "2023-04-16",
|
|
||||||
"ped_period_special_day_id": 1,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2051,
|
|
||||||
"ped_label": "Uskrs",
|
|
||||||
"ped_date_start": "2023-04-16",
|
|
||||||
"ped_date_end": "2023-04-16",
|
|
||||||
"ped_period_special_day_id": 1,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"ped_id": 2052,
|
"ped_id": 2052,
|
||||||
"ped_label": "Christmas 1st day",
|
"ped_label": "Christmas 1st day",
|
||||||
@@ -665,10 +581,18 @@
|
|||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2054,
|
"ped_id": 2056,
|
||||||
"ped_label": "Republic Day (Hungary)",
|
"ped_label": "Christmas 3rd day",
|
||||||
"ped_date_start": "2025-10-23",
|
"ped_date_start": "2024-12-27",
|
||||||
"ped_date_end": "2025-10-23",
|
"ped_date_end": "2024-12-27",
|
||||||
|
"ped_period_special_day_id": 2,
|
||||||
|
"ped_year": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ped_id": 2061,
|
||||||
|
"ped_label": "Christmas 4th day",
|
||||||
|
"ped_date_start": "2024-12-28",
|
||||||
|
"ped_date_end": "2024-12-28",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
@@ -682,123 +606,40 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2057,
|
"ped_id": 2057,
|
||||||
"ped_label": "NewYear",
|
"ped_label": "Christmas 1st day",
|
||||||
"ped_date_start": "2025-01-01",
|
"ped_date_start": "2025-12-25",
|
||||||
"ped_date_end": "2025-01-01",
|
"ped_date_end": "2025-12-25",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2058,
|
"ped_id": 2058,
|
||||||
"ped_label": "Good Friday",
|
"ped_label": "Christmas 2nd day",
|
||||||
"ped_date_start": "2026-04-03",
|
"ped_date_start": "2025-12-26",
|
||||||
"ped_date_end": "2026-04-03",
|
"ped_date_end": "2025-12-26",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2059,
|
"ped_id": 2059,
|
||||||
"ped_label": "Easter Sunday",
|
"ped_label": "Christmas 3rd day",
|
||||||
"ped_date_start": "2026-04-05",
|
"ped_date_start": "2025-12-27",
|
||||||
"ped_date_end": "2026-04-05",
|
"ped_date_end": "2025-12-27",
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2060,
|
|
||||||
"ped_label": "Easter Monday",
|
|
||||||
"ped_date_start": "2026-04-05",
|
|
||||||
"ped_date_end": "2026-04-05",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2061,
|
|
||||||
"ped_label": "Whit Sunday",
|
|
||||||
"ped_date_start": "2026-05-24",
|
|
||||||
"ped_date_end": "2026-05-24",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2062,
|
|
||||||
"ped_label": "Whit Monday",
|
|
||||||
"ped_date_start": "2026-05-25",
|
|
||||||
"ped_date_end": "2026-05-25",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2063,
|
|
||||||
"ped_label": "Revolution Day (Hungary)",
|
|
||||||
"ped_date_start": "2025-03-15",
|
|
||||||
"ped_date_end": "2025-03-15",
|
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2064,
|
"ped_id": 2055,
|
||||||
"ped_label": "Labour Day",
|
"ped_label": "Christmas",
|
||||||
"ped_date_start": "2025-05-01",
|
"ped_date_start": "2025-12-24",
|
||||||
"ped_date_end": "2025-05-01",
|
"ped_date_end": "2025-12-24",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2065,
|
|
||||||
"ped_label": "Saint Stephens Day (Hungary)",
|
|
||||||
"ped_date_start": "2025-08-20",
|
|
||||||
"ped_date_end": "2025-08-20",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2066,
|
|
||||||
"ped_label": "All Saints Day",
|
|
||||||
"ped_date_start": "2025-11-01",
|
|
||||||
"ped_date_end": "2025-11-01",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2067,
|
|
||||||
"ped_label": "Good Friday",
|
|
||||||
"ped_date_start": "2027-03-26",
|
|
||||||
"ped_date_end": "2027-03-26",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2068,
|
|
||||||
"ped_label": "Easter Sunday",
|
|
||||||
"ped_date_start": "2027-03-28",
|
|
||||||
"ped_date_end": "2027-03-28",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2069,
|
|
||||||
"ped_label": "Easter Monday",
|
|
||||||
"ped_date_start": "2027-03-29",
|
|
||||||
"ped_date_end": "2024-03-29",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2070,
|
|
||||||
"ped_label": "Whit Monday",
|
|
||||||
"ped_date_start": "2027-05-17",
|
|
||||||
"ped_date_end": "2027-05-17",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2071,
|
|
||||||
"ped_label": "Whit Sunday",
|
|
||||||
"ped_date_start": "2027-05-16",
|
|
||||||
"ped_date_end": "2027-05-16",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@@ -1,4 +1,7 @@
|
|||||||
{
|
{
|
||||||
|
"Project" : "Szeged Zone 4",
|
||||||
|
"Version" : "1.0.1",
|
||||||
|
"Info" : "6720",
|
||||||
"Currency": [
|
"Currency": [
|
||||||
{
|
{
|
||||||
"pcu_id": 2,
|
"pcu_id": 2,
|
||||||
@@ -36,9 +39,9 @@
|
|||||||
"pop_price_night": 0,
|
"pop_price_night": 0,
|
||||||
"pop_min_time": 15,
|
"pop_min_time": 15,
|
||||||
"pop_max_time": 240,
|
"pop_max_time": 240,
|
||||||
"pop_min_price": 0,
|
"pop_min_price": 163,
|
||||||
"pop_carry_over": 1,
|
"pop_carry_over": 1,
|
||||||
"pop_daily_card_price": 2400,
|
"pop_daily_card_price": 2600,
|
||||||
"pop_multi_hour_price": 0
|
"pop_multi_hour_price": 0
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -627,182 +630,102 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"SpecialDays": [
|
"SpecialDays": [
|
||||||
{
|
|
||||||
"ped_id": 11,
|
|
||||||
"ped_label": "Christmas 1st day",
|
|
||||||
"ped_date_start": "2023-12-25",
|
|
||||||
"ped_date_end": "2023-12-25",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 13,
|
|
||||||
"ped_label": "Christmas 2nd day",
|
|
||||||
"ped_date_start": "2023-12-26",
|
|
||||||
"ped_date_end": "2023-12-26",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"ped_id": 14,
|
"ped_id": 14,
|
||||||
"ped_label": "Republic Day (Hungary)",
|
"ped_label": "Republic Day (Hungary)",
|
||||||
"ped_date_start": "2024-10-23",
|
"ped_date_start": "2025-10-23",
|
||||||
"ped_date_end": "2024-10-23",
|
"ped_date_end": "2025-10-23",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"ped_id": 2016,
|
|
||||||
"ped_label": "Christmas (Sunday)",
|
|
||||||
"ped_date_start": "2023-12-24",
|
|
||||||
"ped_date_end": "2023-12-24",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2021,
|
|
||||||
"ped_label": "Holiday (Hungary)",
|
|
||||||
"ped_date_start": "2024-08-19",
|
|
||||||
"ped_date_end": "2024-08-19",
|
|
||||||
"ped_period_special_day_id": 1,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"ped_id": 2022,
|
"ped_id": 2022,
|
||||||
"ped_label": "NewYear",
|
"ped_label": "NewYear",
|
||||||
"ped_date_start": "2024-01-01",
|
"ped_date_start": "2025-01-01",
|
||||||
"ped_date_end": "2024-01-01",
|
"ped_date_end": "2025-01-01",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2024,
|
"ped_id": 2024,
|
||||||
"ped_label": "Good Friday",
|
"ped_label": "Good Friday",
|
||||||
"ped_date_start": "2024-03-29",
|
"ped_date_start": "2025-04-18",
|
||||||
"ped_date_end": "2024-03-29",
|
"ped_date_end": "2025-04-18",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2025,
|
"ped_id": 2025,
|
||||||
"ped_label": "Easter Sunday",
|
"ped_label": "Easter Sunday",
|
||||||
"ped_date_start": "2024-03-31",
|
"ped_date_start": "2025-04-20",
|
||||||
"ped_date_end": "2024-03-31",
|
"ped_date_end": "2025-04-20",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2026,
|
"ped_id": 2026,
|
||||||
"ped_label": "Easter Monday",
|
"ped_label": "Easter Monday",
|
||||||
"ped_date_start": "2024-04-01",
|
"ped_date_start": "2025-04-21",
|
||||||
"ped_date_end": "2024-04-01",
|
"ped_date_end": "2025-04-21",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2027,
|
"ped_id": 2027,
|
||||||
"ped_label": "Whit Sunday",
|
"ped_label": "Whit Sunday",
|
||||||
"ped_date_start": "2024-05-19",
|
"ped_date_start": "2025-06-08",
|
||||||
"ped_date_end": "2024-05-19",
|
"ped_date_end": "2025-06-08",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2028,
|
"ped_id": 2028,
|
||||||
"ped_label": "Whit Monday",
|
"ped_label": "Whit Monday",
|
||||||
"ped_date_start": "2024-05-20",
|
"ped_date_start": "2025-06-09",
|
||||||
"ped_date_end": "2024-05-20",
|
"ped_date_end": "2025-06-09",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2029,
|
"ped_id": 2029,
|
||||||
"ped_label": "Revolution Day (Hungary)",
|
"ped_label": "Revolution Day (Hungary)",
|
||||||
"ped_date_start": "2024-03-15",
|
"ped_date_start": "2025-03-15",
|
||||||
"ped_date_end": "2024-03-15",
|
"ped_date_end": "2025-03-15",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2030,
|
"ped_id": 2030,
|
||||||
"ped_label": "Labour Day",
|
"ped_label": "Labour Day",
|
||||||
"ped_date_start": "2024-05-01",
|
"ped_date_start": "2025-05-01",
|
||||||
"ped_date_end": "2024-05-01",
|
"ped_date_end": "2025-05-01",
|
||||||
|
"ped_period_special_day_id": 2,
|
||||||
|
"ped_year": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ped_id": 2060,
|
||||||
|
"ped_label": "Labour Day 2",
|
||||||
|
"ped_date_start": "2025-05-02",
|
||||||
|
"ped_date_end": "2025-05-02",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2031,
|
"ped_id": 2031,
|
||||||
"ped_label": "Saint Stephens Day (Hungary)",
|
"ped_label": "Saint Stephens Day (Hungary)",
|
||||||
"ped_date_start": "2024-08-20",
|
"ped_date_start": "2025-08-20",
|
||||||
"ped_date_end": "2024-08-20",
|
"ped_date_end": "2025-08-20",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2032,
|
"ped_id": 2032,
|
||||||
"ped_label": "All Saints Day",
|
"ped_label": "All Saints Day",
|
||||||
"ped_date_start": "2024-11-01",
|
"ped_date_start": "2025-11-01",
|
||||||
"ped_date_end": "2024-11-01",
|
"ped_date_end": "2025-11-01",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"ped_id": 2034,
|
|
||||||
"ped_label": "Good Friday",
|
|
||||||
"ped_date_start": "2025-04-18",
|
|
||||||
"ped_date_end": "2025-04-18",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2035,
|
|
||||||
"ped_label": "Easter Sunday",
|
|
||||||
"ped_date_start": "2025-04-20",
|
|
||||||
"ped_date_end": "2025-04-20",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2036,
|
|
||||||
"ped_label": "Easter Monday",
|
|
||||||
"ped_date_start": "2025-04-21",
|
|
||||||
"ped_date_end": "2025-04-21",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2037,
|
|
||||||
"ped_label": "Whit Monday",
|
|
||||||
"ped_date_start": "2025-06-09",
|
|
||||||
"ped_date_end": "2025-06-09",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2038,
|
|
||||||
"ped_label": "Whit Sunday",
|
|
||||||
"ped_date_start": "2025-06-08",
|
|
||||||
"ped_date_end": "2025-06-08",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2050,
|
|
||||||
"ped_label": "Uskrs",
|
|
||||||
"ped_date_start": "2023-04-16",
|
|
||||||
"ped_date_end": "2023-04-16",
|
|
||||||
"ped_period_special_day_id": 1,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2051,
|
|
||||||
"ped_label": "Uskrs",
|
|
||||||
"ped_date_start": "2023-04-16",
|
|
||||||
"ped_date_end": "2023-04-16",
|
|
||||||
"ped_period_special_day_id": 1,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"ped_id": 2052,
|
"ped_id": 2052,
|
||||||
"ped_label": "Christmas 1st day",
|
"ped_label": "Christmas 1st day",
|
||||||
@@ -820,10 +743,18 @@
|
|||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2054,
|
"ped_id": 2056,
|
||||||
"ped_label": "Republic Day (Hungary)",
|
"ped_label": "Christmas 3rd day",
|
||||||
"ped_date_start": "2025-10-23",
|
"ped_date_start": "2024-12-27",
|
||||||
"ped_date_end": "2025-10-23",
|
"ped_date_end": "2024-12-27",
|
||||||
|
"ped_period_special_day_id": 2,
|
||||||
|
"ped_year": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ped_id": 2061,
|
||||||
|
"ped_label": "Christmas 4th day",
|
||||||
|
"ped_date_start": "2024-12-28",
|
||||||
|
"ped_date_end": "2024-12-28",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
@@ -837,125 +768,39 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2057,
|
"ped_id": 2057,
|
||||||
"ped_label": "NewYear",
|
"ped_label": "Christmas 1st day",
|
||||||
"ped_date_start": "2025-01-01",
|
"ped_date_start": "2025-12-25",
|
||||||
"ped_date_end": "2025-01-01",
|
"ped_date_end": "2025-12-25",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2058,
|
"ped_id": 2058,
|
||||||
"ped_label": "Good Friday",
|
"ped_label": "Christmas 2nd day",
|
||||||
"ped_date_start": "2026-04-03",
|
"ped_date_start": "2025-12-26",
|
||||||
"ped_date_end": "2026-04-03",
|
"ped_date_end": "2025-12-26",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2059,
|
"ped_id": 2059,
|
||||||
"ped_label": "Easter Sunday",
|
"ped_label": "Christmas 3rd day",
|
||||||
"ped_date_start": "2026-04-05",
|
"ped_date_start": "2025-12-27",
|
||||||
"ped_date_end": "2026-04-05",
|
"ped_date_end": "2025-12-27",
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2060,
|
|
||||||
"ped_label": "Easter Monday",
|
|
||||||
"ped_date_start": "2026-04-05",
|
|
||||||
"ped_date_end": "2026-04-05",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2061,
|
|
||||||
"ped_label": "Whit Sunday",
|
|
||||||
"ped_date_start": "2026-05-24",
|
|
||||||
"ped_date_end": "2026-05-24",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2062,
|
|
||||||
"ped_label": "Whit Monday",
|
|
||||||
"ped_date_start": "2026-05-25",
|
|
||||||
"ped_date_end": "2026-05-25",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2063,
|
|
||||||
"ped_label": "Revolution Day (Hungary)",
|
|
||||||
"ped_date_start": "2025-03-15",
|
|
||||||
"ped_date_end": "2025-03-15",
|
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2064,
|
"ped_id": 2055,
|
||||||
"ped_label": "Labour Day",
|
"ped_label": "Christmas",
|
||||||
"ped_date_start": "2025-05-01",
|
"ped_date_start": "2025-12-24",
|
||||||
"ped_date_end": "2025-05-01",
|
"ped_date_end": "2025-12-24",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2065,
|
|
||||||
"ped_label": "Saint Stephens Day (Hungary)",
|
|
||||||
"ped_date_start": "2025-08-20",
|
|
||||||
"ped_date_end": "2025-08-20",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2066,
|
|
||||||
"ped_label": "All Saints Day",
|
|
||||||
"ped_date_start": "2025-11-01",
|
|
||||||
"ped_date_end": "2025-11-01",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2067,
|
|
||||||
"ped_label": "Good Friday",
|
|
||||||
"ped_date_start": "2027-03-26",
|
|
||||||
"ped_date_end": "2027-03-26",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2068,
|
|
||||||
"ped_label": "Easter Sunday",
|
|
||||||
"ped_date_start": "2027-03-28",
|
|
||||||
"ped_date_end": "2027-03-28",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2069,
|
|
||||||
"ped_label": "Easter Monday",
|
|
||||||
"ped_date_start": "2027-03-29",
|
|
||||||
"ped_date_end": "2024-03-29",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2070,
|
|
||||||
"ped_label": "Whit Monday",
|
|
||||||
"ped_date_start": "2027-05-17",
|
|
||||||
"ped_date_end": "2027-05-17",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2071,
|
|
||||||
"ped_label": "Whit Sunday",
|
|
||||||
"ped_date_start": "2027-05-16",
|
|
||||||
"ped_date_end": "2027-05-16",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@@ -1,4 +1,7 @@
|
|||||||
{
|
{
|
||||||
|
"Project" : "Szeged Zone 5",
|
||||||
|
"Version" : "1.0.1",
|
||||||
|
"Info" : "6723",
|
||||||
"Currency": [
|
"Currency": [
|
||||||
{
|
{
|
||||||
"pcu_id": 2,
|
"pcu_id": 2,
|
||||||
@@ -36,9 +39,9 @@
|
|||||||
"pop_price_night": 0,
|
"pop_price_night": 0,
|
||||||
"pop_min_time": 15,
|
"pop_min_time": 15,
|
||||||
"pop_max_time": 360,
|
"pop_max_time": 360,
|
||||||
"pop_min_price": 0,
|
"pop_min_price": 90,
|
||||||
"pop_carry_over": 1,
|
"pop_carry_over": 1,
|
||||||
"pop_daily_card_price": 1980,
|
"pop_daily_card_price": 2160,
|
||||||
"pop_multi_hour_price": 0
|
"pop_multi_hour_price": 0
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -46,7 +49,7 @@
|
|||||||
{
|
{
|
||||||
"pra_payment_option_id": 1081,
|
"pra_payment_option_id": 1081,
|
||||||
"pra_payment_unit_id": 1,
|
"pra_payment_unit_id": 1,
|
||||||
"pra_price": 330
|
"pra_price": 360
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"Duration": [
|
"Duration": [
|
||||||
@@ -634,182 +637,102 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"SpecialDays": [
|
"SpecialDays": [
|
||||||
{
|
|
||||||
"ped_id": 11,
|
|
||||||
"ped_label": "Christmas 1st day",
|
|
||||||
"ped_date_start": "2023-12-25",
|
|
||||||
"ped_date_end": "2023-12-25",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 13,
|
|
||||||
"ped_label": "Christmas 2nd day",
|
|
||||||
"ped_date_start": "2023-12-26",
|
|
||||||
"ped_date_end": "2023-12-26",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"ped_id": 14,
|
"ped_id": 14,
|
||||||
"ped_label": "Republic Day (Hungary)",
|
"ped_label": "Republic Day (Hungary)",
|
||||||
"ped_date_start": "2024-10-23",
|
"ped_date_start": "2025-10-23",
|
||||||
"ped_date_end": "2024-10-23",
|
"ped_date_end": "2025-10-23",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"ped_id": 2016,
|
|
||||||
"ped_label": "Christmas (Sunday)",
|
|
||||||
"ped_date_start": "2023-12-24",
|
|
||||||
"ped_date_end": "2023-12-24",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2021,
|
|
||||||
"ped_label": "Holiday (Hungary)",
|
|
||||||
"ped_date_start": "2024-08-19",
|
|
||||||
"ped_date_end": "2024-08-19",
|
|
||||||
"ped_period_special_day_id": 1,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"ped_id": 2022,
|
"ped_id": 2022,
|
||||||
"ped_label": "NewYear",
|
"ped_label": "NewYear",
|
||||||
"ped_date_start": "2024-01-01",
|
"ped_date_start": "2025-01-01",
|
||||||
"ped_date_end": "2024-01-01",
|
"ped_date_end": "2025-01-01",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2024,
|
"ped_id": 2024,
|
||||||
"ped_label": "Good Friday",
|
"ped_label": "Good Friday",
|
||||||
"ped_date_start": "2024-03-29",
|
"ped_date_start": "2025-04-18",
|
||||||
"ped_date_end": "2024-03-29",
|
"ped_date_end": "2025-04-18",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2025,
|
"ped_id": 2025,
|
||||||
"ped_label": "Easter Sunday",
|
"ped_label": "Easter Sunday",
|
||||||
"ped_date_start": "2024-03-31",
|
"ped_date_start": "2025-04-20",
|
||||||
"ped_date_end": "2024-03-31",
|
"ped_date_end": "2025-04-20",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2026,
|
"ped_id": 2026,
|
||||||
"ped_label": "Easter Monday",
|
"ped_label": "Easter Monday",
|
||||||
"ped_date_start": "2024-04-01",
|
"ped_date_start": "2025-04-21",
|
||||||
"ped_date_end": "2024-04-01",
|
"ped_date_end": "2025-04-21",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2027,
|
"ped_id": 2027,
|
||||||
"ped_label": "Whit Sunday",
|
"ped_label": "Whit Sunday",
|
||||||
"ped_date_start": "2024-05-19",
|
"ped_date_start": "2025-06-08",
|
||||||
"ped_date_end": "2024-05-19",
|
"ped_date_end": "2025-06-08",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2028,
|
"ped_id": 2028,
|
||||||
"ped_label": "Whit Monday",
|
"ped_label": "Whit Monday",
|
||||||
"ped_date_start": "2024-05-20",
|
"ped_date_start": "2025-06-09",
|
||||||
"ped_date_end": "2024-05-20",
|
"ped_date_end": "2025-06-09",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2029,
|
"ped_id": 2029,
|
||||||
"ped_label": "Revolution Day (Hungary)",
|
"ped_label": "Revolution Day (Hungary)",
|
||||||
"ped_date_start": "2024-03-15",
|
"ped_date_start": "2025-03-15",
|
||||||
"ped_date_end": "2024-03-15",
|
"ped_date_end": "2025-03-15",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2030,
|
"ped_id": 2030,
|
||||||
"ped_label": "Labour Day",
|
"ped_label": "Labour Day",
|
||||||
"ped_date_start": "2024-05-01",
|
"ped_date_start": "2025-05-01",
|
||||||
"ped_date_end": "2024-05-01",
|
"ped_date_end": "2025-05-01",
|
||||||
|
"ped_period_special_day_id": 2,
|
||||||
|
"ped_year": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ped_id": 2060,
|
||||||
|
"ped_label": "Labour Day 2",
|
||||||
|
"ped_date_start": "2025-05-02",
|
||||||
|
"ped_date_end": "2025-05-02",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2031,
|
"ped_id": 2031,
|
||||||
"ped_label": "Saint Stephens Day (Hungary)",
|
"ped_label": "Saint Stephens Day (Hungary)",
|
||||||
"ped_date_start": "2024-08-20",
|
"ped_date_start": "2025-08-20",
|
||||||
"ped_date_end": "2024-08-20",
|
"ped_date_end": "2025-08-20",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2032,
|
"ped_id": 2032,
|
||||||
"ped_label": "All Saints Day",
|
"ped_label": "All Saints Day",
|
||||||
"ped_date_start": "2024-11-01",
|
"ped_date_start": "2025-11-01",
|
||||||
"ped_date_end": "2024-11-01",
|
"ped_date_end": "2025-11-01",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"ped_id": 2034,
|
|
||||||
"ped_label": "Good Friday",
|
|
||||||
"ped_date_start": "2025-04-18",
|
|
||||||
"ped_date_end": "2025-04-18",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2035,
|
|
||||||
"ped_label": "Easter Sunday",
|
|
||||||
"ped_date_start": "2025-04-20",
|
|
||||||
"ped_date_end": "2025-04-20",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2036,
|
|
||||||
"ped_label": "Easter Monday",
|
|
||||||
"ped_date_start": "2025-04-21",
|
|
||||||
"ped_date_end": "2025-04-21",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2037,
|
|
||||||
"ped_label": "Whit Monday",
|
|
||||||
"ped_date_start": "2025-06-09",
|
|
||||||
"ped_date_end": "2025-06-09",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2038,
|
|
||||||
"ped_label": "Whit Sunday",
|
|
||||||
"ped_date_start": "2025-06-08",
|
|
||||||
"ped_date_end": "2025-06-08",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2050,
|
|
||||||
"ped_label": "Uskrs",
|
|
||||||
"ped_date_start": "2023-04-16",
|
|
||||||
"ped_date_end": "2023-04-16",
|
|
||||||
"ped_period_special_day_id": 1,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2051,
|
|
||||||
"ped_label": "Uskrs",
|
|
||||||
"ped_date_start": "2023-04-16",
|
|
||||||
"ped_date_end": "2023-04-16",
|
|
||||||
"ped_period_special_day_id": 1,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"ped_id": 2052,
|
"ped_id": 2052,
|
||||||
"ped_label": "Christmas 1st day",
|
"ped_label": "Christmas 1st day",
|
||||||
@@ -827,10 +750,18 @@
|
|||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2054,
|
"ped_id": 2056,
|
||||||
"ped_label": "Republic Day (Hungary)",
|
"ped_label": "Christmas 3rd day",
|
||||||
"ped_date_start": "2025-10-23",
|
"ped_date_start": "2024-12-27",
|
||||||
"ped_date_end": "2025-10-23",
|
"ped_date_end": "2024-12-27",
|
||||||
|
"ped_period_special_day_id": 2,
|
||||||
|
"ped_year": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ped_id": 2061,
|
||||||
|
"ped_label": "Christmas 4th day",
|
||||||
|
"ped_date_start": "2024-12-28",
|
||||||
|
"ped_date_end": "2024-12-28",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
@@ -844,123 +775,39 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2057,
|
"ped_id": 2057,
|
||||||
"ped_label": "NewYear",
|
"ped_label": "Christmas 1st day",
|
||||||
"ped_date_start": "2025-01-01",
|
"ped_date_start": "2025-12-25",
|
||||||
"ped_date_end": "2025-01-01",
|
"ped_date_end": "2025-12-25",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2058,
|
"ped_id": 2058,
|
||||||
"ped_label": "Good Friday",
|
"ped_label": "Christmas 2nd day",
|
||||||
"ped_date_start": "2026-04-03",
|
"ped_date_start": "2025-12-26",
|
||||||
"ped_date_end": "2026-04-03",
|
"ped_date_end": "2025-12-26",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2059,
|
"ped_id": 2059,
|
||||||
"ped_label": "Easter Sunday",
|
"ped_label": "Christmas 3rd day",
|
||||||
"ped_date_start": "2026-04-05",
|
"ped_date_start": "2025-12-27",
|
||||||
"ped_date_end": "2026-04-05",
|
"ped_date_end": "2025-12-27",
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2060,
|
|
||||||
"ped_label": "Easter Monday",
|
|
||||||
"ped_date_start": "2026-04-05",
|
|
||||||
"ped_date_end": "2026-04-05",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2061,
|
|
||||||
"ped_label": "Whit Sunday",
|
|
||||||
"ped_date_start": "2026-05-24",
|
|
||||||
"ped_date_end": "2026-05-24",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2062,
|
|
||||||
"ped_label": "Whit Monday",
|
|
||||||
"ped_date_start": "2026-05-25",
|
|
||||||
"ped_date_end": "2026-05-25",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2063,
|
|
||||||
"ped_label": "Revolution Day (Hungary)",
|
|
||||||
"ped_date_start": "2025-03-15",
|
|
||||||
"ped_date_end": "2025-03-15",
|
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2064,
|
"ped_id": 2055,
|
||||||
"ped_label": "Labour Day",
|
"ped_label": "Christmas",
|
||||||
"ped_date_start": "2025-05-01",
|
"ped_date_start": "2025-12-24",
|
||||||
"ped_date_end": "2025-05-01",
|
"ped_date_end": "2025-12-24",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2065,
|
|
||||||
"ped_label": "Saint Stephens Day (Hungary)",
|
|
||||||
"ped_date_start": "2025-08-20",
|
|
||||||
"ped_date_end": "2025-08-20",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2066,
|
|
||||||
"ped_label": "All Saints Day",
|
|
||||||
"ped_date_start": "2025-11-01",
|
|
||||||
"ped_date_end": "2025-11-01",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2067,
|
|
||||||
"ped_label": "Good Friday",
|
|
||||||
"ped_date_start": "2027-03-26",
|
|
||||||
"ped_date_end": "2027-03-26",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2068,
|
|
||||||
"ped_label": "Easter Sunday",
|
|
||||||
"ped_date_start": "2027-03-28",
|
|
||||||
"ped_date_end": "2027-03-28",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2069,
|
|
||||||
"ped_label": "Easter Monday",
|
|
||||||
"ped_date_start": "2027-03-29",
|
|
||||||
"ped_date_end": "2024-03-29",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2070,
|
|
||||||
"ped_label": "Whit Monday",
|
|
||||||
"ped_date_start": "2027-05-17",
|
|
||||||
"ped_date_end": "2027-05-17",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2071,
|
|
||||||
"ped_label": "Whit Sunday",
|
|
||||||
"ped_date_start": "2027-05-16",
|
|
||||||
"ped_date_end": "2027-05-16",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@@ -1,4 +1,7 @@
|
|||||||
{
|
{
|
||||||
|
"Project" : "Szeged Zone 6",
|
||||||
|
"Version" : "1.0.1",
|
||||||
|
"Info" : "6722",
|
||||||
"Currency": [
|
"Currency": [
|
||||||
{
|
{
|
||||||
"pcu_id": 2,
|
"pcu_id": 2,
|
||||||
@@ -36,9 +39,9 @@
|
|||||||
"pop_price_night": 0,
|
"pop_price_night": 0,
|
||||||
"pop_min_time": 15,
|
"pop_min_time": 15,
|
||||||
"pop_max_time": 240,
|
"pop_max_time": 240,
|
||||||
"pop_min_price": 0,
|
"pop_min_price": 163,
|
||||||
"pop_carry_over": 1,
|
"pop_carry_over": 1,
|
||||||
"pop_daily_card_price": 2400,
|
"pop_daily_card_price": 2600,
|
||||||
"pop_multi_hour_price": 0
|
"pop_multi_hour_price": 0
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -46,7 +49,7 @@
|
|||||||
{
|
{
|
||||||
"pra_payment_option_id": 1082,
|
"pra_payment_option_id": 1082,
|
||||||
"pra_payment_unit_id": 1,
|
"pra_payment_unit_id": 1,
|
||||||
"pra_price": 600
|
"pra_price": 650
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"Duration": [
|
"Duration": [
|
||||||
@@ -634,182 +637,102 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"SpecialDays": [
|
"SpecialDays": [
|
||||||
{
|
{
|
||||||
"ped_id": 11,
|
|
||||||
"ped_label": "Christmas 1st day",
|
|
||||||
"ped_date_start": "2023-12-25",
|
|
||||||
"ped_date_end": "2023-12-25",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 13,
|
|
||||||
"ped_label": "Christmas 2nd day",
|
|
||||||
"ped_date_start": "2023-12-26",
|
|
||||||
"ped_date_end": "2023-12-26",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 14,
|
"ped_id": 14,
|
||||||
"ped_label": "Republic Day (Hungary)",
|
"ped_label": "Republic Day (Hungary)",
|
||||||
"ped_date_start": "2024-10-23",
|
"ped_date_start": "2025-10-23",
|
||||||
"ped_date_end": "2024-10-23",
|
"ped_date_end": "2025-10-23",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"ped_id": 2016,
|
|
||||||
"ped_label": "Christmas (Sunday)",
|
|
||||||
"ped_date_start": "2023-12-24",
|
|
||||||
"ped_date_end": "2023-12-24",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2021,
|
|
||||||
"ped_label": "Holiday (Hungary)",
|
|
||||||
"ped_date_start": "2024-08-19",
|
|
||||||
"ped_date_end": "2024-08-19",
|
|
||||||
"ped_period_special_day_id": 1,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"ped_id": 2022,
|
"ped_id": 2022,
|
||||||
"ped_label": "NewYear",
|
"ped_label": "NewYear",
|
||||||
"ped_date_start": "2024-01-01",
|
"ped_date_start": "2025-01-01",
|
||||||
"ped_date_end": "2024-01-01",
|
"ped_date_end": "2025-01-01",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2024,
|
"ped_id": 2024,
|
||||||
"ped_label": "Good Friday",
|
"ped_label": "Good Friday",
|
||||||
"ped_date_start": "2024-03-29",
|
"ped_date_start": "2025-04-18",
|
||||||
"ped_date_end": "2024-03-29",
|
"ped_date_end": "2025-04-18",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2025,
|
"ped_id": 2025,
|
||||||
"ped_label": "Easter Sunday",
|
"ped_label": "Easter Sunday",
|
||||||
"ped_date_start": "2024-03-31",
|
"ped_date_start": "2025-04-20",
|
||||||
"ped_date_end": "2024-03-31",
|
"ped_date_end": "2025-04-20",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2026,
|
"ped_id": 2026,
|
||||||
"ped_label": "Easter Monday",
|
"ped_label": "Easter Monday",
|
||||||
"ped_date_start": "2024-04-01",
|
"ped_date_start": "2025-04-21",
|
||||||
"ped_date_end": "2024-04-01",
|
"ped_date_end": "2025-04-21",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2027,
|
"ped_id": 2027,
|
||||||
"ped_label": "Whit Sunday",
|
"ped_label": "Whit Sunday",
|
||||||
"ped_date_start": "2024-05-19",
|
"ped_date_start": "2025-06-08",
|
||||||
"ped_date_end": "2024-05-19",
|
"ped_date_end": "2025-06-08",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2028,
|
"ped_id": 2028,
|
||||||
"ped_label": "Whit Monday",
|
"ped_label": "Whit Monday",
|
||||||
"ped_date_start": "2024-05-20",
|
"ped_date_start": "2025-06-09",
|
||||||
"ped_date_end": "2024-05-20",
|
"ped_date_end": "2025-06-09",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 2025
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2029,
|
"ped_id": 2029,
|
||||||
"ped_label": "Revolution Day (Hungary)",
|
"ped_label": "Revolution Day (Hungary)",
|
||||||
"ped_date_start": "2024-03-15",
|
"ped_date_start": "2025-03-15",
|
||||||
"ped_date_end": "2024-03-15",
|
"ped_date_end": "2025-03-15",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2030,
|
"ped_id": 2030,
|
||||||
"ped_label": "Labour Day",
|
"ped_label": "Labour Day",
|
||||||
"ped_date_start": "2024-05-01",
|
"ped_date_start": "2025-05-01",
|
||||||
"ped_date_end": "2024-05-01",
|
"ped_date_end": "2025-05-01",
|
||||||
|
"ped_period_special_day_id": 2,
|
||||||
|
"ped_year": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ped_id": 2060,
|
||||||
|
"ped_label": "Labour Day 2",
|
||||||
|
"ped_date_start": "2025-05-02",
|
||||||
|
"ped_date_end": "2025-05-02",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2031,
|
"ped_id": 2031,
|
||||||
"ped_label": "Saint Stephens Day (Hungary)",
|
"ped_label": "Saint Stephens Day (Hungary)",
|
||||||
"ped_date_start": "2024-08-20",
|
"ped_date_start": "2025-08-20",
|
||||||
"ped_date_end": "2024-08-20",
|
"ped_date_end": "2025-08-20",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2032,
|
"ped_id": 2032,
|
||||||
"ped_label": "All Saints Day",
|
"ped_label": "All Saints Day",
|
||||||
"ped_date_start": "2024-11-01",
|
"ped_date_start": "2025-11-01",
|
||||||
"ped_date_end": "2024-11-01",
|
"ped_date_end": "2025-11-01",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"ped_id": 2034,
|
|
||||||
"ped_label": "Good Friday",
|
|
||||||
"ped_date_start": "2025-04-18",
|
|
||||||
"ped_date_end": "2025-04-18",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2035,
|
|
||||||
"ped_label": "Easter Sunday",
|
|
||||||
"ped_date_start": "2025-04-20",
|
|
||||||
"ped_date_end": "2025-04-20",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2036,
|
|
||||||
"ped_label": "Easter Monday",
|
|
||||||
"ped_date_start": "2025-04-21",
|
|
||||||
"ped_date_end": "2025-04-21",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2037,
|
|
||||||
"ped_label": "Whit Monday",
|
|
||||||
"ped_date_start": "2025-06-09",
|
|
||||||
"ped_date_end": "2025-06-09",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2038,
|
|
||||||
"ped_label": "Whit Sunday",
|
|
||||||
"ped_date_start": "2025-06-08",
|
|
||||||
"ped_date_end": "2025-06-08",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2050,
|
|
||||||
"ped_label": "Uskrs",
|
|
||||||
"ped_date_start": "2023-04-16",
|
|
||||||
"ped_date_end": "2023-04-16",
|
|
||||||
"ped_period_special_day_id": 1,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2051,
|
|
||||||
"ped_label": "Uskrs",
|
|
||||||
"ped_date_start": "2023-04-16",
|
|
||||||
"ped_date_end": "2023-04-16",
|
|
||||||
"ped_period_special_day_id": 1,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"ped_id": 2052,
|
"ped_id": 2052,
|
||||||
"ped_label": "Christmas 1st day",
|
"ped_label": "Christmas 1st day",
|
||||||
@@ -827,10 +750,18 @@
|
|||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2054,
|
"ped_id": 2056,
|
||||||
"ped_label": "Republic Day (Hungary)",
|
"ped_label": "Christmas 3rd day",
|
||||||
"ped_date_start": "2025-10-23",
|
"ped_date_start": "2024-12-27",
|
||||||
"ped_date_end": "2025-10-23",
|
"ped_date_end": "2024-12-27",
|
||||||
|
"ped_period_special_day_id": 2,
|
||||||
|
"ped_year": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ped_id": 2061,
|
||||||
|
"ped_label": "Christmas 4th day",
|
||||||
|
"ped_date_start": "2024-12-28",
|
||||||
|
"ped_date_end": "2024-12-28",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
@@ -844,123 +775,39 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2057,
|
"ped_id": 2057,
|
||||||
"ped_label": "NewYear",
|
"ped_label": "Christmas 1st day",
|
||||||
"ped_date_start": "2025-01-01",
|
"ped_date_start": "2025-12-25",
|
||||||
"ped_date_end": "2025-01-01",
|
"ped_date_end": "2025-12-25",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2058,
|
"ped_id": 2058,
|
||||||
"ped_label": "Good Friday",
|
"ped_label": "Christmas 2nd day",
|
||||||
"ped_date_start": "2026-04-03",
|
"ped_date_start": "2025-12-26",
|
||||||
"ped_date_end": "2026-04-03",
|
"ped_date_end": "2025-12-26",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 2023
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2059,
|
"ped_id": 2059,
|
||||||
"ped_label": "Easter Sunday",
|
"ped_label": "Christmas 3rd day",
|
||||||
"ped_date_start": "2026-04-05",
|
"ped_date_start": "2025-12-27",
|
||||||
"ped_date_end": "2026-04-05",
|
"ped_date_end": "2025-12-27",
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2060,
|
|
||||||
"ped_label": "Easter Monday",
|
|
||||||
"ped_date_start": "2026-04-05",
|
|
||||||
"ped_date_end": "2026-04-05",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2061,
|
|
||||||
"ped_label": "Whit Sunday",
|
|
||||||
"ped_date_start": "2026-05-24",
|
|
||||||
"ped_date_end": "2026-05-24",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2062,
|
|
||||||
"ped_label": "Whit Monday",
|
|
||||||
"ped_date_start": "2026-05-25",
|
|
||||||
"ped_date_end": "2026-05-25",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2023
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2063,
|
|
||||||
"ped_label": "Revolution Day (Hungary)",
|
|
||||||
"ped_date_start": "2025-03-15",
|
|
||||||
"ped_date_end": "2025-03-15",
|
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ped_id": 2064,
|
"ped_id": 2055,
|
||||||
"ped_label": "Labour Day",
|
"ped_label": "Christmas",
|
||||||
"ped_date_start": "2025-05-01",
|
"ped_date_start": "2025-12-24",
|
||||||
"ped_date_end": "2025-05-01",
|
"ped_date_end": "2025-12-24",
|
||||||
"ped_period_special_day_id": 2,
|
"ped_period_special_day_id": 2,
|
||||||
"ped_year": 0
|
"ped_year": 0
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2065,
|
|
||||||
"ped_label": "Saint Stephens Day (Hungary)",
|
|
||||||
"ped_date_start": "2025-08-20",
|
|
||||||
"ped_date_end": "2025-08-20",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2066,
|
|
||||||
"ped_label": "All Saints Day",
|
|
||||||
"ped_date_start": "2025-11-01",
|
|
||||||
"ped_date_end": "2025-11-01",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2067,
|
|
||||||
"ped_label": "Good Friday",
|
|
||||||
"ped_date_start": "2027-03-26",
|
|
||||||
"ped_date_end": "2027-03-26",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2068,
|
|
||||||
"ped_label": "Easter Sunday",
|
|
||||||
"ped_date_start": "2027-03-28",
|
|
||||||
"ped_date_end": "2027-03-28",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2069,
|
|
||||||
"ped_label": "Easter Monday",
|
|
||||||
"ped_date_start": "2027-03-29",
|
|
||||||
"ped_date_end": "2024-03-29",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2070,
|
|
||||||
"ped_label": "Whit Monday",
|
|
||||||
"ped_date_start": "2027-05-17",
|
|
||||||
"ped_date_end": "2027-05-17",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ped_id": 2071,
|
|
||||||
"ped_label": "Whit Sunday",
|
|
||||||
"ped_date_start": "2027-05-16",
|
|
||||||
"ped_date_end": "2027-05-16",
|
|
||||||
"ped_period_special_day_id": 2,
|
|
||||||
"ped_year": 2024
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@@ -3,18 +3,16 @@
|
|||||||
###############################################################################
|
###############################################################################
|
||||||
# opkg-commands added to this file will be executed by ATBUpdateTool.
|
# opkg-commands added to this file will be executed by ATBUpdateTool.
|
||||||
###############################################################################
|
###############################################################################
|
||||||
#
|
##
|
||||||
opkg info atbqt
|
# opkg update
|
||||||
opkg info atbupdatetool
|
# opkg install prepare-update
|
||||||
opkg update
|
# download packages
|
||||||
opkg install prepare-update
|
# opkg --cache /var/cache/opkg --download-only upgrade tariff-config-281
|
||||||
opkg install atbupdatetool
|
# opkg --cache /var/cache/opkg --download-only upgrade libmobilisis-calc2
|
||||||
# opkg remove atb-accountingtool
|
# opkg --cache /var/cache/opkg --download-only upgrade atb-plugin-calculateprice-mobilisis
|
||||||
# opkg install atb-accountingtool
|
# opkg --cache /var/cache/opkg --download-only upgrade atbqt
|
||||||
opkg --cache /var/cache/opkg --download-only upgrade
|
# install packages
|
||||||
opkg --cache /var/cache/opkg upgrade
|
# opkg --cache /var/cache/opkg upgrade tariff-config-281
|
||||||
# opkg remove apism
|
# opkg --cache /var/cache/opkg upgrade libmobilisis-calc2
|
||||||
# opkg install apism
|
# opkg --cache /var/cache/opkg upgrade atb-plugin-calculateprice-mobilisis
|
||||||
opkg info apism
|
# opkg --cache /var/cache/opkg upgrade atbqt
|
||||||
opkg info atbqt
|
|
||||||
opkg info atbupdatetool
|
|
||||||
|
Reference in New Issue
Block a user