Skip to content

Commit b41d614

Browse files
Uncomment vat (#450)
* Uncomment vat * Bump version up to 1.1.3 * Update vat value --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 59215c5 commit b41d614

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hawk.api",
3-
"version": "1.1.2",
3+
"version": "1.1.3",
44
"main": "index.ts",
55
"license": "UNLICENSED",
66
"scripts": {

src/billing/cloudpayments.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -793,13 +793,13 @@ export default class CloudPaymentsWebhooks {
793793
* involving the production and distribution of goods and the provision of services
794794
* Also known as "НДС" in Russia
795795
*/
796-
const VALUE_ADDED_TAX = 20;
796+
const VALUE_ADDED_TAX = 0;
797797

798798
const item: CustomerReceiptItem = {
799799
amount: tariff.monthlyCharge,
800800
label: `${tariff.name} tariff plan`,
801801
price: tariff.monthlyCharge,
802-
// vat: VALUE_ADDED_TAX,
802+
vat: VALUE_ADDED_TAX,
803803
quantity: 1,
804804
};
805805

0 commit comments

Comments
 (0)