Pregunta

Yo soy un novato en Magento. Estoy utilizando Magento 1.7.

Mi cliente quiere que añadir diferentes precios de entrega de acuerdo con el país, la cantidad y peso. Esto es lo que quiere.

1. STANDARD DELIVERY in UK is £7, 
2. FREE DELIVERY in UK orders above £100, 
3. EUROPEAN COUNTRIES is £10 for items below 5kg
4. REST OF THE WORLD IS is £19.99
5. System automatically add £5 per 5kg in UK 
6. £15 per 5kg in rest of the world 

¿Hay algún módulo que me ayudan a añadir diferentes opciones como estas? hice o quiero crear un nuevo módulo?

¿Fue útil?

Solución

Esto se puede lograr con las tasas de las tablas y reglas de la compra.

http: // www.magentocommerce.com/knowledge-base/entry/how-do-i-set-up-table-rate-shipping

Se configura las tasas de las tablas en función del peso frente al destino. Y entonces algo como:

Country    Region    Zip    weight    Shipping Price
   // 1. STANDARD DELIVERY in UK is £7, 
   UK        *       *       0             7     
   // 5. System automatically add £5 per 5kg in UK 
   UK        *       *       5            12     
   UK        *       *       10           17     
   UK        *       *       15           22     
   UK        *       *       20           27     
   UK        *       *       25           32     
   UK        *       *       30           37
   // add more rows     
   // 3. EUROPEAN COUNTRIES is £10 for items below 5kg
   DEU       *       *       *            10
   FRA       *       *       *            10
   ... // all other european countries
   // 4. REST OF THE WORLD IS is £19.99
   *         *       *       0           19.99
   // 6. £15 per 5kg in rest of the world 
   *         *       *       5           34.99
   *         *       *       10          49.99
   // add more rows     

Cesta regla para:

  1. Entrega gratuita en pedidos superiores a 100 £ Reino Unido,

Hay un caso sin definir: ¿Qué cuesta UE> = 5 kg

Otros consejos

Me contestó que ya, pero debe ser alcanzable con esta extensión también: https://github.com/thebod / Thebod_Shippingrates y es con una interfaz gráfica de usuario: -)

Es mejor utilizar la extensión OwebiaShipping2. Esta extensión es muy flexible, permite la creación de múltiples normas envío configurados exactamente como lo desea.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a magento.stackexchange
scroll top