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>
|
<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() {
|
||||||
|
@ -1666,6 +1668,17 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
||||||
public void setIndCupomEmbarqueSimplificado(Boolean indCupomEmbarqueSimplificado) {
|
public void setIndCupomEmbarqueSimplificado(Boolean indCupomEmbarqueSimplificado) {
|
||||||
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