%
/******************************************************************************
* Copyright (c) 2000-2008 e-Deal
*
* e-Deal S.A.
* 55 rue Brillat Savarin
* 75013 Paris
* France
*
* T: +33 (0)1 53 80 80 30
* F: +33 (0)1 73 01 69 77
* http://www.e-deal.com
*
* La diffusion de ce code source sous quelque forme que ce soit sans
* l'autorisation de E-DEAL est interdite.
*
* Vous êtes autorisés à modifier ce code source uniquement pour votre usage
* propre et sous réserve que les mentions de copyright demeurent intactes.
*
* Ce code est fourni en l'état. Aucune garantie d'aucune sorte, explicite ou
* implicite n'est donnée. En aucun cas E-DEAL ne pourra être tenu pour
* responsable des dommages pouvant résulter de l'utilisation de ce code
* source.
******************************************************************************/
%><%@page session="true" import="com.edeal.frontline.*"%><%@ page import="com.edeal.frontline.navigation.FlRequest" %><%@taglib uri="http://www.e-deal.com/taglib/fl" prefix="fl" %>
<%
FlRequest flRequest = new FlRequest(request);
String id = null;
try {
id = Population.getID();
} catch (FieldNotInitializedException fnie) {
}
int popType = 0;
try {
popType = Population.getPopType();
} catch (FieldNotInitializedException ex) {
}
// We only show the "Add" button if we have only one object, OR it's a Ent/Per couple
boolean isEntPer = false;
boolean isEntPerSil = false;
int nbObjTypes = 0;
if (id != null) {
try { if (Population.isPopIsEnt()) nbObjTypes++; } catch (FieldNotInitializedException fnie) {}
try { if (Population.isPopIsPer()) nbObjTypes++; } catch (FieldNotInitializedException fnie) {}
try { if (Population.isPopIsJou()) nbObjTypes++; } catch (FieldNotInitializedException fnie) {}
try { if (Population.isPopIsSup()) nbObjTypes++; } catch (FieldNotInitializedException fnie) {}
try { if (Population.isPopIsSil()) nbObjTypes++; } catch (FieldNotInitializedException fnie) {}
try { Population.getPopObj1(); nbObjTypes++; } catch (FieldNotInitializedException fnie) {}
try { Population.getPopObj2(); nbObjTypes++; } catch (FieldNotInitializedException fnie) {}
try { Population.getPopObj3(); nbObjTypes++; } catch (FieldNotInitializedException fnie) {}
try { Population.getPopObj4(); nbObjTypes++; } catch (FieldNotInitializedException fnie) {}
try { Population.getPopObj5(); nbObjTypes++; } catch (FieldNotInitializedException fnie) {}
if (nbObjTypes == 2) {
try {
isEntPer = (Population.isPopIsEnt() && Population.isPopIsPer());
} catch (FieldNotInitializedException e) {
}
}
if (nbObjTypes == 3) {
try {
isEntPerSil = (Population.isPopIsEnt() && Population.isPopIsPer() && Population.isPopIsSil());
} catch (FieldNotInitializedException e) {
}
}
}
%>
|
|
|
<% if (isEntPer || nbObjTypes == 1) { %>
|
|
|
|
|
|
<% } else if (isEntPerSil) { %>
|
|
|
|
|
|
|
|
|
|
|
|
<% } %>
<% if (id != null) { %>
|
|
|
|
|
|
<% } %>