Skip to content

Commit

Permalink
feat(bo): Link document denied options to new OTHER_GUARANTEE subcate…
Browse files Browse the repository at this point in the history
…gory
  • Loading branch information
juliette-derancourt committed Jan 30, 2024
1 parent 1892d41 commit 9a14dda
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ tenant.profile.link5.v2=Justificatif de ressources
tenant.profile.link6.v2=Attestation de garantie
tenant.profile.link7.v2=Identification de la personne morale
tenant.profile.link8.v2=Pièce d'identité du représentant de la personne morale
tenant.profile.link9.v2=Certificat d'organisme garant
tenant.profile.link9.v2=Certificat de caution
tenant.profile.link1.short.v2=Pièce d'identité
tenant.profile.link2.short.v2=Domicile
tenant.profile.link3.short.v2=Contrat de travail
Expand Down
2 changes: 1 addition & 1 deletion dossierfacile-bo/src/main/resources/messages.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ tenant.profile.link2.v2=Justificatif de situation d'hébergement
tenant.profile.link3.v2=Justificatif d'activité professionnelle
tenant.profile.link4.v2=Avis d'imposition conforme
tenant.profile.link5.v2=Justificatif de ressources
tenant.profile.link9.v2=Certificat d'organisme garant
tenant.profile.link9.v2=Certificat de caution
tenant.profile.help=(de 1 à 3 documents)
tenant.profile.add.input=Ajouter un document supplémentaire
locatio.header.link.login=Me connecter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,5 +139,6 @@
<include file="db/migration/202312120000-deprecate-document-pdf-generation-log.xml" />
<include file="db/migration/202401260000-rename-sub-category-for-guarantor-organism.xml" />
<include file="db/migration/202401260001-rename-category-for-guarantor-organism.xml" />
<include file="db/migration/202401300000-change-denied-options-sub-category.xml" />

</databaseChangeLog>
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.10.xsd">
<changeSet id="202401300000-01" author="juliette">
<sql>
<![CDATA[
UPDATE document_denied_options
SET document_sub_category = 'OTHER_GUARANTEE'
WHERE document_sub_category = 'CERTIFICATE_VISA';
]]>
</sql>
</changeSet>
</databaseChangeLog>
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ tenant.profile.link5.v2=Justificatif de ressources
tenant.profile.link6.v2=Attestation de garantie
tenant.profile.link7.v2=Identification de la personne morale
tenant.profile.link8.v2=Pièce d'identité du représentant de la personne morale
tenant.profile.link9.v2=Certificat d'organisme garant
tenant.profile.link9.v2=Certificat de caution
tenant.profile.certified=Revenu fiscal certifié

tenant.profile.help=(de 1 à 3 documents)
Expand Down

0 comments on commit 9a14dda

Please sign in to comment.