15417: Enviar o ICMS na Sincronização
fixes bug#15417 dev:fred qua:leonardo git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@96748 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
286614b5e9
commit
d835126a72
|
@ -1,8 +1,8 @@
|
|||
package com.rjconsultores.ventaboletos.vo.embarcada;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
import com.rjconsultores.ventaboletos.entidad.Ciudad;
|
||||
import com.rjconsultores.ventaboletos.entidad.InscricaoEstadual;
|
||||
|
||||
public class InscricaoEstadualVO {
|
||||
|
@ -22,6 +22,9 @@ public class InscricaoEstadualVO {
|
|||
private String cnpj;
|
||||
private String equivalenciaAG;
|
||||
private Boolean isBPe;
|
||||
private BigDecimal porctributo;
|
||||
private BigDecimal tributacaoImportacao;
|
||||
private BigDecimal tributacaoImportacaoIM;
|
||||
|
||||
public InscricaoEstadualVO(){}
|
||||
|
||||
|
@ -144,4 +147,29 @@ public class InscricaoEstadualVO {
|
|||
public void setIsBPe(Boolean isBPe) {
|
||||
this.isBPe = isBPe;
|
||||
}
|
||||
|
||||
public BigDecimal getPorctributo() {
|
||||
return porctributo;
|
||||
}
|
||||
|
||||
public void setPorctributo(BigDecimal porctributo) {
|
||||
this.porctributo = porctributo;
|
||||
}
|
||||
|
||||
public BigDecimal getTributacaoImportacao() {
|
||||
return tributacaoImportacao;
|
||||
}
|
||||
|
||||
public void setTributacaoImportacao(BigDecimal tributacaoImportacao) {
|
||||
this.tributacaoImportacao = tributacaoImportacao;
|
||||
}
|
||||
|
||||
public BigDecimal getTributacaoImportacaoIM() {
|
||||
return tributacaoImportacaoIM;
|
||||
}
|
||||
|
||||
public void setTributacaoImportacaoIM(BigDecimal tributacaoImportacaoIM) {
|
||||
this.tributacaoImportacaoIM = tributacaoImportacaoIM;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue