mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
295 lines
7.7 KiB
TypeScript
295 lines
7.7 KiB
TypeScript
import isEmpty from 'lodash/isEmpty';
|
|
import { Box } from '../lib/layout/Box';
|
|
import { Text } from '../lib/text/Text';
|
|
import { Stack } from '../lib/layout/Stack';
|
|
import { Group } from '../lib/layout/Group';
|
|
import {
|
|
DefaultPdfTemplateTerms,
|
|
DefaultPdfTemplateItemDescription,
|
|
DefaultPdfTemplateStatement,
|
|
DefaultPdfTemplateItemName,
|
|
DefaultPdfTemplateAddressBilledTo,
|
|
DefaultPdfTemplateAddressBilledFrom,
|
|
} from './_constants';
|
|
import {
|
|
PaperTemplate,
|
|
PaperTemplateProps,
|
|
PaperTemplateTotalBorder,
|
|
} from './PaperTemplate';
|
|
import { theme } from '../constants';
|
|
|
|
export interface EstimatePaperTemplateProps extends PaperTemplateProps {
|
|
// # Company
|
|
showCompanyLogo?: boolean;
|
|
companyLogoUri?: string;
|
|
|
|
// # Estimate number
|
|
estimateNumebr?: string;
|
|
estimateNumberLabel?: string;
|
|
showEstimateNumber?: boolean;
|
|
|
|
// # Expiration date
|
|
expirationDate?: string;
|
|
showExpirationDate?: boolean;
|
|
expirationDateLabel?: string;
|
|
|
|
// # Estimate date
|
|
estimateDateLabel?: string;
|
|
showEstimateDate?: boolean;
|
|
estimateDate?: string;
|
|
|
|
// # Customer name
|
|
companyName?: string;
|
|
|
|
// Address
|
|
showCustomerAddress?: boolean;
|
|
customerAddress?: string;
|
|
|
|
showCompanyAddress?: boolean;
|
|
companyAddress?: string;
|
|
billedToLabel?: string;
|
|
|
|
// Total
|
|
total?: string;
|
|
showTotal?: boolean;
|
|
totalLabel?: string;
|
|
|
|
// # Discount
|
|
discount?: string;
|
|
showDiscount?: boolean;
|
|
discountLabel?: string;
|
|
|
|
// # Adjustment
|
|
adjustment?: string;
|
|
showAdjustment?: boolean;
|
|
adjustmentLabel?: string;
|
|
|
|
// # Subtotal
|
|
subtotal?: string;
|
|
showSubtotal?: boolean;
|
|
subtotalLabel?: string;
|
|
|
|
// # Statements
|
|
showCustomerNote?: boolean;
|
|
customerNote?: string;
|
|
customerNoteLabel?: string;
|
|
|
|
// # Terms & conditions
|
|
showTermsConditions?: boolean;
|
|
termsConditions?: string;
|
|
termsConditionsLabel?: string;
|
|
|
|
lines?: Array<{
|
|
item: string;
|
|
description: string;
|
|
rate: string;
|
|
quantity: string;
|
|
total: string;
|
|
}>;
|
|
|
|
// Lines
|
|
lineItemLabel?: string;
|
|
lineQuantityLabel?: string;
|
|
lineRateLabel?: string;
|
|
lineTotalLabel?: string;
|
|
}
|
|
|
|
export function EstimatePaperTemplate({
|
|
primaryColor,
|
|
secondaryColor,
|
|
|
|
// # Company logo
|
|
showCompanyLogo = true,
|
|
companyLogoUri = '',
|
|
|
|
companyName,
|
|
|
|
// # Company address
|
|
companyAddress = DefaultPdfTemplateAddressBilledFrom,
|
|
showCompanyAddress = true,
|
|
|
|
// # Customer address
|
|
customerAddress = DefaultPdfTemplateAddressBilledTo,
|
|
showCustomerAddress = true,
|
|
billedToLabel = 'Billed To',
|
|
|
|
// # Total
|
|
total = '$1000.00',
|
|
totalLabel = 'Total',
|
|
showTotal = true,
|
|
|
|
// # Discount
|
|
discount = '0.00',
|
|
discountLabel = 'Discount',
|
|
showDiscount = true,
|
|
|
|
// # Subtotal
|
|
subtotal = '1000/00',
|
|
subtotalLabel = 'Subtotal',
|
|
showSubtotal = true,
|
|
|
|
// # Adjustment
|
|
adjustment = '',
|
|
showAdjustment = true,
|
|
adjustmentLabel = 'Adjustment',
|
|
|
|
// # Customer Note
|
|
showCustomerNote = true,
|
|
customerNote = DefaultPdfTemplateStatement,
|
|
customerNoteLabel = 'Customer Note',
|
|
|
|
// # Terms & Conditions
|
|
showTermsConditions = true,
|
|
termsConditions = DefaultPdfTemplateTerms,
|
|
termsConditionsLabel = 'Terms & Conditions',
|
|
|
|
lines = [
|
|
{
|
|
item: DefaultPdfTemplateItemName,
|
|
description: DefaultPdfTemplateItemDescription,
|
|
rate: '1',
|
|
quantity: '1000',
|
|
total: '$1000.00',
|
|
},
|
|
],
|
|
|
|
// Estimate number
|
|
showEstimateNumber = true,
|
|
estimateNumberLabel = 'Estimate Number',
|
|
estimateNumebr = '346D3D40-0001',
|
|
|
|
// Estimate date
|
|
estimateDate = 'September 3, 2024',
|
|
showEstimateDate = true,
|
|
estimateDateLabel = 'Estimate Date',
|
|
|
|
// Expiration date
|
|
expirationDateLabel = 'Expiration Date',
|
|
showExpirationDate = true,
|
|
expirationDate = 'September 3, 2024',
|
|
|
|
// Entries
|
|
lineItemLabel = 'Item',
|
|
lineQuantityLabel = 'Qty',
|
|
lineRateLabel = 'Rate',
|
|
lineTotalLabel = 'Total',
|
|
}: EstimatePaperTemplateProps) {
|
|
|
|
return (
|
|
<PaperTemplate primaryColor={primaryColor} secondaryColor={secondaryColor}>
|
|
<Stack spacing={24}>
|
|
<Group align={'start'} spacing={10}>
|
|
<Stack flex={1}>
|
|
<PaperTemplate.BigTitle title={'Estimate'} />
|
|
|
|
<PaperTemplate.TermsList>
|
|
{showEstimateNumber && (
|
|
<PaperTemplate.TermsItem label={estimateNumberLabel}>
|
|
{estimateNumebr}
|
|
</PaperTemplate.TermsItem>
|
|
)}
|
|
{showEstimateDate && (
|
|
<PaperTemplate.TermsItem label={estimateDateLabel}>
|
|
{estimateDate}
|
|
</PaperTemplate.TermsItem>
|
|
)}
|
|
{showExpirationDate && (
|
|
<PaperTemplate.TermsItem label={expirationDateLabel}>
|
|
{expirationDate}
|
|
</PaperTemplate.TermsItem>
|
|
)}
|
|
</PaperTemplate.TermsList>
|
|
</Stack>
|
|
|
|
{companyLogoUri && showCompanyLogo && (
|
|
<PaperTemplate.Logo logoUri={companyLogoUri} />
|
|
)}
|
|
</Group>
|
|
|
|
<PaperTemplate.AddressesGroup>
|
|
{showCompanyAddress && (
|
|
<PaperTemplate.Address>
|
|
<Box dangerouslySetInnerHTML={{ __html: companyAddress }} />
|
|
</PaperTemplate.Address>
|
|
)}
|
|
{showCustomerAddress && (
|
|
<PaperTemplate.Address>
|
|
<strong>{billedToLabel}</strong>
|
|
<Box dangerouslySetInnerHTML={{ __html: customerAddress }} />
|
|
</PaperTemplate.Address>
|
|
)}
|
|
</PaperTemplate.AddressesGroup>
|
|
|
|
<Stack spacing={0}>
|
|
<PaperTemplate.Table
|
|
columns={[
|
|
{
|
|
label: lineItemLabel,
|
|
accessor: (data) => (
|
|
<Stack spacing={2}>
|
|
<Text>{data.item}</Text>
|
|
<Text
|
|
fontSize={'12px'}
|
|
color={theme.colors['cool-gray-500']}
|
|
>
|
|
{data.description}
|
|
</Text>
|
|
</Stack>
|
|
),
|
|
thStyle: { width: '60%' },
|
|
},
|
|
{ label: lineQuantityLabel, accessor: 'quantity' },
|
|
{ label: lineRateLabel, accessor: 'rate', align: 'right' },
|
|
{ label: lineTotalLabel, accessor: 'total', align: 'right' },
|
|
]}
|
|
data={lines}
|
|
/>
|
|
<PaperTemplate.Totals>
|
|
{showSubtotal && (
|
|
<PaperTemplate.TotalLine
|
|
label={subtotalLabel}
|
|
amount={subtotal}
|
|
border={PaperTemplateTotalBorder.Gray}
|
|
style={{ fontWeight: 500 }}
|
|
/>
|
|
)}
|
|
{showDiscount && !isEmpty(discount) && (
|
|
<PaperTemplate.TotalLine
|
|
label={discountLabel}
|
|
amount={discount}
|
|
/>
|
|
)}
|
|
{showAdjustment && !isEmpty(adjustment) && (
|
|
<PaperTemplate.TotalLine
|
|
label={adjustmentLabel}
|
|
amount={adjustment}
|
|
/>
|
|
)}
|
|
{showTotal && (
|
|
<PaperTemplate.TotalLine
|
|
label={totalLabel}
|
|
amount={total}
|
|
border={PaperTemplateTotalBorder.Dark}
|
|
style={{ fontWeight: 500 }}
|
|
/>
|
|
)}
|
|
</PaperTemplate.Totals>
|
|
</Stack>
|
|
|
|
<Stack spacing={0}>
|
|
{showCustomerNote && !isEmpty(customerNote) && (
|
|
<PaperTemplate.Statement label={customerNoteLabel}>
|
|
{customerNote}
|
|
</PaperTemplate.Statement>
|
|
)}
|
|
{showTermsConditions && !isEmpty(termsConditions) && (
|
|
<PaperTemplate.Statement label={termsConditionsLabel}>
|
|
{termsConditions}
|
|
</PaperTemplate.Statement>
|
|
)}
|
|
</Stack>
|
|
</Stack>
|
|
</PaperTemplate>
|
|
);
|
|
}
|