feat: money in .

This commit is contained in:
elforjani13
2021-10-23 20:03:31 +02:00
parent c7013caf12
commit 1fa03822f1
25 changed files with 242 additions and 350 deletions

View File

@@ -3,29 +3,30 @@ import intl from 'react-intl-universal';
export const addMoneyIn = [
{
name: intl.get('cash_flow.option_owner_contribution'),
type: 'OWNER_CONTRIBUTION',
value: 'owner_contribution',
},
{
name: intl.get('cash_flow.option_other_income'),
type: 'OTHER_INCOME',
value: 'other_income',
},
{
name: intl.get('cash_flow.option_transfer_form_account'),
type: 'TRANSFER_FROM_ACCOUNT',
value: 'transfer_from_account',
},
];
export const addMoneyOut = [
{
name: intl.get('cash_flow.option_owner_drawings'),
type: 'ONWERS_DRAWING',
value: 'onwers_drawing',
},
{
name: intl.get('cash_flow.option_expenses'),
type: 'OTHER_EXPENSE',
value: 'other_expense',
},
{
name: intl.get('cash_flow.option_transfer_to_account'),
type: 'TRANSFER_TO_ACCOUNT',
value: 'transfer_to_account',
},
];