Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
a9ae784
Fix double discount calculation in COD label goods price
MarijusDilys Nov 19, 2025
f078d35
Bump version to 3.3.1 and update changelog
MarijusDilys Nov 19, 2025
24ef0a0
fix
MarijusDilys Nov 19, 2025
7e9e6c7
Merge pull request #148 from DPDBaltics/DGS-410/fix-double-discount-c…
MarijusDilys Nov 19, 2025
6e700d1
DGS-415 fix null parameter deprecation in AddressAdapter preg_replace…
TLabutis Mar 24, 2026
71532f9
DGS-417 Fix shipment creation failing when Predict SMS service is man…
TLabutis Mar 24, 2026
e12f252
DGS-414: update parcel import functionality to handle large quanities…
GytisZum Mar 25, 2026
9ac490e
fix: add additional validation for the supercheckout module which usi…
GytisZum Mar 25, 2026
4615726
fix (#150)
MarijusDilys Mar 25, 2026
fcd607d
change switch expression to use correct method; add filename to trans…
webotron Mar 25, 2026
fd6f05e
Fix automatic PUDO point pre-selection in LIST mode (#149)
MarijusDilys Mar 25, 2026
ca74260
DGS-286 add timeframes to request (#145)
MarijusDilys Mar 25, 2026
ee2647c
fix workflows and update changelog
Mar 25, 2026
7375297
workflow updated to ignore platform reqs
Mar 25, 2026
fdca0b8
Adding auto indexes
GytisZum Mar 25, 2026
f5f4dd3
fix setPredict setter
Mar 25, 2026
011bb87
Merge branch 'release-3.3.1' of github.com:DPDBaltics/PrestaShop into…
Mar 25, 2026
6cae707
Automatic license addition applying
GytisZum Mar 25, 2026
087a667
Fix pudo pickup points not reloading on city change (#163)
TLabutis Mar 29, 2026
4b45a72
Fix admin pudo pickup point display for non-LT orders (#164)
TLabutis Mar 30, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/workflows/index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,26 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Cache vendor folder
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: vendor
key: php-${{ hashFiles('composer.lock') }}
key: php-${{ hashFiles('composer.json') }}

- name: Cache composer folder
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ~/.composer/cache
key: php-composer-cache

- run: composer install
- run: composer install --ignore-platform-reqs

- name: Run auto indexing
run: php vendor/bin/autoindex

- uses: stefanzweifel/git-auto-commit-action@v4
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Adding auto indexes

Expand All @@ -36,26 +36,26 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Cache vendor folder
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: vendor
key: php-${{ hashFiles('composer.lock') }}
key: php-${{ hashFiles('composer.json') }}

- name: Cache composer folder
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ~/.composer/cache
key: php-composer-cache

- run: composer install
- run: composer install --ignore-platform-reqs

- name: Adding licenses
run: vendor/bin/header-stamp --license=assets/afl.txt --exclude=vendor,node_modules

- uses: stefanzweifel/git-auto-commit-action@v4
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Automatic license addition applying

15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,4 +185,17 @@
## [3.3.0]
- Added PrestaShop 9 compatibility
- Fixed issue with price rule "All"
- Fixed other minor issues
- Fixed other minor issues

## [3.3.1]
- Fixed incorrect COD label amount when discount code is applied
- Fixed parcelshop info not displaying in backoffice order view when customer city differs from parcelshop city
- Fixed shipment creation overwriting parcelshop address data with customer address data
- Fixed Lithuanian and Latvian translations for shipping label in admin order panel
- Added Poland parcel shop import support with batch processing
- Fixed null parameter deprecation in AddressAdapter preg_replace calls
- Fixed shipment creation failing for accounts requiring Predict SMS service
- Fixed additional validation for supercheckout module using currentcontroller variable
- Fixed automatic PUDO point pre-selection in LIST mode
- Fixed PUDO shipment CSS styling
- Added timeframes to shipment request
Loading
Loading