53 lines
3.1 KiB
Plaintext
Executable File
53 lines
3.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="ffechainicio" value="#{msg_general.lbl_inittdate}:"/>
|
|
<p:calendar id="ffechainicio" value="#{reporteTramiteCentroController.fechainicial}" maxlength="30" pattern="dd-MM-yyyy" disabled="false" required="true" size="27" onkeyup="Maia.forceupper(event, this);">
|
|
<p:ajax event="dateSelect" update="ffechainicio" />
|
|
</p:calendar>
|
|
<p:outputLabel for="ffechainicio" value="#{msg_general.lbl_enddate}:"/>
|
|
<p:calendar id="ffechafinal" value="#{reporteTramiteCentroController.fechafinal}" maxlength="30" pattern="dd-MM-yyyy" disabled="false" required="true" size="27" onkeyup="Maia.forceupper(event, this);">
|
|
<p:ajax event="dateSelect" update="ffechafinal" />
|
|
</p:calendar>
|
|
|
|
<p:outputLabel for="centro" value="#{msg_armas.lbl_centroControl}:"/>
|
|
<p:selectOneMenu id="centro" value="#{reporteTramiteCentroController.idCentroControl}" style="width:250px" >
|
|
<f:selectItem itemLabel="TODOS" itemValue="TODOS"/>
|
|
<f:selectItems value="#{reporteTramiteCentroController.lcentros}" var="id"
|
|
itemLabel="#{id.description}" itemValue="#{id.pk.catalog}" />
|
|
</p:selectOneMenu>
|
|
|
|
<p:outputLabel for="estado" value="#{msg_armas.lbl_estadoDocumento}:"/>
|
|
<p:selectOneMenu id="estado" value="#{reporteTramiteCentroController.estadoDoc}" style="width:250px" >
|
|
<f:selectItem itemLabel="TODOS" itemValue="TODOS"/>
|
|
<f:selectItems value="#{reporteTramiteCentroController.lestados}" var="id"
|
|
itemLabel="#{id.description}" itemValue="#{id.pk.catalog}" />
|
|
</p:selectOneMenu>
|
|
|
|
</h:panelGrid>
|
|
</h:panelGrid>
|
|
<p:commandButton id="reporte" value="#{msg_armas.lbl_imprimir}" actionListener="#{reporteTramiteCentroController.reporteTramitesCentro()}" ajax="false" process="@this"/>
|
|
</p:panelGrid>
|
|
</h:form>
|
|
</ui:define>
|
|
</ui:composition> |