0015235: GLPI 14791 - CUPOM DE EMBARQUE - inibir código de barras não usado

fixes bug#0015235
dev:Wallace
qua:Ju Gomes

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@97211 d1611594-4594-4d17-8e1d-87c2c4800839
master
daniel.zauli 2019-09-03 15:47:34 +00:00
parent ac064b5e6e
commit fbe89b2564
1 changed files with 11 additions and 0 deletions

View File

@ -279,6 +279,9 @@ public class Empresa implements Serializable {
@Column(name = "INDIMPLOGOBILHETEVTAEMBARCADA")
private Boolean indImprimeLogoBilheteVendaEmbarcada;
@Column(name = "INDCODBARCPEMBARQUE ")
private Boolean indCodBarCpEmbarque;
public Empresa() {
super();
}
@ -1052,6 +1055,14 @@ public class Empresa implements Serializable {
public void setIndImprimeLogoBilheteVendaEmbarcada(Boolean indImprimeLogoBilheteVendaEmbarcada) {
this.indImprimeLogoBilheteVendaEmbarcada = indImprimeLogoBilheteVendaEmbarcada;
}
public Boolean getIndCodBarCpEmbarque() {
return indCodBarCpEmbarque;
}
public void setIndCodBarCpEmbarque(Boolean indCodBarCpEmbarque) {
this.indCodBarCpEmbarque = indCodBarCpEmbarque;
}
}