<% /****************************************************************************** * Copyright (c) 2000-2005 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"%> <%@ page import="java.util.*" %> <%@ page import="com.edeal.frontline.navigation.FlRequest" %> <%@ page import="com.edeal.frontline.Utils" %> <%@ page import="com.edeal.frontline.SalesInvestBean" %> <%@ page import="com.edeal.frontline.FlContext" %> <%@ page import="com.edeal.frontline.*" %> <%@ page import="com.edeal.frontline.EnterpriseBean"%> <%@ page import="com.edeal.frontline.PersonBean"%> <%@ page import="com.edeal.frontline.OpportunityBean"%> <%@ page import="com.edeal.frontline.helper.EventBaseHelper.EventCategory" %> <%@ page import="com.edeal.frontline.DataDictionary" %> <%@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(); // On récupère l'ID de l'acteur connecté String actID = null; String valRestr = "AGFED;CAFED;BNFED;CM;SEM;CONG;AGASSO;CAASSO;BNASSO"; if (session != null) { actID = (String)session.getAttribute("effectiveActorID"); if (actID == null) { actID = (String)session.getAttribute("actorID"); if (actID == null) { throw new FrontlineException("there is not an actor ID in session"); } } } String id = null; try { id = Event.getID(); } catch (Exception e) { id = null; Vector actorsList = new Vector(); // on initialize l'acteur connecté actorsList.addElement(actID); Event.setEvtActors(actorsList); } boolean isSalesInvest = false; try { isSalesInvest = Event.isEvtIsSalesInvest(); } catch (FieldNotInitializedException e) { } boolean isActiveSalesInvest = SalesInvestBean.isSalesInvestActive(context); String eventCategoryID = null; try { eventCategoryID = Event.getEvtCategory(); } catch (FieldNotInitializedException e){ } String statutEvt = ""; // Catégorie de l'Event MEET, TMK , QST ou autre String eventCategory = null; try { eventCategory = (String) dico.getRefDisp("Ect", "Te2", eventCategoryID); } catch (Exception e) { } // Type de l'Evenementt Asso String eventTypeAssoID = null; try { eventTypeAssoID = (String) dico.getRefIdByCode("EvtCategory", "AGASSO"); } catch (Exception e) { eventTypeAssoID =""; } // Type de l'Evenementt Agfed String eventTypeFedID = null; try { eventTypeFedID = (String) dico.getRefIdByCode("EvtCategory", "AGFED"); } catch (Exception e) { eventTypeAssoID =""; } // On initialise l'état de l'évènement pour le cas AGASSO: AG des Associations seulement dans le cas de la création if ( ( eventTypeAssoID.equalsIgnoreCase(eventCategoryID) || eventTypeFedID.equalsIgnoreCase(eventCategoryID) ) && id == null) { // Types du statut de l'Evenement String openStatutType = null; String closedStatutType = null; try { openStatutType = (String) dico.getRefIdByCode("EvtStatut_", "OPEN"); closedStatutType = (String) dico.getRefIdByCode("EvtStatut_", "CLOSED"); } catch (Exception e) { } Event.setCustomProperty("EvtStatut_", openStatutType); statutEvt = openStatutType; } else if ( !( eventTypeAssoID.equalsIgnoreCase(eventCategoryID) || eventTypeFedID.equalsIgnoreCase(eventCategoryID) ) && id == null) { statutEvt = ""; Event.setCustomProperty("EvtStatut_", ""); } try { ActorBean act = new ActorBean(actID, context); Vector actRolesIDs = new Vector(); // On récupère les roles actRolesIDs.addAll(act.getRoles()); String roleADMID = dico.getRefIdByCode("ActRoles", "ADMIN"); /* Role Administrateur*/ String roleTECHADMID = dico.getRefIdByCode("ActRoles", "S_ADM_TECH"); /* Role Administrateur Technique*/ String role1ID = dico.getRefIdByCode("ActRoles", "D_ATTACH_DIR"); /* Role Attache de Direction*/ String role2ID = dico.getRefIdByCode("ActRoles", "D_SECR_DIR"); /* Role Secretariat de direction */ String role3ID = dico.getRefIdByCode("ActRoles", "R_RESP_RES_AFFIL"); /* Role Responsable Affilies */ String role4ID = dico.getRefIdByCode("ActRoles", "ASSO_SAL"); /* Role Association avec Salarié */ String role5ID = dico.getRefIdByCode("ActRoles", "ASSO_SANS_SAL"); /* Role Association sans Salarié*/ String role6ID = dico.getRefIdByCode("ActRoles", "D_DIR_PRES"); /* Role Directeur/Président*/ String role7ID = dico.getRefIdByCode("ActRoles", "J_RESP_POLE_JUR"); /* Role Responsable Pôle Réseau - Juridique - Qualité*/ String role8ID = dico.getRefIdByCode("ActRoles", "R_ASSIST_RES_AFFIL"); /* Role Assistant Réseau Affiliés */ if(!(actRolesIDs.isEmpty())) { // on prend le 1er role de l'acteur connecté String actRoleIDactuel = actRolesIDs.get(0).toString(); if(actRoleIDactuel.equals(role1ID)) { valRestr ="AGASSO;CAASSO;BNASSO"; } else if (actRoleIDactuel.equals(role7ID)) { valRestr ="AGASSO;CAASSO;BNASSO;SEM;CONG"; } else if (actRoleIDactuel.equals(role8ID)) { valRestr ="AGFED;CAFED;BNFED;SEM;CONG;AGASSO;CAASSO;BNASSO"; } else if (actRoleIDactuel.equals(role6ID) || actRoleIDactuel.equals(role2ID)) { valRestr ="AGFED;CAFED;BNFED;CM;AGASSO;CAASSO;BNASSO"; } else if (actRoleIDactuel.equals(role4ID) || actRoleIDactuel.equals(role5ID)) { valRestr ="AGFED;CAFED;BNFED;CM;SEM;CONG"; } else if (actRoleIDactuel.equals(roleADMID) || actRoleIDactuel.equals(roleTECHADMID)) { valRestr =""; } } } catch (FrontlineException e) { } String numvoie= null, nature = null, libvoie = null, ville = null, pays = null, cp = null; String tiersDisp = ""; String eventTiersID = null; try { eventTiersID = (String) Event.getCustomProperty("EvtTiers_"); } catch (FieldNotInitializedException e){ } Boolean changeAdresseOK = false; String eventTiersIDOrig = ""; try { eventTiersIDOrig = (String) Event.getCustomProperty("EvtTrsOrigine_"); } catch (FieldNotInitializedException e){ } if( !eventTiersIDOrig.equalsIgnoreCase(eventTiersID)) { changeAdresseOK = true; } String evtTiersOrig = ""; if( !evtTiersOrig.equalsIgnoreCase("")) { evtTiersOrig = eventTiersID; } /* if(eventTiersID != null && changeAdresseOK){ EnterpriseBean Enterprise = new EnterpriseBean(eventTiersID , context); try { numvoie = (String) Enterprise.getCustomProperty("EntVoieNum_"); } catch (FieldNotInitializedException e) { } try { tiersDisp = (String) Enterprise.getEntCorpName(); } catch (FieldNotInitializedException e) { tiersDisp =""; } try{ nature = (String) Enterprise.getCustomProperty("EntNatureVoieID_"); } catch (FieldNotInitializedException e) { } try{ libvoie = (String) Enterprise.getCustomProperty("EntLblVoie_"); } catch (FieldNotInitializedException e) { } try{ cp= (String) Enterprise.getEntZip(); } catch (FieldNotInitializedException e) { } try{ ville= (String) Enterprise.getEntCity(); } catch (FieldNotInitializedException e) { } try{ pays= (String) Enterprise.getEntCtrID(); } catch (FieldNotInitializedException e) { } if(cp != null) { Event.setEvtZip(cp); } if(ville != null) { Event.setEvtCity(ville); } if(pays != null) { Event.setEvtCtrID(pays); } if(numvoie != null) { Event.setCustomProperty("EvtNumVoie_", numvoie); } if(nature != null) { Event.setCustomProperty("EvtNatureVoie", nature); } if(libvoie != null) { Event.setCustomProperty("EvtLibelleVoie", libvoie); } } else if (eventTiersID != null && !changeAdresseOK){ EnterpriseBean Enterprise = new EnterpriseBean(eventTiersID , context); try { tiersDisp = (String) Enterprise.getEntCorpName(); } catch (FieldNotInitializedException e) { tiersDisp =""; } } */ // Id de l'objet Localite String lo_ObjID = null; String lstObjID = null; try { String[] fieldslo_ = {"ObjID"}; String[][] querylo_ = {{"ObjSql = 'Enterprise'"}}; Vector listlo_ = ObjectsBean.listSummary(context, fieldslo_, querylo_); // on prend le premier si la liste n'est pas vide if(listlo_ != null && !listlo_.isEmpty()) { Hashtable tab = (Hashtable)listlo_.firstElement(); lo_ObjID = (String)tab.get("ObjID"); } } catch (Exception e) { lo_ObjID =""; } if (lo_ObjID!= null && !lo_ObjID.equalsIgnoreCase("")){ ObjectsBean obj = new ObjectsBean(lo_ObjID, context); String codeListe = obj.getObjSelectListCode(); if (codeListe != null) { try { String[] fieldslst = {"LstID"}; String[][] querylst = {{"LstCode = '" + codeListe + "'"}}; Vector listlst = ListBean.listSummary(context, fieldslst, querylst); // on prend le premier si la liste n'est pas vide if(listlst != null && !listlst.isEmpty()) { Hashtable tab = (Hashtable)listlst.firstElement(); lstObjID = (String)tab.get("LstID"); } } catch (Exception e) { lstObjID =""; } } } %> "> " listTitle="<%= Utils.getMessage(session, \"L6401\", \"Liste des événements\") %>" ou="<%=\"/edit_event.fl\" + ( id !=null ? \"?id=\"+id : \"\")%>" > <% if( id == null ) { %> <%} %>
<% if(id == null) { %> <%} else { %> <%} if (!statutEvt.equals("")){ %> <%} %>
<%--if ( EventCategory.MEET.toString().equals(eventCategory)) { --%> <%-- --%> <%-- --%> <%--<%} --%> <% if (isActiveSalesInvest) { %> "> <% } /*if (EventCategory.MEET.toString().equals(eventCategory)) { */%> <%/* } */%>
<%-- --%> <%-- --%>
" size="4" style="width: 80%;"/> " style="width:100%" />
">