fix(routing): track assigned dossiers without groupe_instructeur
This commit is contained in:
parent
d8bfe07246
commit
9d0447c14a
1 changed files with 11 additions and 0 deletions
|
@ -646,6 +646,8 @@ class Dossier < ApplicationRecord
|
|||
|
||||
previous_groupe_instructeur = self.groupe_instructeur
|
||||
|
||||
track_assigned_dossier_without_groupe_instructeur if groupe_instructeur.nil?
|
||||
|
||||
update!(groupe_instructeur:, groupe_instructeur_updated_at: Time.zone.now)
|
||||
update!(forced_groupe_instructeur: true) if mode == DossierAssignment.modes.fetch(:manual)
|
||||
|
||||
|
@ -1415,4 +1417,13 @@ class Dossier < ApplicationRecord
|
|||
|
||||
logger.info payload.to_json
|
||||
end
|
||||
|
||||
def track_assigned_dossier_without_groupe_instructeur
|
||||
Sentry.capture_message(
|
||||
"Assigned dossier without groupe_instructeur",
|
||||
extra: {
|
||||
dossier_id: self.id
|
||||
}
|
||||
)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue