feat: Money in & out Dialog.

This commit is contained in:
elforjani13
2021-10-13 19:56:48 +02:00
parent b848553cf7
commit 2078b6bc99
29 changed files with 1458 additions and 11 deletions

View File

@@ -0,0 +1,27 @@
import intl from 'react-intl-universal';
export const addMoneyIn = [
{
name: intl.get('cash_flow.option_owner_contribution'),
type: 'OWNERS',
},
{
name: intl.get('cash_flow.option_other_income'),
type: 'EQUITY',
},
];
export const addMoneyOut = [
{
name: intl.get('cash_flow.option_owner_drawings'),
type: 'OWNERS',
},
{
name: intl.get('cash_flow.option_expenses'),
type: 'EXPENSES',
},
{
name: intl.get('cash_flow.option_vendor_payment'),
type: '',
},
];