Merge pull request #6795 from betagouv/US/6690-etq-admin-je-veux-pouvoir-desactiver-une-attestation-une-fois-la-demarche-publiee
Administrateur : possibilité de désactiver une attestation même une fois la démarche publiée
This commit is contained in:
commit
dbfb08a052
2 changed files with 64 additions and 11 deletions
|
@ -19,10 +19,6 @@
|
||||||
- else
|
- else
|
||||||
%span.text-inactive désactivée
|
%span.text-inactive désactivée
|
||||||
|
|
||||||
- if @attestation_template.activated && @procedure.locked?
|
|
||||||
.card.warning
|
|
||||||
%p L’attestation ne peut plus être désactivée car la démarche est publiée.
|
|
||||||
|
|
||||||
%p.notice
|
%p.notice
|
||||||
L’attestation, si elle est activée, est émise au moment où un dossier est accepté.
|
L’attestation, si elle est activée, est émise au moment où un dossier est accepté.
|
||||||
%br
|
%br
|
||||||
|
@ -33,8 +29,6 @@
|
||||||
|
|
||||||
.procedure-form__actions.sticky--bottom
|
.procedure-form__actions.sticky--bottom
|
||||||
.actions-left
|
.actions-left
|
||||||
-# Admins cannot disactivate the Attestation if it is activated and the procedure is published
|
|
||||||
- if !(@attestation_template.activated && @procedure.locked?)
|
|
||||||
%label.toggle-switch
|
%label.toggle-switch
|
||||||
= f.check_box :activated, class: 'toggle-switch-checkbox'
|
= f.check_box :activated, class: 'toggle-switch-checkbox'
|
||||||
%span.toggle-switch-control.round
|
%span.toggle-switch-control.round
|
||||||
|
|
|
@ -0,0 +1,59 @@
|
||||||
|
require 'system/administrateurs/procedure_spec_helper'
|
||||||
|
|
||||||
|
describe 'As an administrateur, I want to manage the procedure’s attestation', js: true do
|
||||||
|
include ProcedureSpecHelper
|
||||||
|
|
||||||
|
let(:administrateur) { create(:administrateur) }
|
||||||
|
let(:procedure) do
|
||||||
|
create(:procedure, :with_service, :with_instructeur,
|
||||||
|
aasm_state: :brouillon,
|
||||||
|
administrateurs: [administrateur],
|
||||||
|
libelle: 'libellé de la procédure',
|
||||||
|
path: 'libelle-de-la-procedure')
|
||||||
|
end
|
||||||
|
before { login_as(administrateur.user, scope: :user) }
|
||||||
|
|
||||||
|
def find_attestation_card(with_nested_selector: nil)
|
||||||
|
full_selector = [
|
||||||
|
".card-admin[href=\"#{edit_admin_procedure_attestation_template_path(procedure)}\"]",
|
||||||
|
with_nested_selector
|
||||||
|
].compact.join(" ")
|
||||||
|
page.find(full_selector)
|
||||||
|
end
|
||||||
|
|
||||||
|
context 'Enable, publish, Disable' do
|
||||||
|
scenario do
|
||||||
|
visit admin_procedure_path(procedure)
|
||||||
|
# start with no attestation
|
||||||
|
find_attestation_card(with_nested_selector: ".icon.clock")
|
||||||
|
|
||||||
|
# now process to enable attestation
|
||||||
|
find_attestation_card.click
|
||||||
|
fill_in "Titre de l'attestation", with: 'BOOM'
|
||||||
|
fill_in "Corps du document", with: 'BOOM'
|
||||||
|
find('.toggle-switch-control').click
|
||||||
|
click_on 'Enregistrer'
|
||||||
|
page.find(".alert-success", text: "L'attestation a bien été sauvegardée")
|
||||||
|
|
||||||
|
# check attestation
|
||||||
|
visit admin_procedure_path(procedure)
|
||||||
|
find_attestation_card(with_nested_selector: ".icon.accept")
|
||||||
|
|
||||||
|
# publish procedure
|
||||||
|
# click CTA for publication screen
|
||||||
|
click_on("Publier")
|
||||||
|
# validate publication
|
||||||
|
click_on("Publier")
|
||||||
|
|
||||||
|
# now process to disable attestation
|
||||||
|
find_attestation_card.click
|
||||||
|
find('.toggle-switch-control').click
|
||||||
|
click_on 'Enregistrer'
|
||||||
|
page.find(".alert-success", text: "L'attestation a bien été modifiée")
|
||||||
|
|
||||||
|
# check attestation is now disabled
|
||||||
|
visit admin_procedure_path(procedure)
|
||||||
|
find_attestation_card(with_nested_selector: ".icon.clock")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Add table
Reference in a new issue