mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
70 lines
2.0 KiB
TypeScript
70 lines
2.0 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import styled from 'styled-components';
|
|
|
|
import {
|
|
T,
|
|
TotalLines,
|
|
TotalLine,
|
|
TotalLineBorderStyle,
|
|
TotalLineTextStyle,
|
|
} from '@/components';
|
|
import { useReceiptDetailDrawerContext } from './ReceiptDetailDrawerProvider';
|
|
|
|
/**
|
|
* Receipts read-only details table footer.
|
|
*/
|
|
export default function ReceiptDetailTableFooter() {
|
|
const { receipt } = useReceiptDetailDrawerContext();
|
|
|
|
return (
|
|
<ReceiptDetailsFooterRoot>
|
|
<ReceiptTotalLines labelColWidth={'180px'} amountColWidth={'180px'}>
|
|
<TotalLine
|
|
title={<T id={'receipt.details.subtotal'} />}
|
|
value={receipt.subtotal_formatted}
|
|
/>
|
|
{receipt.discount_amount > 0 && (
|
|
<TotalLine
|
|
title={
|
|
receipt.discount_percentage_formatted
|
|
? `Discount [${invoice.discount_percentage_formatted}]`
|
|
: 'Discount'
|
|
}
|
|
value={receipt.discount_amount_formatted}
|
|
textStyle={TotalLineTextStyle.Regular}
|
|
/>
|
|
)}
|
|
{receipt.adjustment_formatted && (
|
|
<TotalLine
|
|
title={'Adjustment'}
|
|
value={receipt.adjustment_formatted}
|
|
textStyle={TotalLineTextStyle.Regular}
|
|
/>
|
|
)}
|
|
<TotalLine
|
|
title={<T id={'receipt.details.total'} />}
|
|
value={receipt.total_formatted}
|
|
borderStyle={TotalLineBorderStyle.DoubleDark}
|
|
textStyle={TotalLineTextStyle.Bold}
|
|
/>
|
|
<TotalLine
|
|
title={<T id={'receipt.details.payment_amount'} />}
|
|
value={receipt.paid_formatted}
|
|
borderStyle={TotalLineBorderStyle.SingleDark}
|
|
/>
|
|
<TotalLine
|
|
title={<T id={'receipt.details.due_amount'} />}
|
|
value={'0'}
|
|
/>
|
|
</ReceiptTotalLines>
|
|
</ReceiptDetailsFooterRoot>
|
|
);
|
|
}
|
|
|
|
export const ReceiptDetailsFooterRoot = styled.div``;
|
|
|
|
export const ReceiptTotalLines = styled(TotalLines)`
|
|
margin-left: auto;
|
|
`;
|