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

Commit

Permalink
Updated VAT for Greece and Romania
Browse files Browse the repository at this point in the history
  • Loading branch information
staaky committed Jan 9, 2016
1 parent f1aed83 commit 1bea9fc
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 24 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules/
*.log
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.2.0",
"version": "1.2.1",
"description": "Up-to-date European VAT Rates",
"keywords": [
"VAT",
Expand Down
6 changes: 3 additions & 3 deletions src/vatrates.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ var VATRates = {
"country": "Greece",
"rates": {
"superReduced": false,
"reduced": [6.5, 13],
"reduced": [6, 13],
"standard": 23,
"parking": false
}
Expand All @@ -115,7 +115,7 @@ var VATRates = {
"country": "Greece",
"rates": {
"superReduced": false,
"reduced": [6.5, 13],
"reduced": [6, 13],
"standard": 23,
"parking": false
}
Expand Down Expand Up @@ -266,7 +266,7 @@ var VATRates = {
"rates": {
"superReduced": false,
"reduced": [5, 9],
"standard": 24,
"standard": 20,
"parking": false
}
},
Expand Down
6 changes: 3 additions & 3 deletions src/vatrates.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
"country": "Greece",
"rates": {
"superReduced": false,
"reduced": [6.5, 13],
"reduced": [6, 13],
"standard": 23,
"parking": false
}
Expand All @@ -95,7 +95,7 @@
"country": "Greece",
"rates": {
"superReduced": false,
"reduced": [6.5, 13],
"reduced": [6, 13],
"standard": 23,
"parking": false
}
Expand Down Expand Up @@ -246,7 +246,7 @@
"rates": {
"superReduced": false,
"reduced": [5, 9],
"standard": 24,
"standard": 20,
"parking": false
}
},
Expand Down
6 changes: 3 additions & 3 deletions src/vatrates.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"country" => "Greece",
"rates" => array(
"superReduced" => false,
"reduced" => array(6.5, 13),
"reduced" => array(6, 13),
"standard" => 23,
"parking" => false
)
Expand All @@ -102,7 +102,7 @@
"country" => "Greece",
"rates" => array(
"superReduced" => false,
"reduced" => array(6.5, 13),
"reduced" => array(6, 13),
"standard" => 23,
"parking" => false
)
Expand Down Expand Up @@ -253,7 +253,7 @@
"rates" => array(
"superReduced" => false,
"reduced" => array(5, 9),
"standard" => 24,
"standard" => 20,
"parking" => false
)
),
Expand Down
2 changes: 1 addition & 1 deletion tests/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<head>
<title>VATRates - Tests</title>

<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.12.0.min.js"></script>
<script type="text/javascript" src="../../vatrates/vatrates.js"></script>
<script type="text/javascript" src="js/table-js.js"></script>
<script type="text/javascript" src="js/tests.js"></script>
Expand Down
10 changes: 5 additions & 5 deletions vatrates.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* VATRates - v1.2.0
* Last update: 2015-08-20T19:37:53
* VATRates - v1.2.1
* Last update: 2016-01-09T01:15:13
* MIT License
*/

Expand Down Expand Up @@ -104,7 +104,7 @@ var VATRates = {
"country": "Greece",
"rates": {
"superReduced": false,
"reduced": [6.5, 13],
"reduced": [6, 13],
"standard": 23,
"parking": false
}
Expand All @@ -115,7 +115,7 @@ var VATRates = {
"country": "Greece",
"rates": {
"superReduced": false,
"reduced": [6.5, 13],
"reduced": [6, 13],
"standard": 23,
"parking": false
}
Expand Down Expand Up @@ -266,7 +266,7 @@ var VATRates = {
"rates": {
"superReduced": false,
"reduced": [5, 9],
"standard": 24,
"standard": 20,
"parking": false
}
},
Expand Down
6 changes: 3 additions & 3 deletions vatrates.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
"country": "Greece",
"rates": {
"superReduced": false,
"reduced": [6.5, 13],
"reduced": [6, 13],
"standard": 23,
"parking": false
}
Expand All @@ -95,7 +95,7 @@
"country": "Greece",
"rates": {
"superReduced": false,
"reduced": [6.5, 13],
"reduced": [6, 13],
"standard": 23,
"parking": false
}
Expand Down Expand Up @@ -246,7 +246,7 @@
"rates": {
"superReduced": false,
"reduced": [5, 9],
"standard": 24,
"standard": 20,
"parking": false
}
},
Expand Down
10 changes: 5 additions & 5 deletions vatrates.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/*!
* VATRates - v1.2.0
* Last update: 2015-08-20T19:37:53
* VATRates - v1.2.1
* Last update: 2016-01-09T01:15:13
* MIT License
*/

Expand Down Expand Up @@ -91,7 +91,7 @@
"country" => "Greece",
"rates" => array(
"superReduced" => false,
"reduced" => array(6.5, 13),
"reduced" => array(6, 13),
"standard" => 23,
"parking" => false
)
Expand All @@ -102,7 +102,7 @@
"country" => "Greece",
"rates" => array(
"superReduced" => false,
"reduced" => array(6.5, 13),
"reduced" => array(6, 13),
"standard" => 23,
"parking" => false
)
Expand Down Expand Up @@ -253,7 +253,7 @@
"rates" => array(
"superReduced" => false,
"reduced" => array(5, 9),
"standard" => 24,
"standard" => 20,
"parking" => false
)
),
Expand Down

0 comments on commit 1bea9fc

Please sign in to comment.