[ic] Set minimum shipping weight

Stefan Hornburg interchange-users@icdevgroup.org
Mon Apr 14 17:14:01 2003


On 14 Apr 2003 16:35:42 -0400
Kevin Old <kold@carolina.rr.com> wrote:

> Hello everyone,
> 
> I am trying to set the minimum shipping weight for the total order. 
> Each of my items are 1/2lb in weight.  If the user has a total weight
> of less than 1 in their cart, I need the total weight of the cart to
> be rounded up to 1.  Sounds simple, but I've tried the following:
> 
> Tried the suggestions here:
> http://www.icdevgroup.org/pipermail/interchange-users/2001-June/009223.html
> 
> Modified them a little like this:
> 
> [seti total_weight][summary format="%s" total=1][/seti]
> [if scratch total_weight <= 1]
>         [seti name=weight value="1"][/seti]
> [/if]

Please try:

[if scratch total_weight <= 1]
      [set total_weight]1[/set]
[/if]

Bye
	Racke