-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tracking pull request to merge release-2.5.0 to master (#2187)
* update to 2.5.0 * update PR 2187 * BC attorney address add and unit testing * js lint standard format * migration updated * TFRS-2126- Added instructional text * TFRS-2125- Added instructional text * Adding submissionDate tab and filter * TFRS-2158-Added org name to the email notification * TFRS-2182- Removed keycloak references * Removed commented lines * updating Lastupdate On filter * TFRS-2145-BC Attorney Address on Organization page * compliance report loading fix * fixing Insufficient available credit balance. Please adjust Line 26b error for compute_total endpoint * TFRS-2131- Added BC Attorney Address * simplified long variable names in the org address * Removed console.log and address_line_3 * feat: tfrs-2195 - changes to organization add/edit form * docker hub sunset (#2211) * updating filter for credit transaction * TFRS-2130- Prevent Supplier from updating address * Chore: Remove Remaining Keycloak References (#2214) * fix: removed remaining keycloak references and updated settings vars * fix: fixed tfrs logout ref * cleanup keycloak env vars * fix: tfrs-2195 - fixes/changes to organization add/edit form * add colon * fix: tfrs2145/2130 - fixes * more fixes * fix: penalty date fix * fixing pending credit transaction number display * fix: test updates, linting, snapshots * chore: org details cleanup * fix: tfrs-2158 - notification emails should include org name * fix: tfrs2131 - Display BC Attorney Address on Compliance and Exclusion Reports * fix: backend unit test updates and fixes * fix: filtering order fixes --------- Co-authored-by: jig-patel <[email protected]> Co-authored-by: Alex Zorkin <[email protected]> Co-authored-by: vibhishan <[email protected]> Co-authored-by: vibhiquartech <[email protected]> Co-authored-by: tim738745 <[email protected]> Co-authored-by: AlexZorkin <[email protected]>
- Loading branch information
1 parent
25ea57f
commit a73fdb1
Showing
63 changed files
with
2,081 additions
and
1,185 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Generated by Django 3.2.18 on 2023-03-21 02:04 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('api', '0203_auto_20230312_0823'), | ||
] | ||
|
||
operations = [ | ||
migrations.RunSQL( | ||
"UPDATE organization_address SET address_line_2 = address_line_2 || ' ' || address_line_3;" | ||
), | ||
migrations.RunSQL( | ||
"UPDATE organization_address SET state = state || ' ' || county" | ||
), | ||
] |
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,56 @@ | ||
# Generated by Django 3.2.18 on 2023-03-21 02:06 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('api', '0204_auto_20230321_0204'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='organizationaddress', | ||
name='address_line_3', | ||
), | ||
migrations.RemoveField( | ||
model_name='organizationaddress', | ||
name='county', | ||
), | ||
migrations.AddField( | ||
model_name='organizationaddress', | ||
name='attorney_address_other', | ||
field=models.CharField(blank=True, max_length=100, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='organizationaddress', | ||
name='attorney_city', | ||
field=models.CharField(blank=True, max_length=100, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='organizationaddress', | ||
name='attorney_country', | ||
field=models.CharField(blank=True, max_length=100, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='organizationaddress', | ||
name='attorney_postal_code', | ||
field=models.CharField(blank=True, max_length=10, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='organizationaddress', | ||
name='attorney_province', | ||
field=models.CharField(blank=True, max_length=50, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='organizationaddress', | ||
name='attorney_representativename', | ||
field=models.CharField(blank=True, max_length=500, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='organizationaddress', | ||
name='attorney_street_address', | ||
field=models.CharField(blank=True, max_length=500, null=True), | ||
), | ||
] |
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
Oops, something went wrong.