mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
19 lines
555 B
JavaScript
19 lines
555 B
JavaScript
export const moneyFormat = [
|
|
{ id: 'total', text: 'Total rows' },
|
|
{ id: 'always', text: 'Always' },
|
|
{ id: 'none', text: 'None' },
|
|
];
|
|
|
|
export const negativeFormat = [
|
|
{ id: 'parentheses', text: 'Parentheses ($1000)' },
|
|
{ id: 'mines', text: 'Minus -$1000' },
|
|
];
|
|
|
|
export const decimalPlaces = [
|
|
{ text: '1 Decimals', label: '$0.1', id: 1 },
|
|
{ text: '2 Decimals', label: '$0.01', id: 2 },
|
|
{ text: '3 Decimals', label: '$0.001', id: 3 },
|
|
{ text: '4 Decimals', label: '$0.0001', id: 4 },
|
|
{ text: '5 Decimals', label: '$0.00001', id: 5 },
|
|
];
|