diff --git a/app/models/preference_list_dossier.rb b/app/models/preference_list_dossier.rb index 60ec5b82c..68c627b87 100644 --- a/app/models/preference_list_dossier.rb +++ b/app/models/preference_list_dossier.rb @@ -48,7 +48,7 @@ class PreferenceListDossier < ActiveRecord::Base { libelle: create_column('Libellé procédure', table, 'libelle', 'libelle', 4), - organisation: create_column('Organisation', table, 'organisation', 'organisation', 3), + organisation: create_column('Organisme', table, 'organisation', 'organisation', 3), direction: create_column('Direction', table, 'direction', 'direction', 3) } end diff --git a/app/views/admin/procedures/_informations.html.haml b/app/views/admin/procedures/_informations.html.haml index 553457b48..253ee6729 100644 --- a/app/views/admin/procedures/_informations.html.haml +++ b/app/views/admin/procedures/_informations.html.haml @@ -2,7 +2,7 @@ .alert.alert-info Cette procédure est publiée, certains éléments de la description ne sont plus modifiables -- { libelle: 'Libellé*', description: 'Description*', organisation: 'Organisation', direction: 'Direction', lien_site_web: 'Lien site internet', lien_notice: 'Lien notice' }.each do |key, value| +- { libelle: 'Libellé*', description: 'Description*', organisation: 'Organisme', direction: 'Direction', lien_site_web: 'Lien site internet', lien_notice: 'Lien notice' }.each do |key, value| .form-group %h4 = value diff --git a/app/views/demo/_list.html.haml b/app/views/demo/_list.html.haml index 60ea99bdc..b439c7884 100644 --- a/app/views/demo/_list.html.haml +++ b/app/views/demo/_list.html.haml @@ -7,7 +7,7 @@ %th= smart_listing.sortable 'ID', 'id' %th= smart_listing.sortable 'Titre', 'libelle' %th Description - %th= smart_listing.sortable 'Organisation', 'organisation' + %th= smart_listing.sortable 'Organisme', 'organisation' - smart_listing.collection.each do |procedure| - procedure = procedure.decorate diff --git a/spec/models/dossier_spec.rb b/spec/models/dossier_spec.rb index 9b4ed5d78..e964e4b0d 100644 --- a/spec/models/dossier_spec.rb +++ b/spec/models/dossier_spec.rb @@ -810,14 +810,14 @@ describe Dossier do end describe "#text_summary" do - let(:procedure) { create(:procedure, libelle: "Procédure", organisation: "Organisation") } + let(:procedure) { create(:procedure, libelle: "Procédure", organisation: "Organisme") } context 'when the dossier has been initiated' do let(:dossier) { create :dossier, procedure: procedure, state: 'initiated', initiated_at: "31/12/2010".to_date } subject { dossier.text_summary } - it { is_expected.to eq("Dossier déposé le 31/12/2010 sur la procédure Procédure gérée par l'organisme Organisation") } + it { is_expected.to eq("Dossier déposé le 31/12/2010 sur la procédure Procédure gérée par l'organisme Organisme") } end context 'when the dossier has not been initiated' do @@ -825,7 +825,7 @@ describe Dossier do subject { dossier.text_summary } - it { is_expected.to eq("Dossier en brouillon répondant à la procédure Procédure gérée par l'organisme Organisation") } + it { is_expected.to eq("Dossier en brouillon répondant à la procédure Procédure gérée par l'organisme Organisme") } end end diff --git a/spec/models/preference_list_dossier_spec.rb b/spec/models/preference_list_dossier_spec.rb index c54163e12..cba6265a3 100644 --- a/spec/models/preference_list_dossier_spec.rb +++ b/spec/models/preference_list_dossier_spec.rb @@ -92,7 +92,7 @@ describe PreferenceListDossier do describe 'organisation' do subject { super()[:organisation] } - it { expect(subject[:libelle]).to eq 'Organisation' } + it { expect(subject[:libelle]).to eq 'Organisme' } it { expect(subject[:table]).to eq 'procedure' } it { expect(subject[:attr]).to eq 'organisation' } it { expect(subject[:attr_decorate]).to eq 'organisation' }