%@page session="true" import="com.edeal.frontline.*,java.util.*"%>
<%@ page import="com.edeal.frontline.navigation.FlRequest" %>
<%@taglib uri="http://www.e-deal.com/taglib/fl" prefix="fl"%>
<%
final org.apache.commons.logging.Log logger = org.apache.commons.logging.LogFactory.getLog(getClass());
FlRequest flRequest = new FlRequest(request);
FlContext context = flRequest.getContext();
DataDictionary dico = context.getDataDictionary();
//liste des personne
String actID = null;
try{
actID = Actor.getActID();
}catch(FieldNotInitializedException e){}
String actPhone = null;
try{
actPhone = Actor.getActPhone();
}catch(FieldNotInitializedException e){}
String actMobile = null;
try{
actMobile = Actor.getActMobile();
}catch(FieldNotInitializedException e){}
String actMail = null;
try{
actMail = Actor.getActMail();
}catch(FieldNotInitializedException e){}
String actName = null;
try{
actName = Actor.getActName();
}catch(FieldNotInitializedException e){}
String actFstName = null;
try{
actFstName = Actor.getActFstName();
}catch(FieldNotInitializedException e){}
String actFunction ="";
try{
actFunction = Actor.getActFunction();
}catch(FieldNotInitializedException e){}
%>
<%= actFstName != null ? Utils.formatToWeb(actFstName,false)+" " : "" %><%= actName !=null ? Utils.formatToWeb(actName,false) : "" %>
|
<% if(actFunction != null && !actFunction.equals("")){ %>
<%= Utils.formatToWeb(actFunction,false) %>
<% } if(actPhone != null){%>
<%= Utils.formatPhoneToMobile(actPhone,session)%>
<% } if(actMobile != null){%>
<%= Utils.formatPhoneToMobile(actMobile,session)%>
<% } if(actMail != null){%>
<%= Utils.formatToWeb(actMail,false)%>
<% } %>
|