Feature #8452
ouvertJBDC Connecteur - Export CV -Colonne vide
0%
Description
Nous utilisons le connecteur JDBC pour afficher nos listes.
Si dans une colonne il y a du tag HTML
Au moment de l'export CSV (disponible dans le connecteur)
Ces colonnes comportant des tags sont vides.
Exemple de la requête:
------------------------------------------------------
select
d.labelen as "Department",
d.labelfr as "Famille",
s.labelen as "Sub department",
s.labelfr as "Sous famille",
f.code as "Codification",
coalesce(f.labelen, '') as "Job title",
f.labelfr as "Intitulés de fonction",
CASE WHEN f.iddocen IS NULL THEN '' ELSE concat ('<a href="/silverpeas/File/',f.iddocen,'?ContentLanguage=fr/"><img width="15" height="18" src="/weblib/mgic/icon/puce.gif" alt="doc" title="',f.labelen,'"/></a>') END as "<img src='/weblib/mgic/icon/en.jpg' width='16' height='16' />",
CASE WHEN f.iddocfr IS NULL THEN '' ELSE concat ('<a href="/silverpeas/File/',f.iddocfr,'?ContentLanguage=fr/"><img width="15" height="18" src="/weblib/mgic/icon/puce.gif" alt="doc" title="',f.labelfr,'"/></a>') END as "<img src='/weblib/mgic/icon/fr.jpg' width='16' height='16' />",
CASE WHEN f.id_positioncategory=0 THEN '' ELSE coalesce(c.labelen,'') END as "Grandes Fonctions<br/>Position/Category",
coalesce(f.costcenter,'') as "Cost Center<br/>Centre de coût"
from
mgic_functionRH f, mgic_department d, mgic_subdepartment s, mgic_positioncategory c
where
f.id_mgic_department = d.id AND f.id_mgic_subdepartment = s.id AND f.id_positioncategory = c.id AND f.status=0
order by
d.labelen,s.labelen,f.labelen
--------------------------------------------------
Les colonnes exportée correspondant à f.iddocen & f.iddocfr sont vides
------------------------------------------------------
Nous devons livrer ces fonctionnalités début janvier 2017,
Tous les pilotes sont prêts avant mise en Production
Fichiers