Merge pull request 'bug#AL-4133' (!201) from AL-4133 into master
Reviewed-on: adm/ModelWeb#201 Reviewed-by: fabio <fabio.faria@rjconsultores.com.br>master
commit
b5a0c729f5
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.65.0</version>
|
||||
<version>1.66.0</version>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
|
|
|
@ -457,6 +457,8 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
|||
@Column(name = "INDCUPOMEMBARQUESIMPLIFICADO")
|
||||
private Boolean indCupomEmbarqueSimplificado;
|
||||
|
||||
@Column(name = "INDBILHETEDEVPIXDINHEIRO")
|
||||
private Boolean indBilheteDevPixDinheiro;
|
||||
|
||||
|
||||
public Empresa() {
|
||||
|
@ -1667,5 +1669,16 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
|||
this.indCupomEmbarqueSimplificado = indCupomEmbarqueSimplificado;
|
||||
}
|
||||
|
||||
public Boolean getIndBilheteDevPixDinheiro() {
|
||||
return indBilheteDevPixDinheiro==null?false:indBilheteDevPixDinheiro;
|
||||
}
|
||||
|
||||
public void setIndBilheteDevPixDinheiro(Boolean indBilheteDevPixDinheiro) {
|
||||
this.indBilheteDevPixDinheiro = indBilheteDevPixDinheiro;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue