Merge pull request 'bug#AL-4107' (!177) from AL-4107 into master
Reviewed-on: adm/ModelWeb#177 Reviewed-by: fabio <fabio.faria@rjconsultores.com.br>master
commit
bff4d01362
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.50.0</version>
|
<version>1.51.0</version>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
|
|
|
@ -262,6 +262,10 @@ public class CategoriaDescuento implements Serializable, Auditavel<CategoriaDesc
|
||||||
@Column(name = "TIPOIDENTIFICACIONDOC2")
|
@Column(name = "TIPOIDENTIFICACIONDOC2")
|
||||||
private Integer tipoIdentificacionDoc2;
|
private Integer tipoIdentificacionDoc2;
|
||||||
|
|
||||||
|
@Column(name = "CUSTOMIZARODAPECUPOMEMBARQUE")
|
||||||
|
@NaoAuditar
|
||||||
|
private String customizaRodapeCumpomEmbarque;
|
||||||
|
|
||||||
public enum DisponibilidadeFeriado {
|
public enum DisponibilidadeFeriado {
|
||||||
// Declaração dos enum
|
// Declaração dos enum
|
||||||
GERARSEMPRE("SEMPRE", "S"),
|
GERARSEMPRE("SEMPRE", "S"),
|
||||||
|
@ -1069,4 +1073,14 @@ public class CategoriaDescuento implements Serializable, Auditavel<CategoriaDesc
|
||||||
this.indImporteSeguroOpcional = indImporteSeguroOpcional;
|
this.indImporteSeguroOpcional = indImporteSeguroOpcional;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getCustomizaRodapeCumpomEmbarque() {
|
||||||
|
return customizaRodapeCumpomEmbarque;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCustomizaRodapeCumpomEmbarque(String customizaRodapeCumpomEmbarque) {
|
||||||
|
this.customizaRodapeCumpomEmbarque = customizaRodapeCumpomEmbarque;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue