added protocol in amendment request
This commit is contained in:
@@ -1345,7 +1345,7 @@
|
||||
referencedColumnNames="id"/>
|
||||
</changeSet>
|
||||
|
||||
|
||||
|
||||
<changeSet id="24-10-2024_1" author="Rajesh Khore">
|
||||
<dropUniqueConstraint
|
||||
constraintName="company_vat_number_key"
|
||||
@@ -1569,6 +1569,17 @@
|
||||
<column name="is_deleted" type="BOOLEAN" defaultValueBoolean="false">
|
||||
<constraints nullable="false"/>
|
||||
</column>
|
||||
|
||||
<column name="application_id" type="INTEGER">
|
||||
<constraints nullable="true"/>
|
||||
</column>
|
||||
|
||||
<column name="application_evaluation_id" type="INTEGER">
|
||||
<constraints nullable="false"
|
||||
foreignKeyName="fk_application_evaluation_application_amendment_request"
|
||||
references="application_evaluation(id)"/>
|
||||
</column>
|
||||
|
||||
<column name="created_date" type="TIMESTAMP WITHOUT TIME ZONE">
|
||||
<constraints nullable="true"/>
|
||||
</column>
|
||||
@@ -1620,6 +1631,19 @@
|
||||
<sqlFile dbms="postgresql"
|
||||
path="db/dump/insert_system_email_template_for_notification_mail_27_10_2024.sql"/>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="28-10-2024_3" author="Rajesh Khore">
|
||||
<addColumn tableName="application_amendment_request">
|
||||
<column name="protocol_id" type="INTEGER"/>
|
||||
</addColumn>
|
||||
|
||||
<addForeignKeyConstraint
|
||||
baseTableName="application_amendment_request"
|
||||
baseColumnNames="protocol_id"
|
||||
referencedTableName="protocol"
|
||||
referencedColumnNames="id"
|
||||
constraintName="fk_application_amendment_request_protocol"/>
|
||||
</changeSet>
|
||||
|
||||
|
||||
</databaseChangeLog>
|
||||
|
||||
@@ -287,6 +287,7 @@ invalid.application.status = Invalid Application status.
|
||||
|
||||
application.data.amendment.success = Successfully retrieved the application data for the amendment process.
|
||||
delete.application.amendment.success = Application Amendment successfully deleted.
|
||||
create.application.data.amendment.msg = Application amendment submited succesfully.
|
||||
application.amendment.not.found = Application Amendment Request not found with the given ID.
|
||||
application.amendment.get.success = Application Amendment details fetched successfully with given ID.
|
||||
application.amendment.update.successfully = Application Amendment Updated Successfully.
|
||||
|
||||
@@ -290,7 +290,8 @@ added.comment.to.amendment.request.success = Commento aggiunto con successo alla
|
||||
comment.not.found = Commento non trovato.
|
||||
comment.updated.successfully = Commento aggiornato con successo.
|
||||
comment.deleted.successfully = Commento eliminato con successo.
|
||||
comment.not.associate.with.amendment = Il commento non è associato alla richiesta di emendamento.
|
||||
comment.not.associate.with.amendment = Il commento non <EFBFBD> associato alla richiesta di emendamento.
|
||||
amendment.found.success = Richiesta di emendamento trovata con successo.
|
||||
invalid.amendment.for.comment = Richiesta di emendamento non valida per il commento fornito.
|
||||
DD_MM_YYYY_HH_MM = DD-MM-YYYY HH:MM.
|
||||
create.application.data.amendment.msg =Emendamento alla domanda inviato con successo
|
||||
|
||||
Reference in New Issue
Block a user