mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-21 07:10:33 +00:00
Merge branch 'feature/multi-dimensions' of https://github.com/bigcapitalhq/client into feature/multi-dimensions
This commit is contained in:
@@ -42,7 +42,11 @@ function PreferencesTopbar({ preferencesPageTitle }) {
|
|||||||
path={'/preferences/warehouses'}
|
path={'/preferences/warehouses'}
|
||||||
component={WarehousesActions}
|
component={WarehousesActions}
|
||||||
/>
|
/>
|
||||||
<Route path={'/preferences/branches'} component={BranchesActions} />
|
<Route
|
||||||
|
exact
|
||||||
|
path={'/preferences/branches'}
|
||||||
|
component={BranchesActions}
|
||||||
|
/>
|
||||||
</Switch>
|
</Switch>
|
||||||
</Route>
|
</Route>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -5,11 +5,11 @@ import DashboardPageContent from 'components/Dashboard/DashboardPageContent';
|
|||||||
|
|
||||||
import RealizedGainOrLossHeader from './RealizedGainOrLossHeader';
|
import RealizedGainOrLossHeader from './RealizedGainOrLossHeader';
|
||||||
import RealizedGainOrLossActionsBar from './RealizedGainOrLossActionsBar';
|
import RealizedGainOrLossActionsBar from './RealizedGainOrLossActionsBar';
|
||||||
|
import { RealizedGainOrLossLoadingBar } from './components';
|
||||||
|
import { RealizedGainOrLossProvider } from './RealizedGainOrLossProvider';
|
||||||
|
|
||||||
import withCurrentOrganization from '../../Organization/withCurrentOrganization';
|
import withCurrentOrganization from '../../Organization/withCurrentOrganization';
|
||||||
import withRealizedGainOrLossActions from './withRealizedGainOrLossActions';
|
import withRealizedGainOrLossActions from './withRealizedGainOrLossActions';
|
||||||
import { RealizedGainOrLossProvider } from './RealizedGainOrLossProvider';
|
|
||||||
import { RealizedGainOrLossLoadingBar } from './components';
|
|
||||||
|
|
||||||
import { compose } from 'utils';
|
import { compose } from 'utils';
|
||||||
|
|
||||||
|
|||||||
@@ -1768,6 +1768,8 @@
|
|||||||
"customer.alert.inactivated_message": "The customer has been inactivated successfully.",
|
"customer.alert.inactivated_message": "The customer has been inactivated successfully.",
|
||||||
"customer.alert.are_you_sure_want_to_inactivate_this_customer": "Are you sure want to inactivate this customer? You will to able to activate it later.",
|
"customer.alert.are_you_sure_want_to_inactivate_this_customer": "Are you sure want to inactivate this customer? You will to able to activate it later.",
|
||||||
|
|
||||||
|
"credit_note_preview.dialog.title": "Credit Note PDF Preview",
|
||||||
|
"payment_receive_preview.dialog.title": "Payment Receive PDF Preview",
|
||||||
"warehouses.label": "Warehouses",
|
"warehouses.label": "Warehouses",
|
||||||
"warehouses.label.new_warehouse": "New Warehouse",
|
"warehouses.label.new_warehouse": "New Warehouse",
|
||||||
"warehouse.dialog.label.new_warehouse": "New Warehouse",
|
"warehouse.dialog.label.new_warehouse": "New Warehouse",
|
||||||
@@ -1823,8 +1825,6 @@
|
|||||||
"warehouse_transfer.once_delete_this_warehouse_transfer": "Once you delete this warehouse transfer, you won't be able to restore it later. Are you sure you want to delete this warehouse transfer?",
|
"warehouse_transfer.once_delete_this_warehouse_transfer": "Once you delete this warehouse transfer, you won't be able to restore it later. Are you sure you want to delete this warehouse transfer?",
|
||||||
"warehouse_transfer.error.could_not_transfer_item_from_source_to_destination": "Could not transfer item from source to destination on the same warehouse",
|
"warehouse_transfer.error.could_not_transfer_item_from_source_to_destination": "Could not transfer item from source to destination on the same warehouse",
|
||||||
|
|
||||||
"credit_note_preview.dialog.title": "Credit Note PDF Preview",
|
|
||||||
"payment_receive_preview.dialog.title": "Payment Receive PDF Preview",
|
|
||||||
"branches.label": "Branches",
|
"branches.label": "Branches",
|
||||||
"branches.label.new_branch": "New Branch",
|
"branches.label.new_branch": "New Branch",
|
||||||
"branches.action.edit_branch": "Edit Branch",
|
"branches.action.edit_branch": "Edit Branch",
|
||||||
@@ -1852,9 +1852,10 @@
|
|||||||
"unrealized_gain_or_loss.label": "Unrealized Gain or Loss",
|
"unrealized_gain_or_loss.label": "Unrealized Gain or Loss",
|
||||||
"branch_activate.dialog_success_message": "Multi-branches feature has been activated successfully.",
|
"branch_activate.dialog_success_message": "Multi-branches feature has been activated successfully.",
|
||||||
"branch.alert.mark_primary_message": "The branch has been marked as primary.",
|
"branch.alert.mark_primary_message": "The branch has been marked as primary.",
|
||||||
|
|
||||||
"branch.alert.are_you_sure_you_want_to_make": "Are you sure you want to make a primary branch?",
|
"branch.alert.are_you_sure_you_want_to_make": "Are you sure you want to make a primary branch?",
|
||||||
"warehouse_activate.dialog_success_message": "Multi-branches feature has been activated successfully.",
|
"warehouse_activate.dialog_success_message": "Multi-branches feature has been activated successfully.",
|
||||||
"warehouse.alert.mark_primary_message": "The given warehouse has been marked as primary.",
|
"warehouse.alert.mark_primary_message": "The given warehouse has been marked as primary.",
|
||||||
"warehouse.alert.are_you_sure_you_want_to_make": "Are you sure you want to make a primary warehouse?",
|
"warehouse.alert.are_you_sure_you_want_to_make": "Are you sure you want to make a primary warehouse?",
|
||||||
"make_primary": "Make Primary"
|
"make_primary": "Make as Primary"
|
||||||
}
|
}
|
||||||
@@ -40,6 +40,7 @@ export default [
|
|||||||
{
|
{
|
||||||
path: `${BASE_URL}/warehouses`,
|
path: `${BASE_URL}/warehouses`,
|
||||||
component: Warehouses,
|
component: Warehouses,
|
||||||
|
exact: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: `${BASE_URL}/branches`,
|
path: `${BASE_URL}/branches`,
|
||||||
|
|||||||
Reference in New Issue
Block a user