patricia
Newbie
Joined: 12 Nov 2006
Posts: 6
|
 Got This Far
Yea I have studied the Docs and I think I have gotten close. This is what I have so far
# Custom Shipping Logic Example
# Ship based on the total order.
# $1-$29.99 is 3.95, $30-59.99 is 4.95, etc.:
@sc_shipping_logic =
("Pickup||||20.00",
"Local Delivery||||89.95",
"Standard Rate Shipping||||300.00");
$shipping_price = &calculate_shipping($temp_total,
$total_quantity, $total_measured_quantity);
$shipping_logic_done = "yes"; # forces exit, no handling charge added
The only thing I have left is to limit the local delivery to zip code
|