Fix: distinction des commentaires par champ
Les commentaires par champ sont distincts des commentaires généraux (non attachés à un champ). Ils ne faut donc pas les afficher dans les commentaires sous le récapitulatif du dossier.
This commit is contained in:
parent
96ca5113f7
commit
8195a57f9c
3 changed files with 11 additions and 15 deletions
|
@ -32,11 +32,7 @@ class DossierFacades
|
||||||
end
|
end
|
||||||
|
|
||||||
def commentaires
|
def commentaires
|
||||||
if @champ_id
|
@dossier.ordered_commentaires.where(champ_id: @champ_id).decorate
|
||||||
@dossier.ordered_commentaires.where(champ_id: @champ_id).decorate
|
|
||||||
else
|
|
||||||
@dossier.ordered_commentaires.all.decorate
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def commentaire_email
|
def commentaire_email
|
||||||
|
|
|
@ -18,12 +18,12 @@ feature 'backoffice: flux de commentaires' do
|
||||||
visit backoffice_dossier_path(dossier)
|
visit backoffice_dossier_path(dossier)
|
||||||
end
|
end
|
||||||
|
|
||||||
scenario "tous les commentaires sont affichés" do
|
scenario "seuls les commentaires généraux sont affichés" do
|
||||||
comments = find("#commentaires_flux")
|
comments = find("#commentaires_flux")
|
||||||
expect(comments).to have_selector(".description", count: 4)
|
expect(comments).to have_selector(".description", count: 1)
|
||||||
end
|
end
|
||||||
|
|
||||||
scenario "ouverture commentaires limités au champs dans une modale", js: true do
|
scenario "affichage des commentaires du champs", js: true do
|
||||||
find("#liste_champs th", text: champ1.libelle).click_link("COM")
|
find("#liste_champs th", text: champ1.libelle).click_link("COM")
|
||||||
expect(page).to have_css("#modalCommentairesDossierParChamp.in")
|
expect(page).to have_css("#modalCommentairesDossierParChamp.in")
|
||||||
|
|
||||||
|
@ -40,9 +40,9 @@ feature 'backoffice: flux de commentaires' do
|
||||||
form.fill_in("texte_commentaire", with: "le corps du commentaire sur le champ #{champ1.libelle}")
|
form.fill_in("texte_commentaire", with: "le corps du commentaire sur le champ #{champ1.libelle}")
|
||||||
form.click_on("Poster")
|
form.click_on("Poster")
|
||||||
|
|
||||||
# ajout du commentaire à la liste des commentaires
|
# le commentaire ne s'ajoute pas aux commentaires généraux
|
||||||
comments = find("#commentaires_flux")
|
comments = find("#commentaires_flux")
|
||||||
expect(comments).to have_selector(".description", count: 5)
|
expect(comments).to have_selector(".description", count: 1)
|
||||||
|
|
||||||
# ajout du commentaire aux commentaires du champs
|
# ajout du commentaire aux commentaires du champs
|
||||||
find("#liste_champs th", text: champ1.libelle).click_link("COM")
|
find("#liste_champs th", text: champ1.libelle).click_link("COM")
|
||||||
|
|
|
@ -18,12 +18,12 @@ feature 'users: flux de commentaires' do
|
||||||
visit users_dossier_recapitulatif_path(dossier)
|
visit users_dossier_recapitulatif_path(dossier)
|
||||||
end
|
end
|
||||||
|
|
||||||
scenario "tous les commentaires sont affichés" do
|
scenario "seuls les commentaires généraux sont affichés" do
|
||||||
comments = find("#commentaires_flux")
|
comments = find("#commentaires_flux")
|
||||||
expect(comments).to have_selector(".description", count: 4)
|
expect(comments).to have_selector(".description", count: 1)
|
||||||
end
|
end
|
||||||
|
|
||||||
scenario "ouverture commentaires limités au champs dans une modale", js: true do
|
scenario "affichage des commentaires du champs", js: true do
|
||||||
th = find("#liste_champs th", text: champ1.libelle)
|
th = find("#liste_champs th", text: champ1.libelle)
|
||||||
th.click_link("COM")
|
th.click_link("COM")
|
||||||
expect(page).to have_css("#modalCommentairesDossierParChamp.in")
|
expect(page).to have_css("#modalCommentairesDossierParChamp.in")
|
||||||
|
@ -41,9 +41,9 @@ feature 'users: flux de commentaires' do
|
||||||
form.fill_in("texte_commentaire", with: "le corps du commentaire sur le champ #{champ1.libelle}")
|
form.fill_in("texte_commentaire", with: "le corps du commentaire sur le champ #{champ1.libelle}")
|
||||||
form.click_on("Poster")
|
form.click_on("Poster")
|
||||||
|
|
||||||
# ajout du commentaire à la liste des commentaires
|
# le commentaire ne s'ajoute pas aux commentaires généraux
|
||||||
comments = find("#commentaires_flux")
|
comments = find("#commentaires_flux")
|
||||||
expect(comments).to have_selector(".description", count: 5)
|
expect(comments).to have_selector(".description", count: 1)
|
||||||
|
|
||||||
# ajout du commentaire aux commentaires du champs
|
# ajout du commentaire aux commentaires du champs
|
||||||
find("#liste_champs th", text: champ1.libelle).click_link("COM")
|
find("#liste_champs th", text: champ1.libelle).click_link("COM")
|
||||||
|
|
Loading…
Reference in a new issue