From 5a08a718277a87bde8d41cf6d49504a365a834d6 Mon Sep 17 00:00:00 2001 From: Rodrigo Barraza Date: Mon, 30 Oct 2023 12:22:39 -0700 Subject: [PATCH] 17303- New EFT PDF Statement Template (#1296) * New EFT PDF Statement template * Remove frequency check on statement dates --- .../report-templates/eft_statement.html | 600 ++++++++++++++++++ 1 file changed, 600 insertions(+) create mode 100644 report-api/report-templates/eft_statement.html diff --git a/report-api/report-templates/eft_statement.html b/report-api/report-templates/eft_statement.html new file mode 100644 index 000000000..d2b27c192 --- /dev/null +++ b/report-api/report-templates/eft_statement.html @@ -0,0 +1,600 @@ + + + + + + + + + + + + + + + + + + + + +
+
+ BC registries Logo +
+
+
+
ACCOUNT STATEMENT
+ {% if statement.from_date or statement.to_date %} +
+ {{statement.from_date}} - {{statement.to_date}} +
+ {% endif %} +
+
+
{{ businessName|upper }}
+
+ + + + + + +
+
+
Account Number: {{account.paymentPreference.bcOnlineAccountId}}
+ {% if totals.overdueStatementTotal %} +
Statement Balanace: ${{ "{:,.2f}".format(totals.overdueStatementTotal)}} (Overdue)
+ {% endif %} +
Total Amount Owing: ${{ "{:,.2f}".format(totals.totalAmountOwing) if totals.totalAmountOwing else '0.00' }}
+
Payment Due Date: {{statement.to_date}} at 5:15 PM Pacific Time
+
Statement Number: {{statement.id}}
+
+
+ +
+ + + + + + + +
+

+ Transactions +

+
+
+ Number of Transactions: {{invoices|length}} +
+
+ {% if invoices %} + + + + + + + + + + {% for item in invoices %} + + + + + + + + + {% endfor %} +
Product PurchasedDateFeeGSTService FeeTotal
+ {% for lineItemProduct in item.line_items %} +
{{'(Cancelled) ' if (item.statusCode == 'CANCELLED') else ''}}{{lineItemProduct.description}}
+ {% endfor %} + {% if item.details and item.details|length > 0 %} +
+ {% for detail in item.details %} +
{{detail.label}}: {{detail.value}}
+ {% endfor %} +
+ {% endif %} +
{{item.created_on}}${{"{:,.2f}".format(item.total - item.service_fees - item.gst) if (item.service_fees and item.total) else '0.00'}}${{"{:,.2f}".format(item.gst) if item.gst else '0.00'}}${{"{:,.2f}".format(item.service_fees) if item.service_fees else '0.00'}}${{"{:,.2f}".format(item.total) if item.total else '0.00'}}
+ {% endif %} + + + + + + + + + + + {% if totals.overdueStatementTotal %} + + + + {% elif totals.statementTotal %} + + + + {% endif %} + {% if previousPayment and previousPayment.amount %} + + + + {% endif %} + {% if totals.cancelledTransactions %} + + + + {% endif %} + + + + +
+ +
+

Payment Instructions

+

EFT Banking Details

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Financial Institution:Royal Bank Of Canada
Bank Address:1025 West Georgia St., Vancouver BC V6E 3N9
Branch / Transit Number:00010
Financial Institution Number:003
Account Number:1104280
Account Holder Name:Province Of British Columbia
Sundry Information (Optional):BC Registries And Online Services
+

Make a Payment

+ + + + + + +
1. Log in to your banking portal.
2. Select the "Transfer" or "Payments" option.
3. Add our banking details mentioned above.
4. Enter the payment amount.
5. Review the details and confirm the payment.
+

If you have any questions or require further assistance, you can reach us at [Customer Support Contact Details].

+
+ + + + + +
+ +