Added field rejectedReasonSubject for application rejection

This commit is contained in:
rajesh
2025-10-17 15:04:55 +05:30
parent e51bee3fa5
commit b4c6524e7f
7 changed files with 29 additions and 14 deletions

View File

@@ -3080,4 +3080,9 @@
<changeSet id="16-10-2025_RK_13352" author="Rajesh Khore">
<sqlFile dbms="postgresql" path="db/dump/update_system_email_template_of_application_rejected_16_10_2025.sql"/>
</changeSet>
<changeSet id="17-10-2025_RK_140552" author="Rajesh Khore">
<sqlFile dbms="postgresql" path="db/dump/update_system_email_template_of_application_rejected_17_10_2025.sql"/>
</changeSet>
</databaseChangeLog>

View File

@@ -0,0 +1,3 @@
UPDATE gepafin_schema.system_email_template
SET subject = 'BANDO {{call_name}} {{email_type}} {{company_name}}'
WHERE "type" = 'INADMISSIBILITY_NOTIFICATION' and "email_scenario" = 'APPLICATION_REJECTED' and "system" = true;