Canadian Tax - Quebec and Prince Edward Island PST fix
Currently the PST tax calculation for Quebec and Prince Edward Island are incorrect.To rectify the issue, The following fix will need to be applied to shoptax.asp .
1. Open the file "shoptax.asp" using a text editor and locate the following code:
(Approximately located on line 381)
if lcase(castate) = "qc" or lcase(castate) = "pe" then
pst = capst * price
tax = carate * (price + pst)
else
tax = carate * price
pst = capst * price
end if
2. Now, modify the code above to the code below :
if lcase(castate) = "qc" or lcase(castate) = "pe" then
tax = carate * price
pst = capst * (price + tax)
else
tax = carate * price
pst = capst * price
end if
This fix will be incorporated into the upcoming VP-ASP 7.00 build
Times Viewed:
2434
Added By:
Frank
Date Created:
7/20/2011
Last Updated:
7/21/2011