ajout d'une balise pour le nom du service
This commit is contained in:
parent
1f7d5b6541
commit
236f73f838
2 changed files with 16 additions and 1 deletions
|
@ -40,6 +40,12 @@ module TagsSubstitutionConcern
|
|||
description: '',
|
||||
target: :id,
|
||||
available_for_states: Dossier::SOUMIS
|
||||
},
|
||||
{
|
||||
libelle: 'nom du service',
|
||||
description: 'Le nom du service instructeur qui traite le dossier',
|
||||
lambda: -> (d) { d.procedure.organisation_name || '' },
|
||||
available_for_states: Dossier::SOUMIS
|
||||
}
|
||||
]
|
||||
|
||||
|
|
|
@ -4,12 +4,15 @@ describe TagsSubstitutionConcern, type: :model do
|
|||
let(:for_individual) { false }
|
||||
let(:state) { Dossier.states.fetch(:accepte) }
|
||||
|
||||
let(:service) { create(:service, nom: 'Service instructeur') }
|
||||
|
||||
let(:procedure) do
|
||||
create(:procedure,
|
||||
libelle: 'Une magnifique démarche',
|
||||
types_de_champ: types_de_champ,
|
||||
types_de_champ_private: types_de_champ_private,
|
||||
for_individual: for_individual)
|
||||
for_individual: for_individual,
|
||||
service: service)
|
||||
end
|
||||
|
||||
let(:template_concern) do
|
||||
|
@ -144,6 +147,12 @@ describe TagsSubstitutionConcern, type: :model do
|
|||
end
|
||||
end
|
||||
|
||||
context 'when the dossier has a service' do
|
||||
let(:template) { 'Dossier traité par --nom du service--' }
|
||||
|
||||
it { is_expected.to eq("Dossier traité par #{service.nom}") }
|
||||
end
|
||||
|
||||
context 'when the dossier has a motivation' do
|
||||
let(:dossier) { create(:dossier, motivation: 'motivation') }
|
||||
|
||||
|
|
Loading…
Reference in a new issue