feat(revision): list updated placeholder option for generic type de champ

This commit is contained in:
Colin Darie 2022-07-07 15:53:31 +02:00
parent 93d18e2f53
commit fe0282e904
No known key found for this signature in database
GPG key ID: 4FB865FDBCA4BCC4
4 changed files with 26 additions and 1 deletions

View file

@ -379,6 +379,18 @@ class ProcedureRevision < ApplicationRecord
stable_id: from_type_de_champ.stable_id
}
end
if from_type_de_champ.placeholder != to_type_de_champ.placeholder
changes << {
model: :type_de_champ,
op: :update,
attribute: :placeholder,
label: from_type_de_champ.libelle,
private: from_type_de_champ.private?,
from: from_type_de_champ.placeholder,
to: to_type_de_champ.placeholder,
stable_id: from_type_de_champ.stable_id
}
end
if to_type_de_champ.drop_down_list?
if from_type_de_champ.drop_down_list_options != to_type_de_champ.drop_down_list_options
changes << {

View file

@ -44,6 +44,8 @@
%li.mb-1= t("administrateurs.revision_changes.update_drop_down_other#{postfix}.enabled", label: change[:label])
- else
%li.mb-1= t("administrateurs.revision_changes.update_drop_down_other#{postfix}.disabled", label: change[:label])
- when :placeholder
%li.mb-1= t("update_placeholder#{postfix}", label: change[:label], to: change[:to], scope: [:administrateurs, :revision_changes])
- when :carte_layers
- added = change[:to].sort - change[:from].sort
- removed = change[:from].sort - change[:to].sort

View file

@ -28,6 +28,7 @@ fr:
enabled: Le champ « %{label} » comporte maintenant un choix « Autre »
disabled: Le champ « %{label} » ne comporte plus de choix « Autre »
update_carte_layers: Les référentiels cartographiques du champ « %{label} » ont été modifiés
update_placeholder: Le spécimen de saisie du champ « %{label} » a été modifié. Le nouveau spécimen est « %{to} ».
add_private: Lannotation privée « %{label} » a été ajoutée
remove_private: Lannotation privée « %{label} » a été supprimée
move_private:

View file

@ -329,7 +329,7 @@ describe ProcedureRevision do
before do
updated_tdc = new_draft.find_and_ensure_exclusive_use(first_tdc.stable_id)
updated_tdc.update(libelle: 'modifier le libelle', description: 'une description', mandatory: !updated_tdc.mandatory)
updated_tdc.update(libelle: 'modifier le libelle', description: 'une description', mandatory: !updated_tdc.mandatory, placeholder: "new placeholder")
end
it do
@ -363,6 +363,16 @@ describe ProcedureRevision do
from: false,
to: true,
stable_id: first_tdc.stable_id
},
{
model: :type_de_champ,
op: :update,
attribute: :placeholder,
label: first_tdc.libelle,
private: false,
from: first_tdc.placeholder,
to: "new placeholder",
stable_id: first_tdc.stable_id
}
])
end