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
commit
f2c6b727e0
2
pom.xml
2
pom.xml
|
@ -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.35.0</version>
|
<version>1.36.0</version>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
|
|
|
@ -259,6 +259,9 @@ public class CategoriaDescuento implements Serializable, Auditavel<CategoriaDesc
|
||||||
@Column(name = "INDIMPORTESEGUROOPCIONAL")
|
@Column(name = "INDIMPORTESEGUROOPCIONAL")
|
||||||
private Boolean indImporteSeguroOpcional;
|
private Boolean indImporteSeguroOpcional;
|
||||||
|
|
||||||
|
@Column(name = "TIPOIDENTIFICACIONDOC2")
|
||||||
|
private Integer tipoIdentificacionDoc2;
|
||||||
|
|
||||||
public enum DisponibilidadeFeriado {
|
public enum DisponibilidadeFeriado {
|
||||||
// Declaração dos enum
|
// Declaração dos enum
|
||||||
GERARSEMPRE("SEMPRE", "S"),
|
GERARSEMPRE("SEMPRE", "S"),
|
||||||
|
@ -1022,6 +1025,14 @@ public class CategoriaDescuento implements Serializable, Auditavel<CategoriaDesc
|
||||||
public void setCantMaxVendaMes(Integer cantMaxVendaMes) {
|
public void setCantMaxVendaMes(Integer cantMaxVendaMes) {
|
||||||
this.cantMaxVendaMes = cantMaxVendaMes;
|
this.cantMaxVendaMes = cantMaxVendaMes;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Integer getTipoIdentificacionDoc2() {
|
||||||
|
return tipoIdentificacionDoc2;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTipoIdentificacionDoc2(Integer tipoIdentificacionDoc2) {
|
||||||
|
this.tipoIdentificacionDoc2 = tipoIdentificacionDoc2;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void clonar() throws CloneNotSupportedException {
|
public void clonar() throws CloneNotSupportedException {
|
||||||
|
|
Loading…
Reference in New Issue