diff --git a/src/containers/Accounting/MakeJournal/MakeJournalEntriesPage.js b/src/containers/Accounting/MakeJournal/MakeJournalEntriesPage.js index a00a2cec4..9d83207ac 100644 --- a/src/containers/Accounting/MakeJournal/MakeJournalEntriesPage.js +++ b/src/containers/Accounting/MakeJournal/MakeJournalEntriesPage.js @@ -6,22 +6,15 @@ import 'style/pages/ManualJournal/MakeJournal.scss'; import MakeJournalEntriesForm from './MakeJournalEntriesForm'; import { MakeJournalProvider } from './MakeJournalProvider'; -import withCurrentOrganization from 'containers/Organization/withCurrentOrganization'; -import { compose } from 'utils'; - /** * Make journal entries page. */ -function MakeJournalEntriesPage({ - // #withCurrentOrganization - organization: { base_currency }, -}) { +export default function MakeJournalEntriesPage() { const { id: journalId } = useParams(); return ( - + ); } -export default compose(withCurrentOrganization())(MakeJournalEntriesPage); diff --git a/src/containers/Accounting/MakeJournal/MakeJournalFormFooterRight.js b/src/containers/Accounting/MakeJournal/MakeJournalFormFooterRight.js index fc18018f4..69e4e57bc 100644 --- a/src/containers/Accounting/MakeJournal/MakeJournalFormFooterRight.js +++ b/src/containers/Accounting/MakeJournal/MakeJournalFormFooterRight.js @@ -15,14 +15,13 @@ export function MakeJournalFormFooterRight() { return ( } + title={} value={formattedSubtotal} borderStyle={TotalLineBorderStyle.None} /> } + title={} value={formattedTotal} - // borderStyle={TotalLineBorderStyle.SingleDark} textStyle={TotalLineTextStyle.Bold} /> diff --git a/src/containers/Accounting/MakeJournal/MakeJournalFormTopBar.js b/src/containers/Accounting/MakeJournal/MakeJournalFormTopBar.js index 52758a952..9f96f4912 100644 --- a/src/containers/Accounting/MakeJournal/MakeJournalFormTopBar.js +++ b/src/containers/Accounting/MakeJournal/MakeJournalFormTopBar.js @@ -59,7 +59,7 @@ function MakeJournalFormSelectBranch() { function MakeJournalBranchSelectButton({ label }) { return (