feat : Cash flow transaction type.

This commit is contained in:
elforjani13
2021-10-17 18:00:40 +02:00
parent 2078b6bc99
commit c148e2976a
33 changed files with 1273 additions and 63 deletions

View File

@@ -3,25 +3,29 @@ import intl from 'react-intl-universal';
export const addMoneyIn = [
{
name: intl.get('cash_flow.option_owner_contribution'),
type: 'OWNERS',
type: 'OWNER_CONTRIBUTION',
},
{
name: intl.get('cash_flow.option_other_income'),
type: 'EQUITY',
type: 'OTHER_INCOME',
},
{
name: intl.get('cash_flow.option_transfer_form_account'),
type: 'TRANSFER_FROM_ACCOUNT',
},
];
export const addMoneyOut = [
{
name: intl.get('cash_flow.option_owner_drawings'),
type: 'OWNERS',
type: 'ONWERS_DRAWING',
},
{
name: intl.get('cash_flow.option_expenses'),
type: 'EXPENSES',
type: 'OTHER_EXPENSE',
},
{
name: intl.get('cash_flow.option_vendor_payment'),
type: '',
name: intl.get('cash_flow.option_transfer_to_account'),
type: 'TRANSFER_TO_ACCOUNT',
},
];