fixes bug #9201
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@76862 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
8819fbec65
commit
04e38f5731
|
@ -1,11 +1,13 @@
|
||||||
package com.rjconsultores.ventaboletos.web.gui.controladores.job;
|
package com.rjconsultores.ventaboletos.web.gui.controladores.job;
|
||||||
|
|
||||||
|
import java.sql.Connection;
|
||||||
|
import java.sql.SQLException;
|
||||||
import java.util.Calendar;
|
import java.util.Calendar;
|
||||||
import java.util.Date;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
|
import javax.sql.DataSource;
|
||||||
|
|
||||||
import org.apache.log4j.Logger;
|
import org.apache.log4j.Logger;
|
||||||
import org.quartz.Job;
|
import org.quartz.Job;
|
||||||
import org.quartz.JobExecutionContext;
|
import org.quartz.JobExecutionContext;
|
||||||
|
@ -13,14 +15,7 @@ import org.quartz.JobExecutionException;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.context.ApplicationContext;
|
import org.springframework.context.ApplicationContext;
|
||||||
|
|
||||||
import com.rjconsultores.ventaboletos.entidad.Empresa;
|
|
||||||
import com.rjconsultores.ventaboletos.entidad.Estado;
|
|
||||||
import com.rjconsultores.ventaboletos.entidad.FiscalImpressora;
|
|
||||||
import com.rjconsultores.ventaboletos.entidad.MonitoramentoCCF;
|
|
||||||
import com.rjconsultores.ventaboletos.entidad.MonitoramentoCCFR2;
|
|
||||||
import com.rjconsultores.ventaboletos.entidad.MonitoramentoCRZ;
|
import com.rjconsultores.ventaboletos.entidad.MonitoramentoCRZ;
|
||||||
import com.rjconsultores.ventaboletos.entidad.PuntoVenta;
|
|
||||||
import com.rjconsultores.ventaboletos.entidad.Usuario;
|
|
||||||
import com.rjconsultores.ventaboletos.service.MonitoramentoCCFService;
|
import com.rjconsultores.ventaboletos.service.MonitoramentoCCFService;
|
||||||
import com.rjconsultores.ventaboletos.service.MonitoramentoCRZService;
|
import com.rjconsultores.ventaboletos.service.MonitoramentoCRZService;
|
||||||
import com.rjconsultores.ventaboletos.web.utilerias.spring.AppContext;
|
import com.rjconsultores.ventaboletos.web.utilerias.spring.AppContext;
|
||||||
|
@ -35,6 +30,7 @@ public class MonitoramentoCCFCRZJob implements Job {
|
||||||
@Autowired
|
@Autowired
|
||||||
private MonitoramentoCRZService monitoramentoCRZService;
|
private MonitoramentoCRZService monitoramentoCRZService;
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void execute(JobExecutionContext arg0) throws JobExecutionException {
|
public void execute(JobExecutionContext arg0) throws JobExecutionException {
|
||||||
log.info("Inicio do job de Monitoramento CCF CRZ...");
|
log.info("Inicio do job de Monitoramento CCF CRZ...");
|
||||||
|
@ -48,45 +44,42 @@ public class MonitoramentoCCFCRZJob implements Job {
|
||||||
inicio.set(Calendar.MINUTE, 0);
|
inicio.set(Calendar.MINUTE, 0);
|
||||||
inicio.set(Calendar.SECOND, 0);
|
inicio.set(Calendar.SECOND, 0);
|
||||||
|
|
||||||
|
gravaCCFsQuebrados();
|
||||||
|
|
||||||
for (MonitoramentoCCFR2 r2 : buscaRegistrosR2()){
|
gravaCRZsQuebradas();
|
||||||
Map<Integer, MonitoramentoCCF> ccfs = new HashMap<Integer, MonitoramentoCCF>();
|
|
||||||
for (int i = 0; i < r2.coofim - r2.cooinicio; i++){
|
|
||||||
ccfs.put(r2.cooinicio + i, null);
|
|
||||||
}
|
|
||||||
for (MonitoramentoCCF m : buscaQuebraCCF(r2)){
|
|
||||||
ccfs.put(m.getSequenciaCCFQuebrada(), m);
|
|
||||||
}
|
|
||||||
for (Map.Entry<Integer, MonitoramentoCCF> entry : ccfs.entrySet()) {
|
|
||||||
if (entry.getValue() == null){
|
|
||||||
MonitoramentoCCF novo = new MonitoramentoCCF();
|
|
||||||
novo.setDataMonitoramento(new Date());
|
|
||||||
novo.setDataOcorrencia(inicio.getTime());
|
|
||||||
novo.setDiasAlertaAberto(new Date());
|
|
||||||
novo.setImpressora(new FiscalImpressora(r2.fiscalImpressoraId));
|
|
||||||
novo.setEmpresa(new Empresa(r2.empresaId));
|
|
||||||
novo.setEstadoInstalacao(new Estado(r2.estadoId));
|
|
||||||
novo.setPuntoventa(new PuntoVenta(r2.puntoventaId));
|
|
||||||
novo.setSequenciaCCFQuebrada(entry.getKey());
|
|
||||||
//novo.setUsuario(new Usuario(r2.u));
|
|
||||||
monitoramentoCCFService.suscribir(novo);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for (MonitoramentoCRZ m : buscaQuebraCRZ()){
|
|
||||||
monitoramentoCRZService.suscribir(m);
|
|
||||||
}
|
|
||||||
|
|
||||||
log.info("Fim do job de Monitoramento CCF CRZ.");
|
log.info("Fim do job de Monitoramento CCF CRZ.");
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<MonitoramentoCCFR2> buscaRegistrosR2(){
|
private void gravaCRZsQuebradas() {
|
||||||
return monitoramentoCCFService.buscaRegistrosR2(inicio.getTime());
|
log.info("Gravando CRZs quebradas...");
|
||||||
|
for (MonitoramentoCRZ m : buscaQuebraCRZ()){
|
||||||
|
monitoramentoCRZService.suscribir(m);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<MonitoramentoCCF> buscaQuebraCCF(MonitoramentoCCFR2 r2){
|
private void gravaCCFsQuebrados() {
|
||||||
return monitoramentoCCFService.buscaQuebraCCF(r2.numserie20, inicio.getTime());
|
try{
|
||||||
|
//con = dataSource.getConnection();
|
||||||
|
monitoramentoCCFService.openConnection();
|
||||||
|
/*
|
||||||
|
* CCF:
|
||||||
|
* Distinct serie impressora na caja pra pegar somente as que venderam no dia anterior
|
||||||
|
* ultimo CCF no dia anterior -1 pra pegar o inicial
|
||||||
|
* join caja com fiscal_r4
|
||||||
|
* verificar se tem quebra
|
||||||
|
*/
|
||||||
|
log.info("Gravando CCFs quebrados...");
|
||||||
|
Map<String, Integer> impressoras = monitoramentoCCFService.obterImpressorasComCCFInicial(inicio.getTime());
|
||||||
|
Calendar c = Calendar.getInstance();
|
||||||
|
c.setTime(inicio.getTime());
|
||||||
|
c.add(Calendar.DAY_OF_MONTH, -5);
|
||||||
|
monitoramentoCCFService.gravarListaCCFQuebrados(impressoras, c.getTime());
|
||||||
|
//con.commit();
|
||||||
|
monitoramentoCCFService.closeConnection();
|
||||||
|
} catch (Exception e){
|
||||||
|
log.error("", e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<MonitoramentoCRZ> buscaQuebraCRZ(){
|
public List<MonitoramentoCRZ> buscaQuebraCRZ(){
|
||||||
|
|
|
@ -14,6 +14,8 @@ import com.rjconsultores.ventaboletos.service.MonitoramentoCCFService;
|
||||||
import com.rjconsultores.ventaboletos.service.MonitoramentoCRZService;
|
import com.rjconsultores.ventaboletos.service.MonitoramentoCRZService;
|
||||||
import com.rjconsultores.ventaboletos.web.utilerias.MyGenericForwardComposer;
|
import com.rjconsultores.ventaboletos.web.utilerias.MyGenericForwardComposer;
|
||||||
import com.rjconsultores.ventaboletos.web.utilerias.MyListbox;
|
import com.rjconsultores.ventaboletos.web.utilerias.MyListbox;
|
||||||
|
import com.rjconsultores.ventaboletos.web.utilerias.render.RenderMonitoramentoCCF;
|
||||||
|
import com.rjconsultores.ventaboletos.web.utilerias.render.RenderMonitoramentoCRZ;
|
||||||
|
|
||||||
@Controller("painelEcfController")
|
@Controller("painelEcfController")
|
||||||
@Scope("prototype")
|
@Scope("prototype")
|
||||||
|
@ -38,7 +40,9 @@ public class PainelEcfController extends MyGenericForwardComposer {
|
||||||
super.doAfterCompose(comp);
|
super.doAfterCompose(comp);
|
||||||
|
|
||||||
monitoramentoCCFList.setData(lsCCF);
|
monitoramentoCCFList.setData(lsCCF);
|
||||||
|
monitoramentoCCFList.setItemRenderer(new RenderMonitoramentoCCF());
|
||||||
monitoramentoCRZList.setData(lsCRZ);
|
monitoramentoCRZList.setData(lsCRZ);
|
||||||
|
monitoramentoCRZList.setItemRenderer(new RenderMonitoramentoCRZ());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
package com.rjconsultores.ventaboletos.web.utilerias.render;
|
||||||
|
|
||||||
|
import java.text.SimpleDateFormat;
|
||||||
|
|
||||||
|
import org.zkoss.zul.Listcell;
|
||||||
|
import org.zkoss.zul.Listitem;
|
||||||
|
import org.zkoss.zul.ListitemRenderer;
|
||||||
|
|
||||||
|
import com.rjconsultores.ventaboletos.entidad.MonitoramentoCCF;
|
||||||
|
|
||||||
|
public class RenderMonitoramentoCCF implements ListitemRenderer {
|
||||||
|
|
||||||
|
public void render(Listitem lstm, Object o) throws Exception {
|
||||||
|
MonitoramentoCCF m = (MonitoramentoCCF) o;
|
||||||
|
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
|
||||||
|
|
||||||
|
Listcell lc = new Listcell(m.getEmpresa() != null ? m.getEmpresa().getNombempresa() : "");
|
||||||
|
lc.setParent(lstm);
|
||||||
|
|
||||||
|
lc = new Listcell(m.getImpressora().getNumserie20());
|
||||||
|
lc.setParent(lstm);
|
||||||
|
|
||||||
|
lc = new Listcell(m.getEstadoInstalacao() != null ? m.getEstadoInstalacao().getNombestado() : "");
|
||||||
|
lc.setParent(lstm);
|
||||||
|
|
||||||
|
lc = new Listcell(sdf.format(m.getDataOcorrencia()));
|
||||||
|
lc.setParent(lstm);
|
||||||
|
|
||||||
|
lc = new Listcell(m.getPuntoventa().getNombpuntoventa());
|
||||||
|
lc.setParent(lstm);
|
||||||
|
|
||||||
|
lc = new Listcell(m.getSequenciaCCFQuebrada().toString());
|
||||||
|
lc.setParent(lstm);
|
||||||
|
|
||||||
|
lc = new Listcell(sdf.format(m.getDiasAlertaAberto()));
|
||||||
|
lc.setParent(lstm);
|
||||||
|
|
||||||
|
lstm.setAttribute("data", m);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,40 @@
|
||||||
|
package com.rjconsultores.ventaboletos.web.utilerias.render;
|
||||||
|
|
||||||
|
import java.text.SimpleDateFormat;
|
||||||
|
|
||||||
|
import org.zkoss.zul.Listcell;
|
||||||
|
import org.zkoss.zul.Listitem;
|
||||||
|
import org.zkoss.zul.ListitemRenderer;
|
||||||
|
|
||||||
|
import com.rjconsultores.ventaboletos.entidad.MonitoramentoCRZ;
|
||||||
|
|
||||||
|
public class RenderMonitoramentoCRZ implements ListitemRenderer {
|
||||||
|
|
||||||
|
public void render(Listitem lstm, Object o) throws Exception {
|
||||||
|
MonitoramentoCRZ m = (MonitoramentoCRZ) o;
|
||||||
|
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
|
||||||
|
|
||||||
|
Listcell lc = new Listcell(m.getEmpresa() != null ? m.getEmpresa().getNombempresa() : "");
|
||||||
|
lc.setParent(lstm);
|
||||||
|
|
||||||
|
lc = new Listcell(m.getImpressora().getNumserie20());
|
||||||
|
lc.setParent(lstm);
|
||||||
|
|
||||||
|
lc = new Listcell(m.getEstadoInstalacao() != null ? m.getEstadoInstalacao().getNombestado() : "");
|
||||||
|
lc.setParent(lstm);
|
||||||
|
|
||||||
|
lc = new Listcell(sdf.format(m.getDataReducaoZFaltante()));
|
||||||
|
lc.setParent(lstm);
|
||||||
|
|
||||||
|
lc = new Listcell(m.getPuntoventa().getNombpuntoventa());
|
||||||
|
lc.setParent(lstm);
|
||||||
|
|
||||||
|
lc = new Listcell(m.getSequenciaCRZQuebrada().toString());
|
||||||
|
lc.setParent(lstm);
|
||||||
|
|
||||||
|
lc = new Listcell(sdf.format(m.getDiasAlertaAberto()));
|
||||||
|
lc.setParent(lstm);
|
||||||
|
|
||||||
|
lstm.setAttribute("data", m);
|
||||||
|
}
|
||||||
|
}
|
|
@ -160,6 +160,8 @@
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.MerchantBancario
|
<value>com.rjconsultores.ventaboletos.entidad.MerchantBancario
|
||||||
</value>
|
</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Moneda</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Moneda</value>
|
||||||
|
<value>com.rjconsultores.ventaboletos.entidad.MonitoramentoCRZ</value>
|
||||||
|
<value>com.rjconsultores.ventaboletos.entidad.MonitoramentoCCF</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.MarcaClaseServicio
|
<value>com.rjconsultores.ventaboletos.entidad.MarcaClaseServicio
|
||||||
</value>
|
</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.MotivoCancelacion</value>
|
<value>com.rjconsultores.ventaboletos.entidad.MotivoCancelacion</value>
|
||||||
|
|
|
@ -7246,6 +7246,6 @@ painelEcfController.lbECF.value=ECF
|
||||||
painelEcfController.lbUFInstalacao.value=UF Instalação
|
painelEcfController.lbUFInstalacao.value=UF Instalação
|
||||||
painelEcfController.lbDataOcorrencia.value=Data Ocorrência
|
painelEcfController.lbDataOcorrencia.value=Data Ocorrência
|
||||||
painelEcfController.lbAgencia.value=Agência
|
painelEcfController.lbAgencia.value=Agência
|
||||||
painelEcfController.lbSeqCCFQuebrada.value=Seq. CCF Quebrada
|
painelEcfController.lbSeqCCFQuebrada.value=CCF Quebrada
|
||||||
painelEcfController.lbDiasAlertaAberto.value=Dias Alerta Aberto
|
painelEcfController.lbDiasAlertaAberto.value=Dias Alerta Aberto
|
||||||
painelEcfController.lbSeqCRZQuebrada.value=Seq. CRZ Quebrada
|
painelEcfController.lbSeqCRZQuebrada.value=CRZ Quebrada
|
|
@ -7734,6 +7734,6 @@ painelEcfController.lbECF.value=ECF
|
||||||
painelEcfController.lbUFInstalacao.value=UF Instalação
|
painelEcfController.lbUFInstalacao.value=UF Instalação
|
||||||
painelEcfController.lbDataOcorrencia.value=Data Ocorrência
|
painelEcfController.lbDataOcorrencia.value=Data Ocorrência
|
||||||
painelEcfController.lbAgencia.value=Agência
|
painelEcfController.lbAgencia.value=Agência
|
||||||
painelEcfController.lbSeqCCFQuebrada.value=Seq. CCF Quebrada
|
painelEcfController.lbSeqCCFQuebrada.value=CCF Quebrada
|
||||||
painelEcfController.lbDiasAlertaAberto.value=Dias Alerta Aberto
|
painelEcfController.lbDiasAlertaAberto.value=Dias Alerta Aberto
|
||||||
painelEcfController.lbSeqCRZQuebrada.value=Seq. CRZ Quebrada
|
painelEcfController.lbSeqCRZQuebrada.value=CRZ Quebrada
|
|
@ -4,9 +4,11 @@
|
||||||
<?init class="org.zkoss.zkplus.databind.AnnotateDataBinderInit" arg0="winPainelEcf"?>
|
<?init class="org.zkoss.zkplus.databind.AnnotateDataBinderInit" arg0="winPainelEcf"?>
|
||||||
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
|
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
|
||||||
|
|
||||||
<zk xmlns="http://www.zkoss.org/2005/zul" xmlns:h="http://www.w3.org/1999/xhtml">
|
<zk xmlns="http://www.zkoss.org/2005/zul"
|
||||||
<window id="winPainelEcf" border="normal" apply="${painelEcfController}"
|
xmlns:h="http://www.w3.org/1999/xhtml">
|
||||||
width="800px" contentStyle="overflow:auto"
|
<window id="winPainelEcf" border="normal"
|
||||||
|
apply="${painelEcfController}" width="800px" height="600px"
|
||||||
|
contentStyle="overflow:auto"
|
||||||
title="${c:l('painelEcfController.window.title')}">
|
title="${c:l('painelEcfController.window.title')}">
|
||||||
<toolbar>
|
<toolbar>
|
||||||
<hbox spacing="5px" style="padding:1px" align="right">
|
<hbox spacing="5px" style="padding:1px" align="right">
|
||||||
|
@ -19,53 +21,69 @@
|
||||||
tooltiptext="${c:l('painelEcfController.btnFechar.tooltiptext')}" />
|
tooltiptext="${c:l('painelEcfController.btnFechar.tooltiptext')}" />
|
||||||
</hbox>
|
</hbox>
|
||||||
</toolbar>
|
</toolbar>
|
||||||
|
<grid fixedLayout="true">
|
||||||
|
<columns>
|
||||||
|
<column />
|
||||||
|
</columns>
|
||||||
|
<rows>
|
||||||
|
<row>
|
||||||
<listbox id="monitoramentoCCFList"
|
<listbox id="monitoramentoCCFList"
|
||||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox"
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox"
|
||||||
vflex="true" multiple="false">
|
multiple="false" height="200px">
|
||||||
<auxhead>
|
<auxhead>
|
||||||
<auxheader label="Monitor CCF" colspan="7" />
|
<auxheader label="Monitor CCF" colspan="7" />
|
||||||
</auxhead>
|
</auxhead>
|
||||||
<listhead sizable="true">
|
<listhead sizable="true">
|
||||||
<listheader id="lhEmpresa" width="10%"
|
<listheader id="lhEmpresa" width="20%"
|
||||||
label="${c:l('painelEcfController.lbEmpresa.value')}" />
|
label="${c:l('painelEcfController.lbEmpresa.value')}" />
|
||||||
<listheader id="lhECF" width="10%"
|
<listheader id="lhECF" width="20%"
|
||||||
label="${c:l('painelEcfController.lbECF.value')}" />
|
label="${c:l('painelEcfController.lbECF.value')}" />
|
||||||
<listheader id="lhUFInstalacao" width="15%"
|
<listheader id="lhUFInstalacao" width="10%"
|
||||||
label="${c:l('painelEcfController.lbUFInstalacao.value')}" />
|
label="${c:l('painelEcfController.lbUFInstalacao.value')}" />
|
||||||
<listheader id="lhDataOcorrencia" width="15%"
|
<listheader id="lhDataOcorrencia"
|
||||||
|
width="10%"
|
||||||
label="${c:l('painelEcfController.lbDataOcorrencia.value')}" />
|
label="${c:l('painelEcfController.lbDataOcorrencia.value')}" />
|
||||||
<listheader id="lhAgencia" width="10%"
|
<listheader id="lhAgencia" width="20%"
|
||||||
label="${c:l('painelEcfController.lbAgencia.value')}" />
|
label="${c:l('painelEcfController.lbAgencia.value')}" />
|
||||||
<listheader id="lhSeqCCFQuebrada" width="20%"
|
<listheader id="lhSeqCCFQuebrada"
|
||||||
|
width="10%"
|
||||||
label="${c:l('painelEcfController.lbSeqCCFQuebrada.value')}" />
|
label="${c:l('painelEcfController.lbSeqCCFQuebrada.value')}" />
|
||||||
<listheader id="lhDiasAlertaAberto" width="20%"
|
<listheader id="lhDiasAlertaAberto"
|
||||||
|
width="10%"
|
||||||
label="${c:l('painelEcfController.lbDiasAlertaAberto.value')}" />
|
label="${c:l('painelEcfController.lbDiasAlertaAberto.value')}" />
|
||||||
</listhead>
|
</listhead>
|
||||||
</listbox>
|
</listbox>
|
||||||
<h:br /><h:br />
|
</row>
|
||||||
|
<row>
|
||||||
<listbox id="monitoramentoCRZList"
|
<listbox id="monitoramentoCRZList"
|
||||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox"
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox"
|
||||||
vflex="true" multiple="false">
|
multiple="false" height="200px">
|
||||||
<auxhead>
|
<auxhead>
|
||||||
<auxheader label="Monitor CRZ" colspan="7" />
|
<auxheader label="Monitor CRZ" colspan="7" />
|
||||||
</auxhead>
|
</auxhead>
|
||||||
<listhead sizable="true">
|
<listhead sizable="true">
|
||||||
<listheader id="lhEmpresaCRZ" width="10%"
|
<listheader id="lhEmpresaCRZ" width="20%"
|
||||||
label="${c:l('painelEcfController.lbEmpresa.value')}" />
|
label="${c:l('painelEcfController.lbEmpresa.value')}" />
|
||||||
<listheader id="lhECFCRZ" width="10%"
|
<listheader id="lhECFCRZ" width="20%"
|
||||||
label="${c:l('painelEcfController.lbECF.value')}" />
|
label="${c:l('painelEcfController.lbECF.value')}" />
|
||||||
<listheader id="lhUFInstalacaoCRZ" width="15%"
|
<listheader id="lhUFInstalacaoCRZ"
|
||||||
|
width="10%"
|
||||||
label="${c:l('painelEcfController.lbUFInstalacao.value')}" />
|
label="${c:l('painelEcfController.lbUFInstalacao.value')}" />
|
||||||
<listheader id="lhDataOcorrenciaCRZ" width="15%"
|
<listheader id="lhDataOcorrenciaCRZ"
|
||||||
|
width="10%"
|
||||||
label="${c:l('painelEcfController.lbDataOcorrencia.value')}" />
|
label="${c:l('painelEcfController.lbDataOcorrencia.value')}" />
|
||||||
<listheader id="lhAgenciaCRZ" width="10%"
|
<listheader id="lhAgenciaCRZ" width="20%"
|
||||||
label="${c:l('painelEcfController.lbAgencia.value')}" />
|
label="${c:l('painelEcfController.lbAgencia.value')}" />
|
||||||
<listheader id="lhSeqCRZQuebrada" width="20%"
|
<listheader id="lhSeqCRZQuebrada"
|
||||||
|
width="10%"
|
||||||
label="${c:l('painelEcfController.lbSeqCRZQuebrada.value')}" />
|
label="${c:l('painelEcfController.lbSeqCRZQuebrada.value')}" />
|
||||||
<listheader id="lhDiasAlertaAbertoCRZ" width="20%"
|
<listheader id="lhDiasAlertaAbertoCRZ"
|
||||||
|
width="20%"
|
||||||
label="${c:l('painelEcfController.lbDiasAlertaAberto.value')}" />
|
label="${c:l('painelEcfController.lbDiasAlertaAberto.value')}" />
|
||||||
</listhead>
|
</listhead>
|
||||||
</listbox>
|
</listbox>
|
||||||
|
</row>
|
||||||
|
</rows>
|
||||||
|
</grid>
|
||||||
</window>
|
</window>
|
||||||
</zk>
|
</zk>
|
||||||
|
|
Loading…
Reference in New Issue