mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
feat : Cash flow transaction type.
This commit is contained in:
@@ -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',
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user