updated liquibase changes

This commit is contained in:
rajesh
2024-10-30 18:18:24 +05:30
parent 51e4b7a08c
commit f227a64ee7

View File

@@ -1,14 +1,5 @@
INSERT INTO gepafin_schema.system_email_template UPDATE gepafin_schema.system_email_template
( SET html_content = '<html>
id, template_name, "type", html_content, subject, "json", "system",
is_deleted, created_date, updated_date
)
VALUES
(
3,
'Instructional Aid/Request for Documentation Integration Template',
'DOCUMENTATION_INTEGRATION_REQUEST',
'<html>
<body style="font-family: Arial, sans-serif; color: #000; line-height: 1.6;"> <body style="font-family: Arial, sans-serif; color: #000; line-height: 1.6;">
<div style="padding: 20px; border: 1px solid #ddd; border-radius: 8px; max-width: 600px; margin: auto;"> <div style="padding: 20px; border: 1px solid #ddd; border-radius: 8px; max-width: 600px; margin: auto;">
<p><strong>RICHIESTA INTEGRAZIONE DOCUMENTALE</strong></p> <p><strong>RICHIESTA INTEGRAZIONE DOCUMENTALE</strong></p>
@@ -31,26 +22,11 @@ VALUES
<p><strong>{{email_signature}}</strong></p> <p><strong>{{email_signature}}</strong></p>
</div> </div>
</body> </body>
</html>', </html>'
'BANDO {{call_name}} - Domanda di concessione di finanziamento agevolato {{company_name}}', WHERE "type" = 'DOCUMENTATION_INTEGRATION_REQUEST' AND "system" = true;
NULL,
true,
false,
'2024-10-26 20:00:00',
'2024-10-26 20:00:00'
);
INSERT INTO gepafin_schema.system_email_template UPDATE gepafin_schema.system_email_template
( SET html_content = '<html>
id, template_name, "type", html_content, subject, "json", "system",
is_deleted, created_date, updated_date
)
VALUES
(
4,
'Notification of Inadmissibility Due to Failure to Respond Template',
'INADMISSIBILITY_NOTIFICATION_DUE_TO_FAILURE',
'<html>
<body style="font-family: Arial, sans-serif; color: #000; line-height: 1.6;"> <body style="font-family: Arial, sans-serif; color: #000; line-height: 1.6;">
<div style="padding: 20px; border: 1px solid #ddd; border-radius: 8px; max-width: 600px; margin: auto;"> <div style="padding: 20px; border: 1px solid #ddd; border-radius: 8px; max-width: 600px; margin: auto;">
<p><strong>Comunicazione di non ammissibilità per mancata risposta a richiesta integrazione documentale</strong></p> <p><strong>Comunicazione di non ammissibilità per mancata risposta a richiesta integrazione documentale</strong></p>
@@ -64,26 +40,11 @@ VALUES
<p><strong>{{email_signature}}</strong></p> <p><strong>{{email_signature}}</strong></p>
</div> </div>
</body> </body>
</html>', </html>'
'BANDO {{call_name}} - Domanda di finanziamento agevolato non ammessa {{company_name}}', WHERE "type" = 'INADMISSIBILITY_NOTIFICATION_DUE_TO_FAILURE' AND "system" = true;
NULL,
true,
false,
'2024-10-26 20:00:00',
'2024-10-26 20:00:00'
);
INSERT INTO gepafin_schema.system_email_template UPDATE gepafin_schema.system_email_template
( SET html_content = '<html>
id, template_name, "type", html_content, subject, "json", "system",
is_deleted, created_date, updated_date
)
VALUES
(
5,
'Notification of Admissibility Template',
'ADMISSIBILITY_NOTIFICATION',
'<html>
<body style="font-family: Arial, sans-serif; color: #000; line-height: 1.6;"> <body style="font-family: Arial, sans-serif; color: #000; line-height: 1.6;">
<div style="padding: 20px; border: 1px solid #ddd; border-radius: 8px; max-width: 600px; margin: auto;"> <div style="padding: 20px; border: 1px solid #ddd; border-radius: 8px; max-width: 600px; margin: auto;">
<p>Buongiorno,</p> <p>Buongiorno,</p>
@@ -95,26 +56,11 @@ VALUES
<p><strong>{{email_signature}}</strong></p> <p><strong>{{email_signature}}</strong></p>
</div> </div>
</body> </body>
</html>', </html>'
'BANDO {{call_name}} Esito positivo istruttoria di ammissibilità {{company_name}}', WHERE "type" = 'ADMISSIBILITY_NOTIFICATION' AND "system" = true;
NULL,
true,
false,
'2024-10-26 20:00:00',
'2024-10-26 20:00:00'
);
INSERT INTO gepafin_schema.system_email_template UPDATE gepafin_schema.system_email_template
( SET html_content = '<html>
id, template_name, "type", html_content, subject, "json", "system",
is_deleted, created_date, updated_date
)
VALUES
(
6,
'Notification of Inadmissibility Template',
'INADMISSIBILITY_NOTIFICATION',
'<html>
<body style="font-family: Arial, sans-serif; color: #000; line-height: 1.6;"> <body style="font-family: Arial, sans-serif; color: #000; line-height: 1.6;">
<div style="padding: 20px; border: 1px solid #ddd; border-radius: 8px; max-width: 600px; margin: auto;"> <div style="padding: 20px; border: 1px solid #ddd; border-radius: 8px; max-width: 600px; margin: auto;">
<p>Buongiorno,</p> <p>Buongiorno,</p>
@@ -128,11 +74,5 @@ VALUES
<p><strong>{{email_signature}}</strong></p> <p><strong>{{email_signature}}</strong></p>
</div> </div>
</body> </body>
</html>', </html>'
'BANDO {{call_name}} Esito negativo istruttoria di ammissibilità {{company_name}}', WHERE "type" = 'INADMISSIBILITY_NOTIFICATION' AND "system" = true;
NULL,
true,
false,
'2024-10-26 20:00:00',
'2024-10-26 20:00:00'
);