From 0c71e9120e106df022140b7af280c6a5335f4e69 Mon Sep 17 00:00:00 2001 From: "wallace.henrique" Date: Wed, 17 Jan 2024 13:25:00 -0300 Subject: [PATCH] fixes bug#AL-3720 --- .../rjconsultores/ventaboletos/vo/comissao/BoletoComissao.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/rjconsultores/ventaboletos/vo/comissao/BoletoComissao.java b/src/com/rjconsultores/ventaboletos/vo/comissao/BoletoComissao.java index 8e8dbe675..4f1bc7ccf 100644 --- a/src/com/rjconsultores/ventaboletos/vo/comissao/BoletoComissao.java +++ b/src/com/rjconsultores/ventaboletos/vo/comissao/BoletoComissao.java @@ -906,7 +906,7 @@ public class BoletoComissao { return false; } - if(!(isVendaGap(getTipoVenta()) && !isVendaBilheteTransferencia(getTipoVenta()))) { + if((!isVendaGap(getTipoVenta()) && !isVendaBilheteTransferencia(getTipoVenta())) || !(!isVendaGap(getTipoVenta()) && !isVendaBilheteTransferencia(getTipoVenta()))) { return false; }