mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-14 20:00:33 +00:00
31 lines
656 B
TypeScript
31 lines
656 B
TypeScript
export const InitialTaxRates = [
|
|
{
|
|
name: 'Tax Exempt',
|
|
code: 'TAX-EXEMPT',
|
|
description: 'Exempts goods or services from taxes.',
|
|
rate: 0,
|
|
active: 1,
|
|
},
|
|
{
|
|
name: 'Tax on Purchases',
|
|
code: 'TAX-PURCHASES',
|
|
description: 'Fee added to the cost when you buy items.',
|
|
rate: 0,
|
|
active: 1,
|
|
},
|
|
{
|
|
name: 'Tax on Sales',
|
|
code: 'TAX-SALES',
|
|
description: 'Fee added to the cost when you sell items.',
|
|
rate: 0,
|
|
active: 1,
|
|
},
|
|
{
|
|
name: 'Sales Tax on Imports',
|
|
code: 'TAX-IMPORTS',
|
|
description: 'Fee added to the cost when you sale to another country.',
|
|
rate: 0,
|
|
active: 1,
|
|
},
|
|
];
|