Beneficiary must be able to add to favorite a Call

This commit is contained in:
harish
2024-10-14 15:39:34 +05:30
parent ee59ae10c4
commit 82bf9ff789
18 changed files with 610 additions and 4 deletions

View File

@@ -972,5 +972,25 @@
</column>
</addColumn>
</changeSet>
<changeSet id="11-10-2024_1" author="Harish Bagora">
<createTable tableName="beneficiary_preferred_call">
<column autoIncrement="true" name="id" type="BIGINT">
<constraints nullable="false" primaryKey="true" primaryKeyName="beneficiary_preferred_call_pkey"/>
</column>
<column name="beneficiary_id" type="BIGINT"/>
<column name="user_id" type="BIGINT">
<constraints nullable="false"/>
</column>
<column name="company_id" type="BIGINT"/>
<column name="call_id" type="BIGINT"/>
<column name="status" type="VARCHAR(255)"/>
<column name="created_date" type="TIMESTAMP WITHOUT TIME ZONE">
<constraints nullable="true"/>
</column>
<column name="updated_date" type="TIMESTAMP WITHOUT TIME ZONE">
<constraints nullable="true"/>
</column>
</createTable>
</changeSet>
</databaseChangeLog>

View File

@@ -229,5 +229,16 @@ application.submitted.cannot.change=The submitted application cannot be changed.
# Call Document Messages
call.documents.fetch.success=Documents fetched successfully.
call.documents.not.found=No documents found for the specified call.
# Beneficiary Preferred Call messages
beneficiary.preferred.call.status.updated.success=Beneficiary preferred call status updated successfully.
beneficiary.preferred.calls.get.all.success=All beneficiary preferred calls fetched successfully.
beneficiary.preferred.call.created.success=Beneficiary preferred call created successfully.
beneficiary.preferred.call.get.success=Beneficiary preferred call retrieved successfully.
beneficiary.preferred.call.delete.success=Beneficiary preferred call deleted successfully.
beneficiary.preferred.calls.get.success=All beneficiary preferred calls retrieved successfully.
beneficiary.preferred.call.updated.success=Beneficiary preferred call updated successfully.
beneficiary.preferred.call.not.found=Beneficiary preferred call not found.
either.user.or.beneficiary.id.required = User ID or Beneficiary ID not present.
userId.and.beneficiaryId.error = Both userId and beneficiaryId cannot be provided at the same time.
User.not.found.with.the.given.beneficiaryID=User not found with the given beneficiary ID.

View File

@@ -225,5 +225,15 @@ application.submitted.cannot.change=La domanda inviata non pu
# Call Document Messages
call.documents.fetch.success=Documenti recuperati con successo.
call.documents.not.found=Nessun documento trovato per la chiamata specificata.
# Beneficiary Preferred Call messages
beneficiary.preferred.call.status.updated.success=Lo stato della chiamata preferita del beneficiario è stato aggiornato con successo.
beneficiary.preferred.calls.get.all.success=Tutte le chiamate preferite del beneficiario sono state recuperate con successo.
beneficiary.preferred.call.created.success=Chiamata preferita del beneficiario creata con successo.
beneficiary.preferred.call.get.success=Chiamata preferita del beneficiario recuperata con successo.
beneficiary.preferred.call.delete.success=Chiamata preferita del beneficiario eliminata con successo.
beneficiary.preferred.calls.get.success=Tutte le chiamate preferite del beneficiario recuperate con successo.
beneficiary.preferred.call.updated.success=Chiamata preferita del beneficiario aggiornata con successo.
beneficiary.preferred.call.not.found=Chiamata preferita del beneficiario non trovata.
either.user.or.beneficiary.id.required = ID utente o ID beneficiario non presente.
userId.and.beneficiaryId.error = Non è possibile fornire contemporaneamente sia userId che beneficiaryId.
User.not.found.with.the.given.beneficiaryID=Utente non trovato con l'ID beneficiario fornito.