Merge pull request 'fixes bug#AL-3566' (!142) from AL-3566 into master

Reviewed-on: adm/ModelWeb#142
Reviewed-by: aristides <aristides@rjconsultores.com.br>
master
wallace 2024-01-31 17:20:55 +00:00
commit f2c6b727e0
2 changed files with 12 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId>
<artifactId>ModelWeb</artifactId>
<version>1.35.0</version>
<version>1.36.0</version>
<distributionManagement>
<repository>

View File

@ -259,6 +259,9 @@ public class CategoriaDescuento implements Serializable, Auditavel<CategoriaDesc
@Column(name = "INDIMPORTESEGUROOPCIONAL")
private Boolean indImporteSeguroOpcional;
@Column(name = "TIPOIDENTIFICACIONDOC2")
private Integer tipoIdentificacionDoc2;
public enum DisponibilidadeFeriado {
// Declaração dos enum
GERARSEMPRE("SEMPRE", "S"),
@ -1022,6 +1025,14 @@ public class CategoriaDescuento implements Serializable, Auditavel<CategoriaDesc
public void setCantMaxVendaMes(Integer cantMaxVendaMes) {
this.cantMaxVendaMes = cantMaxVendaMes;
}
public Integer getTipoIdentificacionDoc2() {
return tipoIdentificacionDoc2;
}
public void setTipoIdentificacionDoc2(Integer tipoIdentificacionDoc2) {
this.tipoIdentificacionDoc2 = tipoIdentificacionDoc2;
}
@Override
public void clonar() throws CloneNotSupportedException {