mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-15 23:47:33 +08:00
add net assets/total assets/total liabilities in account list page
This commit is contained in:
@@ -2,36 +2,43 @@ 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'
|
||||
}
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user