mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
feat: Money in & out Dialog.
This commit is contained in:
27
src/common/cashflowOptions.js
Normal file
27
src/common/cashflowOptions.js
Normal 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: '',
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user