Dear Etreu,
Do you only sell bottles? In particular, if an order contains 25 articles (counted by their quantity), are these always only bottles? If that is the case, you can use the Articles variable as the number of bottles.
From what I can see, you don't need the paid version in that case (the paid version only adds mathematical formulas and list handling).
If I understand you correctly, you basically have three zones:
- France
- Zone 1
- Zone 2
Rules for France (first country set):
Articles<=24; Shipping=29
Artibles>=25; Shipping=0
Rules for Zone 1:
Articles<=24; Shipping=80
Articles>=25; Shipping=62
Rules for Zone 2:
Articles<=24; Shipping=139
Articles>=25; Shipping=105
If, on the other hand, you also sell other items, then you first need to determine the number of bottles in the order (usually indicated by a special category) and store that in a new variable that you use instead of Articles. For this you would typically need the paid version.
Best regards,
Reinhold