mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
40 lines
945 B
TypeScript
40 lines
945 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import styled from 'styled-components';
|
|
import {
|
|
T,
|
|
TotalLines,
|
|
TotalLine,
|
|
TotalLineBorderStyle,
|
|
TotalLineTextStyle,
|
|
} from '@/components';
|
|
import {
|
|
useManualJournalSubtotalFormatted,
|
|
useManualJournalTotalFormatted,
|
|
} from './utils';
|
|
|
|
export function MakeJournalFormFooterRight() {
|
|
const formattedSubtotal = useManualJournalSubtotalFormatted();
|
|
const formattedTotal = useManualJournalTotalFormatted();
|
|
|
|
return (
|
|
<MakeJouranlTotalLines>
|
|
<TotalLine
|
|
title={<T id={'make_journal.label.subtotal'} />}
|
|
value={formattedSubtotal}
|
|
borderStyle={TotalLineBorderStyle.None}
|
|
/>
|
|
<TotalLine
|
|
title={<T id={'make_journal.label.total'} />}
|
|
value={formattedTotal}
|
|
textStyle={TotalLineTextStyle.Bold}
|
|
/>
|
|
</MakeJouranlTotalLines>
|
|
);
|
|
}
|
|
|
|
const MakeJouranlTotalLines = styled(TotalLines)`
|
|
width: 100%;
|
|
color: #555555;
|
|
`;
|