1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
<head>
<title>1000-10-0 : Consultation par entité géographique</title>
<jsp:include page="commun/head-inc.jsp"/>
</head>
<body>
<div id="XContent">
<div class="page" id="page">
<s:form id="EntitesGeographiques" cssStyle="width:100%;">
<s:hidden name="refEntite" value="%{refEntite}"/>
<div id="ConsultationContainer" dojoType="TabContainer" selectedChild="${sessionScope.geocurrentTabIndex}" style="width: 100%; height: 700px;vertical-align: top;">
<s:if test="%{comptesStocks}">
<div id="0" dojoType="ContentPane" class="Consultation" label="Comptes de stocks" style="display:none; width:100%;vertical-align: top;"
refreshOnShow="true" preload="false"
href="./<%=Constants.CONSULTER_LES_COMPTES_STOCKS_ACTION%>.action?refEntite=${requestScope.refEntite}&IDVH2=<%=Constants.CONSULTER_LES_COMPTES_STOCKS_FONCTION %>">
</div>
</s:if>
<s:if test="%{contenu}">
<div id="1" dojoType="ContentPane" class="Consultation" label="Contenu" style="display:none; width:100%;vertical-align: top;"
refreshOnShow="true" preload="false"
href="./<%=Constants.CONSULTER_CONTENEURS_ACTION%>.action?refEntite=${requestScope.refEntite}&IDVH2=<%= Constants.CONSULTER_CONTENEURS_FONCTION %>">
</div>
</s:if>
<s:if test="%{suivi}">
<div id="2" dojoType="ContentPane" class="Consultation" label="Opérations de suivi" style="display:none; width:100%;vertical-align: top;"
refreshOnShow="true" preload="false"
href="./<%=Constants.CONSULTER_OPERATION_DE_SUIVI_ACTION%>.action?refEntite=${requestScope.refEntite}&IDVH2=<%= Constants.CONSULTER_OPERATION_DE_SUIVI_FONCTION %>">
</div>
</s:if>
<s:if test="%{dispos}">
<div id="3" dojoType="ContentPane" class="Consultation" label="Places libres" style="display:none; width:100%;vertical-align: top;"
refreshOnShow="true" preload="false"
href="./<%=Constants.PLACES_DISPONIBLES_ACTION%>.action?refEntite=${requestScope.refEntite}&IDVH2=<%= Constants.PLACES_DISPONIBLES_FONCTION %>">
</div>
</s:if>
</div>
</s:form>
</div>
</div>
</body>
</html> |
Partager