2015-08-10 11:05:06 +02:00
|
|
|
class Dossier < ActiveRecord::Base
|
2016-02-19 16:59:18 +01:00
|
|
|
|
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
|
2015-11-02 11:52:39 +01:00
|
|
|
validated: 'validated',
|
2015-11-19 18:04:09 +01:00
|
|
|
submitted: 'submitted',
|
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
|
2016-07-18 18:24:29 +02:00
|
|
|
has_many :follows
|
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
|
|
|
|
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)
|
|
|
|
WAITING_FOR_GESTIONNAIRE = %w(updated)
|
2015-11-30 14:48:37 +01:00
|
|
|
WAITING_FOR_USER = %w(replied validated)
|
2016-08-22 16:10:48 +02:00
|
|
|
WAITING_FOR_USER_WITHOUT_VALIDATED = %w(replied)
|
2016-08-12 13:56:10 +02:00
|
|
|
VALIDES = %w(validated)
|
2016-08-11 15:27:35 +02:00
|
|
|
DEPOSES = %w(submitted)
|
2016-08-12 13:56:10 +02:00
|
|
|
EN_INSTRUCTION = %w(submitted received)
|
2016-08-11 15:27:35 +02:00
|
|
|
A_INSTRUIRE = %w(received)
|
|
|
|
TERMINE = %w(closed refused without_continuation)
|
2015-11-19 18:04:09 +01:00
|
|
|
|
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
|
|
|
|
Individual.new(dossier_id: id).save(validate: false)
|
|
|
|
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 sous_domaine
|
|
|
|
if Rails.env.production?
|
|
|
|
'tps'
|
|
|
|
else
|
|
|
|
'tps-dev'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def next_step! role, action
|
2016-09-09 15:55:03 +02:00
|
|
|
unless %w(initiate follow update comment valid submit 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
|
|
|
|
|
|
|
|
if role == 'user'
|
|
|
|
case action
|
2015-11-02 15:31:15 +01:00
|
|
|
when 'initiate'
|
2015-09-24 18:12:08 +02:00
|
|
|
if draft?
|
2015-11-02 15:31:15 +01:00
|
|
|
initiated!
|
2015-09-24 18:12:08 +02:00
|
|
|
end
|
2015-11-02 15:46:43 +01:00
|
|
|
when 'submit'
|
2015-11-02 11:45:52 +01:00
|
|
|
if validated?
|
2015-11-02 15:46:43 +01:00
|
|
|
submitted!
|
2015-09-24 18:12:08 +02:00
|
|
|
end
|
|
|
|
when 'update'
|
2015-11-02 11:33:00 +01:00
|
|
|
if replied?
|
2015-09-24 18:12:08 +02:00
|
|
|
updated!
|
|
|
|
end
|
|
|
|
when 'comment'
|
2015-11-02 11:33:00 +01:00
|
|
|
if replied?
|
2015-09-24 18:12:08 +02:00
|
|
|
updated!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
elsif role == 'gestionnaire'
|
|
|
|
case action
|
|
|
|
when 'comment'
|
|
|
|
if updated?
|
2015-11-02 11:33:00 +01:00
|
|
|
replied!
|
2015-11-02 15:31:15 +01:00
|
|
|
elsif initiated?
|
2015-11-02 11:33:00 +01:00
|
|
|
replied!
|
2015-09-24 18:12:08 +02:00
|
|
|
end
|
2016-09-09 15:55:03 +02:00
|
|
|
when 'follow'
|
|
|
|
if initiated?
|
|
|
|
updated!
|
|
|
|
end
|
2015-11-02 11:45:52 +01:00
|
|
|
when 'valid'
|
2015-09-24 18:12:08 +02:00
|
|
|
if updated?
|
2015-11-02 11:45:52 +01:00
|
|
|
validated!
|
2015-11-02 11:33:00 +01:00
|
|
|
elsif replied?
|
2015-11-02 11:45:52 +01:00
|
|
|
validated!
|
2015-11-02 15:31:15 +01:00
|
|
|
elsif initiated?
|
2015-11-02 11:45:52 +01:00
|
|
|
validated!
|
2015-09-24 18:12:08 +02:00
|
|
|
end
|
2016-08-25 15:21:25 +02:00
|
|
|
when 'receive'
|
2015-11-02 15:46:43 +01:00
|
|
|
if submitted?
|
2016-08-25 15:21:25 +02:00
|
|
|
received!
|
|
|
|
end
|
|
|
|
when 'close'
|
|
|
|
if received?
|
2015-11-02 15:00:28 +01:00
|
|
|
closed!
|
2015-09-24 18:12:08 +02:00
|
|
|
end
|
2016-08-25 17:46:26 +02:00
|
|
|
when 'refuse'
|
|
|
|
if received?
|
|
|
|
refused!
|
|
|
|
end
|
|
|
|
when 'without_continuation'
|
|
|
|
if received?
|
|
|
|
without_continuation!
|
|
|
|
end
|
2015-09-24 18:12:08 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
state
|
|
|
|
end
|
|
|
|
|
2016-10-05 16:45:51 +02:00
|
|
|
def brouillon?
|
|
|
|
BROUILLON.include?(state)
|
|
|
|
end
|
|
|
|
|
2016-08-11 15:27:35 +02:00
|
|
|
def nouveaux?
|
|
|
|
NOUVEAUX.include?(state)
|
|
|
|
end
|
|
|
|
|
2015-11-30 14:48:37 +01:00
|
|
|
def waiting_for_gestionnaire?
|
|
|
|
WAITING_FOR_GESTIONNAIRE.include?(state)
|
2015-11-19 18:04:09 +01:00
|
|
|
end
|
|
|
|
|
2015-11-30 14:48:37 +01:00
|
|
|
def waiting_for_user?
|
|
|
|
WAITING_FOR_USER.include?(state)
|
2015-11-19 18:04:09 +01:00
|
|
|
end
|
|
|
|
|
2016-08-22 16:10:48 +02:00
|
|
|
def waiting_for_user_without_validated?
|
|
|
|
WAITING_FOR_USER_WITHOUT_VALIDATED.include?(state)
|
|
|
|
end
|
|
|
|
|
2016-08-11 15:27:35 +02:00
|
|
|
def deposes?
|
|
|
|
DEPOSES.include?(state)
|
|
|
|
end
|
|
|
|
|
2016-08-12 13:56:10 +02:00
|
|
|
def valides?
|
|
|
|
VALIDES.include?(state)
|
|
|
|
end
|
|
|
|
|
2016-08-11 15:27:35 +02:00
|
|
|
def a_instruire?
|
|
|
|
A_INSTRUIRE.include?(state)
|
|
|
|
end
|
|
|
|
|
2016-08-12 13:56:10 +02:00
|
|
|
def en_instruction?
|
|
|
|
EN_INSTRUCTION.include?(state)
|
|
|
|
end
|
|
|
|
|
2015-11-19 18:04:09 +01:00
|
|
|
def termine?
|
|
|
|
TERMINE.include?(state)
|
|
|
|
end
|
|
|
|
|
2016-10-05 16:45:51 +02:00
|
|
|
def self.brouillon order = 'ASC'
|
|
|
|
where(state: BROUILLON, archived: false).order("updated_at #{order}")
|
|
|
|
end
|
|
|
|
|
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
|
|
|
|
|
2016-08-22 16:10:48 +02:00
|
|
|
def self.waiting_for_user_without_validated order = 'ASC'
|
|
|
|
where(state: WAITING_FOR_USER_WITHOUT_VALIDATED, archived: false).order("updated_at #{order}")
|
|
|
|
end
|
|
|
|
|
2016-08-12 13:56:10 +02:00
|
|
|
def self.valides order = 'ASC'
|
|
|
|
where(state: VALIDES, archived: false).order("updated_at #{order}")
|
|
|
|
end
|
|
|
|
|
2016-08-11 15:27:35 +02:00
|
|
|
def self.deposes order = 'ASC'
|
|
|
|
where(state: DEPOSES, archived: false).order("updated_at #{order}")
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.a_instruire order = 'ASC'
|
|
|
|
where(state: A_INSTRUIRE, archived: false).order("updated_at #{order}")
|
|
|
|
end
|
|
|
|
|
2016-08-12 13:56:10 +02:00
|
|
|
def self.en_instruction order = 'ASC'
|
|
|
|
where(state: EN_INSTRUCTION, archived: false).order("updated_at #{order}")
|
|
|
|
end
|
|
|
|
|
2015-11-30 15:56:06 +01:00
|
|
|
def self.termine order = 'ASC'
|
|
|
|
where(state: TERMINE, archived: false).order("updated_at #{order}")
|
2015-09-24 18:12:08 +02:00
|
|
|
end
|
|
|
|
|
2015-11-17 18:21:03 +01:00
|
|
|
def self.search current_gestionnaire, terms
|
2016-10-07 14:58:45 +02:00
|
|
|
return [] if terms.blank?
|
2015-11-17 18:21:03 +01:00
|
|
|
|
2015-11-16 15:58:35 +01:00
|
|
|
dossiers = Dossier.arel_table
|
|
|
|
users = User.arel_table
|
|
|
|
etablissements = Etablissement.arel_table
|
|
|
|
entreprises = Entreprise.arel_table
|
2015-11-17 18:21:03 +01:00
|
|
|
|
2015-11-16 15:58:35 +01:00
|
|
|
composed_scope = self.joins('LEFT OUTER JOIN users ON users.id = dossiers.user_id')
|
|
|
|
.joins('LEFT OUTER JOIN entreprises ON entreprises.dossier_id = dossiers.id')
|
|
|
|
.joins('LEFT OUTER JOIN etablissements ON etablissements.dossier_id = dossiers.id')
|
2015-11-17 18:21:03 +01:00
|
|
|
|
2015-11-16 15:58:35 +01:00
|
|
|
terms.split.each do |word|
|
|
|
|
query_string = "%#{word}%"
|
|
|
|
query_string_start_with = "#{word}%"
|
2015-11-17 18:21:03 +01:00
|
|
|
|
2015-11-16 15:58:35 +01:00
|
|
|
composed_scope = composed_scope.where(
|
2015-11-17 18:21:03 +01:00
|
|
|
users[:email].matches(query_string).or\
|
|
|
|
etablissements[:siret].matches(query_string_start_with).or\
|
2016-10-07 14:58:45 +02:00
|
|
|
entreprises[:raison_sociale].matches(query_string).or\
|
|
|
|
dossiers[:id].eq(word_is_an_integer word))
|
2015-11-16 15:58:35 +01:00
|
|
|
end
|
2015-11-17 18:21:03 +01:00
|
|
|
|
|
|
|
composed_scope = composed_scope.where(
|
2016-08-22 16:36:25 +02:00
|
|
|
dossiers[:id].eq_any(current_gestionnaire.dossiers.ids).and\
|
2015-11-27 15:04:24 +01:00
|
|
|
dossiers[:state].does_not_match('draft').and\
|
|
|
|
dossiers[:archived].eq(false))
|
2015-11-17 18:21:03 +01:00
|
|
|
|
2016-10-07 14:58:45 +02:00
|
|
|
composed_scope
|
2015-11-16 15:58:35 +01:00
|
|
|
end
|
|
|
|
|
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-02-19 16:59:18 +01:00
|
|
|
def as_csv(options={})
|
|
|
|
dossier_attr = DossierSerializer.new(self).attributes
|
2016-10-07 14:58:45 +02:00
|
|
|
etablissement_attr = EtablissementCsvSerializer.new(self.etablissement).attributes.map { |k, v| ["etablissement.#{k}", v] }.to_h
|
|
|
|
entreprise_attr = EntrepriseSerializer.new(self.entreprise).attributes.map { |k, v| ["entreprise.#{k}", v] }.to_h
|
2016-02-19 16:59:18 +01:00
|
|
|
dossier_attr.merge(etablissement_attr).merge(entreprise_attr)
|
|
|
|
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
|
|
|
|
|
|
|
def total_commentaire
|
|
|
|
self.commentaires.size
|
|
|
|
end
|
2016-08-08 14:12:16 +02:00
|
|
|
|
|
|
|
def submit!
|
|
|
|
self.deposit_datetime= DateTime.now
|
|
|
|
|
|
|
|
next_step! 'user', 'submit'
|
|
|
|
NotificationMailer.dossier_submitted(self).deliver_now!
|
|
|
|
end
|
2016-10-07 14:58:45 +02:00
|
|
|
|
2016-09-13 12:17:56 +02:00
|
|
|
def read_only?
|
|
|
|
validated? || received? || submitted? || closed? || refused? || without_continuation?
|
|
|
|
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
|
2016-10-07 14:58:45 +02:00
|
|
|
|
|
|
|
def self.word_is_an_integer word
|
|
|
|
return 0 if Float(word) > 2147483647
|
|
|
|
|
|
|
|
Float(word)
|
|
|
|
rescue ArgumentError
|
|
|
|
0
|
|
|
|
end
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|