Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

How the delivery is to be fulfilled is implied by name and description of the SLA, which should be descriptive enough for the customers to fully understand the delivery terms and conditions. The actual configuration is defines by an number of parameters:

Configuration Purpose
SLA typeMode of calculation for costs and delivery times
Named day

Flag to instruct the system that customer can choose a desired day for the delivery. The choice will be allowed between min and max days (see configurations below).

For example if Named day flag is set and today is 1st on November and min days is 10 and max days is 20 then the earliest delivery date the customer can choose is 10th of November and the latest is 30th of November, excluding any dates or weeks days which are set in exclusions

Guaranteed deliveryFlag to instruct the system that carrier guarantees to deliver the item in X days (subject to exclusions). X in this case in represented by min days. Max days in this setup will be equals to min days.
Min days

Minimal number of days required to deliver the items.
(warning)  Note this is carriers min days. If fulfilment centre has its own lead time set than this lead time is added to this min days value when calculating the earliest possible delivery date 

Max days

Maximum number of days required to deliver the items. If this is not a guaranteed or a named day delivery this parameter allows to determine estimated time frame for delivery. E.g. "You item will be delivered between 1st Nov and 10th Nov"
(warning)  Note this is carriers max days. If fulfilment centre has its own lead time set than this lead time is added to this max days value when calculating the latest possible delivery date 

Optional billingFlag that instructs the system that billing address is not needed to place an order
Optional deliveryFlag that instructs the system that delivery address is not needed to place an order (e.g. collect in store)
Payment methods selection

Exact list of payment methods that this delivery method supports. In case of multi delivery the final payment options list must satisfy all deliveries SLA configuration.
(warning)  If deliveries have SLA that contains mutually exclusive payment options the customer will not be able to place the order. So ensure that default payment option is available in all SLA.

Fulfilment centres selection

Exact list of fulfilment centres that this delivery method supports. Allows to customise specific delivery options per fulfilment centre.
(warning)  If deliveries have product SKU that is from fulfilment centre that has no shipping SLA associated with it the customer will not be able to complete checkout. Ensure that all fulfilment centres have as least one SLA available in the shop

Exclusions: Not available for customer types (CSV)Allows to specify customer types which should not be allowed to use given delivery option
Exclusions: No delivery XExclude deliveries by week day. Used when calculating estimated delivery and named delivery available dates
Exclusions: No delivery on specific datesExclude deliveries by specific date or date range. Used when calculating estimated delivery and named delivery available dates

Shipping costs depend on the pricing calculation configurations, which are specified by "SLA type". 

...

"SLA type" describes predefined method of calculation of shipping costs. The following calculation methods are supported out of the box:

SLA type Calculation Method 
Fixed 

Allows to specify fixed price per delivery.
Overall cost calculation is: fixed price x number of deliveries in order

Free Tells the system that there are no cost associated with delivering this item. This could be used for digital deliveries or "collect from store". 
Weight & Volume

Determines appropriate delivery cost by calculating weight and/or volume of products in cart (using product's custom attributes PRODUCT_WEIGHT_KG and PRODUCT_VOLUME_M3 respectively).
Overall cost calculation is: price @ quantity tier where (tier is either total weight in KG or volume in M3) 

External Extension point, not used by core API  
Tip
For free shipping as promotion we recommend using "Fixed" SLA type and then specify 100% discount promotion for order value greater than zero. This will provide additional promotional messaging to encourage the customer.

...

Prices for all SLA are specified in the price lists using carrier SLA SKU as if it was any other product SKU. Because SLA SKU is treated as any other SKU all price records will follow the same rules of best value calculation, with validity time frames and policies correctly applied. Table below shows which prices need to be setup for each type of SLA (for examples consider that SLA SKU is SHIP0001):

SLA TypePrice records requiredExampleNotes
Fixed

 

Code Block
[SKU]=[List price]

 

SHIP0001=4.99Fixed price requires a simple list price entry
Free

 


Code Block
[SKU]=[List price]

 

SHIP0001=0.00Free price requires a simple list price entry with 0.00 list price. This is a marker price to indicate that a price exists in the shop for this SLA and it is therefore available
Weight

 

Code Block
[SKU]_KG=[List price for quantity in KG]
[SKU]_KGMAX=[List price for max KG allowed]

 

SHIP0001_KG@0.01=4.99
SHIP0001_KG@5=9.99
SHIP0001_KGMAX@15=0.00

Weight based pricing where quantity tier is the weight in kilograms for all products in the delivery (counted by adding up values of PRODUCT_WEIGHT_KG attribute). In the example the price for parcels up to 5kg is 5.99, 5-15kg is 9.99, 15kg and more parcels are not allowed.
Volume

 

Code Block
[SKU]_KG=[List price for quantity in KG]
[SKU]_KGMAX=[List price for max KG allowed]

 

SHIP0001_M3@0.01=4.99
SHIP0001_M3@5=9.99
SHIP0001_M3MAX@15=0.00

Volume based pricing where quantity tier is the volume in cubic meters for all products in the delivery (counted by adding up values of PRODUCT_VOLUME_M3 attribute). In the example the price for parcels up to 5m3 is 5.99, 5-15m3 is 9.99, 15m3 and more parcels are not allowed.

Fulfilment centres
Label
Body3.5.0+

...