fixes bug#al-1288

dev: Celio
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@115106 d1611594-4594-4d17-8e1d-87c2c4800839
master
fabio 2022-10-31 19:28:56 +00:00
parent 013d671749
commit d24247dfd8
2 changed files with 14 additions and 1 deletions

View File

@ -102,6 +102,9 @@ public class Categoria implements Serializable {
@Column(name = "INDVENDEAPI")
private Boolean indvendeapi;
@Column(name = "INDEXIGEIDENTIDADE")
private Boolean indExigeIdentidade;
public Categoria() {
}
@ -292,4 +295,14 @@ public class Categoria implements Serializable {
public void setIndvendeapi(Boolean indvendeapi) {
this.indvendeapi = indvendeapi;
}
public Boolean getIndExigeIdentidade() {
return indExigeIdentidade;
}
public void setIndExigeIdentidade(Boolean indExigeIdentidade) {
this.indExigeIdentidade = indExigeIdentidade;
}
}

View File

@ -7,7 +7,7 @@ public enum EnumIntegracaoSap {
INTEGRADO("Integrado"),
NAO_ENVIADO("Nao Enviado"),
ERRO("Erro");
ERRO("Recusado SAP");
private String descricao;