mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-18 16:54:25 +08:00
credit card account supports statement date
This commit is contained in:
+25
-11
@@ -1,49 +1,61 @@
|
||||
const allAccountCategories = [
|
||||
{
|
||||
const allAccountCategories = {
|
||||
Cash: {
|
||||
id: 1,
|
||||
name: 'Cash',
|
||||
defaultAccountIconId: '1'
|
||||
},
|
||||
{
|
||||
CheckingAccount: {
|
||||
id: 2,
|
||||
name: 'Checking Account',
|
||||
defaultAccountIconId: '100'
|
||||
},
|
||||
{
|
||||
SavingsAccount: {
|
||||
id: 8,
|
||||
name: 'Savings Account',
|
||||
defaultAccountIconId: '100'
|
||||
},
|
||||
{
|
||||
CreditCard: {
|
||||
id: 3,
|
||||
name: 'Credit Card',
|
||||
defaultAccountIconId: '100'
|
||||
},
|
||||
{
|
||||
VirtualAccount: {
|
||||
id: 4,
|
||||
name: 'Virtual Account',
|
||||
defaultAccountIconId: '500'
|
||||
},
|
||||
{
|
||||
DebtAccount: {
|
||||
id: 5,
|
||||
name: 'Debt Account',
|
||||
defaultAccountIconId: '600'
|
||||
},
|
||||
{
|
||||
Receivables: {
|
||||
id: 6,
|
||||
name: 'Receivables',
|
||||
defaultAccountIconId: '700'
|
||||
},
|
||||
{
|
||||
CertificatePfDeposit: {
|
||||
id: 9,
|
||||
name: 'Certificate of Deposit',
|
||||
defaultAccountIconId: '110'
|
||||
},
|
||||
{
|
||||
InvestmentAccount: {
|
||||
id: 7,
|
||||
name: 'Investment Account',
|
||||
defaultAccountIconId: '800'
|
||||
}
|
||||
};
|
||||
|
||||
const allAccountCategoriesArray = [
|
||||
allAccountCategories.Cash,
|
||||
allAccountCategories.CheckingAccount,
|
||||
allAccountCategories.SavingsAccount,
|
||||
allAccountCategories.CreditCard,
|
||||
allAccountCategories.VirtualAccount,
|
||||
allAccountCategories.DebtAccount,
|
||||
allAccountCategories.Receivables,
|
||||
allAccountCategories.CertificatePfDeposit,
|
||||
allAccountCategories.InvestmentAccount
|
||||
];
|
||||
const allAccountTypes = {
|
||||
SingleAccount: 1,
|
||||
@@ -60,7 +72,9 @@ const allAccountTypesArray = [
|
||||
];
|
||||
|
||||
export default {
|
||||
allCategories: allAccountCategories,
|
||||
cashCategoryType: allAccountCategories.Cash.id,
|
||||
creditCardCategoryType: allAccountCategories.CreditCard.id,
|
||||
allCategories: allAccountCategoriesArray,
|
||||
allAccountTypes: allAccountTypes,
|
||||
allAccountTypesArray: allAccountTypesArray,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user