fixes bug#17888
qua: dev:Thiago Clemente Adicionado parâmetro de configuração para impressão de segunda via de fechamento de caixa git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@102019 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
2d2e3cc870
commit
febc08bf11
|
@ -338,6 +338,9 @@ public class Empresa implements Serializable {
|
|||
@Column(name = "CST_GRATUIDADE")
|
||||
private TipoCstGratuidade cstGratuidade;
|
||||
|
||||
@Column(name = "INDSEGUNDAVIAFECHAMENTOCAIXA")
|
||||
private Boolean indSegundaViaFechamentoCaixa;
|
||||
|
||||
public Empresa() {
|
||||
super();
|
||||
}
|
||||
|
@ -1255,4 +1258,12 @@ public class Empresa implements Serializable {
|
|||
public void setCstGratuidade(TipoCstGratuidade cstGratuidade) {
|
||||
this.cstGratuidade = cstGratuidade;
|
||||
}
|
||||
|
||||
public Boolean getIndSegundaViaFechamentoCaixa() {
|
||||
return indSegundaViaFechamentoCaixa ==null ? Boolean.FALSE : indSegundaViaFechamentoCaixa;
|
||||
}
|
||||
|
||||
public void setIndSegundaViaFechamentoCaixa(Boolean indSegundaViaFechamentoCaixa) {
|
||||
this.indSegundaViaFechamentoCaixa = indSegundaViaFechamentoCaixa;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,6 +10,7 @@ public class EmpresaVO {
|
|||
private Boolean indImprimeRelFechamentoViagemDetalhadoEmarcada;
|
||||
private Boolean indImprimeLogoBilheteVendaEmbarcada;
|
||||
private Boolean indImpressaoCanhotoEmbarcada;
|
||||
private Boolean indSegundaViaFechamentoCaixa;
|
||||
|
||||
private List<InscricaoEstadualVO> inscricoesEstaduais = new ArrayList<InscricaoEstadualVO>();
|
||||
|
||||
|
@ -69,4 +70,13 @@ public class EmpresaVO {
|
|||
this.indImpressaoCanhotoEmbarcada = indImpressaoCanhotoEmbarcada;
|
||||
}
|
||||
|
||||
public Boolean getIndSegundaViaFechamentoCaixa() {
|
||||
return indSegundaViaFechamentoCaixa ==null ? Boolean.FALSE : indSegundaViaFechamentoCaixa;
|
||||
}
|
||||
|
||||
public void setIndSegundaViaFechamentoCaixa(Boolean indSegundaViaFechamentoCaixa) {
|
||||
this.indSegundaViaFechamentoCaixa = indSegundaViaFechamentoCaixa;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue