2018-11-08 18:09:27 +01:00
|
|
|
|
require Rails.root.join('lib', 'percentile')
|
|
|
|
|
|
2018-03-06 13:44:29 +01:00
|
|
|
|
class Procedure < ApplicationRecord
|
2019-02-26 16:18:04 +01:00
|
|
|
|
self.ignored_columns = [:administrateur_id]
|
|
|
|
|
|
2018-05-24 23:29:33 +02:00
|
|
|
|
MAX_DUREE_CONSERVATION = 36
|
|
|
|
|
|
2018-12-20 12:00:27 +01:00
|
|
|
|
has_many :types_de_piece_justificative, -> { ordered }, dependent: :destroy
|
2018-12-20 15:04:13 +01:00
|
|
|
|
has_many :types_de_champ, -> { root.public_only.ordered }, dependent: :destroy
|
|
|
|
|
has_many :types_de_champ_private, -> { root.private_only.ordered }, class_name: 'TypeDeChamp', dependent: :destroy
|
2019-01-23 16:13:38 +01:00
|
|
|
|
has_many :dossiers, dependent: :restrict_with_exception
|
2018-05-30 11:36:48 +02:00
|
|
|
|
has_many :deleted_dossiers, dependent: :destroy
|
2017-03-07 10:25:28 +01:00
|
|
|
|
|
2016-01-18 16:20:51 +01:00
|
|
|
|
has_one :module_api_carto, dependent: :destroy
|
2017-06-08 14:16:48 +02:00
|
|
|
|
has_one :attestation_template, dependent: :destroy
|
2016-01-18 16:20:51 +01:00
|
|
|
|
|
2018-04-24 15:23:07 +02:00
|
|
|
|
belongs_to :parent_procedure, class_name: 'Procedure'
|
2018-04-17 16:11:49 +02:00
|
|
|
|
belongs_to :service
|
2016-01-18 16:20:51 +01:00
|
|
|
|
|
2016-06-20 17:37:04 +02:00
|
|
|
|
has_many :assign_to, dependent: :destroy
|
2018-03-23 11:39:36 +01:00
|
|
|
|
has_many :administrateurs_procedures
|
|
|
|
|
has_many :administrateurs, through: :administrateurs_procedures
|
2016-05-20 15:39:17 +02:00
|
|
|
|
has_many :gestionnaires, through: :assign_to
|
|
|
|
|
|
2017-05-26 21:55:19 +02:00
|
|
|
|
has_one :initiated_mail, class_name: "Mails::InitiatedMail", dependent: :destroy
|
|
|
|
|
has_one :received_mail, class_name: "Mails::ReceivedMail", dependent: :destroy
|
|
|
|
|
has_one :closed_mail, class_name: "Mails::ClosedMail", dependent: :destroy
|
|
|
|
|
has_one :refused_mail, class_name: "Mails::RefusedMail", dependent: :destroy
|
|
|
|
|
has_one :without_continuation_mail, class_name: "Mails::WithoutContinuationMail", dependent: :destroy
|
|
|
|
|
|
2018-04-11 14:35:52 +02:00
|
|
|
|
has_one_attached :notice
|
2018-05-31 10:59:38 +02:00
|
|
|
|
has_one_attached :deliberation
|
2018-04-11 14:35:52 +02:00
|
|
|
|
|
2018-11-14 16:24:34 +01:00
|
|
|
|
accepts_nested_attributes_for :types_de_champ, reject_if: proc { |attributes| attributes['libelle'].blank? }, allow_destroy: true
|
|
|
|
|
accepts_nested_attributes_for :types_de_champ_private, reject_if: proc { |attributes| attributes['libelle'].blank? }, allow_destroy: true
|
|
|
|
|
accepts_nested_attributes_for :types_de_piece_justificative, reject_if: proc { |attributes| attributes['libelle'].blank? }, allow_destroy: true
|
2015-11-10 10:23:15 +01:00
|
|
|
|
|
2015-12-10 17:13:39 +01:00
|
|
|
|
mount_uploader :logo, ProcedureLogoUploader
|
|
|
|
|
|
2017-06-27 14:22:43 +02:00
|
|
|
|
default_scope { where(hidden_at: nil) }
|
2018-05-16 17:21:12 +02:00
|
|
|
|
scope :brouillons, -> { where(aasm_state: :brouillon) }
|
|
|
|
|
scope :publiees, -> { where(aasm_state: :publiee) }
|
|
|
|
|
scope :archivees, -> { where(aasm_state: :archivee) }
|
|
|
|
|
scope :publiees_ou_archivees, -> { where(aasm_state: [:publiee, :archivee]) }
|
2017-07-17 15:06:36 +02:00
|
|
|
|
scope :by_libelle, -> { order(libelle: :asc) }
|
2018-04-12 18:36:09 +02:00
|
|
|
|
scope :created_during, -> (range) { where(created_at: range) }
|
|
|
|
|
scope :cloned_from_library, -> { where(cloned_from_library: true) }
|
2018-10-25 17:41:48 +02:00
|
|
|
|
scope :avec_lien, -> { where.not(path: nil) }
|
2017-05-26 21:30:11 +02:00
|
|
|
|
|
2018-11-01 14:04:32 +01:00
|
|
|
|
scope :for_api, -> {
|
|
|
|
|
includes(
|
2019-02-26 16:18:04 +01:00
|
|
|
|
:administrateurs,
|
2018-11-01 14:04:32 +01:00
|
|
|
|
:types_de_champ_private,
|
|
|
|
|
:types_de_champ,
|
|
|
|
|
:types_de_piece_justificative,
|
|
|
|
|
:module_api_carto
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-22 11:21:52 +02:00
|
|
|
|
validates :libelle, presence: true, allow_blank: false, allow_nil: false
|
|
|
|
|
validates :description, presence: true, allow_blank: false, allow_nil: false
|
2018-05-31 10:59:38 +02:00
|
|
|
|
validate :check_juridique
|
2018-10-25 17:41:48 +02:00
|
|
|
|
validates :path, format: { with: /\A[a-z0-9_\-]{3,50}\z/ }, uniqueness: { scope: :aasm_state, case_sensitive: false }, presence: true, allow_blank: false, allow_nil: true
|
2018-05-24 23:29:33 +02:00
|
|
|
|
# FIXME: remove duree_conservation_required flag once all procedures are converted to the new style
|
|
|
|
|
validates :duree_conservation_dossiers_dans_ds, allow_nil: false, numericality: { only_integer: true, greater_than_or_equal_to: 1, less_than_or_equal_to: MAX_DUREE_CONSERVATION }, if: :durees_conservation_required
|
|
|
|
|
validates :duree_conservation_dossiers_hors_ds, allow_nil: false, numericality: { only_integer: true, greater_than_or_equal_to: 0 }, if: :durees_conservation_required
|
|
|
|
|
validates :duree_conservation_dossiers_dans_ds, allow_nil: true, numericality: { only_integer: true, greater_than_or_equal_to: 1, less_than_or_equal_to: MAX_DUREE_CONSERVATION }, unless: :durees_conservation_required
|
|
|
|
|
validates :duree_conservation_dossiers_hors_ds, allow_nil: true, numericality: { only_integer: true, greater_than_or_equal_to: 0 }, unless: :durees_conservation_required
|
2015-11-17 15:30:03 +01:00
|
|
|
|
|
2018-06-01 11:06:12 +02:00
|
|
|
|
before_save :update_juridique_required
|
2018-05-25 00:16:13 +02:00
|
|
|
|
before_save :update_durees_conservation_required
|
2019-01-09 16:35:06 +01:00
|
|
|
|
before_create :ensure_path_exists
|
2018-06-01 11:06:12 +02:00
|
|
|
|
|
2018-05-17 15:38:49 +02:00
|
|
|
|
include AASM
|
|
|
|
|
|
|
|
|
|
aasm whiny_persistence: true do
|
|
|
|
|
state :brouillon, initial: true
|
|
|
|
|
state :publiee
|
|
|
|
|
state :archivee
|
|
|
|
|
state :hidden
|
|
|
|
|
|
|
|
|
|
event :publish, after: :after_publish, guard: :can_publish? do
|
|
|
|
|
transitions from: :brouillon, to: :publiee
|
2018-09-07 18:37:44 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
event :reopen, after: :after_reopen, guard: :can_publish? do
|
2018-05-17 15:38:49 +02:00
|
|
|
|
transitions from: :archivee, to: :publiee
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
event :archive, after: :after_archive do
|
|
|
|
|
transitions from: :publiee, to: :archivee
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
event :hide, after: :after_hide do
|
|
|
|
|
transitions from: :brouillon, to: :hidden
|
|
|
|
|
transitions from: :publiee, to: :hidden
|
|
|
|
|
transitions from: :archivee, to: :hidden
|
|
|
|
|
end
|
2018-10-09 12:11:13 +02:00
|
|
|
|
|
|
|
|
|
event :draft, after: :after_draft do
|
|
|
|
|
transitions from: :publiee, to: :brouillon
|
|
|
|
|
end
|
2018-05-17 15:38:49 +02:00
|
|
|
|
end
|
2018-05-17 15:39:37 +02:00
|
|
|
|
|
2019-03-06 18:09:55 +01:00
|
|
|
|
def publish_or_reopen!(administrateur, path)
|
|
|
|
|
if archivee? && may_reopen?(administrateur, path)
|
|
|
|
|
reopen!(administrateur, path)
|
|
|
|
|
elsif may_publish?(administrateur, path)
|
2018-09-07 18:42:12 +02:00
|
|
|
|
reset!
|
2019-03-06 18:09:55 +01:00
|
|
|
|
publish!(administrateur, path)
|
2018-09-07 18:42:12 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-08-13 17:49:15 +02:00
|
|
|
|
def reset!
|
|
|
|
|
if locked?
|
|
|
|
|
raise "Can not reset a locked procedure."
|
|
|
|
|
else
|
2018-09-19 17:12:06 +02:00
|
|
|
|
dossiers.destroy_all
|
2018-08-13 17:49:15 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-05-17 15:41:44 +02:00
|
|
|
|
def locked?
|
|
|
|
|
publiee_ou_archivee?
|
|
|
|
|
end
|
|
|
|
|
|
2018-08-13 17:52:56 +02:00
|
|
|
|
# This method is needed for transition. Eventually this will be the same as brouillon?.
|
|
|
|
|
def brouillon_avec_lien?
|
2019-03-06 14:42:27 +01:00
|
|
|
|
brouillon? && path.present?
|
2018-08-13 17:52:56 +02:00
|
|
|
|
end
|
|
|
|
|
|
2018-05-17 15:41:44 +02:00
|
|
|
|
def publiee_ou_archivee?
|
|
|
|
|
publiee? || archivee?
|
|
|
|
|
end
|
|
|
|
|
|
2018-10-31 13:28:39 +01:00
|
|
|
|
def expose_legacy_carto_api?
|
2018-11-27 15:53:13 +01:00
|
|
|
|
module_api_carto&.use_api_carto? && module_api_carto&.migrated?
|
2018-10-31 13:28:39 +01:00
|
|
|
|
end
|
|
|
|
|
|
2018-04-13 16:11:37 +02:00
|
|
|
|
# Warning: dossier after_save build_default_champs must be removed
|
|
|
|
|
# to save a dossier created from this method
|
|
|
|
|
def new_dossier
|
2019-02-07 10:44:15 +01:00
|
|
|
|
Dossier.new(procedure: self, champs: build_champs, champs_private: build_champs_private)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def build_champs
|
|
|
|
|
types_de_champ.map(&:build_champ)
|
|
|
|
|
end
|
2018-04-13 16:11:37 +02:00
|
|
|
|
|
2019-02-07 10:44:15 +01:00
|
|
|
|
def build_champs_private
|
|
|
|
|
types_de_champ_private.map(&:build_champ)
|
2018-04-13 16:11:37 +02:00
|
|
|
|
end
|
|
|
|
|
|
2016-06-30 10:24:01 +02:00
|
|
|
|
def default_path
|
2018-09-19 17:12:12 +02:00
|
|
|
|
libelle&.parameterize&.first(50)
|
2016-06-30 10:24:01 +02:00
|
|
|
|
end
|
|
|
|
|
|
2018-07-03 20:18:49 +02:00
|
|
|
|
def organisation_name
|
|
|
|
|
service&.nom || organisation
|
|
|
|
|
end
|
|
|
|
|
|
2018-03-20 17:47:37 +01:00
|
|
|
|
def self.active(id)
|
2017-07-11 15:52:06 +02:00
|
|
|
|
publiees.find(id)
|
2016-06-09 17:49:38 +02:00
|
|
|
|
end
|
|
|
|
|
|
2018-03-20 17:47:37 +01:00
|
|
|
|
def switch_types_de_champ(index_of_first_element)
|
2018-12-20 12:00:27 +01:00
|
|
|
|
switch_list_order(types_de_champ, index_of_first_element)
|
2016-06-08 16:45:18 +02:00
|
|
|
|
end
|
|
|
|
|
|
2018-03-20 17:47:37 +01:00
|
|
|
|
def switch_types_de_champ_private(index_of_first_element)
|
2018-12-20 12:00:27 +01:00
|
|
|
|
switch_list_order(types_de_champ_private, index_of_first_element)
|
2016-08-03 18:19:56 +02:00
|
|
|
|
end
|
|
|
|
|
|
2018-03-20 17:47:37 +01:00
|
|
|
|
def switch_types_de_piece_justificative(index_of_first_element)
|
2017-04-13 14:48:18 +02:00
|
|
|
|
switch_list_order(types_de_piece_justificative, index_of_first_element)
|
2016-06-08 16:45:18 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def switch_list_order(list, index_of_first_element)
|
2017-05-26 21:43:44 +02:00
|
|
|
|
if index_of_first_element < 0 ||
|
|
|
|
|
index_of_first_element == list.count - 1 ||
|
|
|
|
|
list.count < 1
|
|
|
|
|
|
|
|
|
|
false
|
|
|
|
|
else
|
2018-03-02 16:27:03 +01:00
|
|
|
|
list[index_of_first_element].update(order_place: index_of_first_element + 1)
|
|
|
|
|
list[index_of_first_element + 1].update(order_place: index_of_first_element)
|
2019-01-03 15:12:55 +01:00
|
|
|
|
reload
|
2017-05-26 21:43:44 +02:00
|
|
|
|
|
|
|
|
|
true
|
|
|
|
|
end
|
2015-11-19 11:37:01 +01:00
|
|
|
|
end
|
2015-12-21 14:40:28 +01:00
|
|
|
|
|
2018-04-12 18:35:13 +02:00
|
|
|
|
def clone(admin, from_library)
|
2019-01-29 11:49:28 +01:00
|
|
|
|
is_different_admin = !admin.owns?(self)
|
2019-01-10 13:42:40 +01:00
|
|
|
|
|
2018-11-27 14:52:20 +01:00
|
|
|
|
populate_champ_stable_ids
|
2017-03-07 18:19:48 +01:00
|
|
|
|
procedure = self.deep_clone(include:
|
2017-06-26 17:18:47 +02:00
|
|
|
|
{
|
|
|
|
|
attestation_template: nil,
|
2019-02-06 10:02:05 +01:00
|
|
|
|
types_de_champ: [:drop_down_list, types_de_champ: :drop_down_list],
|
|
|
|
|
types_de_champ_private: [:drop_down_list, types_de_champ: :drop_down_list]
|
2017-06-26 17:18:47 +02:00
|
|
|
|
})
|
2018-09-18 14:31:29 +02:00
|
|
|
|
procedure.path = nil
|
2018-05-28 14:58:40 +02:00
|
|
|
|
procedure.aasm_state = :brouillon
|
|
|
|
|
procedure.test_started_at = nil
|
2017-07-10 23:42:33 +02:00
|
|
|
|
procedure.archived_at = nil
|
2017-07-11 14:21:10 +02:00
|
|
|
|
procedure.published_at = nil
|
2016-09-02 17:10:55 +02:00
|
|
|
|
procedure.logo_secure_token = nil
|
|
|
|
|
procedure.remote_logo_url = self.logo_url
|
2018-12-06 13:51:41 +01:00
|
|
|
|
procedure.lien_notice = nil
|
2017-03-07 18:19:48 +01:00
|
|
|
|
|
2018-10-01 14:26:45 +02:00
|
|
|
|
[:notice, :deliberation].each { |attachment| clone_attachment(procedure, attachment) }
|
2018-04-26 14:36:27 +02:00
|
|
|
|
|
2019-01-10 13:34:47 +01:00
|
|
|
|
procedure.types_de_champ += PiecesJustificativesService.types_pj_as_types_de_champ(self)
|
2019-01-10 13:43:22 +01:00
|
|
|
|
if is_different_admin || from_library
|
|
|
|
|
procedure.types_de_champ.each { |tdc| tdc.options&.delete(:old_pj) }
|
|
|
|
|
end
|
|
|
|
|
|
2019-01-29 11:49:28 +01:00
|
|
|
|
if is_different_admin
|
|
|
|
|
procedure.administrateurs = [admin]
|
|
|
|
|
else
|
|
|
|
|
procedure.administrateurs = administrateurs
|
|
|
|
|
end
|
|
|
|
|
|
2018-05-30 18:45:46 +02:00
|
|
|
|
procedure.initiated_mail = initiated_mail&.dup
|
|
|
|
|
procedure.received_mail = received_mail&.dup
|
|
|
|
|
procedure.closed_mail = closed_mail&.dup
|
|
|
|
|
procedure.refused_mail = refused_mail&.dup
|
|
|
|
|
procedure.without_continuation_mail = without_continuation_mail&.dup
|
2017-03-07 18:19:48 +01:00
|
|
|
|
|
2018-04-12 18:35:13 +02:00
|
|
|
|
procedure.cloned_from_library = from_library
|
2018-04-24 15:23:07 +02:00
|
|
|
|
procedure.parent_procedure = self
|
2018-04-12 18:35:13 +02:00
|
|
|
|
|
2018-06-28 11:33:10 +02:00
|
|
|
|
if from_library
|
|
|
|
|
procedure.service = nil
|
2019-01-10 13:42:40 +01:00
|
|
|
|
elsif self.service.present? && is_different_admin
|
2018-12-19 15:35:07 +01:00
|
|
|
|
procedure.service = self.service.clone_and_assign_to_administrateur(admin)
|
2018-06-28 11:33:10 +02:00
|
|
|
|
end
|
|
|
|
|
|
2019-01-04 14:45:06 +01:00
|
|
|
|
admin.gestionnaire.assign_to_procedure(procedure)
|
|
|
|
|
|
2018-01-08 15:42:38 +01:00
|
|
|
|
procedure
|
2016-06-15 11:34:05 +02:00
|
|
|
|
end
|
|
|
|
|
|
2018-01-10 17:52:43 +01:00
|
|
|
|
def whitelisted?
|
|
|
|
|
whitelisted_at.present?
|
|
|
|
|
end
|
|
|
|
|
|
2018-12-18 17:52:33 +01:00
|
|
|
|
def has_old_pjs?
|
|
|
|
|
types_de_piece_justificative.any?
|
|
|
|
|
end
|
|
|
|
|
|
2016-07-22 15:06:30 +02:00
|
|
|
|
def total_dossier
|
2017-07-10 16:11:12 +02:00
|
|
|
|
self.dossiers.state_not_brouillon.size
|
2016-07-22 15:06:30 +02:00
|
|
|
|
end
|
2017-01-26 12:12:52 +01:00
|
|
|
|
|
2018-11-22 00:14:16 +01:00
|
|
|
|
def export_filename(format)
|
2018-09-13 18:33:35 +02:00
|
|
|
|
procedure_identifier = path || "procedure-#{id}"
|
2018-11-22 00:14:16 +01:00
|
|
|
|
"dossiers_#{procedure_identifier}_#{Time.zone.now.strftime('%Y-%m-%d_%H-%M')}.#{format}"
|
2018-03-16 12:00:01 +01:00
|
|
|
|
end
|
|
|
|
|
|
2018-11-22 00:14:16 +01:00
|
|
|
|
def export(options = {})
|
|
|
|
|
ProcedureExportService.new(self, **options.to_h.symbolize_keys)
|
|
|
|
|
end
|
2017-04-05 11:34:16 +02:00
|
|
|
|
|
2018-11-22 00:14:16 +01:00
|
|
|
|
def to_csv(options = {})
|
|
|
|
|
export(options).to_csv
|
|
|
|
|
end
|
2017-04-05 11:34:16 +02:00
|
|
|
|
|
2018-11-22 00:14:16 +01:00
|
|
|
|
def to_xlsx(options = {})
|
|
|
|
|
export(options).to_xlsx
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def to_ods(options = {})
|
|
|
|
|
export(options).to_ods
|
2017-04-05 11:34:16 +02:00
|
|
|
|
end
|
|
|
|
|
|
2017-06-27 18:00:05 +02:00
|
|
|
|
def procedure_overview(start_date)
|
|
|
|
|
ProcedureOverview.new(self, start_date)
|
2017-05-12 15:47:05 +02:00
|
|
|
|
end
|
2017-05-26 21:55:19 +02:00
|
|
|
|
|
2017-05-27 01:08:01 +02:00
|
|
|
|
def initiated_mail_template
|
2017-12-22 21:37:08 +01:00
|
|
|
|
initiated_mail || Mails::InitiatedMail.default_for_procedure(self)
|
2017-05-26 21:55:19 +02:00
|
|
|
|
end
|
|
|
|
|
|
2017-05-27 01:08:01 +02:00
|
|
|
|
def received_mail_template
|
2017-12-22 21:37:08 +01:00
|
|
|
|
received_mail || Mails::ReceivedMail.default_for_procedure(self)
|
2017-05-26 21:55:19 +02:00
|
|
|
|
end
|
|
|
|
|
|
2017-05-27 01:08:01 +02:00
|
|
|
|
def closed_mail_template
|
2017-12-22 21:37:08 +01:00
|
|
|
|
closed_mail || Mails::ClosedMail.default_for_procedure(self)
|
2017-05-26 21:55:19 +02:00
|
|
|
|
end
|
|
|
|
|
|
2017-05-27 01:08:01 +02:00
|
|
|
|
def refused_mail_template
|
2017-12-22 21:37:08 +01:00
|
|
|
|
refused_mail || Mails::RefusedMail.default_for_procedure(self)
|
2017-05-26 21:55:19 +02:00
|
|
|
|
end
|
|
|
|
|
|
2017-05-27 01:08:01 +02:00
|
|
|
|
def without_continuation_mail_template
|
2017-12-22 21:37:08 +01:00
|
|
|
|
without_continuation_mail || Mails::WithoutContinuationMail.default_for_procedure(self)
|
2017-05-26 21:55:19 +02:00
|
|
|
|
end
|
2017-10-02 17:03:38 +02:00
|
|
|
|
|
2017-09-27 15:16:07 +02:00
|
|
|
|
def self.default_sort
|
|
|
|
|
{
|
|
|
|
|
'table' => 'self',
|
|
|
|
|
'column' => 'id',
|
|
|
|
|
'order' => 'desc'
|
2018-09-20 17:02:28 +02:00
|
|
|
|
}
|
2017-09-27 15:16:07 +02:00
|
|
|
|
end
|
|
|
|
|
|
2018-01-10 16:46:12 +01:00
|
|
|
|
def whitelist!
|
2018-10-25 15:07:15 +02:00
|
|
|
|
update_attribute('whitelisted_at', Time.zone.now)
|
2018-01-10 16:46:12 +01:00
|
|
|
|
end
|
|
|
|
|
|
2018-04-03 11:33:11 +02:00
|
|
|
|
def closed_mail_template_attestation_inconsistency_state
|
|
|
|
|
# As an optimization, don’t check the predefined templates (they are presumed correct)
|
|
|
|
|
if closed_mail.present?
|
|
|
|
|
tag_present = closed_mail.body.include?("--lien attestation--")
|
|
|
|
|
if attestation_template&.activated? && !tag_present
|
|
|
|
|
:missing_tag
|
|
|
|
|
elsif !attestation_template&.activated? && tag_present
|
|
|
|
|
:extraneous_tag
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-11-08 17:19:17 +01:00
|
|
|
|
def usual_traitement_time
|
2018-11-08 18:09:27 +01:00
|
|
|
|
percentile_time(:en_construction_at, :processed_at, 90)
|
2018-09-18 17:50:05 +02:00
|
|
|
|
end
|
|
|
|
|
|
2018-11-08 17:19:17 +01:00
|
|
|
|
def usual_verification_time
|
2018-11-08 18:09:27 +01:00
|
|
|
|
percentile_time(:en_construction_at, :en_instruction_at, 90)
|
2018-09-18 17:47:41 +02:00
|
|
|
|
end
|
|
|
|
|
|
2018-11-08 17:19:17 +01:00
|
|
|
|
def usual_instruction_time
|
2018-11-08 18:09:27 +01:00
|
|
|
|
percentile_time(:en_instruction_at, :processed_at, 90)
|
2018-09-18 17:45:24 +02:00
|
|
|
|
end
|
|
|
|
|
|
2018-10-30 15:59:27 +01:00
|
|
|
|
PATH_AVAILABLE = :available
|
|
|
|
|
PATH_AVAILABLE_PUBLIEE = :available_publiee
|
|
|
|
|
PATH_NOT_AVAILABLE = :not_available
|
|
|
|
|
PATH_NOT_AVAILABLE_BROUILLON = :not_available_brouillon
|
|
|
|
|
PATH_CAN_PUBLISH = [PATH_AVAILABLE, PATH_AVAILABLE_PUBLIEE]
|
2018-10-25 17:41:48 +02:00
|
|
|
|
|
2019-03-06 18:09:55 +01:00
|
|
|
|
def path_availability(administrateur, path)
|
|
|
|
|
Procedure.path_availability(administrateur, path, id)
|
2018-10-25 17:41:48 +02:00
|
|
|
|
end
|
|
|
|
|
|
2019-03-06 18:09:55 +01:00
|
|
|
|
def self.path_availability(administrateur, path, exclude_id = nil)
|
2018-10-30 15:59:27 +01:00
|
|
|
|
if exclude_id.present?
|
|
|
|
|
procedure = where.not(id: exclude_id).find_by(path: path)
|
|
|
|
|
else
|
|
|
|
|
procedure = find_by(path: path)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if procedure.blank?
|
|
|
|
|
PATH_AVAILABLE
|
2019-03-06 18:09:55 +01:00
|
|
|
|
elsif administrateur.owns?(procedure)
|
2018-10-30 15:59:27 +01:00
|
|
|
|
if procedure.brouillon?
|
|
|
|
|
PATH_NOT_AVAILABLE_BROUILLON
|
|
|
|
|
else
|
|
|
|
|
PATH_AVAILABLE_PUBLIEE
|
|
|
|
|
end
|
|
|
|
|
else
|
|
|
|
|
PATH_NOT_AVAILABLE
|
|
|
|
|
end
|
2018-10-25 17:41:48 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def self.find_with_path(path)
|
|
|
|
|
where.not(aasm_state: :archivee).where("path LIKE ?", "%#{path}%")
|
|
|
|
|
end
|
|
|
|
|
|
2018-11-27 14:52:20 +01:00
|
|
|
|
def populate_champ_stable_ids
|
|
|
|
|
TypeDeChamp.where(procedure: self, stable_id: nil).find_each do |type_de_champ|
|
|
|
|
|
type_de_champ.update_column(:stable_id, type_de_champ.id)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-01-04 15:43:02 +01:00
|
|
|
|
def missing_steps
|
|
|
|
|
result = []
|
|
|
|
|
|
|
|
|
|
if service.nil?
|
|
|
|
|
result << :service
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if gestionnaires.empty?
|
|
|
|
|
result << :instructeurs
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
result
|
|
|
|
|
end
|
|
|
|
|
|
2017-10-02 17:03:38 +02:00
|
|
|
|
private
|
|
|
|
|
|
2018-10-25 17:41:48 +02:00
|
|
|
|
def claim_path_ownership!(path)
|
2019-02-26 16:18:04 +01:00
|
|
|
|
procedure = Procedure.joins(:administrateurs)
|
|
|
|
|
.where(administrateurs: { id: administrateur_ids })
|
|
|
|
|
.find_by(path: path)
|
2018-10-25 17:41:48 +02:00
|
|
|
|
|
|
|
|
|
if procedure&.publiee? && procedure != self
|
|
|
|
|
procedure.archive!
|
2018-09-07 18:36:31 +02:00
|
|
|
|
end
|
2018-10-25 17:41:48 +02:00
|
|
|
|
|
|
|
|
|
update!(path: path)
|
|
|
|
|
end
|
|
|
|
|
|
2019-03-06 18:09:55 +01:00
|
|
|
|
def can_publish?(administrateur, path)
|
|
|
|
|
path_availability(administrateur, path).in?(PATH_CAN_PUBLISH)
|
2018-09-07 18:36:31 +02:00
|
|
|
|
end
|
|
|
|
|
|
2019-03-06 18:09:55 +01:00
|
|
|
|
def can_reopen?(administrateur, path)
|
|
|
|
|
path_availability(administrateur, path).in?(PATH_CAN_PUBLISH)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def after_publish(administrateur, path)
|
2018-10-25 15:11:12 +02:00
|
|
|
|
update!(published_at: Time.zone.now)
|
2018-09-07 18:36:31 +02:00
|
|
|
|
|
2018-10-25 17:41:48 +02:00
|
|
|
|
claim_path_ownership!(path)
|
|
|
|
|
end
|
|
|
|
|
|
2019-03-06 18:09:55 +01:00
|
|
|
|
def after_reopen(administrateur, path)
|
2018-10-25 17:41:48 +02:00
|
|
|
|
update!(published_at: Time.zone.now, archived_at: nil)
|
|
|
|
|
|
|
|
|
|
claim_path_ownership!(path)
|
2018-09-07 18:36:31 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def after_archive
|
2018-10-25 15:11:12 +02:00
|
|
|
|
update!(archived_at: Time.zone.now, path: nil)
|
2018-09-07 18:36:31 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def after_hide
|
2018-10-25 15:11:12 +02:00
|
|
|
|
now = Time.zone.now
|
2018-09-13 18:34:01 +02:00
|
|
|
|
update!(hidden_at: now, path: nil)
|
2018-09-07 18:36:31 +02:00
|
|
|
|
dossiers.update_all(hidden_at: now)
|
|
|
|
|
end
|
|
|
|
|
|
2018-10-09 12:11:13 +02:00
|
|
|
|
def after_draft
|
|
|
|
|
update!(published_at: nil)
|
|
|
|
|
end
|
|
|
|
|
|
2018-06-01 11:06:12 +02:00
|
|
|
|
def update_juridique_required
|
|
|
|
|
self.juridique_required ||= (cadre_juridique.present? || deliberation.attached?)
|
|
|
|
|
true
|
|
|
|
|
end
|
|
|
|
|
|
2018-05-31 11:00:22 +02:00
|
|
|
|
def clone_attachment(cloned_procedure, attachment_symbol)
|
|
|
|
|
attachment = send(attachment_symbol)
|
|
|
|
|
if attachment.attached?
|
|
|
|
|
response = Typhoeus.get(attachment.service_url, timeout: 5)
|
|
|
|
|
if response.success?
|
|
|
|
|
cloned_procedure.send(attachment_symbol).attach(
|
|
|
|
|
io: StringIO.new(response.body),
|
|
|
|
|
filename: attachment.filename
|
|
|
|
|
)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-05-31 10:59:38 +02:00
|
|
|
|
def check_juridique
|
2018-06-01 10:51:04 +02:00
|
|
|
|
if juridique_required? && (cadre_juridique.blank? && !deliberation.attached?)
|
2018-05-31 10:59:38 +02:00
|
|
|
|
errors.add(:cadre_juridique, " : veuillez remplir le texte de loi ou la délibération")
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-05-25 00:16:13 +02:00
|
|
|
|
def update_durees_conservation_required
|
|
|
|
|
self.durees_conservation_required ||= duree_conservation_dossiers_hors_ds.present? && duree_conservation_dossiers_dans_ds.present?
|
|
|
|
|
true
|
|
|
|
|
end
|
2018-09-19 11:02:38 +02:00
|
|
|
|
|
2018-11-08 18:09:27 +01:00
|
|
|
|
def percentile_time(start_attribute, end_attribute, p)
|
2018-09-19 11:02:38 +02:00
|
|
|
|
times = dossiers
|
2019-02-18 11:56:09 +01:00
|
|
|
|
.where(end_attribute => 1.month.ago..Time.zone.now)
|
2018-09-19 11:02:38 +02:00
|
|
|
|
.pluck(start_attribute, end_attribute)
|
2018-09-27 14:30:31 +02:00
|
|
|
|
.map { |(start_date, end_date)| end_date - start_date }
|
2018-09-19 11:02:38 +02:00
|
|
|
|
|
|
|
|
|
if times.present?
|
2018-11-08 18:09:27 +01:00
|
|
|
|
times.percentile(p).ceil
|
2018-09-19 11:02:38 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
2019-01-09 16:35:06 +01:00
|
|
|
|
|
|
|
|
|
def ensure_path_exists
|
2019-03-06 14:42:27 +01:00
|
|
|
|
if self.path.nil?
|
|
|
|
|
self.path = SecureRandom.uuid
|
2019-01-09 16:35:06 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
2015-09-21 17:59:03 +02:00
|
|
|
|
end
|