fixes bug#23156

qua:juliane
dev:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@108939 d1611594-4594-4d17-8e1d-87c2c4800839
master
walace 2021-10-01 10:41:15 +00:00
parent 2e01278bfb
commit 868913254e
1 changed files with 12 additions and 1 deletions

View File

@ -268,6 +268,9 @@ public class PuntoVenta implements Serializable {
@Enumerated(EnumType.STRING)
private TipoSocio tipoSocio;
@Column(name = "INDQRCODETAXAEMBARQUERODTTL")
private Boolean indQrcodeTaxaEmbarqueRodTTL;
public List<CobrancaAdcPuntoVenta> getCobrancaAdicionalList() {
return cobrancaAdicionalList;
}
@ -1189,4 +1192,12 @@ public class PuntoVenta implements Serializable {
this.tipoSocio = tipoSocio;
}
public Boolean getIndQrcodeTaxaEmbarqueRodTTL() {
return indQrcodeTaxaEmbarqueRodTTL;
}
public void setIndQrcodeTaxaEmbarqueRodTTL(Boolean indQrcodeTaxaEmbarqueRodTTL) {
this.indQrcodeTaxaEmbarqueRodTTL = indQrcodeTaxaEmbarqueRodTTL;
}
}