diff --git a/guest/guest_view_invoice.php b/guest/guest_view_invoice.php index ca1c4765..8352d4f8 100644 --- a/guest/guest_view_invoice.php +++ b/guest/guest_view_invoice.php @@ -377,6 +377,13 @@ if ($balance > 0) { style: 'invoiceNumber', width: '*' }, + + { + text: 'PAID', + style: 'invoicePaid', + width: '*' + }, + ], ], }, @@ -666,6 +673,14 @@ if ($balance > 0) { fontSize: 14, alignment: 'right' }, + // Invoice Paid + invoicePaid: { + fontSize: 13, + bold: true, + margin: [0,5,0,0], + alignment: 'right', + color: 'green' + }, // Billing Headers invoiceBillingTitle: { fontSize: 14, diff --git a/invoice.php b/invoice.php index 273e9e42..695c7fed 100644 --- a/invoice.php +++ b/invoice.php @@ -742,6 +742,13 @@ require_once "includes/footer.php"; style: 'invoiceNumber', width: '*' }, + + { + text: 'PAID', + style: 'invoicePaid', + width: '*' + }, + ], ], }, @@ -1031,6 +1038,14 @@ require_once "includes/footer.php"; fontSize: 14, alignment: 'right' }, + // Invoice Paid + invoicePaid: { + fontSize: 13, + bold: true, + margin: [0,5,0,0], + alignment: 'right', + color: 'green' + }, // Billing Headers invoiceBillingTitle: { fontSize: 14,