maia/.svn/pristine/e9/e9e621e568ed3443f5dc8b7bcff...

55 lines
2.1 KiB
Plaintext
Executable File

<ui:composition xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui"
xmlns:pe="http://primefaces.org/ui/extensions"
template="/WEB-INF/templates/template.xhtml"
xmlns:maia="http://java.sun.com/jsf/composite/maiaComponents">
<ui:define name="content">
<h:form id="formTable">
<maia:pageEvents controller="" queryProcess=":formTable:filters"
saveProcess="" saveUpdate="" focusContainer=":formTable:filters" />
<p:panelGrid styleClass="m-filters" columns="1" style="width:1200px">
<f:facet name="header">
<h:outputText value="#{msg_armas.hfld_datosgenerales}" />
</f:facet>
<h:panelGrid id="filters" columns="1">
<h:panelGrid columns="4" id="detallePersona">
<p:outputLabel for="orgcontrol"
value="#{msg_armas.lbl_estado_arma}:" />
<p:selectManyMenu id="orgcontrol" required="true"
value="#{reporteTipoArma.estadosSeleccionados}"
style="width:250px">
<f:selectItems value="#{reporteTipoArma.lestadosArma}"
var="estado" itemLabel="#{estado.description}"
itemValue="#{estado.pk.catalog}" />
</p:selectManyMenu>
<p:outputLabel for="outipoarma"
value="#{msg_armas.lbl_tipoarmas}:" />
<p:selectManyMenu id="outipoarma" required="true"
value="#{reporteTipoArma.tipoArmaSeleccionada}"
style="width:250px">
<f:selectItems value="#{reporteTipoArma.ltipoArma}" var="tipo"
itemLabel="#{tipo.description}" itemValue="#{tipo.pk.catalog}" />
</p:selectManyMenu>
</h:panelGrid>
</h:panelGrid>
<h:panelGrid columns="2">
<p:commandButton id="reporte" value="#{msg_armas.lbl_imprimir}"
actionListener="#{reporteTipoArma.reporteTotalArmaCompania()}"
ajax="false" process="@this" />
<p:commandButton id="reporteXls"
value="#{msg_armas.lbl_imprimirXls}"
actionListener="#{reporteTipoArma.reporteTotalArmaCompaniaXls()}"
ajax="false" process="@this" />
</h:panelGrid>
</p:panelGrid>
</h:form>
</ui:define>
</ui:composition>