mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
240 lines
6.2 KiB
TypeScript
240 lines
6.2 KiB
TypeScript
export const SendSaleInvoiceQueue = 'SendSaleInvoiceQueue';
|
|
export const SendSaleInvoiceMailJob = 'SendSaleInvoiceMailJob';
|
|
|
|
export const DEFAULT_INVOICE_MAIL_SUBJECT =
|
|
'Invoice {Invoice Number} from {Company Name} for {Customer Name}';
|
|
export const DEFAULT_INVOICE_MAIL_CONTENT = `Hi {Customer Name},
|
|
|
|
Here's invoice # {Invoice Number} for {Invoice Amount}
|
|
|
|
The amount outstanding of {Invoice Due Amount} is due on {Invoice Due Date}.
|
|
|
|
From your online payment page you can print a PDF or view your outstanding bills.
|
|
|
|
If you have any questions, please let us know.
|
|
|
|
Thanks,
|
|
{Company Name}
|
|
`;
|
|
|
|
export const DEFAULT_INVOICE_REMINDER_MAIL_SUBJECT =
|
|
'Invoice {InvoiceNumber} reminder from {CompanyName}';
|
|
export const DEFAULT_INVOICE_REMINDER_MAIL_CONTENT = `
|
|
<p>Dear {CustomerName}</p>
|
|
<p>You might have missed the payment date and the invoice is now overdue by {OverdueDays} days.</p>
|
|
<p>Invoice <strong>#{InvoiceNumber}</strong><br />
|
|
Due Date : <strong>{InvoiceDueDate}</strong><br />
|
|
Amount : <strong>{InvoiceAmount}</strong></p>
|
|
|
|
<p>
|
|
<i>Regards</i><br />
|
|
<i>{CompanyName}</i>
|
|
</p>
|
|
`;
|
|
|
|
export const PUBLIC_PAYMENT_LINK = "{BASE_URL}/payment/{PAYMENT_LINK_ID}";
|
|
|
|
export const ERRORS = {
|
|
INVOICE_NUMBER_NOT_UNIQUE: 'INVOICE_NUMBER_NOT_UNIQUE',
|
|
SALE_INVOICE_NOT_FOUND: 'SALE_INVOICE_NOT_FOUND',
|
|
SALE_INVOICE_ALREADY_DELIVERED: 'SALE_INVOICE_ALREADY_DELIVERED',
|
|
ENTRIES_ITEMS_IDS_NOT_EXISTS: 'ENTRIES_ITEMS_IDS_NOT_EXISTS',
|
|
NOT_SELLABLE_ITEMS: 'NOT_SELLABLE_ITEMS',
|
|
SALE_INVOICE_NO_NOT_UNIQUE: 'SALE_INVOICE_NO_NOT_UNIQUE',
|
|
INVOICE_AMOUNT_SMALLER_THAN_PAYMENT_AMOUNT:
|
|
'INVOICE_AMOUNT_SMALLER_THAN_PAYMENT_AMOUNT',
|
|
INVOICE_HAS_ASSOCIATED_PAYMENT_ENTRIES:
|
|
'INVOICE_HAS_ASSOCIATED_PAYMENT_ENTRIES',
|
|
SALE_INVOICE_NO_IS_REQUIRED: 'SALE_INVOICE_NO_IS_REQUIRED',
|
|
CUSTOMER_HAS_SALES_INVOICES: 'CUSTOMER_HAS_SALES_INVOICES',
|
|
SALE_INVOICE_HAS_APPLIED_TO_CREDIT_NOTES:
|
|
'SALE_INVOICE_HAS_APPLIED_TO_CREDIT_NOTES',
|
|
PAYMENT_ACCOUNT_CURRENCY_INVALID: 'PAYMENT_ACCOUNT_CURRENCY_INVALID',
|
|
SALE_INVOICE_ALREADY_WRITTEN_OFF: 'SALE_INVOICE_ALREADY_WRITTEN_OFF',
|
|
SALE_INVOICE_NOT_WRITTEN_OFF: 'SALE_INVOICE_NOT_WRITTEN_OFF',
|
|
NO_INVOICE_CUSTOMER_EMAIL_ADDR: 'NO_INVOICE_CUSTOMER_EMAIL_ADDR',
|
|
};
|
|
|
|
export const DEFAULT_VIEW_COLUMNS = [];
|
|
export const SaleInvoiceDefaultViews = [
|
|
{
|
|
name: 'Draft',
|
|
slug: 'draft',
|
|
rolesLogicExpression: '1',
|
|
roles: [
|
|
{ index: 1, fieldKey: 'status', comparator: 'equals', value: 'draft' },
|
|
],
|
|
columns: DEFAULT_VIEW_COLUMNS,
|
|
},
|
|
{
|
|
name: 'Delivered',
|
|
slug: 'delivered',
|
|
rolesLogicExpression: '1',
|
|
roles: [
|
|
{
|
|
index: 1,
|
|
fieldKey: 'status',
|
|
comparator: 'equals',
|
|
value: 'delivered',
|
|
},
|
|
],
|
|
columns: DEFAULT_VIEW_COLUMNS,
|
|
},
|
|
{
|
|
name: 'Unpaid',
|
|
slug: 'unpaid',
|
|
rolesLogicExpression: '1',
|
|
roles: [
|
|
{ index: 1, fieldKey: 'status', comparator: 'equals', value: 'unpaid' },
|
|
],
|
|
columns: DEFAULT_VIEW_COLUMNS,
|
|
},
|
|
{
|
|
name: 'Partially paid',
|
|
slug: 'partially-paid',
|
|
rolesLogicExpression: '1',
|
|
roles: [
|
|
{
|
|
index: 1,
|
|
fieldKey: 'status',
|
|
comparator: 'equals',
|
|
value: 'partially-paid',
|
|
},
|
|
],
|
|
columns: DEFAULT_VIEW_COLUMNS,
|
|
},
|
|
{
|
|
name: 'Paid',
|
|
slug: 'paid',
|
|
rolesLogicExpression: '1',
|
|
roles: [
|
|
{ index: 1, fieldKey: 'status', comparator: 'equals', value: 'paid' },
|
|
],
|
|
columns: DEFAULT_VIEW_COLUMNS,
|
|
},
|
|
];
|
|
|
|
export const SaleInvoicesSampleData = [
|
|
{
|
|
'Invoice No.': 'B-101',
|
|
'Reference No.': 'REF0',
|
|
'Invoice Date': '2024-01-01',
|
|
'Due Date': '2024-03-01',
|
|
Customer: 'Harley Veum',
|
|
'Exchange Rate': 1,
|
|
'Invoice Message': 'Aspernatur doloremque amet quia aut.',
|
|
'Terms & Conditions': 'Quia illum aut dolores.',
|
|
Delivered: 'T',
|
|
Item: 'VonRueden, Ruecker and Hettinger',
|
|
Quantity: 100,
|
|
Rate: 100,
|
|
Description: 'Description',
|
|
},
|
|
{
|
|
'Invoice No.': 'B-102',
|
|
'Reference No.': 'REF0',
|
|
'Invoice Date': '2024-01-01',
|
|
'Due Date': '2024-03-01',
|
|
Customer: 'Harley Veum',
|
|
'Exchange Rate': 1,
|
|
'Invoice Message': 'Est omnis enim vel.',
|
|
'Terms & Conditions': 'Iusto et sint nobis sit.',
|
|
Delivered: 'T',
|
|
Item: 'Thompson - Reichert',
|
|
Quantity: 200,
|
|
Rate: 50,
|
|
Description: 'Description',
|
|
},
|
|
{
|
|
'Invoice No.': 'B-103',
|
|
'Reference No.': 'REF0',
|
|
'Invoice Date': '2024-01-01',
|
|
'Due Date': '2024-03-01',
|
|
Customer: 'Harley Veum',
|
|
'Exchange Rate': 1,
|
|
'Invoice Message':
|
|
'Repudiandae voluptatibus repellat minima voluptatem rerum veniam.',
|
|
'Terms & Conditions': 'Id quod inventore ex rerum velit sed.',
|
|
Delivered: 'T',
|
|
Item: 'VonRueden, Ruecker and Hettinger',
|
|
Quantity: 100,
|
|
Rate: 100,
|
|
Description: 'Description',
|
|
},
|
|
];
|
|
|
|
export const defaultInvoicePdfTemplateAttributes = {
|
|
primaryColor: 'red',
|
|
secondaryColor: 'red',
|
|
|
|
companyName: 'Bigcapital Technology, Inc.',
|
|
|
|
showCompanyLogo: true,
|
|
companyLogoKey: '',
|
|
companyLogoUri: '',
|
|
|
|
dueDateLabel: 'Date due',
|
|
showDueDate: true,
|
|
|
|
dateIssueLabel: 'Date of issue',
|
|
showDateIssue: true,
|
|
|
|
// # Invoice number,
|
|
invoiceNumberLabel: 'Invoice number',
|
|
showInvoiceNumber: true,
|
|
|
|
// # Customer address
|
|
showCustomerAddress: true,
|
|
customerAddress: '',
|
|
|
|
// # Company address
|
|
showCompanyAddress: true,
|
|
companyAddress: '',
|
|
billedToLabel: 'Billed To',
|
|
|
|
// Entries
|
|
lineItemLabel: 'Item',
|
|
lineQuantityLabel: 'Qty',
|
|
lineRateLabel: 'Rate',
|
|
lineTotalLabel: 'Total',
|
|
|
|
totalLabel: 'Total',
|
|
subtotalLabel: 'Subtotal',
|
|
discountLabel: 'Discount',
|
|
paymentMadeLabel: 'Payment Made',
|
|
balanceDueLabel: 'Balance Due',
|
|
|
|
// Totals
|
|
showTotal: true,
|
|
showSubtotal: true,
|
|
showDiscount: true,
|
|
showTaxes: true,
|
|
showPaymentMade: true,
|
|
showDueAmount: true,
|
|
showBalanceDue: true,
|
|
|
|
discount: '0.00',
|
|
|
|
// Footer paragraphs.
|
|
termsConditionsLabel: 'Terms & Conditions',
|
|
showTermsConditions: true,
|
|
|
|
lines: [
|
|
{
|
|
item: 'Simply dummy text',
|
|
description: 'Simply dummy text of the printing and typesetting',
|
|
rate: '1',
|
|
quantity: '1000',
|
|
total: '$1000.00',
|
|
},
|
|
],
|
|
taxes: [
|
|
{ label: 'Sample Tax1 (4.70%)', amount: '11.75' },
|
|
{ label: 'Sample Tax2 (7.00%)', amount: '21.74' },
|
|
],
|
|
|
|
// # Statement
|
|
statementLabel: 'Statement',
|
|
showStatement: true,
|
|
};
|