Merge pull request #10031 from colinux/fix-typo-tiers

ETQ instructeur: corrige une typo tier => tiers dans les exports
This commit is contained in:
Colin Darie 2024-02-23 09:13:19 +00:00 committed by GitHub
commit 3cf2e3ecde
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -1201,7 +1201,7 @@ class Dossier < ApplicationRecord
['Civilité', individual&.gender], ['Civilité', individual&.gender],
['Nom', individual&.nom], ['Nom', individual&.nom],
['Prénom', individual&.prenom], ['Prénom', individual&.prenom],
['Dépot pour un tier', :for_tiers], ['Dépôt pour un tiers', :for_tiers],
['Nom du mandataire', :mandataire_last_name], ['Nom du mandataire', :mandataire_last_name],
['Prénom du mandataire', :mandataire_first_name] ['Prénom du mandataire', :mandataire_first_name]
] ]

View file

@ -2138,7 +2138,7 @@ describe Dossier, type: :model do
context 'for_individual' do context 'for_individual' do
let(:dossier) { create(:dossier, procedure: create(:procedure, :for_individual)) } let(:dossier) { create(:dossier, procedure: create(:procedure, :for_individual)) }
it { expect(dossier.spreadsheet_columns(types_de_champ: [])).to include(["Dépot pour un tier", :for_tiers]) } it { expect(dossier.spreadsheet_columns(types_de_champ: [])).to include(["Dépôt pour un tiers", :for_tiers]) }
it { expect(dossier.spreadsheet_columns(types_de_champ: [])).to include(['Nom du mandataire', :mandataire_last_name]) } it { expect(dossier.spreadsheet_columns(types_de_champ: [])).to include(['Nom du mandataire', :mandataire_last_name]) }
it { expect(dossier.spreadsheet_columns(types_de_champ: [])).to include(['Prénom du mandataire', :mandataire_first_name]) } it { expect(dossier.spreadsheet_columns(types_de_champ: [])).to include(['Prénom du mandataire', :mandataire_first_name]) }
end end

View file

@ -43,7 +43,7 @@ describe ProcedureExportService do
"Civilité", "Civilité",
"Nom", "Nom",
"Prénom", "Prénom",
"Dépot pour un tier", "Dépôt pour un tiers",
"Nom du mandataire", "Nom du mandataire",
"Prénom du mandataire", "Prénom du mandataire",
"Archivé", "Archivé",