2024-04-29 00:17:15 +02:00
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2018-02-13 18:18:20 +01:00
|
|
|
|
class Champs::PieceJustificativeChamp < Champ
|
2021-09-14 18:03:40 +02:00
|
|
|
|
FILE_MAX_SIZE = 200.megabytes
|
2018-06-15 14:27:33 +02:00
|
|
|
|
|
2024-05-07 16:41:20 +02:00
|
|
|
|
has_many_attached :piece_justificative_file
|
2024-04-23 14:51:59 +02:00
|
|
|
|
|
2024-04-01 07:36:14 +02:00
|
|
|
|
# TODO: if: -> { validate_champ_value? || validation_context == :prefill }
|
2020-07-08 14:46:31 +02:00
|
|
|
|
validates :piece_justificative_file,
|
2021-11-24 10:04:20 +01:00
|
|
|
|
size: { less_than: FILE_MAX_SIZE },
|
2020-07-15 16:06:24 +02:00
|
|
|
|
if: -> { !type_de_champ.skip_pj_validation }
|
2020-07-09 11:45:20 +02:00
|
|
|
|
|
2021-01-18 12:34:52 +01:00
|
|
|
|
validates :piece_justificative_file,
|
|
|
|
|
content_type: AUTHORIZED_CONTENT_TYPES,
|
|
|
|
|
if: -> { !type_de_champ.skip_content_type_pj_validation }
|
|
|
|
|
|
2020-03-24 18:05:36 +01:00
|
|
|
|
def main_value_name
|
|
|
|
|
:piece_justificative_file
|
|
|
|
|
end
|
|
|
|
|
|
2018-07-25 19:34:06 +02:00
|
|
|
|
def search_terms
|
|
|
|
|
# We don’t know how to search inside documents yet
|
|
|
|
|
end
|
2018-02-13 18:18:20 +01:00
|
|
|
|
end
|