Merge pull request 'bug#al-2984' (!99) from AL2984 into master
Reviewed-on: adm/ModelWeb#99 Reviewed-by: Gleison da Cruz <gleison.cruz@totvs.com.br>master
commit
c67c6bb519
2
pom.xml
2
pom.xml
|
@ -3,7 +3,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>ModelWeb</artifactId>
|
||||
<version>1.14.0</version>
|
||||
<version>1.15.0</version>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
|
|
|
@ -256,6 +256,8 @@ public class CategoriaDescuento implements Serializable, Auditavel<CategoriaDesc
|
|||
@NaoAuditar
|
||||
private CategoriaDescuento categoriaDescuentoClone;
|
||||
|
||||
@Column(name = "INDIMPORTESEGUROOPCIONAL")
|
||||
private Boolean indImporteSeguroOpcional;
|
||||
|
||||
public enum DisponibilidadeFeriado {
|
||||
// Declaração dos enum
|
||||
|
@ -1048,4 +1050,12 @@ public class CategoriaDescuento implements Serializable, Auditavel<CategoriaDesc
|
|||
return String.format("ID [%s]", getCategoriadescuentoId());
|
||||
}
|
||||
|
||||
public Boolean getIndImporteSeguroOpcional() {
|
||||
return indImporteSeguroOpcional == null ? true : indImporteSeguroOpcional;
|
||||
}
|
||||
|
||||
public void setIndImporteSeguroOpcional(Boolean indImporteSeguroOpcional) {
|
||||
this.indImporteSeguroOpcional = indImporteSeguroOpcional;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue