2020-08-06 16:35:45 +02:00
|
|
|
|
# == Schema Information
|
|
|
|
|
#
|
|
|
|
|
# Table name: champs
|
|
|
|
|
#
|
2021-02-04 19:23:40 +01:00
|
|
|
|
# id :integer not null, primary key
|
|
|
|
|
# data :jsonb
|
|
|
|
|
# fetch_external_data_exceptions :string is an Array
|
|
|
|
|
# private :boolean default(FALSE), not null
|
2021-10-20 17:26:09 +02:00
|
|
|
|
# rebased_at :datetime
|
2021-02-04 19:23:40 +01:00
|
|
|
|
# row :integer
|
|
|
|
|
# type :string
|
|
|
|
|
# value :string
|
2021-10-05 15:37:13 +02:00
|
|
|
|
# value_json :jsonb
|
2021-02-04 19:23:40 +01:00
|
|
|
|
# created_at :datetime
|
|
|
|
|
# updated_at :datetime
|
2022-09-21 15:20:42 +02:00
|
|
|
|
# dossier_id :integer
|
2021-02-04 19:23:40 +01:00
|
|
|
|
# etablissement_id :integer
|
|
|
|
|
# external_id :string
|
|
|
|
|
# parent_id :bigint
|
2022-09-21 15:20:42 +02:00
|
|
|
|
# type_de_champ_id :integer
|
2020-08-06 16:35:45 +02:00
|
|
|
|
#
|
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
|
|
|
|
|
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
|
|
|
|
|
|
2022-06-27 11:55:56 +02:00
|
|
|
|
def mandatory_blank_and_visible?
|
2022-08-08 17:17:52 +02:00
|
|
|
|
mandatory? && !piece_justificative_file.attached?
|
2018-06-14 17:44:03 +02:00
|
|
|
|
end
|
|
|
|
|
|
2020-05-13 16:24:35 +02:00
|
|
|
|
def for_export
|
|
|
|
|
piece_justificative_file.filename.to_s if piece_justificative_file.attached?
|
|
|
|
|
end
|
|
|
|
|
|
2019-05-02 11:37:35 +02:00
|
|
|
|
def for_api
|
2019-04-25 12:56:25 +02:00
|
|
|
|
if piece_justificative_file.attached? && (piece_justificative_file.virus_scanner.safe? || piece_justificative_file.virus_scanner.pending?)
|
2019-12-19 18:15:37 +01:00
|
|
|
|
piece_justificative_file.service_url
|
2018-05-11 14:59:20 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
2018-02-13 18:18:20 +01:00
|
|
|
|
end
|