2020-08-06 16:35:45 +02:00
|
|
|
|
# == Schema Information
|
|
|
|
|
#
|
|
|
|
|
# Table name: dossiers
|
|
|
|
|
#
|
|
|
|
|
# id :integer not null, primary key
|
2021-02-04 19:23:40 +01:00
|
|
|
|
# api_entreprise_job_exceptions :string is an Array
|
2020-08-06 16:35:45 +02:00
|
|
|
|
# archived :boolean default(FALSE)
|
|
|
|
|
# autorisation_donnees :boolean
|
|
|
|
|
# brouillon_close_to_expiration_notice_sent_at :datetime
|
2021-04-28 12:50:58 +02:00
|
|
|
|
# conservation_extension :interval default(0 seconds)
|
2021-05-01 12:20:24 +02:00
|
|
|
|
# deleted_user_email_never_send :string
|
2020-08-06 16:35:45 +02:00
|
|
|
|
# en_construction_at :datetime
|
|
|
|
|
# en_construction_close_to_expiration_notice_sent_at :datetime
|
|
|
|
|
# en_construction_conservation_extension :interval default(0 seconds)
|
|
|
|
|
# en_instruction_at :datetime
|
|
|
|
|
# groupe_instructeur_updated_at :datetime
|
|
|
|
|
# hidden_at :datetime
|
|
|
|
|
# last_avis_updated_at :datetime
|
|
|
|
|
# last_champ_private_updated_at :datetime
|
|
|
|
|
# last_champ_updated_at :datetime
|
|
|
|
|
# last_commentaire_updated_at :datetime
|
|
|
|
|
# motivation :text
|
|
|
|
|
# private_search_terms :text
|
|
|
|
|
# processed_at :datetime
|
|
|
|
|
# search_terms :text
|
|
|
|
|
# state :string
|
|
|
|
|
# termine_close_to_expiration_notice_sent_at :datetime
|
|
|
|
|
# created_at :datetime
|
|
|
|
|
# updated_at :datetime
|
|
|
|
|
# groupe_instructeur_id :bigint
|
|
|
|
|
# revision_id :bigint
|
|
|
|
|
# user_id :integer
|
|
|
|
|
#
|
2018-03-06 13:44:29 +01:00
|
|
|
|
class Dossier < ApplicationRecord
|
2019-02-27 12:03:53 +01:00
|
|
|
|
include DossierFilteringConcern
|
|
|
|
|
|
2020-02-05 16:09:03 +01:00
|
|
|
|
include Discard::Model
|
|
|
|
|
self.discard_column = :hidden_at
|
|
|
|
|
default_scope -> { kept }
|
|
|
|
|
|
2017-05-26 18:27:51 +02:00
|
|
|
|
enum state: {
|
2017-12-04 20:23:57 +01:00
|
|
|
|
brouillon: 'brouillon',
|
|
|
|
|
en_construction: 'en_construction',
|
|
|
|
|
en_instruction: 'en_instruction',
|
|
|
|
|
accepte: 'accepte',
|
|
|
|
|
refuse: 'refuse',
|
|
|
|
|
sans_suite: 'sans_suite'
|
2017-05-26 18:27:51 +02:00
|
|
|
|
}
|
2015-09-22 18:30:20 +02:00
|
|
|
|
|
2018-08-28 14:10:55 +02:00
|
|
|
|
EN_CONSTRUCTION_OU_INSTRUCTION = [states.fetch(:en_construction), states.fetch(:en_instruction)]
|
|
|
|
|
TERMINE = [states.fetch(:accepte), states.fetch(:refuse), states.fetch(:sans_suite)]
|
|
|
|
|
INSTRUCTION_COMMENCEE = TERMINE + [states.fetch(:en_instruction)]
|
2018-01-18 11:39:05 +01:00
|
|
|
|
SOUMIS = EN_CONSTRUCTION_OU_INSTRUCTION + TERMINE
|
2017-05-26 18:22:31 +02:00
|
|
|
|
|
2020-05-13 20:45:21 +02:00
|
|
|
|
TAILLE_MAX_ZIP = 100.megabytes
|
2019-07-18 16:47:59 +02:00
|
|
|
|
|
2020-03-25 04:09:14 +01:00
|
|
|
|
REMAINING_DAYS_BEFORE_CLOSING = 2
|
2020-03-25 10:38:17 +01:00
|
|
|
|
INTERVAL_BEFORE_CLOSING = "#{REMAINING_DAYS_BEFORE_CLOSING} days"
|
|
|
|
|
INTERVAL_BEFORE_EXPIRATION = '1 month'
|
|
|
|
|
INTERVAL_EXPIRATION = '1 month 5 days'
|
2020-02-05 22:10:22 +01:00
|
|
|
|
|
2015-09-24 11:45:00 +02:00
|
|
|
|
has_one :etablissement, dependent: :destroy
|
2020-01-07 16:36:04 +01:00
|
|
|
|
has_one :individual, validate: false, dependent: :destroy
|
2018-11-28 16:13:58 +01:00
|
|
|
|
has_one :attestation, dependent: :destroy
|
2020-11-02 14:58:35 +01:00
|
|
|
|
has_one :france_connect_information, through: :user
|
2016-01-18 16:20:51 +01:00
|
|
|
|
|
2021-04-13 20:24:02 +02:00
|
|
|
|
# FIXME: some dossiers have more than one attestation
|
|
|
|
|
has_many :attestations, dependent: :destroy
|
|
|
|
|
|
2019-02-18 17:52:15 +01:00
|
|
|
|
has_one_attached :justificatif_motivation
|
2021-03-08 11:35:20 +01:00
|
|
|
|
has_one_attached :pdf_export_for_instructeur
|
2019-02-18 17:52:15 +01:00
|
|
|
|
|
2021-04-01 17:22:47 +02:00
|
|
|
|
has_many :champs, -> { root.public_ordered }, inverse_of: false, dependent: :destroy
|
|
|
|
|
has_many :champs_private, -> { root.private_ordered }, class_name: 'Champ', inverse_of: false, dependent: :destroy
|
2019-05-29 18:28:27 +02:00
|
|
|
|
has_many :commentaires, inverse_of: :dossier, dependent: :destroy
|
2016-02-08 18:16:18 +01:00
|
|
|
|
has_many :invites, dependent: :destroy
|
2019-06-12 19:10:53 +02:00
|
|
|
|
has_many :follows, -> { active }, inverse_of: :dossier
|
|
|
|
|
has_many :previous_follows, -> { inactive }, class_name: 'Follow', inverse_of: :dossier
|
2019-08-06 11:02:54 +02:00
|
|
|
|
has_many :followers_instructeurs, through: :follows, source: :instructeur
|
|
|
|
|
has_many :previous_followers_instructeurs, -> { distinct }, through: :previous_follows, source: :instructeur
|
2019-05-29 18:28:27 +02:00
|
|
|
|
has_many :avis, inverse_of: :dossier, dependent: :destroy
|
2021-02-25 10:10:24 +01:00
|
|
|
|
has_many :experts, through: :avis
|
2020-07-02 11:02:50 +02:00
|
|
|
|
has_many :traitements, -> { order(:processed_at) }, inverse_of: :dossier, dependent: :destroy
|
2016-01-18 16:20:51 +01:00
|
|
|
|
|
2020-11-17 13:46:13 +01:00
|
|
|
|
has_many :dossier_operation_logs, -> { order(:created_at) }, inverse_of: :dossier
|
2018-11-23 21:02:18 +01:00
|
|
|
|
|
2021-03-09 11:21:30 +01:00
|
|
|
|
belongs_to :groupe_instructeur, optional: true
|
2020-08-27 19:55:10 +02:00
|
|
|
|
belongs_to :revision, class_name: 'ProcedureRevision', optional: false
|
2020-07-20 16:38:59 +02:00
|
|
|
|
belongs_to :user, optional: false
|
2015-08-12 10:09:52 +02:00
|
|
|
|
|
2020-08-27 19:55:10 +02:00
|
|
|
|
has_one :procedure, through: :revision
|
|
|
|
|
has_many :types_de_champ, through: :revision
|
|
|
|
|
has_many :types_de_champ_private, through: :revision
|
|
|
|
|
|
2017-08-02 14:56:08 +02:00
|
|
|
|
accepts_nested_attributes_for :champs
|
2017-08-02 15:33:23 +02:00
|
|
|
|
accepts_nested_attributes_for :champs_private
|
2017-08-02 14:56:08 +02:00
|
|
|
|
|
2019-07-02 15:38:23 +02:00
|
|
|
|
include AASM
|
|
|
|
|
|
|
|
|
|
aasm whiny_persistence: true, column: :state, enum: true do
|
|
|
|
|
state :brouillon, initial: true
|
|
|
|
|
state :en_construction
|
|
|
|
|
state :en_instruction
|
|
|
|
|
state :accepte
|
|
|
|
|
state :refuse
|
|
|
|
|
state :sans_suite
|
|
|
|
|
|
|
|
|
|
event :passer_en_construction, after: :after_passer_en_construction do
|
|
|
|
|
transitions from: :brouillon, to: :en_construction
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
event :passer_en_instruction, after: :after_passer_en_instruction do
|
|
|
|
|
transitions from: :en_construction, to: :en_instruction
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
event :passer_automatiquement_en_instruction, after: :after_passer_automatiquement_en_instruction do
|
|
|
|
|
transitions from: :en_construction, to: :en_instruction
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
event :repasser_en_construction, after: :after_repasser_en_construction do
|
|
|
|
|
transitions from: :en_instruction, to: :en_construction
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
event :accepter, after: :after_accepter do
|
|
|
|
|
transitions from: :en_instruction, to: :accepte
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
event :accepter_automatiquement, after: :after_accepter_automatiquement do
|
|
|
|
|
transitions from: :en_construction, to: :accepte
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
event :refuser, after: :after_refuser do
|
|
|
|
|
transitions from: :en_instruction, to: :refuse
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
event :classer_sans_suite, after: :after_classer_sans_suite do
|
|
|
|
|
transitions from: :en_instruction, to: :sans_suite
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
event :repasser_en_instruction, after: :after_repasser_en_instruction do
|
2021-05-01 12:20:24 +02:00
|
|
|
|
transitions from: :refuse, to: :en_instruction, guard: :can_repasser_en_instruction?
|
|
|
|
|
transitions from: :sans_suite, to: :en_instruction, guard: :can_repasser_en_instruction?
|
|
|
|
|
transitions from: :accepte, to: :en_instruction, guard: :can_repasser_en_instruction?
|
2019-07-02 15:38:23 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-08-28 14:10:55 +02:00
|
|
|
|
scope :state_brouillon, -> { where(state: states.fetch(:brouillon)) }
|
|
|
|
|
scope :state_not_brouillon, -> { where.not(state: states.fetch(:brouillon)) }
|
|
|
|
|
scope :state_en_construction, -> { where(state: states.fetch(:en_construction)) }
|
|
|
|
|
scope :state_en_instruction, -> { where(state: states.fetch(:en_instruction)) }
|
2017-07-11 16:09:03 +02:00
|
|
|
|
scope :state_en_construction_ou_instruction, -> { where(state: EN_CONSTRUCTION_OU_INSTRUCTION) }
|
2018-06-13 17:32:50 +02:00
|
|
|
|
scope :state_instruction_commencee, -> { where(state: INSTRUCTION_COMMENCEE) }
|
2017-07-11 16:09:03 +02:00
|
|
|
|
scope :state_termine, -> { where(state: TERMINE) }
|
2017-05-26 18:23:16 +02:00
|
|
|
|
|
2017-06-01 11:05:51 +02:00
|
|
|
|
scope :archived, -> { where(archived: true) }
|
|
|
|
|
scope :not_archived, -> { where(archived: false) }
|
2017-05-26 18:23:16 +02:00
|
|
|
|
|
|
|
|
|
scope :order_by_updated_at, -> (order = :desc) { order(updated_at: order) }
|
2019-09-26 14:57:58 +02:00
|
|
|
|
scope :order_by_created_at, -> (order = :asc) { order(en_construction_at: order, created_at: order, id: order) }
|
|
|
|
|
scope :updated_since, -> (since) { where('dossiers.updated_at >= ?', since) }
|
|
|
|
|
scope :created_since, -> (since) { where('dossiers.en_construction_at >= ?', since) }
|
2017-05-26 18:23:16 +02:00
|
|
|
|
|
2020-10-30 15:01:13 +01:00
|
|
|
|
scope :with_type_de_champ, -> (stable_id) {
|
|
|
|
|
joins('INNER JOIN champs ON champs.dossier_id = dossiers.id INNER JOIN types_de_champ ON types_de_champ.id = champs.type_de_champ_id')
|
|
|
|
|
.where('types_de_champ.private = FALSE AND types_de_champ.stable_id = ?', stable_id)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
scope :with_type_de_champ_private, -> (stable_id) {
|
|
|
|
|
joins('INNER JOIN champs ON champs.dossier_id = dossiers.id INNER JOIN types_de_champ ON types_de_champ.id = champs.type_de_champ_id')
|
|
|
|
|
.where('types_de_champ.private = TRUE AND types_de_champ.stable_id = ?', stable_id)
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-27 11:51:31 +02:00
|
|
|
|
scope :all_state, -> { not_archived.state_not_brouillon }
|
2017-12-05 16:14:02 +01:00
|
|
|
|
scope :en_construction, -> { not_archived.state_en_construction }
|
2017-09-27 11:51:31 +02:00
|
|
|
|
scope :en_instruction, -> { not_archived.state_en_instruction }
|
|
|
|
|
scope :termine, -> { not_archived.state_termine }
|
2021-04-29 17:29:47 +02:00
|
|
|
|
scope :processed_in_month, -> (month) do
|
|
|
|
|
state_termine
|
|
|
|
|
.joins(:traitements)
|
|
|
|
|
.where(traitements: { processed_at: month.beginning_of_month..month.end_of_month })
|
|
|
|
|
end
|
|
|
|
|
scope :downloadable_sorted, -> {
|
2019-07-30 15:39:20 +02:00
|
|
|
|
state_not_brouillon
|
|
|
|
|
.includes(
|
|
|
|
|
:user,
|
|
|
|
|
:individual,
|
2019-08-06 11:02:54 +02:00
|
|
|
|
:followers_instructeurs,
|
2020-07-08 11:49:28 +02:00
|
|
|
|
:traitements,
|
2021-03-25 12:56:42 +01:00
|
|
|
|
:groupe_instructeur,
|
|
|
|
|
procedure: [
|
|
|
|
|
:groupe_instructeurs,
|
|
|
|
|
:draft_types_de_champ,
|
|
|
|
|
:draft_types_de_champ_private,
|
|
|
|
|
:published_types_de_champ,
|
|
|
|
|
:published_types_de_champ_private
|
|
|
|
|
],
|
|
|
|
|
avis: [:claimant, :expert],
|
2019-07-30 15:39:20 +02:00
|
|
|
|
etablissement: :champ,
|
|
|
|
|
champs: {
|
2020-07-16 14:52:43 +02:00
|
|
|
|
type_de_champ: [],
|
2019-07-30 15:39:20 +02:00
|
|
|
|
etablissement: :champ,
|
2020-05-13 16:24:35 +02:00
|
|
|
|
piece_justificative_file_attachment: :blob,
|
|
|
|
|
champs: [
|
2020-07-16 14:52:43 +02:00
|
|
|
|
type_de_champ: [],
|
2020-05-13 16:24:35 +02:00
|
|
|
|
piece_justificative_file_attachment: :blob
|
|
|
|
|
]
|
2019-07-30 15:39:20 +02:00
|
|
|
|
},
|
|
|
|
|
champs_private: {
|
2020-07-16 14:52:43 +02:00
|
|
|
|
type_de_champ: [],
|
2019-07-30 15:39:20 +02:00
|
|
|
|
etablissement: :champ,
|
2020-05-13 16:24:35 +02:00
|
|
|
|
piece_justificative_file_attachment: :blob,
|
|
|
|
|
champs: [
|
2020-07-16 14:52:43 +02:00
|
|
|
|
type_de_champ: [],
|
2020-05-13 16:24:35 +02:00
|
|
|
|
piece_justificative_file_attachment: :blob
|
|
|
|
|
]
|
2021-03-25 12:56:42 +01:00
|
|
|
|
}
|
2019-07-30 15:39:20 +02:00
|
|
|
|
).order(en_construction_at: 'asc')
|
|
|
|
|
}
|
2017-09-27 11:51:31 +02:00
|
|
|
|
scope :en_cours, -> { not_archived.state_en_construction_ou_instruction }
|
2017-10-10 18:35:00 +02:00
|
|
|
|
scope :without_followers, -> { left_outer_joins(:follows).where(follows: { id: nil }) }
|
2018-08-30 11:51:35 +02:00
|
|
|
|
scope :with_champs, -> { includes(champs: :type_de_champ) }
|
2018-11-01 14:04:32 +01:00
|
|
|
|
scope :for_api, -> {
|
2019-06-25 17:12:44 +02:00
|
|
|
|
includes(commentaires: { piece_jointe_attachment: :blob },
|
2018-11-01 14:04:32 +01:00
|
|
|
|
champs: [
|
|
|
|
|
:geo_areas,
|
|
|
|
|
:etablissement,
|
2019-07-11 10:28:44 +02:00
|
|
|
|
piece_justificative_file_attachment: :blob,
|
|
|
|
|
champs: [
|
|
|
|
|
piece_justificative_file_attachment: :blob
|
|
|
|
|
]
|
2018-11-01 14:04:32 +01:00
|
|
|
|
],
|
|
|
|
|
champs_private: [
|
|
|
|
|
:geo_areas,
|
|
|
|
|
:etablissement,
|
2019-07-11 10:28:44 +02:00
|
|
|
|
piece_justificative_file_attachment: :blob,
|
|
|
|
|
champs: [
|
|
|
|
|
piece_justificative_file_attachment: :blob
|
|
|
|
|
]
|
2018-11-01 14:04:32 +01:00
|
|
|
|
],
|
2019-07-31 16:09:28 +02:00
|
|
|
|
justificatif_motivation_attachment: :blob,
|
|
|
|
|
attestation: [],
|
|
|
|
|
avis: { piece_justificative_file_attachment: :blob },
|
2020-07-08 11:49:28 +02:00
|
|
|
|
traitements: [],
|
2018-11-01 14:04:32 +01:00
|
|
|
|
etablissement: [],
|
|
|
|
|
individual: [],
|
|
|
|
|
user: [])
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-04 12:59:10 +01:00
|
|
|
|
scope :with_notifiable_procedure, -> (opts = { notify_on_closed: false }) do
|
|
|
|
|
states = opts[:notify_on_closed] ? [:publiee, :close, :depubliee] : [:publiee, :depubliee]
|
2020-03-24 12:50:59 +01:00
|
|
|
|
joins(:procedure)
|
2020-04-29 19:18:12 +02:00
|
|
|
|
.where(procedures: { aasm_state: states })
|
2021-05-01 12:20:24 +02:00
|
|
|
|
.where.not(user_id: nil)
|
2020-03-24 12:50:59 +01:00
|
|
|
|
end
|
|
|
|
|
|
2019-12-03 10:31:10 +01:00
|
|
|
|
scope :brouillon_close_to_expiration, -> do
|
2020-03-24 12:50:59 +01:00
|
|
|
|
state_brouillon
|
2019-12-03 10:31:10 +01:00
|
|
|
|
.joins(:procedure)
|
2021-04-28 12:50:58 +02:00
|
|
|
|
.where("dossiers.created_at + dossiers.conservation_extension + (duree_conservation_dossiers_dans_ds * INTERVAL '1 month') - INTERVAL :expires_in < :now", { now: Time.zone.now, expires_in: INTERVAL_BEFORE_EXPIRATION })
|
2020-02-26 17:36:24 +01:00
|
|
|
|
end
|
|
|
|
|
scope :en_construction_close_to_expiration, -> do
|
2020-03-24 12:50:59 +01:00
|
|
|
|
state_en_construction
|
2020-02-26 17:36:24 +01:00
|
|
|
|
.joins(:procedure)
|
2021-04-28 12:50:58 +02:00
|
|
|
|
.where("dossiers.en_construction_at + dossiers.conservation_extension + (duree_conservation_dossiers_dans_ds * INTERVAL '1 month') - INTERVAL :expires_in < :now", { now: Time.zone.now, expires_in: INTERVAL_BEFORE_EXPIRATION })
|
2019-12-03 10:31:10 +01:00
|
|
|
|
end
|
2020-02-26 17:36:24 +01:00
|
|
|
|
scope :en_instruction_close_to_expiration, -> do
|
2020-03-24 12:50:59 +01:00
|
|
|
|
state_en_instruction
|
2020-02-26 17:36:24 +01:00
|
|
|
|
.joins(:procedure)
|
2020-03-25 10:38:17 +01:00
|
|
|
|
.where("dossiers.en_instruction_at + (duree_conservation_dossiers_dans_ds * INTERVAL '1 month') - INTERVAL :expires_in < :now", { now: Time.zone.now, expires_in: INTERVAL_BEFORE_EXPIRATION })
|
2020-02-26 17:36:24 +01:00
|
|
|
|
end
|
2021-04-28 12:50:58 +02:00
|
|
|
|
scope :termine_close_to_expiration, -> do
|
|
|
|
|
state_termine
|
|
|
|
|
.joins(:procedure)
|
|
|
|
|
.where(id: Traitement.termine_close_to_expiration.pluck(:dossier_id).uniq)
|
2020-04-02 15:04:12 +02:00
|
|
|
|
end
|
2020-02-26 17:36:24 +01:00
|
|
|
|
|
2020-03-24 12:50:59 +01:00
|
|
|
|
scope :brouillon_expired, -> do
|
|
|
|
|
state_brouillon
|
2020-03-25 10:38:17 +01:00
|
|
|
|
.where("brouillon_close_to_expiration_notice_sent_at + INTERVAL :expires_in < :now", { now: Time.zone.now, expires_in: INTERVAL_EXPIRATION })
|
2020-03-24 12:50:59 +01:00
|
|
|
|
end
|
|
|
|
|
scope :en_construction_expired, -> do
|
|
|
|
|
state_en_construction
|
2020-03-25 10:38:17 +01:00
|
|
|
|
.where("en_construction_close_to_expiration_notice_sent_at + INTERVAL :expires_in < :now", { now: Time.zone.now, expires_in: INTERVAL_EXPIRATION })
|
2020-03-24 12:50:59 +01:00
|
|
|
|
end
|
2020-04-02 15:04:12 +02:00
|
|
|
|
scope :termine_expired, -> do
|
|
|
|
|
state_termine
|
|
|
|
|
.where("termine_close_to_expiration_notice_sent_at + INTERVAL :expires_in < :now", { now: Time.zone.now, expires_in: INTERVAL_EXPIRATION })
|
|
|
|
|
end
|
2020-02-26 17:36:24 +01:00
|
|
|
|
|
|
|
|
|
scope :without_brouillon_expiration_notice_sent, -> { where(brouillon_close_to_expiration_notice_sent_at: nil) }
|
|
|
|
|
scope :without_en_construction_expiration_notice_sent, -> { where(en_construction_close_to_expiration_notice_sent_at: nil) }
|
2020-04-02 15:04:12 +02:00
|
|
|
|
scope :without_termine_expiration_notice_sent, -> { where(termine_close_to_expiration_notice_sent_at: nil) }
|
2019-12-03 10:31:10 +01:00
|
|
|
|
|
2020-03-19 13:11:45 +01:00
|
|
|
|
scope :discarded_brouillon_expired, -> do
|
|
|
|
|
with_discarded
|
|
|
|
|
.discarded
|
|
|
|
|
.state_brouillon
|
2020-11-26 15:13:32 +01:00
|
|
|
|
.where('hidden_at < ?', 1.week.ago)
|
2020-03-19 13:11:45 +01:00
|
|
|
|
end
|
|
|
|
|
scope :discarded_en_construction_expired, -> do
|
|
|
|
|
with_discarded
|
|
|
|
|
.discarded
|
|
|
|
|
.state_en_construction
|
2020-11-26 15:13:32 +01:00
|
|
|
|
.where('dossiers.hidden_at < ?', 1.week.ago)
|
|
|
|
|
end
|
|
|
|
|
scope :discarded_termine_expired, -> do
|
|
|
|
|
with_discarded
|
|
|
|
|
.discarded
|
|
|
|
|
.state_termine
|
|
|
|
|
.where('dossiers.hidden_at < ?', 1.week.ago)
|
2020-03-19 13:11:45 +01:00
|
|
|
|
end
|
|
|
|
|
|
2020-03-25 04:09:14 +01:00
|
|
|
|
scope :brouillon_near_procedure_closing_date, -> do
|
2020-02-05 22:10:22 +01:00
|
|
|
|
# select users who have submitted dossier for the given 'procedures.id'
|
|
|
|
|
users_who_submitted =
|
|
|
|
|
state_not_brouillon
|
2021-03-09 11:21:25 +01:00
|
|
|
|
.joins(:revision)
|
|
|
|
|
.where("procedure_revisions.procedure_id = procedures.id")
|
2020-02-05 22:10:22 +01:00
|
|
|
|
.select(:user_id)
|
|
|
|
|
# select dossier in brouillon where procedure closes in two days and for which the user has not submitted a Dossier
|
2020-04-29 19:18:12 +02:00
|
|
|
|
state_brouillon
|
|
|
|
|
.with_notifiable_procedure
|
2020-03-25 10:38:17 +01:00
|
|
|
|
.where("procedures.auto_archive_on - INTERVAL :before_closing = :now", { now: Time.zone.today, before_closing: INTERVAL_BEFORE_CLOSING })
|
2020-02-05 22:10:22 +01:00
|
|
|
|
.where.not(user: users_who_submitted)
|
|
|
|
|
end
|
|
|
|
|
|
2020-10-01 12:41:57 +02:00
|
|
|
|
scope :for_api_v2, -> { includes(procedure: [:administrateurs, :attestation_template], etablissement: [], individual: [], traitements: []) }
|
2019-09-18 13:07:30 +02:00
|
|
|
|
|
2020-09-18 15:40:26 +02:00
|
|
|
|
scope :with_notifications, -> do
|
2020-07-30 11:05:39 +02:00
|
|
|
|
joins(:follows)
|
|
|
|
|
.where('last_champ_updated_at > follows.demande_seen_at' \
|
|
|
|
|
' OR groupe_instructeur_updated_at > follows.demande_seen_at' \
|
|
|
|
|
' OR last_champ_private_updated_at > follows.annotations_privees_seen_at' \
|
|
|
|
|
' OR last_avis_updated_at > follows.avis_seen_at' \
|
|
|
|
|
' OR last_commentaire_updated_at > follows.messagerie_seen_at')
|
|
|
|
|
.distinct
|
2019-09-23 14:38:12 +02:00
|
|
|
|
end
|
|
|
|
|
|
2016-08-30 11:18:43 +02:00
|
|
|
|
accepts_nested_attributes_for :individual
|
|
|
|
|
|
2018-04-23 11:57:38 +02:00
|
|
|
|
delegate :siret, :siren, to: :etablissement, allow_nil: true
|
2016-08-01 18:10:32 +02:00
|
|
|
|
delegate :france_connect_information, to: :user
|
2015-08-13 15:55:19 +02:00
|
|
|
|
|
2021-03-09 11:21:25 +01:00
|
|
|
|
before_save :build_default_champs, if: Proc.new { revision_id_was.nil? }
|
2018-07-25 19:34:06 +02:00
|
|
|
|
before_save :update_search_terms
|
2017-03-01 09:51:55 +01:00
|
|
|
|
|
2021-04-29 19:10:22 +02:00
|
|
|
|
after_save :send_dossier_en_instruction
|
2018-03-01 17:04:05 +01:00
|
|
|
|
after_save :send_web_hook
|
2020-09-28 17:38:49 +02:00
|
|
|
|
after_create_commit :send_draft_notification_email
|
2015-08-24 15:23:07 +02:00
|
|
|
|
|
2015-09-24 11:17:17 +02:00
|
|
|
|
validates :user, presence: true
|
2020-08-27 19:55:10 +02:00
|
|
|
|
validates :individual, presence: true, if: -> { revision.procedure.for_individual? }
|
2021-03-09 11:21:30 +01:00
|
|
|
|
validates :groupe_instructeur, presence: true, if: -> { !brouillon? }
|
2015-08-21 11:37:13 +02:00
|
|
|
|
|
2021-05-01 12:20:24 +02:00
|
|
|
|
def user_deleted?
|
|
|
|
|
user_id.nil?
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def user_email_for(use)
|
|
|
|
|
if user_deleted?
|
|
|
|
|
if use == :display
|
|
|
|
|
deleted_user_email_never_send
|
|
|
|
|
else
|
|
|
|
|
raise "Can not send email to discarded user"
|
|
|
|
|
end
|
|
|
|
|
else
|
|
|
|
|
user.email
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2020-07-02 11:02:50 +02:00
|
|
|
|
def motivation
|
|
|
|
|
return nil if !termine?
|
|
|
|
|
traitements.any? ? traitements.last.motivation : read_attribute(:motivation)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def processed_at
|
|
|
|
|
return nil if !termine?
|
|
|
|
|
traitements.any? ? traitements.last.processed_at : read_attribute(:processed_at)
|
|
|
|
|
end
|
|
|
|
|
|
2018-07-25 19:34:06 +02:00
|
|
|
|
def update_search_terms
|
|
|
|
|
self.search_terms = [
|
|
|
|
|
user&.email,
|
2018-08-22 17:48:25 +02:00
|
|
|
|
*champs.flat_map(&:search_terms),
|
2018-07-25 19:34:06 +02:00
|
|
|
|
*etablissement&.search_terms,
|
|
|
|
|
individual&.nom,
|
|
|
|
|
individual&.prenom
|
|
|
|
|
].compact.join(' ')
|
2018-08-22 17:48:25 +02:00
|
|
|
|
self.private_search_terms = champs_private.flat_map(&:search_terms).compact.join(' ')
|
2018-07-25 19:34:06 +02:00
|
|
|
|
end
|
|
|
|
|
|
2015-11-03 15:27:49 +01:00
|
|
|
|
def build_default_champs
|
2020-08-27 19:55:10 +02:00
|
|
|
|
revision.build_champs.each do |champ|
|
2019-01-30 16:14:15 +01:00
|
|
|
|
champs << champ
|
2018-08-22 17:16:06 +02:00
|
|
|
|
end
|
2020-08-27 19:55:10 +02:00
|
|
|
|
revision.build_champs_private.each do |champ|
|
2019-02-07 10:44:15 +01:00
|
|
|
|
champs_private << champ
|
2015-11-03 15:27:49 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2016-08-30 11:18:43 +02:00
|
|
|
|
def build_default_individual
|
2020-01-07 17:59:11 +01:00
|
|
|
|
if procedure.for_individual? && individual.blank?
|
|
|
|
|
self.individual = if france_connect_information.present?
|
|
|
|
|
Individual.from_france_connect(france_connect_information)
|
|
|
|
|
else
|
|
|
|
|
Individual.new
|
|
|
|
|
end
|
2016-12-21 15:39:41 +01:00
|
|
|
|
end
|
2016-08-30 11:18:43 +02:00
|
|
|
|
end
|
|
|
|
|
|
2017-07-11 15:58:31 +02:00
|
|
|
|
def en_construction_ou_instruction?
|
|
|
|
|
EN_CONSTRUCTION_OU_INSTRUCTION.include?(state)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def termine?
|
|
|
|
|
TERMINE.include?(state)
|
|
|
|
|
end
|
|
|
|
|
|
2018-06-13 13:58:14 +02:00
|
|
|
|
def instruction_commencee?
|
|
|
|
|
INSTRUCTION_COMMENCEE.include?(state)
|
|
|
|
|
end
|
|
|
|
|
|
2016-06-20 13:57:57 +02:00
|
|
|
|
def reset!
|
2016-10-05 14:28:10 +02:00
|
|
|
|
etablissement.destroy
|
2016-06-20 13:57:57 +02:00
|
|
|
|
|
2018-02-08 17:13:15 +01:00
|
|
|
|
update_columns(autorisation_donnees: false)
|
2016-06-20 13:57:57 +02:00
|
|
|
|
end
|
2016-07-19 16:44:26 +02:00
|
|
|
|
|
2016-09-13 12:17:56 +02:00
|
|
|
|
def read_only?
|
2017-12-04 20:23:57 +01:00
|
|
|
|
en_instruction? || accepte? || refuse? || sans_suite?
|
2016-09-13 12:17:56 +02:00
|
|
|
|
end
|
|
|
|
|
|
2018-06-25 18:07:16 +02:00
|
|
|
|
def can_transition_to_en_construction?
|
2019-12-04 15:45:06 +01:00
|
|
|
|
brouillon? && procedure.dossier_can_transition_to_en_construction?
|
2018-06-25 18:07:16 +02:00
|
|
|
|
end
|
|
|
|
|
|
2021-05-01 12:20:24 +02:00
|
|
|
|
def can_repasser_en_instruction?
|
|
|
|
|
termine? && !user_deleted?
|
|
|
|
|
end
|
|
|
|
|
|
2019-02-06 18:20:35 +01:00
|
|
|
|
def can_be_updated_by_user?
|
2018-06-08 15:51:46 +02:00
|
|
|
|
brouillon? || en_construction?
|
|
|
|
|
end
|
|
|
|
|
|
2019-02-06 19:11:55 +01:00
|
|
|
|
def can_be_deleted_by_user?
|
|
|
|
|
brouillon? || en_construction?
|
|
|
|
|
end
|
|
|
|
|
|
2020-03-25 18:08:32 +01:00
|
|
|
|
def can_be_deleted_by_manager?
|
|
|
|
|
kept? && can_be_deleted_by_user?
|
|
|
|
|
end
|
|
|
|
|
|
2019-03-12 15:41:47 +01:00
|
|
|
|
def messagerie_available?
|
2021-05-01 12:20:24 +02:00
|
|
|
|
!brouillon? && !user_deleted? && !archived
|
2019-03-12 15:41:47 +01:00
|
|
|
|
end
|
|
|
|
|
|
2020-03-19 14:47:09 +01:00
|
|
|
|
def en_construction_close_to_expiration?
|
2021-04-28 12:50:58 +02:00
|
|
|
|
self.class.en_construction_close_to_expiration.exists?(id: self)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def brouillon_close_to_expiration?
|
|
|
|
|
self.class.brouillon_close_to_expiration.exists?(id: self)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def close_to_expiration?
|
|
|
|
|
en_construction_close_to_expiration? || brouillon_close_to_expiration?
|
2020-03-19 14:47:09 +01:00
|
|
|
|
end
|
|
|
|
|
|
2021-03-03 18:21:00 +01:00
|
|
|
|
def show_groupe_instructeur_details?
|
2021-03-09 11:21:30 +01:00
|
|
|
|
procedure.routee? && groupe_instructeur.present? && (!procedure.feature_enabled?(:procedure_routage_api) || !defaut_groupe_instructeur?)
|
2021-03-03 18:21:00 +01:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def show_groupe_instructeur_selector?
|
|
|
|
|
procedure.routee? && !procedure.feature_enabled?(:procedure_routage_api)
|
|
|
|
|
end
|
|
|
|
|
|
2020-02-26 12:30:52 +01:00
|
|
|
|
def assign_to_groupe_instructeur(groupe_instructeur, author = nil)
|
2021-03-09 11:21:25 +01:00
|
|
|
|
if (groupe_instructeur.nil? || groupe_instructeur.procedure == procedure) && self.groupe_instructeur != groupe_instructeur
|
2020-02-26 22:17:55 +01:00
|
|
|
|
if update(groupe_instructeur: groupe_instructeur, groupe_instructeur_updated_at: Time.zone.now)
|
2020-02-26 12:30:52 +01:00
|
|
|
|
unfollow_stale_instructeurs
|
|
|
|
|
|
|
|
|
|
if author.present?
|
|
|
|
|
log_dossier_operation(author, :changer_groupe_instructeur, self)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
true
|
|
|
|
|
end
|
|
|
|
|
else
|
|
|
|
|
false
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2020-09-09 15:04:58 +02:00
|
|
|
|
def archiver!(author)
|
|
|
|
|
update!(archived: true)
|
|
|
|
|
log_dossier_operation(author, :archiver)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def desarchiver!(author)
|
|
|
|
|
update!(archived: false)
|
|
|
|
|
log_dossier_operation(author, :desarchiver)
|
|
|
|
|
end
|
|
|
|
|
|
2017-04-18 17:31:01 +02:00
|
|
|
|
def text_summary
|
|
|
|
|
if brouillon?
|
|
|
|
|
parts = [
|
2018-09-05 14:48:42 +02:00
|
|
|
|
"Dossier en brouillon répondant à la démarche ",
|
2017-04-18 17:31:01 +02:00
|
|
|
|
procedure.libelle,
|
2017-05-02 09:48:25 +02:00
|
|
|
|
" gérée par l'organisme ",
|
2019-02-05 11:29:49 +01:00
|
|
|
|
procedure.organisation_name
|
2017-04-18 17:31:01 +02:00
|
|
|
|
]
|
|
|
|
|
else
|
|
|
|
|
parts = [
|
|
|
|
|
"Dossier déposé le ",
|
2018-10-25 22:25:43 +02:00
|
|
|
|
en_construction_at.strftime("%d/%m/%Y"),
|
2018-09-05 14:48:42 +02:00
|
|
|
|
" sur la démarche ",
|
2017-04-18 17:31:01 +02:00
|
|
|
|
procedure.libelle,
|
2017-05-02 09:48:25 +02:00
|
|
|
|
" gérée par l'organisme ",
|
2019-02-05 11:29:49 +01:00
|
|
|
|
procedure.organisation_name
|
2017-04-18 17:31:01 +02:00
|
|
|
|
]
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
parts.join
|
|
|
|
|
end
|
|
|
|
|
|
2021-02-25 10:10:24 +01:00
|
|
|
|
def avis_for_instructeur(instructeur)
|
2019-08-06 11:02:54 +02:00
|
|
|
|
if instructeur.dossiers.include?(self)
|
2017-09-08 11:52:20 +02:00
|
|
|
|
avis.order(created_at: :asc)
|
|
|
|
|
else
|
|
|
|
|
avis
|
|
|
|
|
.where(confidentiel: false)
|
2021-04-07 19:53:18 +02:00
|
|
|
|
.or(avis.where(claimant: instructeur))
|
2017-09-08 11:52:20 +02:00
|
|
|
|
.order(created_at: :asc)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2021-02-25 10:10:24 +01:00
|
|
|
|
def avis_for_expert(expert)
|
|
|
|
|
if expert.dossiers.include?(self)
|
|
|
|
|
avis.order(created_at: :asc)
|
|
|
|
|
else
|
|
|
|
|
avis
|
|
|
|
|
.where(confidentiel: false)
|
2021-04-07 19:53:18 +02:00
|
|
|
|
.or(avis.where(claimant: expert))
|
2021-02-25 10:10:24 +01:00
|
|
|
|
.order(created_at: :asc)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2017-11-17 23:40:51 +01:00
|
|
|
|
def owner_name
|
2018-04-23 11:57:38 +02:00
|
|
|
|
if etablissement.present?
|
|
|
|
|
etablissement.entreprise_raison_sociale
|
2017-11-17 23:40:51 +01:00
|
|
|
|
elsif individual.present?
|
|
|
|
|
"#{individual.nom} #{individual.prenom}"
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2020-03-24 12:50:59 +01:00
|
|
|
|
def log_operations?
|
|
|
|
|
!procedure.brouillon?
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def keep_track_on_deletion?
|
|
|
|
|
!procedure.brouillon?
|
|
|
|
|
end
|
|
|
|
|
|
2018-10-31 13:28:39 +01:00
|
|
|
|
def expose_legacy_carto_api?
|
|
|
|
|
procedure.expose_legacy_carto_api?
|
|
|
|
|
end
|
|
|
|
|
|
2018-10-10 19:58:51 +02:00
|
|
|
|
def geo_position
|
|
|
|
|
if etablissement.present?
|
2020-01-14 19:00:17 +01:00
|
|
|
|
point = Geocoder.search(etablissement.geo_adresse).first
|
2018-10-10 19:58:51 +02:00
|
|
|
|
end
|
|
|
|
|
|
2020-04-16 10:22:07 +02:00
|
|
|
|
lon = Champs::CarteChamp::DEFAULT_LON.to_s
|
|
|
|
|
lat = Champs::CarteChamp::DEFAULT_LAT.to_s
|
2018-10-10 19:58:51 +02:00
|
|
|
|
zoom = "13"
|
|
|
|
|
|
|
|
|
|
if point.present?
|
2020-01-14 19:00:17 +01:00
|
|
|
|
lat, lon = point.coordinates.map(&:to_s)
|
2018-10-10 19:58:51 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
{ lon: lon, lat: lat, zoom: zoom }
|
|
|
|
|
end
|
|
|
|
|
|
2018-04-06 13:09:37 +02:00
|
|
|
|
def unspecified_attestation_champs
|
|
|
|
|
attestation_template = procedure.attestation_template
|
|
|
|
|
|
2018-04-06 16:21:48 +02:00
|
|
|
|
if attestation_template&.activated?
|
2018-04-06 13:09:37 +02:00
|
|
|
|
attestation_template.unspecified_champs_for_dossier(self)
|
|
|
|
|
else
|
|
|
|
|
[]
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2017-06-08 14:04:47 +02:00
|
|
|
|
def build_attestation
|
2018-04-06 16:21:48 +02:00
|
|
|
|
if procedure.attestation_template&.activated?
|
2017-06-08 14:04:47 +02:00
|
|
|
|
procedure.attestation_template.attestation_for(self)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2020-03-19 11:53:25 +01:00
|
|
|
|
def expired_keep_track!
|
2020-03-24 12:50:59 +01:00
|
|
|
|
if keep_track_on_deletion?
|
|
|
|
|
DeletedDossier.create_from_dossier(self, :expired)
|
|
|
|
|
log_automatic_dossier_operation(:supprimer, self)
|
|
|
|
|
end
|
2020-03-19 11:53:25 +01:00
|
|
|
|
end
|
2018-07-23 15:06:06 +02:00
|
|
|
|
|
2020-11-26 15:13:32 +01:00
|
|
|
|
def discard_and_keep_track!(author, reason)
|
2020-11-17 13:25:35 +01:00
|
|
|
|
if keep_track_on_deletion?
|
2020-11-26 15:13:32 +01:00
|
|
|
|
if en_construction?
|
|
|
|
|
deleted_dossier = DeletedDossier.create_from_dossier(self, reason)
|
2020-11-17 13:25:35 +01:00
|
|
|
|
|
2020-11-26 15:13:32 +01:00
|
|
|
|
administration_emails = followers_instructeurs.present? ? followers_instructeurs.map(&:email) : procedure.administrateurs.map(&:email)
|
|
|
|
|
administration_emails.each do |email|
|
|
|
|
|
DossierMailer.notify_deletion_to_administration(deleted_dossier, email).deliver_later
|
|
|
|
|
end
|
2021-05-01 12:20:24 +02:00
|
|
|
|
|
|
|
|
|
if !user_deleted?
|
|
|
|
|
DossierMailer.notify_deletion_to_user(deleted_dossier, user_email_for(:notification)).deliver_later
|
|
|
|
|
end
|
2020-03-19 11:53:25 +01:00
|
|
|
|
|
2020-11-26 15:13:32 +01:00
|
|
|
|
log_dossier_operation(author, :supprimer, self)
|
|
|
|
|
elsif termine?
|
|
|
|
|
deleted_dossier = DeletedDossier.create_from_dossier(self, reason)
|
|
|
|
|
|
2021-05-01 12:20:24 +02:00
|
|
|
|
if !user_deleted?
|
|
|
|
|
DossierMailer.notify_instructeur_deletion_to_user(deleted_dossier, user_email_for(:notification)).deliver_later
|
|
|
|
|
end
|
2020-03-19 11:53:25 +01:00
|
|
|
|
|
2020-11-26 15:13:32 +01:00
|
|
|
|
log_dossier_operation(author, :supprimer, self)
|
|
|
|
|
end
|
2018-07-23 15:06:06 +02:00
|
|
|
|
end
|
2019-07-15 16:00:49 +02:00
|
|
|
|
|
2020-03-19 11:53:25 +01:00
|
|
|
|
discard!
|
2018-05-30 11:36:48 +02:00
|
|
|
|
end
|
|
|
|
|
|
2020-03-26 17:35:50 +01:00
|
|
|
|
def restore(author, only_discarded_with_procedure = false)
|
|
|
|
|
if discarded?
|
|
|
|
|
deleted_dossier = DeletedDossier.find_by(dossier_id: id)
|
|
|
|
|
|
|
|
|
|
if !only_discarded_with_procedure || deleted_dossier&.procedure_removed?
|
|
|
|
|
if undiscard && keep_track_on_deletion? && en_construction?
|
|
|
|
|
deleted_dossier&.destroy
|
|
|
|
|
log_dossier_operation(author, :restaurer, self)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2020-07-01 17:31:08 +02:00
|
|
|
|
def after_passer_en_construction
|
2021-04-28 12:50:58 +02:00
|
|
|
|
update!(conservation_extension: 0.days)
|
2020-07-01 17:31:08 +02:00
|
|
|
|
update!(en_construction_at: Time.zone.now) if self.en_construction_at.nil?
|
|
|
|
|
end
|
|
|
|
|
|
2019-08-06 11:02:54 +02:00
|
|
|
|
def after_passer_en_instruction(instructeur)
|
|
|
|
|
instructeur.follow(self)
|
2018-11-26 21:29:06 +01:00
|
|
|
|
|
2020-07-01 17:31:08 +02:00
|
|
|
|
update!(en_instruction_at: Time.zone.now) if self.en_instruction_at.nil?
|
2019-08-06 11:02:54 +02:00
|
|
|
|
log_dossier_operation(instructeur, :passer_en_instruction)
|
2018-11-26 19:12:56 +01:00
|
|
|
|
end
|
|
|
|
|
|
2019-07-02 15:38:23 +02:00
|
|
|
|
def after_passer_automatiquement_en_instruction
|
2020-07-01 17:31:08 +02:00
|
|
|
|
update!(en_instruction_at: Time.zone.now) if self.en_instruction_at.nil?
|
2019-05-02 16:22:16 +02:00
|
|
|
|
log_automatic_dossier_operation(:passer_en_instruction)
|
2019-01-10 17:23:48 +01:00
|
|
|
|
end
|
|
|
|
|
|
2019-08-06 11:02:54 +02:00
|
|
|
|
def after_repasser_en_construction(instructeur)
|
2021-04-28 12:50:58 +02:00
|
|
|
|
update!(conservation_extension: 0.days)
|
2019-08-06 11:02:54 +02:00
|
|
|
|
log_dossier_operation(instructeur, :repasser_en_construction)
|
2018-11-26 19:12:56 +01:00
|
|
|
|
end
|
|
|
|
|
|
2019-08-06 11:02:54 +02:00
|
|
|
|
def after_repasser_en_instruction(instructeur)
|
2020-05-12 19:01:25 +02:00
|
|
|
|
self.archived = false
|
2020-07-01 17:31:08 +02:00
|
|
|
|
self.en_instruction_at = Time.zone.now
|
2019-07-01 17:45:03 +02:00
|
|
|
|
attestation&.destroy
|
|
|
|
|
|
2019-07-02 15:38:23 +02:00
|
|
|
|
save!
|
|
|
|
|
DossierMailer.notify_revert_to_instruction(self).deliver_later
|
2019-08-06 11:02:54 +02:00
|
|
|
|
log_dossier_operation(instructeur, :repasser_en_instruction)
|
2019-07-01 17:45:03 +02:00
|
|
|
|
end
|
|
|
|
|
|
2019-08-06 11:02:54 +02:00
|
|
|
|
def after_accepter(instructeur, motivation, justificatif = nil)
|
2020-07-07 10:43:07 +02:00
|
|
|
|
self.traitements.build(state: Dossier.states.fetch(:accepte), instructeur_email: instructeur.email, motivation: motivation, processed_at: Time.zone.now)
|
2019-07-02 15:38:23 +02:00
|
|
|
|
|
2019-02-18 17:52:15 +01:00
|
|
|
|
if justificatif
|
|
|
|
|
self.justificatif_motivation.attach(justificatif)
|
|
|
|
|
end
|
2018-11-26 19:12:56 +01:00
|
|
|
|
|
|
|
|
|
if attestation.nil?
|
2019-07-02 15:38:23 +02:00
|
|
|
|
self.attestation = build_attestation
|
2018-11-26 19:12:56 +01:00
|
|
|
|
end
|
|
|
|
|
|
2019-07-02 15:38:23 +02:00
|
|
|
|
save!
|
2020-12-08 15:57:48 +01:00
|
|
|
|
remove_titres_identite!
|
2021-04-29 19:10:22 +02:00
|
|
|
|
NotificationMailer.send_accepte_notification(self).deliver_later
|
2021-04-09 09:55:36 +02:00
|
|
|
|
send_dossier_decision_to_experts(self)
|
2019-08-06 11:02:54 +02:00
|
|
|
|
log_dossier_operation(instructeur, :accepter, self)
|
2018-11-26 19:12:56 +01:00
|
|
|
|
end
|
|
|
|
|
|
2019-07-02 15:38:23 +02:00
|
|
|
|
def after_accepter_automatiquement
|
2020-07-07 10:43:07 +02:00
|
|
|
|
self.traitements.build(state: Dossier.states.fetch(:accepte), instructeur_email: nil, motivation: nil, processed_at: Time.zone.now)
|
2019-01-16 11:00:25 +01:00
|
|
|
|
self.en_instruction_at ||= Time.zone.now
|
|
|
|
|
|
|
|
|
|
if attestation.nil?
|
2019-07-02 15:38:23 +02:00
|
|
|
|
self.attestation = build_attestation
|
2019-01-16 11:00:25 +01:00
|
|
|
|
end
|
|
|
|
|
|
2019-07-02 15:38:23 +02:00
|
|
|
|
save!
|
2020-12-08 15:57:48 +01:00
|
|
|
|
remove_titres_identite!
|
2021-04-29 19:10:22 +02:00
|
|
|
|
NotificationMailer.send_accepte_notification(self).deliver_later
|
2019-05-02 16:22:16 +02:00
|
|
|
|
log_automatic_dossier_operation(:accepter, self)
|
2019-01-16 11:00:25 +01:00
|
|
|
|
end
|
|
|
|
|
|
2019-08-06 11:02:54 +02:00
|
|
|
|
def after_refuser(instructeur, motivation, justificatif = nil)
|
2020-07-07 10:43:07 +02:00
|
|
|
|
self.traitements.build(state: Dossier.states.fetch(:refuse), instructeur_email: instructeur.email, motivation: motivation, processed_at: Time.zone.now)
|
2019-07-02 15:38:23 +02:00
|
|
|
|
|
2019-02-18 17:52:15 +01:00
|
|
|
|
if justificatif
|
|
|
|
|
self.justificatif_motivation.attach(justificatif)
|
|
|
|
|
end
|
2018-11-26 19:12:56 +01:00
|
|
|
|
|
2019-07-02 15:38:23 +02:00
|
|
|
|
save!
|
2020-12-08 15:57:48 +01:00
|
|
|
|
remove_titres_identite!
|
2021-04-29 19:10:22 +02:00
|
|
|
|
NotificationMailer.send_refuse_notification(self).deliver_later
|
2021-04-09 09:55:36 +02:00
|
|
|
|
send_dossier_decision_to_experts(self)
|
2019-08-06 11:02:54 +02:00
|
|
|
|
log_dossier_operation(instructeur, :refuser, self)
|
2018-11-26 19:12:56 +01:00
|
|
|
|
end
|
|
|
|
|
|
2019-08-06 11:02:54 +02:00
|
|
|
|
def after_classer_sans_suite(instructeur, motivation, justificatif = nil)
|
2020-07-07 10:43:07 +02:00
|
|
|
|
self.traitements.build(state: Dossier.states.fetch(:sans_suite), instructeur_email: instructeur.email, motivation: motivation, processed_at: Time.zone.now)
|
2019-07-02 15:38:23 +02:00
|
|
|
|
|
2019-02-18 17:52:15 +01:00
|
|
|
|
if justificatif
|
|
|
|
|
self.justificatif_motivation.attach(justificatif)
|
|
|
|
|
end
|
2018-11-26 19:12:56 +01:00
|
|
|
|
|
2019-07-02 15:38:23 +02:00
|
|
|
|
save!
|
2020-12-08 15:57:48 +01:00
|
|
|
|
remove_titres_identite!
|
2021-04-29 19:10:22 +02:00
|
|
|
|
NotificationMailer.send_sans_suite_notification(self).deliver_later
|
2021-04-09 09:55:36 +02:00
|
|
|
|
send_dossier_decision_to_experts(self)
|
2019-08-06 11:02:54 +02:00
|
|
|
|
log_dossier_operation(instructeur, :classer_sans_suite, self)
|
2018-11-26 19:12:56 +01:00
|
|
|
|
end
|
|
|
|
|
|
2020-12-08 15:57:48 +01:00
|
|
|
|
def remove_titres_identite!
|
|
|
|
|
champs.filter(&:titre_identite?).map(&:piece_justificative_file).each(&:purge_later)
|
|
|
|
|
end
|
|
|
|
|
|
2019-01-30 16:14:15 +01:00
|
|
|
|
def check_mandatory_champs
|
2019-09-12 11:26:22 +02:00
|
|
|
|
(champs + champs.filter(&:repetition?).flat_map(&:champs))
|
|
|
|
|
.filter(&:mandatory_and_blank?)
|
2019-01-30 16:14:15 +01:00
|
|
|
|
.map do |champ|
|
|
|
|
|
"Le champ #{champ.libelle.truncate(200)} doit être rempli."
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2020-07-28 14:22:56 +02:00
|
|
|
|
def log_modifier_annotations!(instructeur)
|
2019-09-12 11:26:22 +02:00
|
|
|
|
champs_private.filter(&:value_previously_changed?).each do |champ|
|
2019-08-06 11:02:54 +02:00
|
|
|
|
log_dossier_operation(instructeur, :modifier_annotation, champ)
|
2019-05-02 16:23:47 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
2019-05-02 16:24:24 +02:00
|
|
|
|
|
2020-07-28 18:16:03 +02:00
|
|
|
|
def log_modifier_annotation!(champ, instructeur)
|
|
|
|
|
log_dossier_operation(instructeur, :modifier_annotation, champ)
|
|
|
|
|
end
|
|
|
|
|
|
2019-05-02 16:24:24 +02:00
|
|
|
|
def demander_un_avis!(avis)
|
|
|
|
|
log_dossier_operation(avis.claimant, :demander_un_avis, avis)
|
|
|
|
|
end
|
|
|
|
|
|
2020-09-08 15:53:07 +02:00
|
|
|
|
def spreadsheet_columns_csv(types_de_champ:, types_de_champ_private:)
|
|
|
|
|
spreadsheet_columns(with_etablissement: true, types_de_champ: types_de_champ, types_de_champ_private: types_de_champ_private)
|
2019-11-06 15:55:01 +01:00
|
|
|
|
end
|
|
|
|
|
|
2020-09-08 15:53:07 +02:00
|
|
|
|
def spreadsheet_columns_xlsx(types_de_champ:, types_de_champ_private:)
|
|
|
|
|
spreadsheet_columns(types_de_champ: types_de_champ, types_de_champ_private: types_de_champ_private)
|
2019-11-06 15:55:01 +01:00
|
|
|
|
end
|
|
|
|
|
|
2020-09-08 15:53:07 +02:00
|
|
|
|
def spreadsheet_columns_ods(types_de_champ:, types_de_champ_private:)
|
|
|
|
|
spreadsheet_columns(types_de_champ: types_de_champ, types_de_champ_private: types_de_champ_private)
|
2019-11-06 15:55:01 +01:00
|
|
|
|
end
|
|
|
|
|
|
2020-09-08 15:53:07 +02:00
|
|
|
|
def spreadsheet_columns(with_etablissement: false, types_de_champ:, types_de_champ_private:)
|
2019-09-18 21:09:52 +02:00
|
|
|
|
columns = [
|
2019-04-03 14:29:30 +02:00
|
|
|
|
['ID', id.to_s],
|
2021-05-01 12:20:24 +02:00
|
|
|
|
['Email', user_email_for(:display)]
|
2019-10-31 14:14:14 +01:00
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
if procedure.for_individual?
|
|
|
|
|
columns += [
|
|
|
|
|
['Civilité', individual&.gender],
|
|
|
|
|
['Nom', individual&.nom],
|
2020-05-13 15:57:56 +02:00
|
|
|
|
['Prénom', individual&.prenom]
|
2019-10-31 14:14:14 +01:00
|
|
|
|
]
|
2020-05-13 15:57:56 +02:00
|
|
|
|
if procedure.ask_birthday
|
|
|
|
|
columns += [['Date de naissance', individual&.birthdate]]
|
|
|
|
|
end
|
2019-11-06 15:55:01 +01:00
|
|
|
|
elsif with_etablissement
|
|
|
|
|
columns += [
|
|
|
|
|
['Établissement SIRET', etablissement&.siret],
|
|
|
|
|
['Établissement siège social', etablissement&.siege_social],
|
|
|
|
|
['Établissement NAF', etablissement&.naf],
|
|
|
|
|
['Établissement libellé NAF', etablissement&.libelle_naf],
|
|
|
|
|
['Établissement Adresse', etablissement&.adresse],
|
|
|
|
|
['Établissement numero voie', etablissement&.numero_voie],
|
|
|
|
|
['Établissement type voie', etablissement&.type_voie],
|
|
|
|
|
['Établissement nom voie', etablissement&.nom_voie],
|
|
|
|
|
['Établissement complément adresse', etablissement&.complement_adresse],
|
|
|
|
|
['Établissement code postal', etablissement&.code_postal],
|
|
|
|
|
['Établissement localité', etablissement&.localite],
|
|
|
|
|
['Établissement code INSEE localité', etablissement&.code_insee_localite],
|
|
|
|
|
['Entreprise SIREN', etablissement&.entreprise_siren],
|
|
|
|
|
['Entreprise capital social', etablissement&.entreprise_capital_social],
|
|
|
|
|
['Entreprise numero TVA intracommunautaire', etablissement&.entreprise_numero_tva_intracommunautaire],
|
|
|
|
|
['Entreprise forme juridique', etablissement&.entreprise_forme_juridique],
|
|
|
|
|
['Entreprise forme juridique code', etablissement&.entreprise_forme_juridique_code],
|
|
|
|
|
['Entreprise nom commercial', etablissement&.entreprise_nom_commercial],
|
|
|
|
|
['Entreprise raison sociale', etablissement&.entreprise_raison_sociale],
|
|
|
|
|
['Entreprise SIRET siège social', etablissement&.entreprise_siret_siege_social],
|
|
|
|
|
['Entreprise code effectif entreprise', etablissement&.entreprise_code_effectif_entreprise],
|
|
|
|
|
['Entreprise date de création', etablissement&.entreprise_date_creation],
|
|
|
|
|
['Entreprise nom', etablissement&.entreprise_nom],
|
|
|
|
|
['Entreprise prénom', etablissement&.entreprise_prenom],
|
|
|
|
|
['Association RNA', etablissement&.association_rna],
|
|
|
|
|
['Association titre', etablissement&.association_titre],
|
|
|
|
|
['Association objet', etablissement&.association_objet],
|
|
|
|
|
['Association date de création', etablissement&.association_date_creation],
|
|
|
|
|
['Association date de déclaration', etablissement&.association_date_declaration],
|
|
|
|
|
['Association date de publication', etablissement&.association_date_publication]
|
|
|
|
|
]
|
2019-10-31 14:14:14 +01:00
|
|
|
|
else
|
|
|
|
|
columns << ['Entreprise raison sociale', etablissement&.entreprise_raison_sociale]
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
columns += [
|
2019-04-03 14:29:30 +02:00
|
|
|
|
['Archivé', :archived],
|
|
|
|
|
['État du dossier', I18n.t(state, scope: [:activerecord, :attributes, :dossier, :state])],
|
|
|
|
|
['Dernière mise à jour le', :updated_at],
|
2019-09-10 14:52:05 +02:00
|
|
|
|
['Déposé le', :en_construction_at],
|
2019-07-04 15:02:25 +02:00
|
|
|
|
['Passé en instruction le', :en_instruction_at],
|
2019-04-03 14:29:30 +02:00
|
|
|
|
['Traité le', :processed_at],
|
|
|
|
|
['Motivation de la décision', :motivation],
|
2019-08-06 11:02:54 +02:00
|
|
|
|
['Instructeurs', followers_instructeurs.map(&:email).join(' ')]
|
2019-09-18 21:09:52 +02:00
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
if procedure.routee?
|
|
|
|
|
columns << ['Groupe instructeur', groupe_instructeur.label]
|
|
|
|
|
end
|
|
|
|
|
|
2020-09-08 15:53:07 +02:00
|
|
|
|
columns + champs_for_export(types_de_champ) + champs_private_for_export(types_de_champ_private)
|
2019-04-03 14:29:30 +02:00
|
|
|
|
end
|
|
|
|
|
|
2020-09-08 15:53:07 +02:00
|
|
|
|
def champs_for_export(types_de_champ)
|
|
|
|
|
# Index values by stable_id
|
|
|
|
|
values = champs.reject(&:exclude_from_export?).reduce({}) do |champs, champ|
|
|
|
|
|
champs[champ.stable_id] = champ.for_export
|
|
|
|
|
champs
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Get all the champs values for the types de champ in the final list.
|
|
|
|
|
# Dossier might not have corresponding champ – display nil.
|
|
|
|
|
types_de_champ.map do |type_de_champ|
|
|
|
|
|
[type_de_champ.libelle, values[type_de_champ.stable_id]]
|
2019-04-03 14:29:30 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2020-09-08 15:53:07 +02:00
|
|
|
|
def champs_private_for_export(types_de_champ)
|
|
|
|
|
# Index values by stable_id
|
|
|
|
|
values = champs_private.reject(&:exclude_from_export?).reduce({}) do |champs, champ|
|
|
|
|
|
champs[champ.stable_id] = champ.for_export
|
|
|
|
|
champs
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Get all the champs values for the types de champ in the final list.
|
|
|
|
|
# Dossier might not have corresponding champ – display nil.
|
|
|
|
|
types_de_champ.map do |type_de_champ|
|
|
|
|
|
[type_de_champ.libelle, values[type_de_champ.stable_id]]
|
2019-04-03 14:29:30 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-07-01 15:55:37 +02:00
|
|
|
|
def attachments_downloadable?
|
2020-06-24 13:31:36 +02:00
|
|
|
|
PiecesJustificativesService.liste_pieces_justificatives(self).present? \
|
|
|
|
|
&& PiecesJustificativesService.pieces_justificatives_total_size(self) < Dossier::TAILLE_MAX_ZIP
|
2019-07-01 15:55:37 +02:00
|
|
|
|
end
|
|
|
|
|
|
2021-02-25 10:10:24 +01:00
|
|
|
|
def linked_dossiers_for(instructeur_or_expert)
|
2020-02-11 17:30:21 +01:00
|
|
|
|
dossier_ids = champs.filter(&:dossier_link?).map(&:value).compact
|
2021-02-25 10:10:24 +01:00
|
|
|
|
instructeur_or_expert.dossiers.where(id: dossier_ids)
|
2020-02-05 17:38:24 +01:00
|
|
|
|
end
|
|
|
|
|
|
2019-11-28 18:03:23 +01:00
|
|
|
|
def hash_for_deletion_mail
|
|
|
|
|
{ id: self.id, procedure_libelle: self.procedure.libelle }
|
|
|
|
|
end
|
|
|
|
|
|
2020-04-30 15:49:43 +02:00
|
|
|
|
def geo_data?
|
|
|
|
|
geo_areas.present?
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def to_feature_collection
|
|
|
|
|
{
|
|
|
|
|
type: 'FeatureCollection',
|
|
|
|
|
id: id,
|
|
|
|
|
bbox: bounding_box,
|
|
|
|
|
features: geo_areas.map(&:to_feature)
|
|
|
|
|
}
|
|
|
|
|
end
|
|
|
|
|
|
2021-02-04 19:24:52 +01:00
|
|
|
|
def log_api_entreprise_job_exception(exception)
|
|
|
|
|
exceptions = self.api_entreprise_job_exceptions ||= []
|
|
|
|
|
exceptions << exception.inspect
|
|
|
|
|
update_column(:api_entreprise_job_exceptions, exceptions)
|
|
|
|
|
end
|
|
|
|
|
|
2017-12-05 17:43:32 +01:00
|
|
|
|
private
|
|
|
|
|
|
2021-03-03 18:21:00 +01:00
|
|
|
|
def defaut_groupe_instructeur?
|
|
|
|
|
groupe_instructeur == procedure.defaut_groupe_instructeur
|
|
|
|
|
end
|
|
|
|
|
|
2020-04-30 15:49:43 +02:00
|
|
|
|
def geo_areas
|
|
|
|
|
champs.includes(:geo_areas).flat_map(&:geo_areas) + champs_private.includes(:geo_areas).flat_map(&:geo_areas)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def bounding_box
|
|
|
|
|
factory = RGeo::Geographic.simple_mercator_factory
|
|
|
|
|
bounding_box = RGeo::Cartesian::BoundingBox.new(factory)
|
|
|
|
|
|
2020-05-05 10:26:13 +02:00
|
|
|
|
geo_areas.map(&:rgeo_geometry).compact.each do |geometry|
|
|
|
|
|
bounding_box.add(geometry)
|
2020-04-30 15:49:43 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
[bounding_box.max_point, bounding_box.min_point].compact.flat_map(&:coordinates)
|
|
|
|
|
end
|
|
|
|
|
|
2019-05-02 16:22:16 +02:00
|
|
|
|
def log_dossier_operation(author, operation, subject = nil)
|
2020-03-24 12:50:59 +01:00
|
|
|
|
if log_operations?
|
|
|
|
|
DossierOperationLog.create_and_serialize(
|
|
|
|
|
dossier: self,
|
|
|
|
|
operation: DossierOperationLog.operations.fetch(operation),
|
|
|
|
|
author: author,
|
|
|
|
|
subject: subject
|
|
|
|
|
)
|
|
|
|
|
end
|
2018-11-26 21:29:06 +01:00
|
|
|
|
end
|
|
|
|
|
|
2019-05-02 16:22:16 +02:00
|
|
|
|
def log_automatic_dossier_operation(operation, subject = nil)
|
2020-03-24 12:50:59 +01:00
|
|
|
|
if log_operations?
|
|
|
|
|
DossierOperationLog.create_and_serialize(
|
|
|
|
|
dossier: self,
|
|
|
|
|
operation: DossierOperationLog.operations.fetch(operation),
|
|
|
|
|
automatic_operation: true,
|
|
|
|
|
subject: subject
|
|
|
|
|
)
|
|
|
|
|
end
|
2019-02-13 16:13:37 +01:00
|
|
|
|
end
|
|
|
|
|
|
2021-04-29 19:10:22 +02:00
|
|
|
|
def send_dossier_en_instruction
|
2019-05-23 14:28:14 +02:00
|
|
|
|
if saved_change_to_state? && en_instruction? && !procedure.declarative_accepte?
|
2021-04-29 19:10:22 +02:00
|
|
|
|
NotificationMailer.send_en_instruction_notification(self).deliver_later
|
2017-05-26 20:01:57 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
2017-10-11 15:36:40 +02:00
|
|
|
|
|
|
|
|
|
def send_draft_notification_email
|
2019-05-23 14:28:14 +02:00
|
|
|
|
if brouillon? && !procedure.declarative?
|
2018-11-20 11:50:25 +01:00
|
|
|
|
DossierMailer.notify_new_draft(self).deliver_later
|
2017-10-11 15:36:40 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
2018-03-01 17:04:05 +01:00
|
|
|
|
|
|
|
|
|
def send_web_hook
|
2020-09-22 17:03:19 +02:00
|
|
|
|
if saved_change_to_state? && !brouillon? && procedure.web_hook_url.present?
|
2018-03-01 17:04:05 +01:00
|
|
|
|
WebHookJob.perform_later(
|
|
|
|
|
procedure,
|
|
|
|
|
self
|
|
|
|
|
)
|
|
|
|
|
end
|
|
|
|
|
end
|
2019-12-03 10:31:10 +01:00
|
|
|
|
|
2020-02-25 15:51:30 +01:00
|
|
|
|
def unfollow_stale_instructeurs
|
2020-02-26 12:30:52 +01:00
|
|
|
|
followers_instructeurs.each do |instructeur|
|
|
|
|
|
if instructeur.groupe_instructeurs.exclude?(groupe_instructeur)
|
|
|
|
|
instructeur.unfollow(self)
|
2020-04-01 11:10:25 +02:00
|
|
|
|
if kept?
|
|
|
|
|
DossierMailer.notify_groupe_instructeur_changed(instructeur, self).deliver_later
|
|
|
|
|
end
|
2020-02-25 15:51:30 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2020-02-05 22:10:22 +01:00
|
|
|
|
|
|
|
|
|
def self.notify_draft_not_submitted
|
2020-03-25 04:09:14 +01:00
|
|
|
|
brouillon_near_procedure_closing_date
|
|
|
|
|
.includes(:user)
|
2020-02-05 22:10:22 +01:00
|
|
|
|
.find_each do |dossier|
|
2020-03-19 03:46:12 +01:00
|
|
|
|
DossierMailer.notify_brouillon_not_submitted(dossier).deliver_later
|
2020-02-05 22:10:22 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
2021-04-09 09:55:36 +02:00
|
|
|
|
|
|
|
|
|
def send_dossier_decision_to_experts(dossier)
|
|
|
|
|
avis_experts_procedures_ids = Avis
|
|
|
|
|
.joins(:experts_procedure)
|
|
|
|
|
.where(dossier: dossier, experts_procedures: { allow_decision_access: true })
|
|
|
|
|
.with_answer
|
|
|
|
|
.distinct
|
|
|
|
|
.pluck('avis.id, experts_procedures.id')
|
|
|
|
|
|
|
|
|
|
# rubocop:disable Lint/UnusedBlockArgument
|
|
|
|
|
avis_ids = avis_experts_procedures_ids
|
|
|
|
|
.uniq { |(avis_id, experts_procedures_id)| experts_procedures_id }
|
|
|
|
|
.map { |(avis_id, _)| avis_id }
|
|
|
|
|
# rubocop:enable Lint/UnusedBlockArgument
|
|
|
|
|
|
|
|
|
|
avis_ids.each { |avis_id| ExpertMailer.send_dossier_decision(avis_id).deliver_later }
|
|
|
|
|
end
|
2015-08-10 11:05:06 +02:00
|
|
|
|
end
|