2018-03-06 13:44:29 +01:00
|
|
|
class Dossier < ApplicationRecord
|
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
|
|
|
|
2015-09-24 11:45:00 +02:00
|
|
|
has_one :etablissement, dependent: :destroy
|
2016-08-30 11:18:43 +02:00
|
|
|
has_one :individual, dependent: :destroy
|
2017-06-02 14:30:26 +02:00
|
|
|
has_one :attestation
|
2016-01-18 16:20:51 +01:00
|
|
|
|
2015-09-24 11:45:00 +02:00
|
|
|
has_many :pieces_justificatives, dependent: :destroy
|
2018-08-30 11:51:35 +02:00
|
|
|
has_many :champs, -> { public_only.ordered }, dependent: :destroy
|
|
|
|
has_many :champs_private, -> { private_only.ordered }, class_name: 'Champ', dependent: :destroy
|
2015-11-24 10:02:55 +01:00
|
|
|
has_many :quartier_prioritaires, dependent: :destroy
|
2016-01-18 12:03:18 +01:00
|
|
|
has_many :cadastres, dependent: :destroy
|
2016-01-18 16:20:51 +01:00
|
|
|
has_many :commentaires, dependent: :destroy
|
2016-02-08 18:16:18 +01:00
|
|
|
has_many :invites, dependent: :destroy
|
2016-09-14 16:36:01 +02:00
|
|
|
has_many :invites_user, class_name: 'InviteUser', dependent: :destroy
|
2017-04-14 18:20:14 +02:00
|
|
|
has_many :invites_gestionnaires, class_name: 'InviteGestionnaire', dependent: :destroy
|
2016-07-18 18:24:29 +02:00
|
|
|
has_many :follows
|
2018-08-30 12:25:21 +02:00
|
|
|
has_many :followers_gestionnaires, through: :follows, source: :gestionnaire
|
2017-04-25 12:09:11 +02:00
|
|
|
has_many :avis, dependent: :destroy
|
2016-01-18 16:20:51 +01:00
|
|
|
|
2015-09-21 17:59:03 +02:00
|
|
|
belongs_to :procedure
|
2015-09-23 12:16:21 +02:00
|
|
|
belongs_to :user
|
2015-08-12 10:09:52 +02:00
|
|
|
|
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
|
|
|
|
2017-06-27 15:26:40 +02:00
|
|
|
default_scope { where(hidden_at: nil) }
|
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) }
|
|
|
|
|
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 }
|
2018-08-30 12:26:09 +02:00
|
|
|
scope :downloadable_sorted, -> { state_not_brouillon.includes(:etablissement, :champs, :champs_private, :user, :individual, :followers_gestionnaires).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-01-15 21:49:52 +01:00
|
|
|
scope :followed_by, -> (gestionnaire) { joins(:follows).where(follows: { gestionnaire: gestionnaire }) }
|
2018-08-30 11:51:35 +02:00
|
|
|
scope :with_champs, -> { includes(champs: :type_de_champ) }
|
2018-08-31 12:56:30 +02:00
|
|
|
scope :nearing_end_of_retention, -> (duration = '1 month') { joins(:procedure).where("en_instruction_at + (duree_conservation_dossiers_dans_ds * interval '1 month') - now() < interval ?", duration) }
|
2017-05-26 18:23:16 +02:00
|
|
|
|
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
|
2015-09-21 17:59:03 +02:00
|
|
|
delegate :types_de_piece_justificative, to: :procedure
|
2015-11-05 11:21:44 +01:00
|
|
|
delegate :types_de_champ, to: :procedure
|
2016-08-01 18:10:32 +02:00
|
|
|
delegate :france_connect_information, to: :user
|
2015-08-13 15:55:19 +02:00
|
|
|
|
2017-03-01 09:51:55 +01:00
|
|
|
before_validation :update_state_dates, if: -> { state_changed? }
|
2018-08-22 17:16:06 +02:00
|
|
|
|
|
|
|
before_save :build_default_champs, if: Proc.new { procedure_id_changed? }
|
|
|
|
before_save :build_default_individual, if: Proc.new { procedure.for_individual? }
|
2018-07-25 19:34:06 +02:00
|
|
|
before_save :update_search_terms
|
2017-03-01 09:51:55 +01:00
|
|
|
|
2017-10-13 18:35:12 +02:00
|
|
|
after_save :send_dossier_received
|
2018-03-01 17:04:05 +01:00
|
|
|
after_save :send_web_hook
|
2017-10-11 15:36:40 +02:00
|
|
|
after_create :send_draft_notification_email
|
2015-08-24 15:23:07 +02:00
|
|
|
|
2015-09-24 11:17:17 +02:00
|
|
|
validates :user, presence: true
|
2015-08-21 11:37:13 +02:00
|
|
|
|
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
|
|
|
|
|
2017-08-29 12:33:31 +02:00
|
|
|
def was_piece_justificative_uploaded_for_type_id?(type_id)
|
|
|
|
pieces_justificatives.where(type_de_piece_justificative_id: type_id).count > 0
|
|
|
|
end
|
|
|
|
|
2016-03-17 14:50:10 +01:00
|
|
|
def retrieve_last_piece_justificative_by_type(type)
|
2015-09-24 18:12:08 +02:00
|
|
|
pieces_justificatives.where(type_de_piece_justificative_id: type).last
|
|
|
|
end
|
|
|
|
|
2016-03-17 14:50:10 +01:00
|
|
|
def retrieve_all_piece_justificative_by_type(type)
|
2016-03-22 17:36:36 +01:00
|
|
|
pieces_justificatives.where(type_de_piece_justificative_id: type).order(created_at: :DESC)
|
2015-09-24 18:12:08 +02:00
|
|
|
end
|
|
|
|
|
2015-11-03 15:27:49 +01:00
|
|
|
def build_default_champs
|
2018-08-22 17:16:06 +02:00
|
|
|
procedure.types_de_champ.each do |type_de_champ|
|
|
|
|
champs << type_de_champ.champ.build
|
|
|
|
end
|
|
|
|
procedure.types_de_champ_private.each do |type_de_champ|
|
|
|
|
champs_private << type_de_champ.champ.build
|
2015-11-03 15:27:49 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-30 11:18:43 +02:00
|
|
|
def build_default_individual
|
2016-12-21 15:39:41 +01:00
|
|
|
if Individual.where(dossier_id: self.id).count == 0
|
2018-08-22 17:16:06 +02:00
|
|
|
build_individual
|
2016-12-21 15:39:41 +01:00
|
|
|
end
|
2016-08-30 11:18:43 +02:00
|
|
|
end
|
|
|
|
|
2016-10-07 15:16:03 +02:00
|
|
|
def ordered_pieces_justificatives
|
|
|
|
champs.joins(', types_de_piece_justificative').where("pieces_justificatives.type_de_piece_justificative_id = types_de_piece_justificative.id AND types_de_piece_justificative.procedure_id = #{procedure.id}").order('order_place ASC')
|
|
|
|
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-11-14 16:37:58 +01:00
|
|
|
def export_headers
|
2017-04-13 15:05:55 +02:00
|
|
|
serialized_dossier = DossierTableExportSerializer.new(self)
|
2016-11-14 16:37:58 +01:00
|
|
|
headers = serialized_dossier.attributes.keys
|
2018-04-26 23:07:54 +02:00
|
|
|
headers += procedure.types_de_champ.order(:order_place).map { |types_de_champ| types_de_champ.libelle.parameterize.underscore.to_sym }
|
|
|
|
headers += procedure.types_de_champ_private.order(:order_place).map { |types_de_champ| types_de_champ.libelle.parameterize.underscore.to_sym }
|
|
|
|
headers += export_etablissement_data.keys
|
2017-10-26 16:12:25 +02:00
|
|
|
headers
|
2016-11-14 10:41:56 +01:00
|
|
|
end
|
|
|
|
|
2018-04-26 18:25:59 +02:00
|
|
|
def export_values
|
2018-04-26 18:42:06 +02:00
|
|
|
sorted_values.map do |value|
|
2018-04-26 18:25:59 +02:00
|
|
|
serialize_value_for_export(value)
|
|
|
|
end
|
|
|
|
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
|
|
|
|
|
|
|
def total_follow
|
|
|
|
follows.size
|
|
|
|
end
|
2016-07-22 15:06:30 +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-03-29 15:42:06 +02:00
|
|
|
def invite_for_user(user)
|
|
|
|
invites_user.find_by(user_id: user.id)
|
2016-09-14 16:36:01 +02:00
|
|
|
end
|
2017-03-01 09:51:55 +01:00
|
|
|
|
2017-12-14 15:51:45 +01:00
|
|
|
def can_be_en_construction?
|
2017-12-04 16:17:15 +01:00
|
|
|
!(procedure.archivee? && brouillon?)
|
2017-03-06 18:17:28 +01:00
|
|
|
end
|
2017-03-06 17:54:45 +01:00
|
|
|
|
2018-06-25 18:07:16 +02:00
|
|
|
def can_transition_to_en_construction?
|
|
|
|
!procedure.archivee? && brouillon?
|
|
|
|
end
|
|
|
|
|
2018-06-08 15:51:46 +02:00
|
|
|
def can_be_updated_by_the_user?
|
|
|
|
brouillon? || en_construction?
|
|
|
|
end
|
|
|
|
|
2018-08-31 15:44:07 +02:00
|
|
|
def retention_end_date
|
|
|
|
if instruction_commencee?
|
|
|
|
en_instruction_at + procedure.duree_conservation_dossiers_dans_ds.months
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def retention_expired?
|
|
|
|
instruction_commencee? && retention_end_date <= DateTime.now
|
|
|
|
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 ",
|
2017-04-18 17:31:01 +02:00
|
|
|
procedure.organisation
|
|
|
|
]
|
|
|
|
else
|
|
|
|
parts = [
|
|
|
|
"Dossier déposé le ",
|
2017-12-14 15:51:45 +01:00
|
|
|
en_construction_at.localtime.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 ",
|
2017-04-18 17:31:01 +02:00
|
|
|
procedure.organisation
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
parts.join
|
|
|
|
end
|
|
|
|
|
2017-09-08 11:52:20 +02:00
|
|
|
def avis_for(gestionnaire)
|
|
|
|
if gestionnaire.dossiers.include?(self)
|
|
|
|
avis.order(created_at: :asc)
|
|
|
|
else
|
|
|
|
avis
|
|
|
|
.where(confidentiel: false)
|
|
|
|
.or(avis.where(claimant: gestionnaire))
|
|
|
|
.or(avis.where(gestionnaire: gestionnaire))
|
|
|
|
.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
|
|
|
|
|
2017-11-22 15:40:53 +01:00
|
|
|
def statut
|
2017-12-04 18:00:12 +01:00
|
|
|
if accepte?
|
2017-11-22 15:40:53 +01:00
|
|
|
'accepté'
|
2017-12-04 20:23:57 +01:00
|
|
|
elsif sans_suite?
|
2017-11-22 15:40:53 +01:00
|
|
|
'classé sans suite'
|
2017-12-04 18:15:40 +01:00
|
|
|
elsif refuse?
|
2017-11-22 15:40:53 +01:00
|
|
|
'refusé'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-10-30 16:54:33 +01:00
|
|
|
def user_geometry
|
|
|
|
if json_latlngs.present?
|
|
|
|
UserGeometry.new(json_latlngs)
|
|
|
|
end
|
|
|
|
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
|
|
|
|
|
2018-05-30 11:36:48 +02:00
|
|
|
def delete_and_keep_track
|
|
|
|
now = Time.now
|
|
|
|
deleted_dossier = DeletedDossier.create!(dossier_id: id, procedure: procedure, state: state, deleted_at: now)
|
|
|
|
update(hidden_at: now)
|
2018-07-23 15:06:06 +02:00
|
|
|
|
2018-08-02 16:36:50 +02:00
|
|
|
if en_construction?
|
|
|
|
administration_emails = followers_gestionnaires.present? ? followers_gestionnaires.pluck(:email) : [procedure.administrateur.email]
|
|
|
|
administration_emails.each do |email|
|
|
|
|
DossierMailer.notify_deletion_to_administration(deleted_dossier, email).deliver_later
|
|
|
|
end
|
2018-07-23 15:06:06 +02:00
|
|
|
end
|
2018-06-13 13:59:02 +02:00
|
|
|
DossierMailer.notify_deletion_to_user(deleted_dossier, user.email).deliver_later
|
2018-05-30 11:36:48 +02:00
|
|
|
end
|
|
|
|
|
2018-10-08 17:55:20 +02:00
|
|
|
def old_state_value
|
|
|
|
case state
|
|
|
|
when Dossier.states.fetch(:en_construction)
|
|
|
|
'initiated'
|
|
|
|
when Dossier.states.fetch(:en_instruction)
|
|
|
|
'received'
|
|
|
|
when Dossier.states.fetch(:accepte)
|
|
|
|
'closed'
|
|
|
|
when Dossier.states.fetch(:refuse)
|
|
|
|
'refused'
|
|
|
|
when Dossier.states.fetch(:sans_suite)
|
|
|
|
'without_continuation'
|
|
|
|
else
|
|
|
|
state
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-12-05 17:43:32 +01:00
|
|
|
private
|
|
|
|
|
2017-03-01 09:51:55 +01:00
|
|
|
def update_state_dates
|
2017-12-14 15:51:45 +01:00
|
|
|
if en_construction? && !self.en_construction_at
|
|
|
|
self.en_construction_at = DateTime.now
|
2017-12-14 15:53:02 +01:00
|
|
|
elsif en_instruction? && !self.en_instruction_at
|
|
|
|
self.en_instruction_at = DateTime.now
|
2017-03-01 09:51:55 +01:00
|
|
|
elsif TERMINE.include?(state)
|
|
|
|
self.processed_at = DateTime.now
|
|
|
|
end
|
|
|
|
end
|
2017-03-06 17:54:45 +01:00
|
|
|
|
2017-04-11 11:38:48 +02:00
|
|
|
def serialize_value_for_export(value)
|
|
|
|
value.nil? || value.kind_of?(Time) ? value : value.to_s
|
|
|
|
end
|
2017-05-26 20:01:57 +02:00
|
|
|
|
2018-04-26 18:41:04 +02:00
|
|
|
def convert_specific_hash_values_to_string(hash_to_convert)
|
|
|
|
hash_to_convert.transform_values do |value|
|
|
|
|
serialize_value_for_export(value)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def export_etablissement_data
|
|
|
|
if etablissement.present?
|
2018-04-23 11:57:38 +02:00
|
|
|
etablissement_attr = EtablissementCsvSerializer.new(etablissement).attributes.transform_keys { |k| "etablissement.#{k}".parameterize.underscore.to_sym }
|
|
|
|
entreprise_attr = EntrepriseSerializer.new(etablissement.entreprise).attributes.transform_keys { |k| "entreprise.#{k}".parameterize.underscore.to_sym }
|
2018-04-26 18:41:04 +02:00
|
|
|
else
|
|
|
|
etablissement_attr = EtablissementSerializer.new(Etablissement.new).attributes.transform_keys { |k| "etablissement.#{k}".parameterize.underscore.to_sym }
|
|
|
|
entreprise_attr = EntrepriseSerializer.new(Entreprise.new).attributes.transform_keys { |k| "entreprise.#{k}".parameterize.underscore.to_sym }
|
|
|
|
end
|
|
|
|
convert_specific_hash_values_to_string(etablissement_attr.merge(entreprise_attr))
|
|
|
|
end
|
|
|
|
|
2018-04-26 18:42:06 +02:00
|
|
|
def sorted_values
|
2018-04-26 18:41:04 +02:00
|
|
|
serialized_dossier = DossierTableExportSerializer.new(self)
|
|
|
|
values = serialized_dossier.attributes.values
|
2018-08-30 11:51:35 +02:00
|
|
|
values += champs.map(&:for_export)
|
|
|
|
values += champs_private.map(&:for_export)
|
2018-04-26 18:41:04 +02:00
|
|
|
values += export_etablissement_data.values
|
|
|
|
values
|
|
|
|
end
|
|
|
|
|
2017-10-13 18:35:12 +02:00
|
|
|
def send_dossier_received
|
2018-01-30 17:14:56 +01:00
|
|
|
if saved_change_to_state? && en_instruction?
|
2018-05-30 23:55:34 +02:00
|
|
|
NotificationMailer.send_dossier_received(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
|
|
|
|
if brouillon?
|
2018-05-25 18:05:28 +02:00
|
|
|
NotificationMailer.send_draft_notification(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
|
|
|
|
if saved_change_to_state? && !brouillon? && procedure.web_hook_url
|
|
|
|
WebHookJob.perform_later(
|
|
|
|
procedure,
|
|
|
|
self
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|