fixed bug #6618 - Incluida validação que verifica permissão de venda para Estados diferentes do ponto de venda.
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@47935 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
b525b1870a
commit
a189882fb2
|
@ -88,6 +88,9 @@ public class EmpresaImposto implements Serializable {
|
||||||
@Column(name = "INDOUTROSISENTO")
|
@Column(name = "INDOUTROSISENTO")
|
||||||
private Boolean indOutrosIsento;
|
private Boolean indOutrosIsento;
|
||||||
|
|
||||||
|
@Column(name = "INDOUTRASUFBLOQUEADAS")
|
||||||
|
private Boolean indOutrasUFBloqueadas;
|
||||||
|
|
||||||
@Column(name = "ACTIVO")
|
@Column(name = "ACTIVO")
|
||||||
private Boolean activo;
|
private Boolean activo;
|
||||||
@Basic(optional = false)
|
@Basic(optional = false)
|
||||||
|
@ -616,4 +619,18 @@ public class EmpresaImposto implements Serializable {
|
||||||
this.porctributo = porctributo;
|
this.porctributo = porctributo;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the indOutrasUFBloqueadas
|
||||||
|
*/
|
||||||
|
public Boolean getIndOutrasUFBloqueadas() {
|
||||||
|
return indOutrasUFBloqueadas;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param indOutrasUFBloqueadas the indOutrasUFBloqueadas to set
|
||||||
|
*/
|
||||||
|
public void setIndOutrasUFBloqueadas(Boolean indOutrasUFBloqueadas) {
|
||||||
|
this.indOutrasUFBloqueadas = indOutrasUFBloqueadas;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue