-
Bug
-
Résolution: Résolu
-
Mineur
-
6.02.25
-
Aucune
-
Aucune
Dans accueil.jsp, pour afficher la liste des liens des fiches à valider, on fait :
accueil.jsp
<a href="/servlet/com.jsbsoft.jtf.core.SG?EXT=<%= objet.getIdExtension() %>&PROC=<%= ReferentielObjets.getProcessus(ReferentielObjets.getCodeObjet(fiche.getMetaCodeObjet())) %>&ACTION=MODIFIER&ID_FICHE=<%= fiche.getMetaIdFiche() %>" title="<%= fiche.getMetaLibelleFiche() %>"><%= fiche.getMetaLibelleFiche() %></a>
Le problème est que "ReferentielObjets.getCodeObjet" attend en paramètre quelque chose comme "pagelibre" ou "petiteannonce", mais on lui donne le code de l'objet. Il suffit donc de supprimer cet appel :
<a href="/servlet/com.jsbsoft.jtf.core.SG?EXT=<%= objet.getIdExtension() %>&PROC=<%= ReferentielObjets.getProcessus(fiche.getMetaCodeObjet()) %>&ACTION=MODIFIER&ID_FICHE=<%= fiche.getMetaIdFiche() %>" title="<%= fiche.getMetaLibelleFiche() %>"><%= fiche.getMetaLibelleFiche() %></a>