-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into 36049-the-currency-of-the-fam-financial-f…
…indings
- Loading branch information
Showing
15 changed files
with
435 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
src/etools/applications/last_mile/migrations/0003_alter_pointofinterest_p_code.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 3.2.19 on 2024-05-17 08:33 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('last_mile', '0002_auto_20240426_1157'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='pointofinterest', | ||
name='p_code', | ||
field=models.CharField(max_length=32, unique=True, verbose_name='P Code'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
src/etools/applications/partners/notifications/expiring_partner.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name = 'partners/expiring_partner' | ||
defaults = { | ||
'description': 'Partner Assessment due to expire', | ||
'subject': 'eTools Partnership {{ partner_name }} Assessment is expiring in {{ days }} days', | ||
'content': """ | ||
Dear Colleague, | ||
The assessment for the "HACT" or "Core Value" of Partner {{ partner_name }} | ||
with Vendor number {{ partner_number }} in {{ country }} is due to expire in {{ days }} days. | ||
Kindly complete the new assessment and ensure the vendor record is updated with the | ||
latest risk information promptly to avoid any potential transaction blocks in the system. | ||
Please note that this is an automated message and any response to this email cannot be replied to. | ||
""" | ||
} |
Oops, something went wrong.