bug#AL-4133
parent
74a36ed870
commit
3ac3674a56
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.65.0</version>
|
<version>1.66.0</version>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
|
|
|
@ -457,6 +457,8 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
||||||
@Column(name = "INDCUPOMEMBARQUESIMPLIFICADO")
|
@Column(name = "INDCUPOMEMBARQUESIMPLIFICADO")
|
||||||
private Boolean indCupomEmbarqueSimplificado;
|
private Boolean indCupomEmbarqueSimplificado;
|
||||||
|
|
||||||
|
@Column(name = "INDBILHETEDEVPIXDINHEIRO")
|
||||||
|
private Boolean indBilheteDevPixDinheiro;
|
||||||
|
|
||||||
|
|
||||||
public Empresa() {
|
public Empresa() {
|
||||||
|
@ -1667,5 +1669,16 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
||||||
this.indCupomEmbarqueSimplificado = indCupomEmbarqueSimplificado;
|
this.indCupomEmbarqueSimplificado = indCupomEmbarqueSimplificado;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Boolean getIndBilheteDevPixDinheiro() {
|
||||||
|
return indBilheteDevPixDinheiro==null?false:indBilheteDevPixDinheiro;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndBilheteDevPixDinheiro(Boolean indBilheteDevPixDinheiro) {
|
||||||
|
this.indBilheteDevPixDinheiro = indBilheteDevPixDinheiro;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue