bug#19163

dev: valdir
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@101533 d1611594-4594-4d17-8e1d-87c2c4800839
master
thiago.clemente 2020-05-11 14:00:16 +00:00
parent 65fe72ae23
commit c27849e86f
1 changed files with 13 additions and 2 deletions

View File

@ -252,6 +252,9 @@ public class PuntoVenta implements Serializable {
@Column(name = "TIEMPOMAXBOLETOENVENTA")
private Integer tiempoMaxBoletoEnVenta;
@Column(name = "INDQRCODECATRACARODEAN13")
private Boolean indQrcodeCatracaRodEAN13;
public List<CobrancaAdcPuntoVenta> getCobrancaAdicionalList() {
return cobrancaAdicionalList;
}
@ -1134,4 +1137,12 @@ public class PuntoVenta implements Serializable {
public void setTiempoMaxBoletoEnVenta(Integer tiempoMaxBoletoEnVenta) {
this.tiempoMaxBoletoEnVenta = tiempoMaxBoletoEnVenta;
}
public Boolean getIndQrcodeCatracaRodEAN13() {
return BooleanUtils.toBoolean(indQrcodeCatracaRodEAN13);
}
public void setIndQrcodeCatracaRodEAN13(Boolean indQrcodeCatracaRodEAN13) {
this.indQrcodeCatracaRodEAN13 = indQrcodeCatracaRodEAN13;
}
}