v5.0.0-alpha2
Pre-release
Pre-release
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"
}
]