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

This reverts commit fe0282e904.

Continue 2bd33ada45b036f73f3fc78150621092e0667693
This commit is contained in:
Colin Darie 2022-07-12 11:10:01 +02:00
parent 8c08d0295b
commit d805114a72
4 changed files with 1 additions and 26 deletions

View file

@ -385,18 +385,6 @@ 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,8 +44,6 @@
%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,7 +28,6 @@ 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

@ -357,7 +357,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, placeholder: "new placeholder")
updated_tdc.update(libelle: 'modifier le libelle', description: 'une description', mandatory: !updated_tdc.mandatory)
end
it do
@ -391,16 +391,6 @@ 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