fixes bug#11035
dev: julio qua: -- Foi adicionionado a tela de empresa importo, a opção do calculo por data de Viagem ou data de emissao, porem essas alterações não foram feitas ainda na exportação bpe, pois a Guanabara ainda esta definindo como sera a aplicação disso para os filtros. git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@83282 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
a1f25a73a1
commit
5f7bb4f5ba
|
@ -149,6 +149,12 @@ public class EmpresaImposto implements Serializable {
|
||||||
@Column(name = "INDREDBASEICMSBPE")
|
@Column(name = "INDREDBASEICMSBPE")
|
||||||
private Boolean indRedutorBaseIcmsBPe;
|
private Boolean indRedutorBaseIcmsBPe;
|
||||||
|
|
||||||
|
@Column(name = "INDTRIBEMISSAO")
|
||||||
|
private Boolean indTribEmissao;
|
||||||
|
|
||||||
|
@Column(name = "INDTRIBVIAGEM")
|
||||||
|
private Boolean indTribViagem;
|
||||||
|
|
||||||
public EmpresaImposto() {
|
public EmpresaImposto() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -602,18 +608,14 @@ public class EmpresaImposto implements Serializable {
|
||||||
this.empresa = empresa;
|
this.empresa = empresa;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public Estado getEstado() {
|
public Estado getEstado() {
|
||||||
return estado;
|
return estado;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public void setEstado(Estado estado) {
|
public void setEstado(Estado estado) {
|
||||||
this.estado = estado;
|
this.estado = estado;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public Integer getIndiceICMSecf() {
|
public Integer getIndiceICMSecf() {
|
||||||
return indiceICMSecf;
|
return indiceICMSecf;
|
||||||
}
|
}
|
||||||
|
@ -662,7 +664,8 @@ public class EmpresaImposto implements Serializable {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param indOutrasUFBloqueadas the indOutrasUFBloqueadas to set
|
* @param indOutrasUFBloqueadas
|
||||||
|
* the indOutrasUFBloqueadas to set
|
||||||
*/
|
*/
|
||||||
public void setIndOutrasUFBloqueadas(Boolean indOutrasUFBloqueadas) {
|
public void setIndOutrasUFBloqueadas(Boolean indOutrasUFBloqueadas) {
|
||||||
this.indOutrasUFBloqueadas = indOutrasUFBloqueadas;
|
this.indOutrasUFBloqueadas = indOutrasUFBloqueadas;
|
||||||
|
@ -763,4 +766,20 @@ public class EmpresaImposto implements Serializable {
|
||||||
public void setIndRedutorBaseIcmsBPe(Boolean indRedutorBaseIcmsBPe) {
|
public void setIndRedutorBaseIcmsBPe(Boolean indRedutorBaseIcmsBPe) {
|
||||||
this.indRedutorBaseIcmsBPe = indRedutorBaseIcmsBPe;
|
this.indRedutorBaseIcmsBPe = indRedutorBaseIcmsBPe;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Boolean getIndTribEmissao() {
|
||||||
|
return indTribEmissao;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndTribEmissao(Boolean indTribEmissao) {
|
||||||
|
this.indTribEmissao = indTribEmissao;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Boolean getIndTribViagem() {
|
||||||
|
return indTribViagem;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndTribViagem(Boolean indTribViagem) {
|
||||||
|
this.indTribViagem = indTribViagem;
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue