diff --git a/package.json b/package.json index 46cbd9a0..4443825e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hawk.api", - "version": "1.1.2", + "version": "1.1.3", "main": "index.ts", "license": "UNLICENSED", "scripts": { diff --git a/src/billing/cloudpayments.ts b/src/billing/cloudpayments.ts index ff41abe3..62b50d0c 100644 --- a/src/billing/cloudpayments.ts +++ b/src/billing/cloudpayments.ts @@ -793,13 +793,13 @@ export default class CloudPaymentsWebhooks { * involving the production and distribution of goods and the provision of services * Also known as "НДС" in Russia */ - const VALUE_ADDED_TAX = 20; + const VALUE_ADDED_TAX = 0; const item: CustomerReceiptItem = { amount: tariff.monthlyCharge, label: `${tariff.name} tariff plan`, price: tariff.monthlyCharge, - // vat: VALUE_ADDED_TAX, + vat: VALUE_ADDED_TAX, quantity: 1, };