bug#13110
dev:Valdevir qua:Renato git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@88626 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
5e8dfeb796
commit
cfa8195274
|
@ -383,6 +383,8 @@ public class EditarPuntoVentaController extends MyGenericForwardComposer {
|
|||
private Checkbox checkCancelaPTA;
|
||||
private Checkbox checkUTRRepasse;
|
||||
private Checkbox checkCancelaPassNormal;
|
||||
private Checkbox checkPtoVtaEmpresaIndTotalBus;
|
||||
private Checkbox checkPtoVtaEmpresaIndEmbarcada;
|
||||
private Radio radIndEstanTasaEmbarqueSi;
|
||||
private Radio radIndEstanTasaEmbarqueNo;
|
||||
private Radio radIndPermisoTasaEmbarqueSi;
|
||||
|
@ -2174,6 +2176,8 @@ public class EditarPuntoVentaController extends MyGenericForwardComposer {
|
|||
fpd.setCargosextras(BigDecimal.ZERO);
|
||||
fpd.setFormaPago(formaPago);
|
||||
fpd.setPuntoVenta(puntoVenta);
|
||||
fpd.setIndTotalBus(checkPtoVtaEmpresaIndTotalBus.isChecked());
|
||||
fpd.setIndEmbarcada(checkPtoVtaEmpresaIndEmbarcada.isChecked());
|
||||
|
||||
if (cmbEmpresaFormaPago.getSelectedItem() != null) {
|
||||
fpd.setEmpresa(empresa);
|
||||
|
|
|
@ -23,6 +23,13 @@ public class FormaPagoDetRender implements ListitemRenderer {
|
|||
|
||||
lc = new Listcell(formaPagoDet.getFormaPago() != null ? formaPagoDet.getFormaPago().getDescpago() : "TODOS");
|
||||
lc.setParent(lstm);
|
||||
|
||||
lc = new Listcell(formaPagoDet.getIndTotalBus() != null ? formaPagoDet.getIndTotalBus() ? "Sim" : "Não" : "Não");
|
||||
lc.setParent(lstm);
|
||||
|
||||
lc = new Listcell(formaPagoDet.getIndEmbarcada() != null ? formaPagoDet.getIndEmbarcada() ? "Sim" : "Não" : "Não");
|
||||
lc.setParent(lstm);
|
||||
|
||||
|
||||
lstm.setAttribute("data", formaPagoDet);
|
||||
}
|
||||
|
|
|
@ -1480,6 +1480,8 @@ editarPuntoVentaController.lbEmpresaBloqueada.value = Bloqueada
|
|||
editarPuntoVentaController.lbMostrarCaja.value = Mostrar Caja en el Cierre
|
||||
editarPuntoVentaController.lbNumeroSitef.value = Numero SITEF
|
||||
editarPuntoVentaController.lbEmpresaTerceirizada.value = Terceirizada
|
||||
editarPuntoVentaController.checkPtoVtaEmpresaIndTotalBus.value = Vende TotalBus
|
||||
editarPuntoVentaController.checkPtoVtaEmpresaIndEmbarcada.value = Vende Embarcada
|
||||
editarPuntoVentaController.lbparada.value = Parada
|
||||
editarPuntoVentaController.lbdataAbertura.value = Data de Apertura
|
||||
editarPuntoVentaController.lbdataFechamento.value = Fecha de Cierre
|
||||
|
|
|
@ -1596,6 +1596,8 @@ editarPuntoVentaController.lbEmpresaBloqueada.value = Bloqueada
|
|||
editarPuntoVentaController.lbMostrarCaja.value = Exibir Caixa no Fechamento
|
||||
editarPuntoVentaController.lbNumeroSitef.value = Número SITEF
|
||||
editarPuntoVentaController.lbEmpresaTerceirizada.value = Terceirizada
|
||||
editarPuntoVentaController.checkPtoVtaEmpresaIndTotalBus.value = Vende TotalBus
|
||||
editarPuntoVentaController.checkPtoVtaEmpresaIndEmbarcada.value = Vende Embarcada
|
||||
editarPuntoVentaController.lbparada.value = Localidade
|
||||
editarPuntoVentaController.lbdataAbertura.value = Data de Abertura
|
||||
editarPuntoVentaController.lbdataFechamento.value = Data de Fechamento
|
||||
|
|
|
@ -956,6 +956,20 @@
|
|||
constraint="no empty, no negative" />
|
||||
</row>
|
||||
-->
|
||||
<row>
|
||||
<label
|
||||
value="${c:l('editarPuntoVentaController.checkPtoVtaEmpresaIndTotalBus.value')}" />
|
||||
<checkbox
|
||||
id="checkPtoVtaEmpresaIndTotalBus" checked="true" />
|
||||
</row>
|
||||
|
||||
<row>
|
||||
<label
|
||||
value="${c:l('editarPuntoVentaController.checkPtoVtaEmpresaIndEmbarcada.value')}" />
|
||||
<checkbox
|
||||
id="checkPtoVtaEmpresaIndEmbarcada" checked="true" />
|
||||
</row>
|
||||
|
||||
</rows>
|
||||
</grid>
|
||||
|
||||
|
@ -980,7 +994,13 @@
|
|||
label="${c:l('editarConfiguracionFormaPagoController.lblEmpresa.value')}" />
|
||||
<listheader id="lhFormaPago"
|
||||
image="/gui/img/builder.gif"
|
||||
label="${c:l('editarConfiguracionFormaPagoController.lblFormaPago.value')}" />
|
||||
label="${c:l('editarConfiguracionFormaPagoController.lblFormaPago.value')}" />
|
||||
<listheader id="lhTotalbus"
|
||||
image="/gui/img/builder.gif"
|
||||
label="${c:l('editarPuntoVentaController.checkPtoVtaEmpresaIndTotalBus.value')}" />
|
||||
<listheader id="lhEmbarcada"
|
||||
image="/gui/img/builder.gif"
|
||||
label="${c:l('editarPuntoVentaController.checkPtoVtaEmpresaIndEmbarcada.value')}" />
|
||||
</listhead>
|
||||
</listbox>
|
||||
</tabpanel>
|
||||
|
|
Loading…
Reference in New Issue