107 lines
2.3 KiB
Ruby
107 lines
2.3 KiB
Ruby
class DossierSerializer < ActiveModel::Serializer
|
|
include DossierHelper
|
|
|
|
attributes :id,
|
|
:created_at,
|
|
:updated_at,
|
|
:archived,
|
|
:email,
|
|
:state,
|
|
:simplified_state,
|
|
:initiated_at,
|
|
:received_at,
|
|
:processed_at,
|
|
:motivation,
|
|
:instructeurs
|
|
|
|
has_one :individual
|
|
has_one :entreprise
|
|
has_one :etablissement
|
|
has_many :cerfa
|
|
has_many :commentaires
|
|
has_many :champs_private
|
|
has_many :pieces_justificatives
|
|
has_many :types_de_piece_justificative
|
|
has_one :justificatif_motivation
|
|
has_many :avis
|
|
|
|
has_many :champs, serializer: ChampSerializer
|
|
|
|
def champs
|
|
champs = object.champs.reject { |c| c.type_de_champ.old_pj.present? }
|
|
|
|
if object.expose_legacy_carto_api?
|
|
champ_carte = champs.find do |champ|
|
|
champ.type_de_champ.type_champ == TypeDeChamp.type_champs.fetch(:carte)
|
|
end
|
|
|
|
if champ_carte.present?
|
|
carto_champs = champ_carte.geo_areas.to_a
|
|
carto_champs << champ_carte.user_geo_area
|
|
champs += carto_champs.compact
|
|
end
|
|
end
|
|
|
|
champs
|
|
end
|
|
|
|
def cerfa
|
|
[]
|
|
end
|
|
|
|
def pieces_justificatives
|
|
ActiveModelSerializers::SerializableResource.new(object.pieces_justificatives).serializable_hash +
|
|
PiecesJustificativesService.serialize_champs_as_pjs(object)
|
|
end
|
|
|
|
def justificatif_motivation
|
|
if object.justificatif_motivation.attached?
|
|
Rails.application.routes.url_helpers.url_for(object.justificatif_motivation)
|
|
end
|
|
end
|
|
|
|
def types_de_piece_justificative
|
|
ActiveModelSerializers::SerializableResource.new(object.types_de_piece_justificative).serializable_hash +
|
|
PiecesJustificativesService.serialize_types_de_champ_as_type_pj(object)
|
|
end
|
|
|
|
def email
|
|
object.user&.email
|
|
end
|
|
|
|
def entreprise
|
|
object.etablissement&.entreprise
|
|
end
|
|
|
|
def state
|
|
dossier_legacy_state(object)
|
|
end
|
|
|
|
def simplified_state
|
|
dossier_display_state(object)
|
|
end
|
|
|
|
def initiated_at
|
|
object.en_construction_at&.in_time_zone('UTC')
|
|
end
|
|
|
|
def received_at
|
|
object.en_instruction_at&.in_time_zone('UTC')
|
|
end
|
|
|
|
def instructeurs
|
|
object.followers_gestionnaires.pluck(:email)
|
|
end
|
|
|
|
def created_at
|
|
object.created_at&.in_time_zone('UTC')
|
|
end
|
|
|
|
def updated_at
|
|
object.updated_at&.in_time_zone('UTC')
|
|
end
|
|
|
|
def processed_at
|
|
object.processed_at&.in_time_zone('UTC')
|
|
end
|
|
end
|