mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 23:17:33 +08:00
54 lines
1018 B
JavaScript
54 lines
1018 B
JavaScript
const allAccountCategories = [
|
|
{
|
|
id: 1,
|
|
name: 'Cash',
|
|
isAsset: true,
|
|
defaultAccountIconId: '1'
|
|
},
|
|
{
|
|
id: 2,
|
|
name: 'Debit Card',
|
|
isAsset: true,
|
|
defaultAccountIconId: '2'
|
|
},
|
|
{
|
|
id: 3,
|
|
name: 'Credit Card',
|
|
isLiability: true,
|
|
defaultAccountIconId: '2'
|
|
},
|
|
{
|
|
id: 4,
|
|
name: 'Virtual Account',
|
|
isAsset: true,
|
|
defaultAccountIconId: '3'
|
|
},
|
|
{
|
|
id: 5,
|
|
name: 'Debt Account',
|
|
isLiability: true,
|
|
defaultAccountIconId: '4'
|
|
},
|
|
{
|
|
id: 6,
|
|
name: 'Receivables',
|
|
isAsset: true,
|
|
defaultAccountIconId: '5'
|
|
},
|
|
{
|
|
id: 7,
|
|
name: 'Investment Account',
|
|
isAsset: true,
|
|
defaultAccountIconId: '6'
|
|
}
|
|
];
|
|
const allAccountTypes = {
|
|
SingleAccount: 1,
|
|
MultiSubAccounts: 2
|
|
};
|
|
|
|
export default {
|
|
allCategories: allAccountCategories,
|
|
allAccountTypes: allAccountTypes,
|
|
};
|