Skip to content
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.

Commit

Permalink
Proper ISO duplicates for UK and EL
Browse files Browse the repository at this point in the history
  • Loading branch information
staaky committed Apr 16, 2015
1 parent 96e5be8 commit c9347df
Show file tree
Hide file tree
Showing 5 changed files with 104 additions and 62 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vatrates",
"description": "Up-to-date European VAT Rates",
"version": "1.0.4",
"version": "1.0.5",
"keywords": [
"VAT",
"rates",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vatrates",
"title": "VATRates",
"version": "1.0.4",
"version": "1.0.5",
"description": "Up-to-date European VAT Rates",
"keywords": [
"VAT",
Expand Down
54 changes: 34 additions & 20 deletions vatrates.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,28 @@ var VATRates = {
}
},

"EL": {
"hasISODuplicate": "GR",
"country": "Greece",
"rates": {
"superReduced": false,
"reduced": [6.5, 13],
"standard": 23,
"parking": false
}
},

"GR": {
"isISODuplicateOf": "EL",
"country": "Greece",
"rates": {
"superReduced": false,
"reduced": [6.5, 13],
"standard": 23,
"parking": false
}
},

"ES": {
"country": "Spain",
"rates": {
Expand Down Expand Up @@ -116,26 +138,6 @@ var VATRates = {
}
},

"GB": {
"country": "United Kingdom",
"rates": {
"superReduced": false,
"reduced": [5],
"standard": 20,
"parking": false
}
},

"GR": {
"country": "Greece",
"rates": {
"superReduced": false,
"reduced": [6.5, 13],
"standard": 23,
"parking": false
}
},

"HR": {
"country": "Croatia",
"rates": {
Expand Down Expand Up @@ -287,6 +289,18 @@ var VATRates = {
},

"UK": {
"hasISODuplicate": "GB",
"country": "United Kingdom",
"rates": {
"superReduced": false,
"reduced": [5],
"standard": 20,
"parking": false
}
},

"GB": {
"isISODuplicateOf": "UK",
"country": "United Kingdom",
"rates": {
"superReduced": false,
Expand Down
54 changes: 34 additions & 20 deletions vatrates.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,28 @@
}
},

"EL": {
"hasISODuplicate": "GR",
"country": "Greece",
"rates": {
"superReduced": false,
"reduced": [6.5, 13],
"standard": 23,
"parking": false
}
},

"GR": {
"isISODuplicateOf": "EL",
"country": "Greece",
"rates": {
"superReduced": false,
"reduced": [6.5, 13],
"standard": 23,
"parking": false
}
},

"ES": {
"country": "Spain",
"rates": {
Expand Down Expand Up @@ -109,26 +131,6 @@
}
},

"GB": {
"country": "United Kingdom",
"rates": {
"superReduced": false,
"reduced": [5],
"standard": 20,
"parking": false
}
},

"GR": {
"country": "Greece",
"rates": {
"superReduced": false,
"reduced": [6.5, 13],
"standard": 23,
"parking": false
}
},

"HR": {
"country": "Croatia",
"rates": {
Expand Down Expand Up @@ -280,6 +282,18 @@
},

"UK": {
"hasISODuplicate": "GB",
"country": "United Kingdom",
"rates": {
"superReduced": false,
"reduced": [5],
"standard": 20,
"parking": false
}
},

"GB": {
"isISODuplicateOf": "UK",
"country": "United Kingdom",
"rates": {
"superReduced": false,
Expand Down
54 changes: 34 additions & 20 deletions vatrates.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,28 @@
)
),

"EL" => array(
"hasISODuplicate" => "GR",
"country" => "Greece",
"rates" => array(
"superReduced" => false,
"reduced" => array(6.5, 13),
"standard" => 23,
"parking" => false
)
),

"GR" => array(
"isISODuplicateOf" => "EL",
"country" => "Greece",
"rates" => array(
"superReduced" => false,
"reduced" => array(6.5, 13),
"standard" => 23,
"parking" => false
)
),

"ES" => array(
"country" => "Spain",
"rates" => array(
Expand Down Expand Up @@ -115,26 +137,6 @@
)
),

"GB" => array(
"country" => "United Kingdom",
"rates" => array(
"superReduced" => false,
"reduced" => array(5),
"standard" => 20,
"parking" => false
)
),

"GR" => array(
"country" => "Greece",
"rates" => array(
"superReduced" => false,
"reduced" => array(6.5, 13),
"standard" => 23,
"parking" => false
)
),

"HR" => array(
"country" => "Croatia",
"rates" => array(
Expand Down Expand Up @@ -286,6 +288,18 @@
),

"UK" => array(
"hasISODuplicate" => "GB",
"country" => "United Kingdom",
"rates" => array(
"superReduced" => false,
"reduced" => array(5),
"standard" => 20,
"parking" => false
)
),

"GB" => array(
"isISODuplicateOf" => "UK",
"country" => "United Kingdom",
"rates" => array(
"superReduced" => false,
Expand Down

0 comments on commit c9347df

Please sign in to comment.