44 lines
2.6 KiB
Plaintext
Executable File
44 lines
2.6 KiB
Plaintext
Executable File
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
|
|
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:c="http://java.sun.com/jstl/core"
|
|
xmlns:p="http://primefaces.org/ui"
|
|
xmlns:pe="http://primefaces.org/ui/extensions"
|
|
xmlns:fn="http://java.sun.com/jsp/jstl/functions"
|
|
xmlns:maia="http://java.sun.com/jsf/composite/maiaComponents"
|
|
template="/WEB-INF/templates/template.xhtml">
|
|
<ui:define name="content">
|
|
<h:form id="formTable">
|
|
<maia:pageEvents controller="#{reporteAgenciasSucursalesController}"
|
|
queryProcess=""
|
|
queryUpdate=""
|
|
saveProcess=""
|
|
saveUpdate=""
|
|
focusContainer=":formTable:filters" />
|
|
|
|
<p:panelGrid id="filters" columns="1" styleClass="m-filters">
|
|
<f:facet name="header">
|
|
<h:outputText value="#{msg_general.lbl_filters}" />
|
|
</f:facet>
|
|
<h:panelGrid columns="2" >
|
|
<p:outputLabel for="fpkdocumento" value="#{msg_armas.lbl_noDocumento}:" style="display:block;width:160px;" />
|
|
<h:panelGroup>
|
|
<p:inputText id="fpkdocumento" value="#{reporteAgenciasSucursalesController.numeroDocumento}" style="width: 250px;" disabled="true" />
|
|
<p:commandButton icon="ui-icon-link" actionListener="#{reporteAgenciasSucursalesController.openPersonLov()}"
|
|
process="@this" styleClass="m-lov-button" oncomplete="Maia.focus('formTable\\:idQuery');">
|
|
<p:ajax event="dialogReturn" listener="#{reporteAgenciasSucursalesController.onReturnPersonLov}" update=":formTable:filters" />
|
|
</p:commandButton>
|
|
</h:panelGroup>
|
|
<p:outputLabel for="fnombre" value="#{msg_armas.lbl_nombrerazonsocial}:" />
|
|
<p:inputText id="fnombre" value="#{reporteAgenciasSucursalesController.nombreRazonSocial}" disabled="true" maxlength="60" style="width: 400px;" onkeyup="Maia.forceupper(event, this);"/>
|
|
</h:panelGrid>
|
|
</p:panelGrid>
|
|
<h:panelGrid columns="7" id="controls" styleClass="m-controls">
|
|
<p:commandButton id="btnGenerarReporte" actionListener="#{reporteAgenciasSucursalesController.generarReporte}"
|
|
ajax="false" process="@this" value="#{msg_armas.btn_generarReporte}" >
|
|
</p:commandButton>
|
|
</h:panelGrid>
|
|
</h:form>
|
|
</ui:define>
|
|
</ui:composition> |