2020-08-06 16:35:45 +02:00
|
|
|
|
# == Schema Information
|
|
|
|
|
#
|
|
|
|
|
# Table name: champs
|
|
|
|
|
#
|
|
|
|
|
# id :integer not null, primary key
|
|
|
|
|
# private :boolean default(FALSE), not null
|
|
|
|
|
# row :integer
|
|
|
|
|
# type :string
|
|
|
|
|
# value :string
|
|
|
|
|
# created_at :datetime
|
|
|
|
|
# updated_at :datetime
|
|
|
|
|
# dossier_id :integer
|
|
|
|
|
# etablissement_id :integer
|
|
|
|
|
# parent_id :bigint
|
|
|
|
|
# type_de_champ_id :integer
|
|
|
|
|
#
|
2018-02-13 18:18:20 +01:00
|
|
|
|
class Champs::PieceJustificativeChamp < Champ
|
2020-03-26 17:28:24 +01:00
|
|
|
|
MAX_SIZE = 200.megabytes
|
2018-06-15 14:27:33 +02:00
|
|
|
|
|
2020-07-08 14:46:31 +02:00
|
|
|
|
validates :piece_justificative_file,
|
2020-07-15 16:06:24 +02:00
|
|
|
|
size: { less_than: MAX_SIZE },
|
|
|
|
|
if: -> { !type_de_champ.skip_pj_validation }
|
2020-07-09 11:45:20 +02:00
|
|
|
|
|
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-06-14 17:44:03 +02:00
|
|
|
|
def mandatory_and_blank?
|
|
|
|
|
mandatory? && !piece_justificative_file.attached?
|
|
|
|
|
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
|