Releases: myparcelnl/magento
v5.0.0-alpha2
Fix
- Prevent 404 and form key errors when accessing controllers.
MyParcel Delivery Method
V5 introduces a MyParcel delivery Method, this makes the module more stable and more compatible. Find it under Sales -> Delivery methods.
Pricing Matrix
V5 also introduces a pricing matrix. The frontend for you to manipulate this is not ready in this alpha release. You can use the pricing options by typing in the json object by hand for now.
If you need help setting this up do not hesitate to contact us. If the json is invalid or absent, the (flat) price you have given the MyParcel Delivery method under Sales will be used.
Example
Use this example as a starting point:
[
{
"price": 99,
"conditions": {},
"name": "Standaard prijs"
},
{
"price": 6.95,
"conditions": {
"country": "NL"
},
"name": "Prijs binnen Nederland"
},
{
"price": 5.50,
"conditions": {
"country": "NL",
"carrier_name":"ups"
},
"name": "UPS is goedkoper in NL!"
},
{
"price": 4.95,
"conditions": {
"country": "NL",
"package_type":2
},
"name": "Brievenbuspakje binnen Nederland"
},
{
"price": 3.89,
"conditions": {
"country": "NL",
"package_type":2,
"carrier_name":"dhlforyou"
},
"name": "DHL BBP binnen Nederland"
},
{
"price": 3.99,
"conditions": {
"country": "NL",
"package_type":4
},
"name": "Digitale postzegel default"
},
{
"price": 2.99,
"conditions": {
"country": "NL",
"package_type":4,
"maximum_weight":100
},
"name": "Digitale postzegel tot 100 gram"
},
{
"price": 12.95,
"conditions": {
"country_part_of": "EU"
},
"name": "Prijs overige EU landen"
},
{
"price": 19.95,
"conditions": {
"country_part_of": "EU",
"carrier_name": "ups"
},
"name": "UPS is duurder in de EU"
},
{
"price": 5.95,
"conditions": {
"country_part_of": "EU",
"package_type": 2
},
"name": "Intl mailbox default"
},
{
"price": 8.95,
"conditions": {
"country_part_of": "EU",
"package_type": 2,
"carrier_name": "dhlforyou"
},
"name": "DHL mailbox is duurder"
}
]
v5.0.0-alpha1
MyParcel Delivery Method
V5 introduces a MyParcel delivery Method, this makes the module more stable and more compatible. Find it under Sales -> Delivery methods.
Pricing Matrix
V5 also introduces a pricing matrix. The frontend for you to manipulate this is not ready in this alpha release. You can use the pricing options by typing in the json object by hand for now.
If you need help setting this up do not hesitate to contact us. If the json is invalid or absent, the (flat) price you have given the MyParcel Delivery method under Sales will be used.
Example
Use this example as a starting point:
[
{
"price": 99,
"conditions": {},
"name": "Standaard prijs"
},
{
"price": 6.95,
"conditions": {
"country": "NL"
},
"name": "Prijs binnen Nederland"
},
{
"price": 5.50,
"conditions": {
"country": "NL",
"carrier_name":"ups"
},
"name": "UPS is goedkoper in NL!"
},
{
"price": 4.95,
"conditions": {
"country": "NL",
"package_type":2
},
"name": "Brievenbuspakje binnen Nederland"
},
{
"price": 3.89,
"conditions": {
"country": "NL",
"package_type":2,
"carrier_name":"dhlforyou"
},
"name": "DHL BBP binnen Nederland"
},
{
"price": 3.99,
"conditions": {
"country": "NL",
"package_type":4
},
"name": "Digitale postzegel default"
},
{
"price": 2.99,
"conditions": {
"country": "NL",
"package_type":4,
"maximum_weight":100
},
"name": "Digitale postzegel tot 100 gram"
},
{
"price": 12.95,
"conditions": {
"country_part_of": "EU"
},
"name": "Prijs overige EU landen"
},
{
"price": 19.95,
"conditions": {
"country_part_of": "EU",
"carrier_name": "ups"
},
"name": "UPS is duurder in de EU"
},
{
"price": 5.95,
"conditions": {
"country_part_of": "EU",
"package_type": 2
},
"name": "Intl mailbox default"
},
{
"price": 8.95,
"conditions": {
"country_part_of": "EU",
"package_type": 2,
"carrier_name": "dhlforyou"
},
"name": "DHL mailbox is duurder"
}
]
v4.18.1
v4.18.0
v4.17.0
v4.16.2
v4.16.1
v4.16.0
v4.15.2
v4.15.1
4.15.1 (2024-07-11)
🐛 Bug Fixes
- allow exporting without delivery options (#848) (7f88b09)
- allow package type mailbox when postnl is disabled (#850) (c3357eb)
- checkout: honor monday delivery setting (#849) (359eef0)
- checkout: show delivery options also when totalprice is chosen (#852) (0408cad)
- checkout: show delivery options even if not all mailbox settings are present (#853) (cfc33e8)
- checkout: take carrier specific mailbox weight into account (#855) (6ce5131)
- checkout: update shipping price in delivery options on change (#846) (52bc15f)
- checkout: use backwards compatible delivery options (#854) (f8727ee)
- prevent dhl shipments being rejected for size (#851) (cec93a9)