!!FIX BUG : values does not appear on info dossier
This commit is contained in:
parent
e1d1e356e5
commit
a316165792
2 changed files with 6 additions and 0 deletions
|
@ -4,6 +4,7 @@ class ChampDecorator < Draper::Decorator
|
|||
if type_champ == 'checkbox'
|
||||
return object.value == 'on' ? 'Oui' : 'Non'
|
||||
end
|
||||
object.value
|
||||
end
|
||||
|
||||
def type_champ
|
||||
|
|
|
@ -4,6 +4,11 @@ describe 'dossiers/_infos_dossier.html.haml', type: :view do
|
|||
let(:dossier) { create(:dossier, :with_entreprise, procedure: create(:procedure, :with_api_carto, :with_type_de_champ)) }
|
||||
|
||||
before do
|
||||
champs.each do |champ|
|
||||
champ.value = ((0...8).map { (65 + rand(26)).chr }.join)
|
||||
champ.save
|
||||
end
|
||||
|
||||
assign(:facade, DossierFacades.new(dossier.id, dossier.user.email))
|
||||
render
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue