mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
WIP Financial statements.
This commit is contained in:
@@ -12,6 +12,7 @@ import currencies from './currencies/currencies.reducer';
|
||||
import resources from './resources/resources.reducer';
|
||||
import financialStatements from './financialStatement/financialStatements.reducer';
|
||||
import itemCategories from './itemCategories/itemsCateory.reducer';
|
||||
import settings from './settings/settings.reducer';
|
||||
|
||||
export default combineReducers({
|
||||
authentication,
|
||||
@@ -25,5 +26,6 @@ export default combineReducers({
|
||||
resources,
|
||||
financialStatements,
|
||||
items,
|
||||
itemCategories
|
||||
itemCategories,
|
||||
settings,
|
||||
});
|
||||
|
||||
0
client/src/store/settings/settings.actions.js
Normal file
0
client/src/store/settings/settings.actions.js
Normal file
16
client/src/store/settings/settings.reducer.js
Normal file
16
client/src/store/settings/settings.reducer.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import { createReducer } from '@reduxjs/toolkit';
|
||||
import t from 'store/types';
|
||||
|
||||
const initialState = {
|
||||
data: {
|
||||
organization: {
|
||||
name: 'Bigcapital, Limited Liabilities',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default createReducer(initialState, {
|
||||
['asdfas']: (state, action) => {
|
||||
|
||||
},
|
||||
});
|
||||
0
client/src/store/settings/settings.selectors.js
Normal file
0
client/src/store/settings/settings.selectors.js
Normal file
5
client/src/store/settings/settings.type.js
Normal file
5
client/src/store/settings/settings.type.js
Normal file
@@ -0,0 +1,5 @@
|
||||
|
||||
|
||||
export default {
|
||||
|
||||
};
|
||||
@@ -11,6 +11,7 @@ import resources from './resources/resource.types';
|
||||
import users from './users/users.types';
|
||||
import financialStatements from './financialStatement/financialStatements.types';
|
||||
import itemCategories from './itemCategories/itemsCategory.type';
|
||||
import settings from './settings/settings.type';
|
||||
|
||||
export default {
|
||||
...authentication,
|
||||
@@ -25,5 +26,6 @@ export default {
|
||||
...resources,
|
||||
...users,
|
||||
...financialStatements,
|
||||
...itemCategories
|
||||
...itemCategories,
|
||||
...settings
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user