bug#al-2984

Pássaro Marron - GLPI 65198 - Espec_Seguro_opcional
dev:
qua:
master
valdir.cordeiro 2023-09-19 09:14:39 -03:00
parent 58c2d7aff8
commit a9fb03195a
2 changed files with 11 additions and 1 deletions

View File

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

View File

@ -256,6 +256,8 @@ public class CategoriaDescuento implements Serializable, Auditavel<CategoriaDesc
@NaoAuditar @NaoAuditar
private CategoriaDescuento categoriaDescuentoClone; private CategoriaDescuento categoriaDescuentoClone;
@Column(name = "INDIMPORTESEGUROOPCIONAL")
private Boolean indImporteSeguroOpcional;
public enum DisponibilidadeFeriado { public enum DisponibilidadeFeriado {
// Declaração dos enum // Declaração dos enum
@ -1048,4 +1050,12 @@ public class CategoriaDescuento implements Serializable, Auditavel<CategoriaDesc
return String.format("ID [%s]", getCategoriadescuentoId()); return String.format("ID [%s]", getCategoriadescuentoId());
} }
public Boolean getIndImporteSeguroOpcional() {
return indImporteSeguroOpcional == null ? true : indImporteSeguroOpcional;
}
public void setIndImporteSeguroOpcional(Boolean indImporteSeguroOpcional) {
this.indImporteSeguroOpcional = indImporteSeguroOpcional;
}
} }