mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
WIP Financial statements.
This commit is contained in:
@@ -11,12 +11,13 @@ export default function FinancialSheet({
|
||||
accountingBasis,
|
||||
name,
|
||||
loading,
|
||||
className,
|
||||
}) {
|
||||
const formattedDate = moment(date).format('DD MMMM YYYY')
|
||||
const nameModifer = name ? `financial-sheet--${name}` : '';
|
||||
|
||||
return (
|
||||
<div className={classnames('financial-sheet', nameModifer)}>
|
||||
<div className={classnames('financial-sheet', nameModifer, className)}>
|
||||
<LoadingIndicator loading={loading}>
|
||||
<h1 class="financial-sheet__title">{ companyTitle }</h1>
|
||||
<h6 class="financial-sheet__sheet-type">{ sheetType }</h6>
|
||||
@@ -29,6 +30,10 @@ export default function FinancialSheet({
|
||||
<div class="financial-sheet__accounting-basis">
|
||||
{ accountingBasis }
|
||||
</div>
|
||||
|
||||
<div class="financial-sheet__basis">
|
||||
Accounting Basis: Accural
|
||||
</div>
|
||||
</LoadingIndicator>
|
||||
</div>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user