21 lines
479 B
Ruby
21 lines
479 B
Ruby
class EditableChamp::PieceJustificativeComponent < EditableChamp::EditableChampBaseComponent
|
|
def dsfr_input_classname
|
|
'fr-input'
|
|
end
|
|
|
|
def view_as
|
|
if @champ.dossier.brouillon?
|
|
:link
|
|
else
|
|
:download
|
|
end
|
|
end
|
|
|
|
def user_can_destroy?
|
|
!@champ.mandatory? || @champ.dossier.brouillon?
|
|
end
|
|
|
|
def max
|
|
[true, nil].include?(@champ.procedure&.piece_justificative_multiple?) ? Attachment::MultipleComponent::DEFAULT_MAX_ATTACHMENTS : 1
|
|
end
|
|
end
|