[ic] shipping to Hawaii and Alaska

Xiaowen Wu interchange-users@lists.akopia.com
Wed May 16 16:22:00 2001


Hi, I had a problem with the shipping to Hawaii and Alaska, the MV always
return 0 for shose areas, I looked at the 450.csv, but didn't know how to
fix it, any idea ?

Also I don't want to let user select the UPS Ground (upsg) and UPGO (Three
days) to these area. If they did, then I will select the UPS Two days (
upsb) for them, I add the following code into the shopping cart and
checkout page, but it always change the shipmode, did I do something
wrong.

[calc]
my $z = [value name=zip];
my $m = [value name="mv_shipmode"];

if (($z ge "95000") && ($z le "99999") &&
    (($m eq "upsg") || ($m eq "upso"))) {
  [value name="mv_shipmode" set="upsb" hide=1];
}
[/calc]


Your help are very appreciated. Thanks

Wen