This question has been flagged
1 Reply
3185 Views

Hello all,

I don't understand how I could use the variable (instead of fixed) price_type in the delivery pricelists.

I don't find any example on Google. Could you help me to understand those variable price_type?

Thanks



 

Avatar
Discard
Author Best Answer

Ok, I have analyzed the file addons/delivery/delivery.py. The method is get_price_from_picking.


For the price_type Fixed :

If the condition is fulfilled, the price of the shipping for this order will be exactly the value of  list_price.


For the price_type Variable :

If the condition is fulfilled, the price of the shipping for this order will be the list_price multiplied by the value of the variable_factor.

For example, the price of the shipping would be 30 $ if the condition is fulfilled, with a list_price of 6 $ and a variable_factor = weight and a total weight of 5 for this order.

Avatar
Discard