diff options
-rw-r--r-- | products/ship/shipping.asc | 4 | ||||
-rw-r--r-- | usertag/anteraja_cost.tag | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/products/ship/shipping.asc b/products/ship/shipping.asc index fced578..8011be1 100644 --- a/products/ship/shipping.asc +++ b/products/ship/shipping.asc @@ -1,5 +1,5 @@ anteraja: Anteraja crit weight - min 1000 - max 50000 + min 1 + max 50 cost f [anteraja_cost district='[evalue address3]' city='[evalue city]' province='[evalue state]' weight=@@TOTAL@@] diff --git a/usertag/anteraja_cost.tag b/usertag/anteraja_cost.tag index b1c03c9..8c840f1 100644 --- a/usertag/anteraja_cost.tag +++ b/usertag/anteraja_cost.tag @@ -11,6 +11,6 @@ sub { my $destination = $Tag->query({sql => "SELECT code FROM shipping WHERE district='" . $district . "' AND city='" . $city . "' AND province='" . $province . "'", wantarray=> 1})->[0]->[0]; - return $Tag->pikul_cost(0, \@provisions, "$origin", "$destination", $weight, 'REG'); + return $Tag->pikul_cost(0, \@provisions, "$origin", "$destination", $weight * 1000, 'REG'); } EOR |