valdevir 2016-11-09 12:12:59 +00:00
parent e8f48cfc79
commit 679edb1e97
1 changed files with 24 additions and 14 deletions

View File

@ -20,7 +20,7 @@ public class EventosFinanceirosVO {
private Integer formapagoId;
private String descpago;
private Boolean indconferenciafisicacomissao;
private String indtipo; /* 0- Debito, 1- Credito */
private String indtipo; /* 0- Debito, 1- Credito */
private String nombusuario;
private Integer comemptipoeventoextraId;
@ -31,6 +31,8 @@ public class EventosFinanceirosVO {
private Boolean exigeConferenciaAba;
private Long boletoId;
public Long getEventoextraId() {
return eventoextraId;
}
@ -89,7 +91,7 @@ public class EventosFinanceirosVO {
public String getStatusDescricao() {
StatusLogConferencia statusLogConferencia = StatusLogConferencia.getStatusLogConferencia(status);
if(statusLogConferencia != null) {
if (statusLogConferencia != null) {
return statusLogConferencia.toString();
}
return "";
@ -192,14 +194,22 @@ public class EventosFinanceirosVO {
}
public String getOrderExigeConferencia() {
if((getExigeConferenciaAba() != null && getExigeConferenciaAba()) || isExigeConferencia()) {
if(!isConferido()) {
if ((getExigeConferenciaAba() != null && getExigeConferenciaAba()) || isExigeConferencia()) {
if (!isConferido()) {
return "A";
} else if (isConferido()){
} else if (isConferido()) {
return "B";
}
}
return "C";
}
public Long getBoletoId() {
return boletoId;
}
public void setBoletoId(Long boletoId) {
this.boletoId = boletoId;
}
}