2015-08-10 11:05:06 +02:00
|
|
|
class Dossier < ActiveRecord::Base
|
2015-11-02 11:23:55 +01:00
|
|
|
enum state: {draft: 'draft',
|
2015-11-02 15:46:43 +01:00
|
|
|
initiated: 'initiated',
|
2016-08-11 15:27:35 +02:00
|
|
|
replied: 'replied', #action utilisateur demandé
|
2016-10-07 14:58:45 +02:00
|
|
|
updated: 'updated', #etude par l'administration en cours
|
2016-08-11 15:27:35 +02:00
|
|
|
received: 'received',
|
|
|
|
closed: 'closed',
|
|
|
|
refused: 'refused',
|
|
|
|
without_continuation: 'without_continuation'
|
|
|
|
}
|
2015-09-22 18:30:20 +02:00
|
|
|
|
2015-09-24 11:45:00 +02:00
|
|
|
has_one :etablissement, dependent: :destroy
|
|
|
|
has_one :entreprise, dependent: :destroy
|
2016-08-30 11:18:43 +02:00
|
|
|
has_one :individual, dependent: :destroy
|
2016-03-16 15:34:35 +01:00
|
|
|
has_many :cerfa, dependent: :destroy
|
2016-01-18 16:20:51 +01:00
|
|
|
|
2015-09-24 11:45:00 +02:00
|
|
|
has_many :pieces_justificatives, dependent: :destroy
|
2016-08-08 12:52:30 +02:00
|
|
|
has_many :champs, class_name: 'ChampPublic', dependent: :destroy
|
|
|
|
has_many :champs_private, class_name: 'ChampPrivate', 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
|
2016-12-21 17:26:31 +01:00
|
|
|
has_many :notifications, dependent: :destroy
|
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
|
|
|
|
2016-08-30 11:18:43 +02:00
|
|
|
accepts_nested_attributes_for :individual
|
|
|
|
|
2015-08-13 15:55:19 +02:00
|
|
|
delegate :siren, to: :entreprise
|
2015-12-03 12:00:22 +01:00
|
|
|
delegate :siret, 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? }
|
|
|
|
|
2015-11-03 15:27:49 +01:00
|
|
|
after_save :build_default_champs, if: Proc.new { procedure_id_changed? }
|
2016-08-30 11:18:43 +02:00
|
|
|
after_save :build_default_individual, if: Proc.new { procedure.for_individual? }
|
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
|
|
|
|
2016-10-05 16:45:51 +02:00
|
|
|
BROUILLON = %w(draft)
|
2016-08-11 15:27:35 +02:00
|
|
|
NOUVEAUX = %w(initiated)
|
2016-11-10 15:57:14 +01:00
|
|
|
OUVERT = %w(updated replied)
|
2016-08-11 15:27:35 +02:00
|
|
|
WAITING_FOR_GESTIONNAIRE = %w(updated)
|
2017-02-23 17:54:11 +01:00
|
|
|
WAITING_FOR_USER = %w(replied)
|
2016-10-19 17:25:24 +02:00
|
|
|
EN_CONSTRUCTION = %w(initiated updated replied)
|
2017-02-23 17:54:11 +01:00
|
|
|
EN_INSTRUCTION = %w(received)
|
2016-08-11 15:27:35 +02:00
|
|
|
A_INSTRUIRE = %w(received)
|
|
|
|
TERMINE = %w(closed refused without_continuation)
|
2017-02-23 17:54:11 +01:00
|
|
|
ALL_STATE = %w(initiated updated replied received closed refused without_continuation)
|
2015-11-19 18:04:09 +01:00
|
|
|
|
2017-01-02 16:45:03 +01:00
|
|
|
def unreaded_notifications
|
|
|
|
@unreaded_notif ||= notifications.where(already_read: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
def first_unread_notification
|
|
|
|
unreaded_notifications.order("created_at ASC").first
|
|
|
|
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
|
2015-11-05 11:21:44 +01:00
|
|
|
procedure.types_de_champ.each do |type_de_champ|
|
2016-08-08 12:52:30 +02:00
|
|
|
ChampPublic.create(type_de_champ_id: type_de_champ.id, dossier_id: id)
|
|
|
|
end
|
|
|
|
|
|
|
|
procedure.types_de_champ_private.each do |type_de_champ|
|
|
|
|
ChampPrivate.create(type_de_champ_id: type_de_champ.id, dossier_id: id)
|
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
|
|
|
|
Individual.create(dossier: self)
|
|
|
|
end
|
2016-08-30 11:18:43 +02:00
|
|
|
end
|
|
|
|
|
2015-11-04 11:14:07 +01:00
|
|
|
def ordered_champs
|
2016-06-21 12:41:28 +02:00
|
|
|
champs.joins(', types_de_champ').where("champs.type_de_champ_id = types_de_champ.id AND types_de_champ.procedure_id = #{procedure.id}").order('order_place')
|
2016-08-08 12:52:30 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def ordered_champs_private
|
|
|
|
champs_private.joins(', types_de_champ').where("champs.type_de_champ_id = types_de_champ.id AND types_de_champ.procedure_id = #{procedure.id}").order('order_place')
|
2015-11-04 11:14:07 +01: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
|
|
|
|
|
2015-11-04 11:14:07 +01:00
|
|
|
def ordered_commentaires
|
|
|
|
commentaires.order(created_at: :desc)
|
|
|
|
end
|
|
|
|
|
2015-09-24 18:12:08 +02:00
|
|
|
def next_step! role, action
|
2017-02-23 17:54:11 +01:00
|
|
|
unless %w(initiate follow update comment receive refuse without_continuation close).include?(action)
|
2015-09-24 18:12:08 +02:00
|
|
|
fail 'action is not valid'
|
|
|
|
end
|
|
|
|
|
2015-10-05 16:42:29 +02:00
|
|
|
unless %w(user gestionnaire).include?(role)
|
2015-09-24 18:12:08 +02:00
|
|
|
fail 'role is not valid'
|
|
|
|
end
|
|
|
|
|
2017-04-05 10:22:37 +02:00
|
|
|
case role
|
|
|
|
when 'user'
|
2015-09-24 18:12:08 +02:00
|
|
|
case action
|
2017-04-05 10:22:37 +02:00
|
|
|
when 'initiate'
|
|
|
|
if draft?
|
|
|
|
initiated!
|
|
|
|
end
|
|
|
|
when 'update'
|
|
|
|
if replied?
|
|
|
|
updated!
|
|
|
|
end
|
|
|
|
when 'comment'
|
|
|
|
if replied?
|
|
|
|
updated!
|
|
|
|
end
|
2015-09-24 18:12:08 +02:00
|
|
|
end
|
2017-04-05 10:22:37 +02:00
|
|
|
when 'gestionnaire'
|
2015-09-24 18:12:08 +02:00
|
|
|
case action
|
2017-04-05 10:22:37 +02:00
|
|
|
when 'comment'
|
|
|
|
if updated?
|
|
|
|
replied!
|
|
|
|
elsif initiated?
|
|
|
|
replied!
|
|
|
|
end
|
|
|
|
when 'follow'
|
|
|
|
if initiated?
|
|
|
|
updated!
|
|
|
|
end
|
|
|
|
when 'close'
|
|
|
|
if received?
|
|
|
|
closed!
|
|
|
|
end
|
|
|
|
when 'refuse'
|
|
|
|
if received?
|
|
|
|
refused!
|
|
|
|
end
|
|
|
|
when 'without_continuation'
|
|
|
|
if received?
|
|
|
|
without_continuation!
|
|
|
|
end
|
2015-09-24 18:12:08 +02:00
|
|
|
end
|
|
|
|
end
|
2017-04-05 10:22:37 +02:00
|
|
|
|
2015-09-24 18:12:08 +02:00
|
|
|
state
|
|
|
|
end
|
|
|
|
|
2016-10-24 16:00:03 +02:00
|
|
|
def self.all_state order = 'ASC'
|
|
|
|
where(state: ALL_STATE, archived: false).order("updated_at #{order}")
|
|
|
|
end
|
|
|
|
|
2017-04-12 10:28:22 +02:00
|
|
|
def brouillon?
|
|
|
|
BROUILLON.include?(state)
|
2016-10-05 16:45:51 +02:00
|
|
|
end
|
|
|
|
|
2017-04-12 10:28:22 +02:00
|
|
|
scope :brouillon, -> { where(state: BROUILLON) }
|
|
|
|
|
|
|
|
scope :order_by_updated_at, -> (order = :desc) { order(updated_at: order) }
|
|
|
|
|
2016-08-11 15:27:35 +02:00
|
|
|
def self.nouveaux order = 'ASC'
|
|
|
|
where(state: NOUVEAUX, archived: false).order("updated_at #{order}")
|
|
|
|
end
|
|
|
|
|
2015-11-30 15:56:06 +01:00
|
|
|
def self.waiting_for_gestionnaire order = 'ASC'
|
|
|
|
where(state: WAITING_FOR_GESTIONNAIRE, archived: false).order("updated_at #{order}")
|
2015-09-24 18:12:08 +02:00
|
|
|
end
|
|
|
|
|
2015-11-30 15:56:06 +01:00
|
|
|
def self.waiting_for_user order = 'ASC'
|
|
|
|
where(state: WAITING_FOR_USER, archived: false).order("updated_at #{order}")
|
2015-09-24 18:12:08 +02:00
|
|
|
end
|
|
|
|
|
2017-04-12 11:18:28 +02:00
|
|
|
scope :en_construction, -> { where(state: EN_CONSTRUCTION) }
|
2016-08-22 16:10:48 +02:00
|
|
|
|
2016-11-10 15:57:14 +01:00
|
|
|
def self.ouvert order = 'ASC'
|
|
|
|
where(state: OUVERT, archived: false).order("updated_at #{order}")
|
|
|
|
end
|
|
|
|
|
2016-08-11 15:27:35 +02:00
|
|
|
def self.a_instruire order = 'ASC'
|
|
|
|
where(state: A_INSTRUIRE, archived: false).order("updated_at #{order}")
|
|
|
|
end
|
|
|
|
|
2017-04-12 14:38:01 +02:00
|
|
|
scope :en_instruction, -> { where(state: EN_INSTRUCTION) }
|
2016-08-12 13:56:10 +02:00
|
|
|
|
2017-04-12 14:48:44 +02:00
|
|
|
scope :termine, -> { where(state: TERMINE) }
|
2015-09-24 18:12:08 +02:00
|
|
|
|
2017-02-27 17:44:08 +01:00
|
|
|
scope :archived, -> { where(archived: true) }
|
2017-04-20 10:55:54 +02:00
|
|
|
scope :not_archived, -> { where(archived: false) }
|
2017-02-27 17:44:08 +01:00
|
|
|
|
2017-03-29 14:09:50 +02:00
|
|
|
scope :downloadable, -> { all_state }
|
|
|
|
|
2016-02-02 18:37:38 +01:00
|
|
|
def cerfa_available?
|
2016-03-16 15:34:35 +01:00
|
|
|
procedure.cerfa_flag? && cerfa.size != 0
|
2016-02-02 18:37:38 +01:00
|
|
|
end
|
|
|
|
|
2016-11-14 17:43:34 +01:00
|
|
|
def convert_specific_hash_values_to_string(hash_to_convert)
|
2016-11-08 11:48:36 +01:00
|
|
|
hash = {}
|
|
|
|
hash_to_convert.each do |key, value|
|
2017-04-11 11:38:48 +02:00
|
|
|
value = serialize_value_for_export(value)
|
2016-11-14 17:25:17 +01:00
|
|
|
hash.store(key, value)
|
2016-11-08 11:48:36 +01:00
|
|
|
end
|
|
|
|
return hash
|
|
|
|
end
|
|
|
|
|
2017-04-05 15:10:58 +02:00
|
|
|
def full_data_strings_array
|
2017-04-05 15:11:44 +02:00
|
|
|
data_with_champs.map do |value|
|
2017-04-11 11:38:48 +02:00
|
|
|
serialize_value_for_export(value)
|
2016-11-14 17:43:34 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-09 15:36:18 +01:00
|
|
|
def export_entreprise_data
|
2016-10-07 15:34:10 +02:00
|
|
|
unless entreprise.nil?
|
2016-11-07 17:23:58 +01:00
|
|
|
etablissement_attr = EtablissementCsvSerializer.new(self.etablissement).attributes.map { |k, v| ["etablissement.#{k}".parameterize.underscore.to_sym, v] }.to_h
|
|
|
|
entreprise_attr = EntrepriseSerializer.new(self.entreprise).attributes.map { |k, v| ["entreprise.#{k}".parameterize.underscore.to_sym, v] }.to_h
|
|
|
|
else
|
|
|
|
etablissement_attr = EtablissementSerializer.new(Etablissement.new).attributes.map { |k, v| ["etablissement.#{k}".parameterize.underscore.to_sym, v] }.to_h
|
|
|
|
entreprise_attr = EntrepriseSerializer.new(Entreprise.new).attributes.map { |k, v| ["entreprise.#{k}".parameterize.underscore.to_sym, v] }.to_h
|
2016-10-07 15:34:10 +02:00
|
|
|
end
|
2016-11-14 17:43:34 +01:00
|
|
|
return convert_specific_hash_values_to_string(etablissement_attr.merge(entreprise_attr))
|
2016-11-09 15:36:18 +01:00
|
|
|
end
|
2016-10-07 15:34:10 +02:00
|
|
|
|
2016-11-14 10:41:56 +01:00
|
|
|
def data_with_champs
|
2017-04-13 15:05:55 +02:00
|
|
|
serialized_dossier = DossierTableExportSerializer.new(self)
|
2016-11-14 16:37:58 +01:00
|
|
|
data = serialized_dossier.attributes.values
|
|
|
|
data += self.champs.order('type_de_champ_id ASC').map(&:value)
|
|
|
|
data += self.export_entreprise_data.values
|
|
|
|
return data
|
|
|
|
end
|
|
|
|
|
|
|
|
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
|
|
|
|
headers += self.procedure.types_de_champ.order('id ASC').map { |types_de_champ| types_de_champ.libelle.parameterize.underscore.to_sym }
|
|
|
|
headers += self.export_entreprise_data.keys
|
|
|
|
return headers
|
2016-11-14 10:41:56 +01:00
|
|
|
end
|
|
|
|
|
2017-04-14 18:10:39 +02:00
|
|
|
def followers_gestionnaires
|
|
|
|
follows.includes(:gestionnaire).map(&:gestionnaire)
|
2017-01-26 17:54:04 +01:00
|
|
|
end
|
|
|
|
|
2016-06-20 13:57:57 +02:00
|
|
|
def reset!
|
2016-10-05 14:28:10 +02:00
|
|
|
etablissement.destroy
|
2016-10-05 15:01:31 +02:00
|
|
|
entreprise.destroy
|
2016-06-20 13:57:57 +02:00
|
|
|
|
|
|
|
update_attributes(autorisation_donnees: false)
|
|
|
|
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-02-21 18:05:48 +01:00
|
|
|
received? || closed? || refused? || without_continuation?
|
2016-09-13 12:17:56 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def owner? email
|
|
|
|
user.email == email
|
|
|
|
end
|
2016-09-14 16:36:01 +02:00
|
|
|
|
|
|
|
def invite_by_user? email
|
|
|
|
(invites_user.pluck :email).include? email
|
|
|
|
end
|
2017-03-01 09:51:55 +01:00
|
|
|
|
2017-03-06 18:17:28 +01:00
|
|
|
def can_be_initiated?
|
|
|
|
!(procedure.archived && draft?)
|
|
|
|
end
|
2017-03-06 17:54:45 +01:00
|
|
|
|
2017-04-18 17:31:01 +02:00
|
|
|
def text_summary
|
|
|
|
if brouillon?
|
|
|
|
parts = [
|
2017-04-26 15:08:15 +02:00
|
|
|
"Dossier en brouillon répondant à la procédure ",
|
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-05-11 12:46:42 +02:00
|
|
|
initiated_at.localtime.strftime("%d/%m/%Y"),
|
2017-04-26 15:08:15 +02:00
|
|
|
" sur la procédure ",
|
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-03-01 09:51:55 +01:00
|
|
|
private
|
|
|
|
|
|
|
|
def update_state_dates
|
|
|
|
if initiated? && !self.initiated_at
|
|
|
|
self.initiated_at = DateTime.now
|
|
|
|
elsif received? && !self.received_at
|
|
|
|
self.received_at = DateTime.now
|
|
|
|
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
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|