fixes bug #7987
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@72242 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
30ef2f8b59
commit
2f95e70e95
|
@ -136,8 +136,6 @@ public class PuntoVenta implements Serializable {
|
|||
private PtovtaTitular titularId;
|
||||
@Column(name = "NUMPUNTOVENTA")
|
||||
private String numPuntoVenta;
|
||||
@Column(name = "INDVALIDASTOCK")
|
||||
private Boolean indValidaStock;
|
||||
@Column(name = "INDPERMISOTASAEMBARQUE")
|
||||
private Boolean indPermisoTasaEmbarque;
|
||||
@Column(name = "TIEMPOCANCELACION")
|
||||
|
@ -690,20 +688,12 @@ public class PuntoVenta implements Serializable {
|
|||
this.numPuntoVenta = numPuntoVenta;
|
||||
}
|
||||
|
||||
public Boolean getIndValidaStock() {
|
||||
return indValidaStock;
|
||||
}
|
||||
|
||||
public void setIndValidaStock(Boolean indValidaStock) {
|
||||
this.indValidaStock = indValidaStock;
|
||||
}
|
||||
|
||||
public Boolean getIndPermisoTasaEmbarque() {
|
||||
public Boolean getIndPermisoTasaEmbarque() {
|
||||
return indPermisoTasaEmbarque;
|
||||
}
|
||||
|
||||
public void setIndPermisoTasaEmbarque(Boolean indPermisoTasaEmbarque) {
|
||||
this.indPermisoTasaEmbarque = indPermisoTasaEmbarque;
|
||||
this.indPermisoTasaEmbarque = indPermisoTasaEmbarque;
|
||||
}
|
||||
|
||||
public Integer getTiempoCancelacion() {
|
||||
|
|
|
@ -114,6 +114,9 @@ public class TipoEventoExtra implements Serializable {
|
|||
@LazyCollection(LazyCollectionOption.FALSE)
|
||||
private List<TipoEventoExtraPtoVta> pontosventa = new ArrayList<TipoEventoExtraPtoVta>();
|
||||
|
||||
@Column(name = "INDVALIDAESTOQUE")
|
||||
private Boolean indValidarEstoque;
|
||||
|
||||
public TipoEventoExtraEmpresa addEmpresa(Empresa e) {
|
||||
TipoEventoExtraEmpresa t = new TipoEventoExtraEmpresa();
|
||||
t.setEmpresa(e);
|
||||
|
@ -438,4 +441,12 @@ public class TipoEventoExtra implements Serializable {
|
|||
this.pontosventa = pontosventa;
|
||||
}
|
||||
|
||||
public Boolean getIndValidarEstoque() {
|
||||
return indValidarEstoque;
|
||||
}
|
||||
|
||||
public void setIndValidarEstoque(Boolean indValidarEstoque) {
|
||||
this.indValidarEstoque = indValidarEstoque;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue