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
|
||||
|
||||
def commentaires
|
||||
if @champ_id
|
||||
@dossier.ordered_commentaires.where(champ_id: @champ_id).decorate
|
||||
else
|
||||
@dossier.ordered_commentaires.all.decorate
|
||||
end
|
||||
@dossier.ordered_commentaires.where(champ_id: @champ_id).decorate
|
||||
end
|
||||
|
||||
def commentaire_email
|
||||
|
|
|
@ -18,12 +18,12 @@ feature 'backoffice: flux de commentaires' do
|
|||
visit backoffice_dossier_path(dossier)
|
||||
end
|
||||
|
||||
scenario "tous les commentaires sont affichés" do
|
||||
scenario "seuls les commentaires généraux sont affichés" do
|
||||
comments = find("#commentaires_flux")
|
||||
expect(comments).to have_selector(".description", count: 4)
|
||||
expect(comments).to have_selector(".description", count: 1)
|
||||
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")
|
||||
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.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")
|
||||
expect(comments).to have_selector(".description", count: 5)
|
||||
expect(comments).to have_selector(".description", count: 1)
|
||||
|
||||
# ajout du commentaire aux commentaires du champs
|
||||
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)
|
||||
end
|
||||
|
||||
scenario "tous les commentaires sont affichés" do
|
||||
scenario "seuls les commentaires généraux sont affichés" do
|
||||
comments = find("#commentaires_flux")
|
||||
expect(comments).to have_selector(".description", count: 4)
|
||||
expect(comments).to have_selector(".description", count: 1)
|
||||
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.click_link("COM")
|
||||
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.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")
|
||||
expect(comments).to have_selector(".description", count: 5)
|
||||
expect(comments).to have_selector(".description", count: 1)
|
||||
|
||||
# ajout du commentaire aux commentaires du champs
|
||||
find("#liste_champs th", text: champ1.libelle).click_link("COM")
|
||||
|
|
Loading…
Reference in a new issue