Merge pull request #6192 from betagouv/fix_dossier_state_spreadsheet_export
corrige une traduction manquante pour l'état d'un dossier dans les exports csv/excel ...
This commit is contained in:
commit
93104d4782
2 changed files with 7 additions and 1 deletions
|
@ -817,7 +817,7 @@ class Dossier < ApplicationRecord
|
|||
|
||||
columns += [
|
||||
['Archivé', :archived],
|
||||
['État du dossier', I18n.t(state, scope: [:activerecord, :attributes, :dossier, :state])],
|
||||
['État du dossier', Dossier.human_attribute_name("state.#{state}")],
|
||||
['Dernière mise à jour le', :updated_at],
|
||||
['Déposé le', :en_construction_at],
|
||||
['Passé en instruction le', :en_instruction_at],
|
||||
|
|
|
@ -1430,4 +1430,10 @@ describe Dossier do
|
|||
expect(dossier.destroy).to be_truthy
|
||||
end
|
||||
end
|
||||
|
||||
describe "#spreadsheet_columns" do
|
||||
let(:dossier) { create(:dossier) }
|
||||
|
||||
it { expect(dossier.spreadsheet_columns(types_de_champ: [], types_de_champ_private: [])).to include(["État du dossier", "Brouillon"]) }
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue