0019804: GAP01_Metamorfose - Relatório de Solicitação de Cancelamento

0019805: GAP02.1_Metamorfose - Forma de Pagamento
bug#19805
bug#19804
dev:valdevir
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@102798 d1611594-4594-4d17-8e1d-87c2c4800839
master
valdir 2020-08-06 13:15:23 +00:00
parent 3cd65f011f
commit c758c0838d
11 changed files with 344 additions and 183 deletions

View File

@ -35,7 +35,15 @@ public class RelatorioEstornoCartao extends Relatorio {
stmt.setTimestamp("data_inicial", new java.sql.Timestamp(sdfDiaMesAnoHora.parse(sdfDiaMesAno.format(parametros.get("DATA_INICIAL")) + " 00:00:00").getTime()));
stmt.setTimestamp("data_final", new java.sql.Timestamp(sdfDiaMesAnoHora.parse(sdfDiaMesAno.format(parametros.get("DATA_FINAL")) + " 23:59:59").getTime()));
if (parametros.get("EMPRESA_ID") != null && !parametros.get("EMPRESA_ID").equals("-1")) {
stmt.setInt("empresaId", Integer.valueOf(parametros.get("EMPRESA_ID") + ""));
}
if (parametros.get("FORMA_PAGO") != null && !parametros.get("FORMA_PAGO").equals("-1")) {
stmt.setInt("formapagoId", Integer.valueOf(parametros.get("FORMA_PAGO") + ""));
}
if (parametros.get("DOCUMENTO_CPF") != null && parametros.get("DOCUMENTO_CPF") != "") {
stmt.setString("documentoCPF", parametros.get("DOCUMENTO_CPF").toString());
}
@ -67,6 +75,10 @@ public class RelatorioEstornoCartao extends Relatorio {
dataResult.put("bilhete", rset.getString("bilhete"));
dataResult.put("valorTransacao", rset.getBigDecimal("valorTransacao"));
dataResult.put("agenciaVenda", rset.getString("agenciaVenda"));
dataResult.put("formaPago", rset.getString("formaPago"));
dataResult.put("nombempresa", rset.getString("nombempresa"));
this.dados.add(dataResult);
}
@ -100,12 +112,19 @@ public class RelatorioEstornoCartao extends Relatorio {
sql.append(" dec.CORRIDA_ID servico, ");
sql.append(" dec.FECCORRIDA dataServico, ");
sql.append(" DEC.NUMFOLIOSISTEMA bilhete, ");
sql.append(" DEC.IMPORTETOTAL valorTransacao ");
sql.append(" DEC.IMPORTETOTAL valorTransacao, ");
sql.append(" pvBoleto.NUMPUNTOVENTA agenciaVenda, ");
sql.append(" fp.descpago formaPago, ");
sql.append(" e.nombempresa ");
sql.append(" FROM ");
sql.append(" DADOS_ESTORNO_CARTAO DEC ");
sql.append(" JOIN punto_venta pv ");
sql.append(" ON ");
sql.append(" pv.PUNTOVENTA_ID = dec.PUNTOVENTA_ID ");
sql.append(" JOIN punto_venta pvBoleto ON ");
sql.append(" pvBoleto.PUNTOVENTA_ID = dec.PONTO_VENDA_BOLETO_ID ");
sql.append(" JOIN forma_pago fp ON ");
sql.append(" fp.formapago_id = dec.formapago_id ");
sql.append(" JOIN usuario u ");
sql.append(" ON ");
sql.append(" u.USUARIO_ID = DEC.USUARIO_ID ");
@ -123,16 +142,27 @@ public class RelatorioEstornoCartao extends Relatorio {
sql.append(" e.EMPRESA_ID = m.EMPRESA_ID ");
sql.append(" WHERE ");
sql.append(" dec.activo = 1 ");
if (parametros.get("NUMPUNTOVENTA") != null && !parametros.get("NUMPUNTOVENTA").equals("-1")) {
sql.append(" AND dec.PUNTOVENTA_ID IN(" + parametros.get("NUMPUNTOVENTA") + ") ");
}
if (parametros.get("EMPRESA_ID") != null && !parametros.get("EMPRESA_ID").equals("-1")) {
sql.append(" AND e.EMPRESA_ID = :empresaId ");
}
if (parametros.get("FORMA_PAGO") != null && !parametros.get("FORMA_PAGO").equals("-1")) {
sql.append(" AND DEC.FORMAPAGO_ID = :formapagoId ");
}
if (parametros.get("DOCUMENTO_CPF") != null && parametros.get("DOCUMENTO_CPF") != "") {
sql.append(" AND LOWER(DEC.DOCUMENTOCPF) like LOWER(:documentoCPF) ||'%' ");
}
if (parametros.get("CARTAO") != null && parametros.get("CARTAO") != "") {
sql.append(" AND LOWER(dec.TIPOCARTAO) like '%' || LOWER(:cartao)||'%' ");
}
sql.append(" AND DEC.FECREGISTRO BETWEEN :data_inicial AND :data_final ");
return sql.toString();

View File

@ -19,14 +19,17 @@ import org.zkoss.util.resource.Labels;
import org.zkoss.zhtml.Messagebox;
import org.zkoss.zk.ui.Component;
import org.zkoss.zk.ui.event.Event;
import org.zkoss.zul.Combobox;
import org.zkoss.zul.Comboitem;
import org.zkoss.zul.Datebox;
import org.zkoss.zul.Paging;
import com.rjconsultores.ventaboletos.entidad.Empresa;
import com.rjconsultores.ventaboletos.entidad.FormaPago;
import com.rjconsultores.ventaboletos.entidad.PuntoVenta;
import com.rjconsultores.ventaboletos.relatorios.utilitarios.Relatorio;
import com.rjconsultores.ventaboletos.service.EmpresaService;
import com.rjconsultores.ventaboletos.service.FormaPagoService;
import com.rjconsultores.ventaboletos.utilerias.UsuarioLogado;
import com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar;
import com.rjconsultores.ventaboletos.web.utilerias.MyGenericForwardComposer;
@ -61,6 +64,12 @@ public class RelatorioEstornoCartaoController extends MyGenericForwardComposer {
private MyListbox puntoVentaList;
private MyListbox puntoVentaSelList;
private Combobox cmbFormaPago;
private List<FormaPago> lsFormaPago;
@Autowired
private FormaPagoService formaPagoService;
@Autowired
private EmpresaService empresaService;
@Autowired
@ -71,6 +80,9 @@ public class RelatorioEstornoCartaoController extends MyGenericForwardComposer {
@Override
public void doAfterCompose(Component comp) throws Exception {
lsEmpresa = empresaService.obtenerTodos();
lsFormaPago = formaPagoService.obtenerTodos();
super.doAfterCompose(comp);
puntoVentaList.setItemRenderer(new RenderRelatorioVendasBilheteiro());
puntoVentaSelList.setItemRenderer(new RenderRelatorioVendasBilheteiroSelecionados());
@ -152,6 +164,18 @@ public class RelatorioEstornoCartaoController extends MyGenericForwardComposer {
parametros.put("NUMPUNTOVENTA", puntoVentaIds.toString());
}
filtro.append(puntoVentas).append(";");
FormaPago formaPago = cmbFormaPago.getSelectedItem() != null ? (FormaPago) cmbFormaPago.getSelectedItem().getValue() : null;
filtro.append(" Forma de Pagamento: ");
if(formaPago != null) {
parametros.put("FORMA_PAGO", formaPago.getFormapagoId());
filtro.append(formaPago.getDescpago()).append(";");
} else {
filtro.append(" Todos;");
}
parametros.put("FILTROS", filtro.toString());
relatorio = new RelatorioEstornoCartao(parametros, dataSourceRead.getConnection());
@ -356,4 +380,19 @@ public class RelatorioEstornoCartaoController extends MyGenericForwardComposer {
this.txtCartao = txtCartao;
}
public List<FormaPago> getLsFormaPago() {
return lsFormaPago;
}
public void setLsFormaPago(List<FormaPago> lsFormaPago) {
this.lsFormaPago = lsFormaPago;
}
public Combobox getCmbFormaPago() {
return cmbFormaPago;
}
public void setCmbFormaPago(Combobox cmbFormaPago) {
this.cmbFormaPago = cmbFormaPago;
}
}

View File

@ -19,7 +19,7 @@ cliente.label=Cliente
cpf.label=CPF
email.label=E-mail
telefone.label=Telefone
cartao.label=Cartăo
cartao.label=Tipo de Cartão/Produto
numeroCartao.label=Número Cartão
nsu.label=NSU
autorizacao.label=Autorização
@ -31,3 +31,6 @@ servico.label=Servi
dataServico.label=Data Serviço
bilhete.label=Bilhete
valorTransacao.label=Valor Transação
empresa.label=Empresa
formaPago.label=Forma de Pagamento
pontoDeventa.label=Ponto de Venda

View File

@ -19,7 +19,7 @@ cliente.label=Cliente
cpf.label=CPF
email.label=E-mail
telefone.label=Telefone
cartao.label=Cartăo
cartao.label=Tipo de Cartão/Produto
numeroCartao.label=Número Cartão
nsu.label=NSU
autorizacao.label=Autorização
@ -31,3 +31,6 @@ servico.label=Servi
dataServico.label=Data Serviço
bilhete.label=Bilhete
valorTransacao.label=Valor Transação
empresa.label=Empresa
formaPago.label=Forma de Pagamento
pontoDeventa.label=Ponto de Venda

View File

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="RelatorioEstornoCartao" pageWidth="842" pageHeight="595" orientation="Landscape" whenNoDataType="NoDataSection" columnWidth="802" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="c092ef85-9334-4225-93d7-1acb7cf4d021">
<property name="ireport.zoom" value="3.890613690150013"/>
<property name="ireport.x" value="0"/>
<property name="ireport.y" value="336"/>
<property name="ireport.x" value="165"/>
<property name="ireport.y" value="0"/>
<property name="net.sf.jasperreports.export.xls.remove.emtpy.space.between.columns" value="true"/>
<property name="net.sf.jasperreports.export.xls.remove.emtpy.space.between.rows" value="true"/>
<property name="net.sf.jasperreports.export.xls.exclude.origin.band.2" value="pageHeader"/>
<property name="net.sf.jasperreports.export.xls.exclude.origin.keep.first.band.1" value="columnHeader"/>
<property name="ireport.zoom" value="1.5"/>
<parameter name="NOME_RELATORIO" class="java.lang.String"/>
<parameter name="DATA_INICIAL" class="java.util.Date"/>
<parameter name="DATA_FINAL" class="java.util.Date"/>
@ -34,6 +34,9 @@
<field name="dataServico" class="java.util.Date"/>
<field name="bilhete" class="java.lang.String"/>
<field name="cliente" class="java.lang.String"/>
<field name="agenciaVenda" class="java.lang.String"/>
<field name="formaPago" class="java.lang.String"/>
<field name="nombempresa" class="java.lang.String"/>
<background>
<band splitType="Stretch"/>
</background>
@ -135,279 +138,322 @@
</pageHeader>
<columnHeader>
<band height="20" splitType="Stretch">
<textField>
<reportElement uuid="6d606a89-ef32-44fa-a1ae-6b9c0179e3ac" x="0" y="0" width="47" height="20"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="6d606a89-ef32-44fa-a1ae-6b9c0179e3ac" stretchType="RelativeToTallestObject" x="31" y="0" width="30" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{agencia.label}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="78789f48-2720-4a0f-8200-48c7168dcc20" x="47" y="0" width="37" height="20"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="78789f48-2720-4a0f-8200-48c7168dcc20" stretchType="RelativeToTallestObject" x="61" y="0" width="37" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{bilheteiro.label}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="75e8fd92-595b-4031-9583-95cbe3b0b8aa" x="84" y="0" width="43" height="20"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="75e8fd92-595b-4031-9583-95cbe3b0b8aa" stretchType="RelativeToTallestObject" x="98" y="0" width="43" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{data.label}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="801625b5-a4f7-4052-80cb-ced378ba6756" x="183" y="0" width="45" height="20"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="801625b5-a4f7-4052-80cb-ced378ba6756" stretchType="RelativeToTallestObject" x="191" y="0" width="45" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{cpf.label}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="fdefd76d-7c9d-4674-ae4b-24e3bc6b1e8f" x="127" y="0" width="56" height="20"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="fdefd76d-7c9d-4674-ae4b-24e3bc6b1e8f" stretchType="RelativeToTallestObject" x="141" y="0" width="50" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{cliente.label}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="26e5eeeb-ff3d-41ea-9978-2c04418120b2" x="228" y="0" width="50" height="20"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="26e5eeeb-ff3d-41ea-9978-2c04418120b2" stretchType="RelativeToTallestObject" x="236" y="0" width="40" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{email.label}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="bb82a4ef-15b6-4284-9160-9714da3579bb" x="278" y="0" width="45" height="20"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="bb82a4ef-15b6-4284-9160-9714da3579bb" stretchType="RelativeToTallestObject" x="276" y="0" width="35" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{telefone.label}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="b5679ed7-3404-4a11-ad22-d1460be15ba1" x="323" y="0" width="42" height="20"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="b5679ed7-3404-4a11-ad22-d1460be15ba1" stretchType="RelativeToTallestObject" x="373" y="0" width="35" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{cartao.label}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="ee1b4575-d301-457c-bfc3-0c78550ac894" x="365" y="0" width="56" height="20"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="ee1b4575-d301-457c-bfc3-0c78550ac894" stretchType="RelativeToTallestObject" x="408" y="0" width="56" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{numeroCartao.label}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="58d1a7ea-be04-49b9-b7bb-913fafaf7a76" x="421" y="0" width="42" height="20"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="58d1a7ea-be04-49b9-b7bb-913fafaf7a76" stretchType="RelativeToTallestObject" x="464" y="0" width="35" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{nsu.label}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="7eaf1a6c-5182-4b0e-aa4f-20af519c69f8" x="463" y="0" width="42" height="20"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="7eaf1a6c-5182-4b0e-aa4f-20af519c69f8" stretchType="RelativeToTallestObject" x="499" y="0" width="40" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{autorizacao.label}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="ac3fbe18-d2c6-4fc1-aa4c-b3c8c91b1174" x="505" y="0" width="42" height="20"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="ac3fbe18-d2c6-4fc1-aa4c-b3c8c91b1174" stretchType="RelativeToTallestObject" x="539" y="0" width="42" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{dataTransacao.label}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="da0677b0-a380-4686-ad53-61ddf129e143" x="547" y="0" width="34" height="20"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="da0677b0-a380-4686-ad53-61ddf129e143" stretchType="RelativeToTallestObject" x="581" y="0" width="30" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{valorEstorno.label}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="f1442d1b-8590-4deb-8bc5-96b2316462b7" x="581" y="0" width="34" height="20"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="f1442d1b-8590-4deb-8bc5-96b2316462b7" stretchType="RelativeToTallestObject" x="611" y="0" width="28" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{origem.label}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="c61f1d44-90da-401f-a832-b8c06682bde8" x="615" y="0" width="34" height="20"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="c61f1d44-90da-401f-a832-b8c06682bde8" stretchType="RelativeToTallestObject" x="639" y="0" width="28" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{destino.label}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="67b880a8-7be7-42d7-889a-78c9b2113a4c" x="649" y="0" width="34" height="20"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="67b880a8-7be7-42d7-889a-78c9b2113a4c" stretchType="RelativeToTallestObject" x="667" y="0" width="28" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{servico.label}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="07f1f00b-329c-4b23-bc9e-bf9064ccd147" x="683" y="0" width="42" height="20"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="07f1f00b-329c-4b23-bc9e-bf9064ccd147" stretchType="RelativeToTallestObject" x="695" y="0" width="42" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{dataServico.label}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="84ffd875-2c40-418f-916d-305d98a04dfc" x="725" y="0" width="42" height="20"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="84ffd875-2c40-418f-916d-305d98a04dfc" stretchType="RelativeToTallestObject" x="737" y="0" width="35" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{bilhete.label}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="53e910c5-7876-4cad-96c8-8bebeabcc0b6" x="767" y="0" width="34" height="20"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="53e910c5-7876-4cad-96c8-8bebeabcc0b6" stretchType="RelativeToTallestObject" x="772" y="0" width="30" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{valorTransacao.label}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="cdddc9db-1bdc-42fe-9a7a-c442fbc27980" stretchType="RelativeToTallestObject" x="1" y="0" width="30" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font fontName="SansSerif" size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{empresa.label}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="4dbb8177-8d50-4b80-9a61-1991b940fd06" stretchType="RelativeToTallestObject" x="311" y="0" width="31" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{formaPago.label}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="99bce7f3-8e93-41c0-ba75-ee5e1ad183e1" stretchType="RelativeToTallestObject" x="342" y="0" width="31" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{pontoDeventa.label}]]></textFieldExpression>
</textField>
</band>
</columnHeader>
<detail>
<band height="27" splitType="Stretch">
<textField isBlankWhenNull="true">
<reportElement uuid="b6303a6f-7dcb-4e04-b760-9da3cc781862" x="0" y="0" width="47" height="27"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="b6303a6f-7dcb-4e04-b760-9da3cc781862" stretchType="RelativeToTallestObject" x="31" y="0" width="30" height="27"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
<paragraph leftIndent="2"/>
</textElement>
<textFieldExpression><![CDATA[$F{agencia}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="82deceaa-3bf0-40e5-8d0f-24cbc6799b18" x="47" y="0" width="37" height="27"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="82deceaa-3bf0-40e5-8d0f-24cbc6799b18" stretchType="RelativeToTallestObject" x="61" y="0" width="37" height="27"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$F{bilheteiro}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="011f18ad-4c98-419f-a100-9a4ddb25e255" x="183" y="0" width="45" height="27"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="011f18ad-4c98-419f-a100-9a4ddb25e255" stretchType="RelativeToTallestObject" x="191" y="0" width="45" height="27"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$F{cpf}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="66bbaaa2-f05a-474e-b37a-32ef7e148226" x="228" y="0" width="50" height="27"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="66bbaaa2-f05a-474e-b37a-32ef7e148226" stretchType="RelativeToTallestObject" x="236" y="0" width="40" height="27"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
<paragraph leftIndent="2"/>
</textElement>
<textFieldExpression><![CDATA[$F{email}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="aeba3ac4-bb56-4bd3-9c2f-497a3f11cd9c" x="278" y="0" width="45" height="27"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="aeba3ac4-bb56-4bd3-9c2f-497a3f11cd9c" stretchType="RelativeToTallestObject" x="276" y="0" width="35" height="27"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$F{telefone}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="1bbe289d-cf99-4ce3-99b6-bea9ea555dd2" x="323" y="0" width="42" height="27"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="1bbe289d-cf99-4ce3-99b6-bea9ea555dd2" stretchType="RelativeToTallestObject" x="373" y="0" width="35" height="27"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$F{cartao}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="419dc8fd-3ace-4305-bb9f-f8e5e73028db" x="365" y="0" width="56" height="27"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="419dc8fd-3ace-4305-bb9f-f8e5e73028db" stretchType="RelativeToTallestObject" x="408" y="0" width="56" height="27"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$F{numeroCartao}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="6e9ab248-fff5-48f5-9c4a-abdf192dac72" x="421" y="0" width="42" height="27"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="6e9ab248-fff5-48f5-9c4a-abdf192dac72" stretchType="RelativeToTallestObject" x="464" y="0" width="35" height="27"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$F{nsu}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="a34f17c2-9306-4af1-835c-2e80b9acbb1e" x="463" y="0" width="42" height="27"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="a34f17c2-9306-4af1-835c-2e80b9acbb1e" stretchType="RelativeToTallestObject" x="499" y="0" width="40" height="27"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$F{autorizacao}]]></textFieldExpression>
</textField>
<textField pattern="dd/MM/yyyy" isBlankWhenNull="true">
<reportElement uuid="838657a0-d5bf-4a28-aea4-b8b6f19fed96" x="505" y="0" width="42" height="27"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" pattern="dd/MM/yyyy" isBlankWhenNull="true">
<reportElement uuid="838657a0-d5bf-4a28-aea4-b8b6f19fed96" stretchType="RelativeToTallestObject" x="539" y="0" width="42" height="27"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$F{dataTransacao}]]></textFieldExpression>
</textField>
<textField pattern="###0.00" isBlankWhenNull="true">
<reportElement uuid="bacf4384-5350-446b-b0d5-7e013114e25d" x="547" y="0" width="34" height="27"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" pattern="###0.00" isBlankWhenNull="true">
<reportElement uuid="bacf4384-5350-446b-b0d5-7e013114e25d" stretchType="RelativeToTallestObject" x="581" y="0" width="30" height="27"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$F{valorEstorno}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="20a5d436-c6ba-45cc-9fd5-03aaff8a98ba" x="581" y="0" width="34" height="27"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="20a5d436-c6ba-45cc-9fd5-03aaff8a98ba" stretchType="RelativeToTallestObject" x="611" y="0" width="28" height="27"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$F{origem}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="4cd32cee-a081-4c86-970c-912891f1ba86" x="615" y="0" width="34" height="27"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="4cd32cee-a081-4c86-970c-912891f1ba86" stretchType="RelativeToTallestObject" x="639" y="0" width="28" height="27"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$F{destino}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="7bd19ec9-ea19-44e6-96c1-b8e1c191538d" x="649" y="0" width="34" height="27"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="7bd19ec9-ea19-44e6-96c1-b8e1c191538d" stretchType="RelativeToTallestObject" x="667" y="0" width="28" height="27"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$F{servico}]]></textFieldExpression>
</textField>
<textField pattern="dd/MM/yyyy" isBlankWhenNull="true">
<reportElement uuid="3035abfe-7fee-47f1-90d0-df1b33113e2d" x="683" y="0" width="42" height="27"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" pattern="dd/MM/yyyy" isBlankWhenNull="true">
<reportElement uuid="3035abfe-7fee-47f1-90d0-df1b33113e2d" stretchType="RelativeToTallestObject" x="695" y="0" width="42" height="27"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$F{dataServico}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="ca18697e-f3ef-4b34-a10d-9c92b281be56" x="725" y="0" width="42" height="27"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="ca18697e-f3ef-4b34-a10d-9c92b281be56" stretchType="RelativeToTallestObject" x="737" y="0" width="35" height="27"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$F{bilhete}]]></textFieldExpression>
</textField>
<textField pattern="###0.00" isBlankWhenNull="true">
<reportElement uuid="bd34bccf-8a59-452a-8030-425e4974acae" x="767" y="0" width="34" height="27"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" pattern="###0.00" isBlankWhenNull="true">
<reportElement uuid="bd34bccf-8a59-452a-8030-425e4974acae" stretchType="RelativeToTallestObject" x="772" y="0" width="30" height="27"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$F{valorTransacao}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="ba083af3-9665-4b37-89bb-2177fc2c235e" x="127" y="0" width="56" height="27"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="ba083af3-9665-4b37-89bb-2177fc2c235e" stretchType="RelativeToTallestObject" x="141" y="0" width="50" height="27"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
<paragraph leftIndent="2"/>
</textElement>
<textFieldExpression><![CDATA[$F{cliente}]]></textFieldExpression>
</textField>
<textField pattern="dd/MM/yyyy" isBlankWhenNull="true">
<reportElement uuid="3494fbec-c42c-4657-8bef-7eee71c35b68" x="84" y="0" width="43" height="27"/>
<textElement textAlignment="Center">
<font size="7"/>
<textField isStretchWithOverflow="true" pattern="dd/MM/yyyy" isBlankWhenNull="true">
<reportElement uuid="3494fbec-c42c-4657-8bef-7eee71c35b68" stretchType="RelativeToTallestObject" x="98" y="0" width="43" height="27"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$F{data}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="afc496ba-8293-401b-9af8-cfec257b0dc4" stretchType="RelativeToTallestObject" x="1" y="0" width="30" height="27"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font fontName="SansSerif" size="6" isPdfEmbedded="true"/>
<paragraph leftIndent="2"/>
</textElement>
<textFieldExpression><![CDATA[$F{nombempresa}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="13be6e84-b384-4d18-81e7-3315e076a068" stretchType="RelativeToTallestObject" x="311" y="0" width="31" height="27"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$F{formaPago}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="13c48bbf-eb96-4334-916a-dfc7e08b51da" stretchType="RelativeToTallestObject" x="342" y="0" width="31" height="27"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="6" isPdfEmbedded="true"/>
</textElement>
<textFieldExpression><![CDATA[$F{agenciaVenda}]]></textFieldExpression>
</textField>
</band>
</detail>
<summary>

View File

@ -52,7 +52,6 @@ public class EditarFormaPagoController extends MyGenericForwardComposer {
private MyTextbox txtCvePago;
private Button btnApagar;
private BusquedaFormaPagoController busquedaFormaPagoController;
private Button btnSalvar;
private Checkbox chkIndRestricaoFormaPago;
private Checkbox chkCompoeTarifaETaxa;
private Checkbox chkCompoeTarifa;
@ -67,6 +66,8 @@ public class EditarFormaPagoController extends MyGenericForwardComposer {
private Row rowSomenteTarifa;
private boolean exibeTipoRestricaoFormaPago;
private Checkbox chkIndEstorno;
private MyComboboxEstandar cmbTipoFormapago;
public FormaPago getFormaPago() {
@ -123,6 +124,8 @@ public class EditarFormaPagoController extends MyGenericForwardComposer {
rd3.setChecked(true);
}
chkIndEstorno.setChecked(formaPago.getIndProcessoEstorno());
if (formaPago.getFormapagoId() == 1) {
cmbTipoFormapago.setDisabled(Boolean.TRUE);
}
@ -165,6 +168,16 @@ public class EditarFormaPagoController extends MyGenericForwardComposer {
chkCompoeTarifa.setChecked(false);
}
public void onChange$cmbTipoFormapago(Event event) {
TipoFormapago tipoFormaPagoEscolhido = ((TipoFormapago) cmbTipoFormapago.getSelectedItem().getValue());
if(tipoFormaPagoEscolhido.equals(TipoFormapago.CREDITO) || tipoFormaPagoEscolhido.equals(TipoFormapago.DEBITO)) {
chkIndEstorno.setChecked(true);
} else {
chkIndEstorno.setChecked(false);
}
}
public void onCheck$chkCompoeTarifaETaxa(Event event) {
chkCompoeTarifa.setChecked(!chkCompoeTarifaETaxa.isChecked());
}
@ -207,6 +220,8 @@ public class EditarFormaPagoController extends MyGenericForwardComposer {
}
}
formaPago.setIndProcessoEstorno(chkIndEstorno.isChecked());
if (formaPago.getFormapagoId() == null) {
List<FormaPago> lsFP =
formaPagoService.buscarPorDescricao(formaPago.getDescpago());
@ -364,4 +379,12 @@ public class EditarFormaPagoController extends MyGenericForwardComposer {
this.rowSomenteTarifa = rowSomenteTarifa;
}
public Checkbox getChkIndEstorno() {
return chkIndEstorno;
}
public void setChkIndEstorno(Checkbox chkIndEstorno) {
this.chkIndEstorno = chkIndEstorno;
}
}

View File

@ -1075,6 +1075,7 @@ editarFormaPagoController.lblRestricaoFormaPago.label=Ativa Restricción de Form
editarFormaPagoController.lblTarifaTaxa.label=Compone Tarifa y Taxas
editarFormaPagoController.lblSomenteTarifa.label=Compone Tarifa
editarFormaPagoController.lblCarteiraDigital.label=Billetera digital
editarFormaPagoController.lblAtivaProcessoEstorno.label=Activa el proceso de contracargo
# Muestra o tipo de Búsqueda Punto de venta
busquedaTipoPuntoVentaController.window.title = Canal de venta

View File

@ -327,7 +327,7 @@ indexController.mniRelatorioDemandas.label = Demandas
indexController.mniRelatorioReceitaServico.label = Receita por Serviço
indexController.mniRelatorioReceitaEmbarcadaServico.label =Receita Embarcada
indexController.mniRelatorioCancelamentoVendaCartao.label = Cancelamento Venda a Cartão
indexController.mniRelatorioEstornoCartao.label=Estorno Cartão
indexController.mniRelatorioEstornoCartao.label=Solicitação de Cancelamento
indexController.mniRelatorioVendasCartoes.label=Vendas Cartões
indexController.mniRelatorioCancelamentoTransacao.label = Cancelamento J3
indexController.mniRelatorioTabelaPreco.label = Tabela de Preços
@ -922,7 +922,7 @@ relatorioCancelamentoVendaCartaoController.lbNumero.value = Número Agência
relatorioCancelamentoVendaCartaoController.lbBilheteiro.value = Bilheteiro
#Relatorio de Estorno Cartão
relatorioEstornoCartaoController.window.title = Relatório de Estorno por Cartão
relatorioEstornoCartaoController.window.title = Relatório de Solicitação de Cancelamento
relatorioEstornoCartaoController.datainicial.value = Data Inicial
relatorioEstornoCartaoController.dataFinal.value = Data Final
relatorioEstornoCartaoController.lbPuntoVenta.value = Agência
@ -932,7 +932,8 @@ relatorioEstornoCartaoController.btnLimpar.label = Limpar
relatorioEstornoCartaoController.lbNumero.value = Número Agência
relatorioEstornoCartaoController.lbBilheteiro.value = Bilheteiro
relatorioEstornoCartaoController.lbCpf.value = CPF
relatorioEstornoCartaoController.lbCartao.value = Tipo Cartão
relatorioEstornoCartaoController.lbCartao.value = Tipo Cartão/Produto
relatorioEstornoCartaoController.lbFormaPago.value=Forma de Pagamento
#Relatorio Aidf
relatorioAidfController.window.title = Relatório Aidf
@ -1160,6 +1161,7 @@ editarFormaPagoController.lblRestricaoFormaPago.label=Ativa Restrição de Forma
editarFormaPagoController.lblTarifaTaxa.label=Compõe Tarifa e Taxas
editarFormaPagoController.lblSomenteTarifa.label=Compõe Tarifa
editarFormaPagoController.lblCarteiraDigital.label=Carteira Digital
editarFormaPagoController.lblAtivaProcessoEstorno.label=Ativa processo de estorno
# Muestra o tipo de Pesquisa Ponto Venda
busquedaTipoPuntoVentaController.window.title = Canal de Venda

View File

@ -6,7 +6,7 @@
<zk xmlns="http://www.zkoss.org/2005/zul">
<window id="winEditarFormaPago" border="normal"
apply="${editarFormaPagoController}" width="400px" height="457x"
apply="${editarFormaPagoController}" width="400px"
contentStyle="overflow:auto"
title="${c:l('editarFormaPagoController.window.title')}">
<toolbar>
@ -79,6 +79,11 @@
mold="rounded"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar" />
</row>
<row >
<label
value="${c:l('editarFormaPagoController.lblAtivaProcessoEstorno.label')}" />
<checkbox id="chkIndEstorno" checked="false"/>
</row>
<row id="rowRestricaoFormaPago">
<label
value="${c:l('editarFormaPagoController.lblRestricaoFormaPago.label')}" />

View File

@ -7,7 +7,7 @@
<zk xmlns="http://www.zkoss.org/2005/zul">
<window id="winFiltroRelatorioEstornoCartao"
apply="${relatorioEstornoCartaoController}"
contentStyle="overflow:auto" height="345px" width="550px"
contentStyle="overflow:auto" width="560px"
border="normal">
<grid fixedLayout="true">
<columns>
@ -21,12 +21,12 @@
<label
value="${c:l('relatorioEstornoCartaoController.datainicial.value')}" />
<datebox id="datInicial" format="dd/MM/yyyy"
width="90%" constraint="no empty"
width="90%" constraint="no empty" mold="rounded"
maxlength="10" />
<label
value="${c:l('relatorioEstornoCartaoController.dataFinal.value')}" />
<datebox id="datFinal" format="dd/MM/yyyy"
<datebox id="datFinal" format="dd/MM/yyyy" mold="rounded"
width="90%" constraint="no empty"
maxlength="10" />
</row>
@ -34,28 +34,37 @@
<label value="${c:l('relatorioEstornoCartaoController.lbCpf.value')}" />
<textbox id="txtCpf"
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox"
width="300px" mold="rounded" />
width="150px" mold="rounded" />
</row>
<row spans="1,3">
<label value="${c:l('relatorioEstornoCartaoController.lbFormaPago.value')}" />
<combobox id="cmbFormaPago"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
width="95%" mold="rounded" buttonVisible="true"
model="@{winFiltroRelatorioEstornoCartao$composer.lsFormaPago}" />
</row>
<row spans="1,3">
<label value="${c:l('relatorioEstornoCartaoController.lbCartao.value')}" />
<textbox id="txtCartao"
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox"
width="300px" mold="rounded" />
width="360px" mold="rounded" />
</row>
<row spans="1,3">
<label
value="${c:l('relatorioEstornoCartaoController.lbEmpresa.value')}" />
<combobox id="cmbEmpresa"
buttonVisible="true"
buttonVisible="true" mold="rounded"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
model="@{winFiltroRelatorioEstornoCartao$composer.lsEmpresa}"
width="100%"
constraint="no empty" />
width="95%"
/>
</row>
<row spans="1,3">
<label
value="${c:l('relatorioEstornoCartaoController.lbPuntoVenta.value')}"/>
<bandbox id="bbPesquisaPuntoVenta" width="100%"
<bandbox id="bbPesquisaPuntoVenta" width="95%"
mold="rounded" readonly="true">
<bandpopup>
<vbox>
@ -90,10 +99,10 @@
</bandpopup>
</bandbox>
</row>
<row spans="4">
<row spans="4" >
<listbox id="puntoVentaSelList" mold="paging"
use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox"
vflex="true" height="100px" width="100%">
vflex="true" height="95px" width="98%">
<listhead>
<listheader
label="${c:l('relatorioEstornoCartaoController.lbPuntoVenta.value')}" />