-
Notifications
You must be signed in to change notification settings - Fork 78
21361 - Add BCROS acct number to all correspondence, emails, and notifications #3593
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
adaa9fc
58c6431
2026b21
1f03d03
4d9c8bd
c36471a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| # Copyright © 2019 Province of British Columbia | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
| """Utility functions for email processors.""" | ||
|
|
||
| from auth_api.models import Org as OrgModel | ||
|
|
||
|
|
||
| def get_account_info(org_id: int | None) -> tuple[str | None, str | None]: | ||
| """Get account name and account name with branch for an org.""" | ||
| if not org_id: | ||
| return None, None | ||
| org = OrgModel.find_by_id(org_id) | ||
| account_name = org.name | ||
| account_name_with_branch = org.name | ||
| if org.branch_name: | ||
| account_name_with_branch = f"{org.name} - {org.branch_name}" | ||
| return account_name, account_name_with_branch |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,3 @@ | ||
| Account: {{ account_name_with_branch }} (Account Number: {{ account_number }}) | ||
|
|
||
| We have received payment in the amount of ${{ paid_amount }}. Payment received over the outstanding balance has been applied as a credit to your account and will be applied to future purchases. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,3 @@ | ||
| Account: {{ account_name_with_branch }} (Account Number: {{ account_number }}) | ||
|
|
||
| We have received payment in the amount of ${{ paid_amount }} and your products are now available. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,3 @@ | ||
| Account: {{ account_name_with_branch }} (Account Number: {{ account_number }}) | ||
|
|
||
| We have received payment in the amount of ${{ paid_amount }}. Please pay the outstanding balance to access your products. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,5 @@ | ||
| Account: {{ account_name_with_branch }} (Account Number: {{ account_number }}) | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
|
|
||
| Please find attached your **Confirmation Letter of Pre-Authorized Debit (PAD) Sign-up** and a copy of your **Business Pre-Authorized Debit Terms and Conditions Agreement** with BC Registries and Online Services. | ||
|
|
||
| If you have questions, please contact the BC Online Partnership Office. Contact details are included in your confirmation letter. | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,5 @@ | ||
| Account: {{ account_name_with_branch }} (Account Number: {{ account_number }}) | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
|
|
||
| When you setup pre-authorized debit, the bank information you entered was invalid. | ||
|
|
||
| To unlock your account, please review and update your bank information. | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,5 @@ | ||
| Account: {{ account_name_with_branch }} (Account Number: {{ account_number }}) | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
|
|
||
| # Your Team Member Request is On hold. | ||
|
|
||
| Thank you for your interest with BC Registries and Online Services. Our office was attempting to approve your application sent on {{ applicationDate }} but, had to place your account creation request on hold for the following reason(s): | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,5 @@ | ||
| Account: {{ account_name_with_branch }} (Account Number: {{ account_number }}) | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
|
|
||
| # Your Account Creation Request is On hold. | ||
|
|
||
| Thank you for your interest with BC Registries and Online Services. Our office was attempting to approve your application sent on {{ applicationDate }} but, had to place your account creation request on hold for the following reason(s): | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,5 @@ | ||
| Account: {{ account_name_with_branch }} (Account Number: {{ account_number }}) | ||
seeker25 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| # **{{ user_first_name }} {{ user_last_name }}** has submitted a request that requires your approval. You will need to log in using your IDIR to approve this request. | ||
|
|
||
| [Review Account]({{ context_url }}) | ||




There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.