Merge pull request #10031 from colinux/fix-typo-tiers
ETQ instructeur: corrige une typo tier => tiers dans les exports
This commit is contained in:
commit
3cf2e3ecde
3 changed files with 3 additions and 3 deletions
|
@ -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]
|
||||||
]
|
]
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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é",
|
||||||
|
|
Loading…
Reference in a new issue