Resolved conflicts
This commit is contained in:
@@ -2391,4 +2391,42 @@
|
||||
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="06-02-2025_NK_155519" author="Nisha Kashyap">
|
||||
<addColumn tableName="call">
|
||||
<column name="number_of_check" type="numeric"></column>
|
||||
<column name="product_id" type="numeric"></column>
|
||||
</addColumn>
|
||||
</changeSet>
|
||||
<changeSet id="06-02-2025_PK_165700" author="Piyush Kag">
|
||||
|
||||
<sqlFile dbms="postgresql"
|
||||
path="db/dump/update_form_field_data_06-02-2025.sql"/>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="11-02-2025_RK_111500" author="Rajesh Khore">
|
||||
<addColumn tableName="system_email_template">
|
||||
<column name="hub_id" type="INTEGER">
|
||||
<constraints foreignKeyName="fk_hub_id"
|
||||
references="hub(id)" />
|
||||
</column>
|
||||
</addColumn>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="11-02-2025_RK_111515" author="Rajesh Khore">
|
||||
<sql dbms="postgresql">select
|
||||
setval('gepafin_schema.system_email_template_id_seq', (select
|
||||
max(id)+1
|
||||
from gepafin_schema.system_email_template), false)
|
||||
</sql>
|
||||
|
||||
<sqlFile dbms="postgresql"
|
||||
path="db/dump/insert_system_email_template_for_updating_amendment_mail_notification_mail_31_01_2024_1.sql"/>
|
||||
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="11-02-2025_NK_180615" author="Nisha Kashyap">
|
||||
<modifyDataType tableName="call" columnName="number_of_check" newDataType="INTEGER"/>
|
||||
<modifyDataType tableName="call" columnName="product_id" newDataType="INTEGER"/>
|
||||
</changeSet>
|
||||
|
||||
</databaseChangeLog>
|
||||
|
||||
@@ -0,0 +1,65 @@
|
||||
INSERT INTO gepafin_schema.system_email_template (template_name, "type", html_content, subject, "json", "system", is_deleted, created_date, updated_date, email_scenario, hub_id)
|
||||
VALUES
|
||||
(
|
||||
'Instructional Aid/Request for Documentation Integration Template For Sviluppumbria',
|
||||
'DOCUMENTATION_INTEGRATION_REQUEST',
|
||||
'<html>
|
||||
<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;">
|
||||
<p><strong>RICHIESTA INTEGRAZIONE DOCUMENTALE</strong></p>
|
||||
<p>Buongiorno,</p>
|
||||
<p>In riferimento alla domanda di concessione di Finanziamento agevolato a valere sul Bando
|
||||
"<strong>{{call_name}}</strong>" di cui al <strong>Protocollo n. {{protocol_number}} del
|
||||
{{protocol_date}} e {{protocol_time}}</strong>, alla luce dell''attività istruttoria svolta,
|
||||
segnaliamo quanto segue:
|
||||
</p>
|
||||
{{note}}
|
||||
<p>Vi invitiamo a fornire quanto sopra richiesto integrando la documentazione caricandola all''interno dello sportello
|
||||
online <a href="{{platform_link}}">{{platform_link}}</a> entro e <strong>non oltre {{response_days}} giorni</strong> dal ricevimento della presente comunicazione,
|
||||
precisando che, in caso di mancata ricezione nei termini indicati, saremo costretti a non prendere in considerazione la Vostra richiesta di finanziamento.
|
||||
</p>
|
||||
<p>La documentazione trasmessa e le informazioni fornite saranno processate dall''istruttore assegnatario della pratica.
|
||||
</p>
|
||||
<p>Distinti Saluti,</p>
|
||||
<p><strong>{{email_signature}}</strong></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>',
|
||||
'BANDO {{call_name}}- Domanda di concessione di finanziamento agevolato {{company_name}}',
|
||||
NULL,
|
||||
false,
|
||||
false,
|
||||
CURRENT_TIMESTAMP,
|
||||
CURRENT_TIMESTAMP,
|
||||
'APPLICATION_AMENDMENT_REQUESTED',
|
||||
2
|
||||
);
|
||||
|
||||
INSERT INTO gepafin_schema.system_email_template (template_name, "type", html_content, subject, "json", "system", is_deleted, created_date, updated_date, email_scenario, hub_id)
|
||||
VALUES
|
||||
(
|
||||
'Notification of Inadmissibility Template',
|
||||
'INADMISSIBILITY_NOTIFICATION',
|
||||
'<html>
|
||||
<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;">
|
||||
<p>Buongiorno,</p>
|
||||
<p>Si comunica che, in riferimento alla domanda a valere sul bando “<strong>{{call_name}}</strong>” di cui al
|
||||
<strong>Protocollo n. {{protocol_number}} del {{protocol_date}} alle {{protocol_time}}</strong>,
|
||||
la stessa è stata sottoposta ad istruttoria di ammissibilità con esito negativo.</p>
|
||||
<p>Le motivazioni sono le seguenti: <strong>{{form_text}}</strong></p>
|
||||
<p>Vi ricordiamo che i Beneficiari che hanno presentato richieste valutate non ammissibili entro 10 giorni dalla data di ricevimento della presente potranno finoltrare richiesta di chiarimenti e/o osservazioni alla scrivente Società ai sensi e per gli effetti dell’art.10 bis della L.241/1990 e s.m.i.</p>
|
||||
<p>Distinti Saluti,</p>
|
||||
<p><strong>{{email_signature}}</strong></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>',
|
||||
'BANDO {{call_name}} – Esito negativo istruttoria di ammissibilità {{company_name}}',
|
||||
NULL,
|
||||
false,
|
||||
false,
|
||||
CURRENT_TIMESTAMP,
|
||||
CURRENT_TIMESTAMP,
|
||||
'APPLICATION_REJECTED',
|
||||
2
|
||||
);
|
||||
@@ -0,0 +1,14 @@
|
||||
|
||||
INSERT INTO FORM_FIELD (ID, SORT_ORDER, NAME, LABEL, DESCRIPTION, SETTINGS, VALIDATORS, CREATED_DATE, UPDATED_DATE)
|
||||
VALUES
|
||||
(
|
||||
22,
|
||||
22,
|
||||
'switch',
|
||||
'Casella di spunta "Checklist"',
|
||||
'Per selezioni binarie, accettazioni, conferme',
|
||||
'[{"name":"label","value":"Casella di Spunta"},{"name":"isChecklistItem","value":true}]',
|
||||
'{"isRequired":false}',
|
||||
CURRENT_TIMESTAMP,
|
||||
CURRENT_TIMESTAMP
|
||||
);
|
||||
Reference in New Issue
Block a user