Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Business-Tax-VAT CPAN distribution.

Report information
The Basics
Id: 74846
Status: resolved
Priority: 0/
Queue: Business-Tax-VAT

People
Owner: jonasbn [...] cpan.org
Requestors: justin [...] masonsmusic.co.uk
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 1.00
Fixed in: 1.01



Subject: Bug report
Date: Fri, 10 Feb 2012 10:07:44 +0000
To: bug-Business-Tax-VAT [...] rt.cpan.org
From: Justin Catterall <justin [...] masonsmusic.co.uk>
The VAT rate for the UK is incorrect. The rate used in the module is 17.5% while the current VAT rate is 20%. -- Justin C, by the sea.
On Fri Feb 10 05:07:54 2012, justin@masonsmusic.co.uk wrote: Show quoted text
> > The VAT rate for the UK is incorrect. > > The rate used in the module is 17.5% while the current VAT rate is 20%. > >
Here is a basic patch. 20% is correct according to: http://www.vatlive.com/vat-rates/european-vat-rates/eu-vat-rates/ jonasbn
Subject: rt74846.patch
diff --git a/lib/Business/Tax/VAT.pm b/lib/Business/Tax/VAT.pm index c6f24ca..dbf0745 100644 --- a/lib/Business/Tax/VAT.pm +++ b/lib/Business/Tax/VAT.pm @@ -77,7 +77,7 @@ our %RATE = ( si => 20, es => 16, se => 25, - uk => 17.5, + uk => 20, ); sub new { @@ -202,7 +202,7 @@ This module uses the following rates and codes: si, Slovenia, 20% es, Spain, 16% se, Sweden, 25% - uk, United Kingdom, 17.5% + uk, United Kingdom, 20% If any of these rates become incorrect, or if you wish to use different rates due to the nature of the product (e.g. books are 0%
Thank you for your error report, you issues has been fixed in release 1.01, just uploaded to CPAN today. Have a nice day, jonasbn