commit
e1857042e4
4 changed files with 26 additions and 10 deletions
|
@ -78,7 +78,7 @@ module Types
|
||||||
end
|
end
|
||||||
|
|
||||||
def champs
|
def champs
|
||||||
Loaders::Association.for(object.class, :champs).load(object)
|
Loaders::Association.for(object.class, champs: [:type_de_champ]).load(object)
|
||||||
end
|
end
|
||||||
|
|
||||||
def annotations
|
def annotations
|
||||||
|
|
|
@ -2,14 +2,17 @@
|
||||||
#
|
#
|
||||||
# Table name: deleted_dossiers
|
# Table name: deleted_dossiers
|
||||||
#
|
#
|
||||||
# id :bigint not null, primary key
|
# id :bigint not null, primary key
|
||||||
# deleted_at :datetime
|
# deleted_at :datetime
|
||||||
# reason :string
|
# reason :string
|
||||||
# state :string
|
# state :string
|
||||||
# created_at :datetime not null
|
# created_at :datetime not null
|
||||||
# updated_at :datetime not null
|
# updated_at :datetime not null
|
||||||
# dossier_id :bigint
|
# dossier_id :bigint
|
||||||
# procedure_id :bigint
|
# groupe_instructeur_id :bigint
|
||||||
|
# procedure_id :bigint
|
||||||
|
# revision_id :bigint
|
||||||
|
# user_id :bigint
|
||||||
#
|
#
|
||||||
class DeletedDossier < ApplicationRecord
|
class DeletedDossier < ApplicationRecord
|
||||||
belongs_to :procedure, -> { with_discarded }, inverse_of: :deleted_dossiers, optional: false
|
belongs_to :procedure, -> { with_discarded }, inverse_of: :deleted_dossiers, optional: false
|
||||||
|
@ -28,6 +31,9 @@ class DeletedDossier < ApplicationRecord
|
||||||
create!(
|
create!(
|
||||||
reason: reasons.fetch(reason),
|
reason: reasons.fetch(reason),
|
||||||
dossier_id: dossier.id,
|
dossier_id: dossier.id,
|
||||||
|
groupe_instructeur_id: dossier.groupe_instructeur_id,
|
||||||
|
revision_id: dossier.revision_id,
|
||||||
|
user_id: dossier.user_id,
|
||||||
procedure: dossier.procedure,
|
procedure: dossier.procedure,
|
||||||
state: dossier.state,
|
state: dossier.state,
|
||||||
deleted_at: Time.zone.now
|
deleted_at: Time.zone.now
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
class AddRelationsToDeletedDossiers < ActiveRecord::Migration[6.0]
|
||||||
|
def change
|
||||||
|
add_column :deleted_dossiers, :user_id, :bigint
|
||||||
|
add_column :deleted_dossiers, :groupe_instructeur_id, :bigint
|
||||||
|
add_column :deleted_dossiers, :revision_id, :bigint
|
||||||
|
end
|
||||||
|
end
|
|
@ -10,7 +10,7 @@
|
||||||
#
|
#
|
||||||
# It's strongly recommended that you check this file into your version control system.
|
# It's strongly recommended that you check this file into your version control system.
|
||||||
|
|
||||||
ActiveRecord::Schema.define(version: 2020_11_05_131443) do
|
ActiveRecord::Schema.define(version: 2020_11_10_155516) do
|
||||||
|
|
||||||
# These are extensions that must be enabled in order to support this database
|
# These are extensions that must be enabled in order to support this database
|
||||||
enable_extension "plpgsql"
|
enable_extension "plpgsql"
|
||||||
|
@ -196,6 +196,9 @@ ActiveRecord::Schema.define(version: 2020_11_05_131443) do
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
t.datetime "updated_at", null: false
|
t.datetime "updated_at", null: false
|
||||||
t.string "reason"
|
t.string "reason"
|
||||||
|
t.bigint "user_id"
|
||||||
|
t.bigint "groupe_instructeur_id"
|
||||||
|
t.bigint "revision_id"
|
||||||
t.index ["procedure_id"], name: "index_deleted_dossiers_on_procedure_id"
|
t.index ["procedure_id"], name: "index_deleted_dossiers_on_procedure_id"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue