[ic] minivend shipping?

kyle@invisio.com kyle@invisio.com
Mon, 23 Apr 2001 23:21:01 -0400


At 12:40 AM 4/24/01 , you wrote:
>Hello, all!  I am new to the list and to Interchange.  Unfortunately
>I am stuck using Minivend version 4, as it is what is provided
>through my client's host.  Is anyone else using Minivend or familiar
>with problems with it?
>
>At any rate...  I am having a terrible time setting up shipping.  I
>have searched every resource I can find on the subject and am posting
>here as a last resort.
>
>I want to base shipping on price.  No matter what I do, it still
>charges $0 for all.
>
>Here is my shipping.asc file:
>
>code	description	criteria	min	max	formula	query	opt
>0	Surface	price	0	99999999	f @@TOTAL@@ * .1		
>default	Surface	price	0	99999999	f @@TOTAL@@ * .1		
>							
>surf	Surface	price	201	99999	f @@TOTAL@@ * .1	
>surf	Surface	price	0	40	7.00	
>surf	Surface	price	101	150	11.00	
>surf	Surface	price	41	100	9.00	
>surf	Surface	price	151	200	13.00
>
>rush	Priority	price	0	99999	f 15 + (@@TOTAL@@ * .1)
>
>intl	Int'l	price	0	99999	f 25 + (@@TOTAL@@ * .1)
>
>Thank you to anyone that can help!  Also let me know if you need more
>info, or if maybe there is something in some other file I should be
>changing?
>
>Thanks for you time,
>Amelie
>

Amelie,

I'm not sure what problems you may encounter with 4.x but here is a sample
for price based shipping that I use for some 3.x catalogs (patched for some
security issues specific to pre 4.0 Minivend).

It should work just fine for your shipping needs:

code	description	criteria	min	max	formula
0	No shipping	[subtotal noformat=1]	0	99999999	e No shipping mode selected.
default	No shipping	[subtotal noformat=1]	0	99999999	0

us_Std	Standard US	[subtotal noformat=1]	0	0	e Nothing to ship!
us_Std	Standard US	[subtotal noformat=1]	0	24.99	f [subtotal noformat=1] *
.15 + 2.5
us_Std	Standard US	[subtotal noformat=1]	25	49.99	f [subtotal noformat=1] * .15
us_Std	Standard US	[subtotal noformat=1]	50	99999	e Free shipping!

us_Rush	Rush Delivery	[subtotal noformat=1]	0	0	e Nothing to ship!
us_Rush	Rush Delivery	[subtotal noformat=1]	0	24.99	f [subtotal noformat=1]
* .3 + 2.5
us_Rush	Rush Delivery	[subtotal noformat=1]	25	49.99	f [subtotal
noformat=1] * .3
us_Rush	Rush Delivery	[subtotal noformat=1]	50	74.99	f [subtotal
noformat=1] * .25
us_Rush	Rush Delivery	[subtotal noformat=1]	75	99.99	20.00
us_Rush	Rush Delivery	[subtotal noformat=1]	100	99999	e Free shipping!


NOTE: this probably wrapped in the email, but of course should be one line
for each. For the most part it looks like you simply needed to use
[subtotal noformat=1] for the criteria in your file.

Kyle (KC)