52 lines
3.1 KiB
Plaintext
Executable File
52 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:maia="http://java.sun.com/jsf/composite/maiaComponents"
|
|
xmlns:pe="http://primefaces.org/ui/extensions">
|
|
|
|
<h:form id="formInsertDelet">
|
|
<h:panelGrid columns="7" id="controls" styleClass="m-controls">
|
|
<maia:pageControls controller="#{auditReportController.auditinsdel}"
|
|
queryProcess=":formTable:filters"
|
|
queryUpdate=":formTable:tabopciones:formInsertDelet:insdelTable"
|
|
dialogWidgetVar=":formTable:tabopciones:formInsertDelet" createUpdate=":formTable:tabopciones:formInsertDelet" showSaveBtn="false" showCreateBtn="false" showQueryBtn="false"/>
|
|
</h:panelGrid>
|
|
|
|
|
|
|
|
<p:dataTable id="insdelTable" var="row" value="#{auditReportController.auditinsdel.lrecord}" rows="200" style="min-width: 500px; width: auto;" rowKey="#{row.rowkey()}" selectionMode="single" scrollable="true" scrollWidth="100%">
|
|
<p:column headerText="#{msg_general.lbl_date}" resizable="true" style="width:60px" >
|
|
<h:outputText value="#{row.pk.changedate}" />
|
|
</p:column>
|
|
<p:column headerText="#{msg_general.lbl_office}" resizable="true" style="width:80px">
|
|
<h:outputText value="#{row.modifiedData['officedesc']}"/>
|
|
</p:column>
|
|
<p:column headerText="#{msg_general.lbl_branch}" resizable="true" style="width:60px">
|
|
<h:outputText value="#{row.modifiedData['branchdesc']}"/>
|
|
</p:column>
|
|
<p:column headerText="#{msg_general.lbl_terminal}" resizable="true" style="width:60px" >
|
|
<h:outputText value="#{row.terminalcode}"/>
|
|
</p:column>
|
|
|
|
<p:column headerText="#{msg_general.lbl_realDate}" resizable="true" style="width:80px">
|
|
<h:outputText value="#{row.pk.realdate}"/>
|
|
</p:column>
|
|
<p:column headerText="#{msg_general.lbl_action}" resizable="true" style="width:60px" >
|
|
<h:outputText value="#{(row.isinsert.equals('Y'))?msg_general.lbl_insert:msg_general.lbl_delete}" />
|
|
</p:column>
|
|
|
|
<p:column headerText="#{msg_general.lbl_transaction}" style="width:150px" resizable="true">
|
|
<h:outputText value="#{row.modifiedData['transactiondesc']}"/>
|
|
</p:column>
|
|
<p:column headerText="#{msg_general.lbl_table}" style="width:150px" resizable="true">
|
|
<h:outputText value="#{row.pk.tablename}"/>
|
|
</p:column>
|
|
<p:column headerText="#{msg_general.lbl_value}" style="width:450px" resizable="true">
|
|
<h:outputText value="#{row.recvalue}"/>
|
|
</p:column>
|
|
</p:dataTable>
|
|
|
|
</h:form>
|
|
</ui:composition> |