mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
19 lines
436 B
TypeScript
19 lines
436 B
TypeScript
export const TaxRatesSampleData = [
|
|
{
|
|
'Tax Name': 'Value Added Tax',
|
|
Code: 'VAT-STD',
|
|
Rate: '20',
|
|
Description: 'Standard VAT rate applied to most goods and services.',
|
|
'Is Non Recoverable': 'F',
|
|
Active: 'T',
|
|
},
|
|
{
|
|
'Tax Name': 'Luxury Goods Tax',
|
|
Code: 'TAX-LUXURY',
|
|
Rate: '25',
|
|
Description: 'Tax imposed on the sale of luxury items.',
|
|
'Is Non Recoverable': 'T',
|
|
Active: 'T',
|
|
},
|
|
];
|