git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@21449 d1611594-4594-4d17-8e1d-87c2c4800839
parent
2e5304c9cd
commit
e6e6610bc1
|
@ -40,231 +40,232 @@ import org.zkoss.zul.Row;
|
|||
@Scope("prototype")
|
||||
public class EditarMarcaController extends MyGenericForwardComposer {
|
||||
|
||||
@Autowired
|
||||
private MarcaService marcaService;
|
||||
@Autowired
|
||||
private EmpresaService empresaService;
|
||||
private Marca marca;
|
||||
private List<Empresa> lsEmpresa;
|
||||
private MyListbox marcaList;
|
||||
private BusquedaMarcaController busquedaMarcaController;
|
||||
private Image img;
|
||||
private MyTextbox txtNome;
|
||||
private Button btnApagar;
|
||||
private static Logger log = Logger.getLogger(EditarMarcaController.class);
|
||||
private Row rowEquivalencia;
|
||||
private Combobox cmbEmpresa;
|
||||
private static final long serialVersionUID = 1L;
|
||||
@Autowired
|
||||
private MarcaService marcaService;
|
||||
@Autowired
|
||||
private EmpresaService empresaService;
|
||||
private Marca marca;
|
||||
private List<Empresa> lsEmpresa;
|
||||
private MyListbox marcaList;
|
||||
private BusquedaMarcaController busquedaMarcaController;
|
||||
private Image img;
|
||||
private MyTextbox txtNome;
|
||||
private Button btnApagar;
|
||||
private static Logger log = Logger.getLogger(EditarMarcaController.class);
|
||||
private Row rowEquivalencia;
|
||||
private Combobox cmbEmpresa;
|
||||
|
||||
public Image getImg() {
|
||||
return img;
|
||||
}
|
||||
public Image getImg() {
|
||||
return img;
|
||||
}
|
||||
|
||||
public void setImg(Image img) {
|
||||
this.img = img;
|
||||
}
|
||||
public void setImg(Image img) {
|
||||
this.img = img;
|
||||
}
|
||||
|
||||
public Marca getMarca() {
|
||||
return marca;
|
||||
}
|
||||
public Marca getMarca() {
|
||||
return marca;
|
||||
}
|
||||
|
||||
public List<Empresa> getLsEmpresa() {
|
||||
return lsEmpresa;
|
||||
}
|
||||
public List<Empresa> getLsEmpresa() {
|
||||
return lsEmpresa;
|
||||
}
|
||||
|
||||
public void setLsEmpresa(List<Empresa> lsEmpresa) {
|
||||
this.lsEmpresa = lsEmpresa;
|
||||
}
|
||||
public void setLsEmpresa(List<Empresa> lsEmpresa) {
|
||||
this.lsEmpresa = lsEmpresa;
|
||||
}
|
||||
|
||||
public void setMarca(Marca marca) {
|
||||
this.marca = marca;
|
||||
}
|
||||
public void setMarca(Marca marca) {
|
||||
this.marca = marca;
|
||||
}
|
||||
|
||||
public MyListbox getMarcaList() {
|
||||
return marcaList;
|
||||
}
|
||||
public MyListbox getMarcaList() {
|
||||
return marcaList;
|
||||
}
|
||||
|
||||
public void setMarcaList(MyListbox marcaList) {
|
||||
this.marcaList = marcaList;
|
||||
}
|
||||
public void setMarcaList(MyListbox marcaList) {
|
||||
this.marcaList = marcaList;
|
||||
}
|
||||
|
||||
public MyTextbox getTxtNome() {
|
||||
return txtNome;
|
||||
}
|
||||
public MyTextbox getTxtNome() {
|
||||
return txtNome;
|
||||
}
|
||||
|
||||
public void setTxtNome(MyTextbox txtNome) {
|
||||
this.txtNome = txtNome;
|
||||
}
|
||||
public void setTxtNome(MyTextbox txtNome) {
|
||||
this.txtNome = txtNome;
|
||||
}
|
||||
|
||||
public Button getBtnApagar() {
|
||||
return btnApagar;
|
||||
}
|
||||
public Button getBtnApagar() {
|
||||
return btnApagar;
|
||||
}
|
||||
|
||||
public void setBtnApagar(Button btnApagar) {
|
||||
this.btnApagar = btnApagar;
|
||||
}
|
||||
public void setBtnApagar(Button btnApagar) {
|
||||
this.btnApagar = btnApagar;
|
||||
}
|
||||
|
||||
public Row getRowEquivalencia() {
|
||||
return rowEquivalencia;
|
||||
}
|
||||
public Row getRowEquivalencia() {
|
||||
return rowEquivalencia;
|
||||
}
|
||||
|
||||
public void setRowEquivalencia(Row rowEquivalencia) {
|
||||
this.rowEquivalencia = rowEquivalencia;
|
||||
}
|
||||
public void setRowEquivalencia(Row rowEquivalencia) {
|
||||
this.rowEquivalencia = rowEquivalencia;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void doAfterCompose(Component comp) throws Exception {
|
||||
@Override
|
||||
public void doAfterCompose(Component comp) throws Exception {
|
||||
|
||||
lsEmpresa = empresaService.obtenerTodos();
|
||||
super.doAfterCompose(comp);
|
||||
lsEmpresa = empresaService.obtenerTodos();
|
||||
super.doAfterCompose(comp);
|
||||
|
||||
marca = (Marca) Executions.getCurrent().getArg().get("marca");
|
||||
busquedaMarcaController = (BusquedaMarcaController) Executions.getCurrent().getArg().get("busquedaMarcaController");
|
||||
if (marca.getLogotipomarca() != null) {
|
||||
img.setContent(new org.zkoss.image.AImage(marca.getDescmarca(),
|
||||
marca.getLogotipomarca()));
|
||||
}
|
||||
marcaList = (MyListbox) Executions.getCurrent().getArg().get("marcaList");
|
||||
marca = (Marca) Executions.getCurrent().getArg().get("marca");
|
||||
busquedaMarcaController = (BusquedaMarcaController) Executions.getCurrent().getArg().get("busquedaMarcaController");
|
||||
if (marca.getLogotipomarca() != null) {
|
||||
img.setContent(new org.zkoss.image.AImage(marca.getDescmarca(),
|
||||
marca.getLogotipomarca()));
|
||||
}
|
||||
marcaList = (MyListbox) Executions.getCurrent().getArg().get("marcaList");
|
||||
|
||||
if (marca.getMarcaId() == null) {
|
||||
btnApagar.setVisible(Boolean.FALSE);
|
||||
}
|
||||
if (marca.getMarcaId() == null) {
|
||||
btnApagar.setVisible(Boolean.FALSE);
|
||||
}
|
||||
|
||||
if (!ApplicationProperties.getInstance().mostrarEquivalencia()) {
|
||||
rowEquivalencia.setVisible(Boolean.FALSE);
|
||||
}
|
||||
if (!ApplicationProperties.getInstance().mostrarEquivalencia()) {
|
||||
rowEquivalencia.setVisible(Boolean.FALSE);
|
||||
}
|
||||
|
||||
txtNome.focus();
|
||||
}
|
||||
txtNome.focus();
|
||||
}
|
||||
|
||||
public void uploadPhoto(UploadEvent event) {
|
||||
org.zkoss.util.media.Media media = event.getMedia();
|
||||
public void uploadPhoto(UploadEvent event) {
|
||||
org.zkoss.util.media.Media media = event.getMedia();
|
||||
|
||||
try {
|
||||
if (media instanceof org.zkoss.image.Image) {
|
||||
img.setContent(new org.zkoss.image.AImage(media.getName(),
|
||||
media.getStreamData()));
|
||||
} else {
|
||||
Messagebox.show(
|
||||
Labels.getLabel("editarMarcaController.MSG.errorIMG") + " " + media,
|
||||
Labels.getLabel("editarMarcaController.window.title"),
|
||||
Messagebox.OK, Messagebox.ERROR);
|
||||
}
|
||||
} catch (IOException ex) {
|
||||
log.error(ex);
|
||||
throw UiException.Aide.wrap(ex);
|
||||
} catch (InterruptedException ex) {
|
||||
log.error(ex);
|
||||
throw UiException.Aide.wrap(ex);
|
||||
}
|
||||
}
|
||||
try {
|
||||
if (media instanceof org.zkoss.image.Image) {
|
||||
img.setContent(new org.zkoss.image.AImage(media.getName(),
|
||||
media.getStreamData()));
|
||||
} else {
|
||||
Messagebox.show(
|
||||
Labels.getLabel("editarMarcaController.MSG.errorIMG") + " " + media,
|
||||
Labels.getLabel("editarMarcaController.window.title"),
|
||||
Messagebox.OK, Messagebox.ERROR);
|
||||
}
|
||||
} catch (IOException ex) {
|
||||
log.error(ex);
|
||||
throw UiException.Aide.wrap(ex);
|
||||
} catch (InterruptedException ex) {
|
||||
log.error(ex);
|
||||
throw UiException.Aide.wrap(ex);
|
||||
}
|
||||
}
|
||||
|
||||
public void onClick$btnSalvar(Event ev) throws InterruptedException {
|
||||
txtNome.getText();
|
||||
cmbEmpresa.getValue();
|
||||
try {
|
||||
String nomeMarca = marca.getDescmarca();
|
||||
List<Marca> lsMarcas = marcaService.buscarPorNome(nomeMarca);
|
||||
boolean podeSalvar = false;
|
||||
if (lsMarcas.isEmpty()) {
|
||||
podeSalvar = true;
|
||||
} else {
|
||||
for (Marca m : lsMarcas) {
|
||||
if (m.getMarcaId().equals(marca.getMarcaId())) {
|
||||
podeSalvar = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
public void onClick$btnSalvar(Event ev) throws InterruptedException {
|
||||
txtNome.getText();
|
||||
cmbEmpresa.getValue();
|
||||
try {
|
||||
String nomeMarca = marca.getDescmarca();
|
||||
List<Marca> lsMarcas = marcaService.buscarPorNome(nomeMarca);
|
||||
boolean podeSalvar = false;
|
||||
if (lsMarcas.isEmpty()) {
|
||||
podeSalvar = true;
|
||||
} else {
|
||||
for (Marca m : lsMarcas) {
|
||||
if (m.getMarcaId().equals(marca.getMarcaId())) {
|
||||
podeSalvar = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (podeSalvar) {
|
||||
marca.setActivo(Boolean.TRUE);
|
||||
marca.setFecmodif(Calendar.getInstance().getTime());
|
||||
marca.setUsuarioId(UsuarioLogado.getUsuarioLogado().getUsuarioId());
|
||||
if (podeSalvar) {
|
||||
marca.setActivo(Boolean.TRUE);
|
||||
marca.setFecmodif(Calendar.getInstance().getTime());
|
||||
marca.setUsuarioId(UsuarioLogado.getUsuarioLogado().getUsuarioId());
|
||||
|
||||
if (img.getContent() != null) {
|
||||
marca.setLogotipomarca(img.getContent().getByteData());
|
||||
}
|
||||
if (img.getContent() != null) {
|
||||
marca.setLogotipomarca(img.getContent().getByteData());
|
||||
}
|
||||
|
||||
if (marca.getLogotipomarca() == null) {
|
||||
int resp = Messagebox.show(
|
||||
Labels.getLabel("editarMarcaController.MSG.SinImagenPergunta"),
|
||||
Labels.getLabel("editarMarcaController.window.title"),
|
||||
Messagebox.YES | Messagebox.NO, Messagebox.QUESTION);
|
||||
if (marca.getLogotipomarca() == null) {
|
||||
int resp = Messagebox.show(
|
||||
Labels.getLabel("editarMarcaController.MSG.SinImagenPergunta"),
|
||||
Labels.getLabel("editarMarcaController.window.title"),
|
||||
Messagebox.YES | Messagebox.NO, Messagebox.QUESTION);
|
||||
|
||||
if (resp == Messagebox.YES) {
|
||||
if (marca.getMarcaId() == null) {
|
||||
marcaService.suscribir(marca);
|
||||
marcaList.addItem(marca);
|
||||
if (resp == Messagebox.YES) {
|
||||
if (marca.getMarcaId() == null) {
|
||||
marcaService.suscribir(marca);
|
||||
marcaList.addItem(marca);
|
||||
|
||||
Messagebox.show(
|
||||
Labels.getLabel("editarMarcaController.MSG.suscribirOK"),
|
||||
Labels.getLabel("editarMarcaController.window.title"),
|
||||
Messagebox.OK, Messagebox.INFORMATION);
|
||||
Messagebox.show(
|
||||
Labels.getLabel("editarMarcaController.MSG.suscribirOK"),
|
||||
Labels.getLabel("editarMarcaController.window.title"),
|
||||
Messagebox.OK, Messagebox.INFORMATION);
|
||||
|
||||
closeWindow();
|
||||
} else {
|
||||
marcaService.actualizacion(marca);
|
||||
marcaList.updateItem(marca);
|
||||
closeWindow();
|
||||
} else {
|
||||
marcaService.actualizacion(marca);
|
||||
marcaList.updateItem(marca);
|
||||
|
||||
Messagebox.show(
|
||||
Labels.getLabel("editarMarcaController.MSG.suscribirOK"),
|
||||
Labels.getLabel("editarMarcaController.window.title"),
|
||||
Messagebox.OK, Messagebox.INFORMATION);
|
||||
Messagebox.show(
|
||||
Labels.getLabel("editarMarcaController.MSG.suscribirOK"),
|
||||
Labels.getLabel("editarMarcaController.window.title"),
|
||||
Messagebox.OK, Messagebox.INFORMATION);
|
||||
|
||||
closeWindow();
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (marca.getMarcaId() == null) {
|
||||
marcaService.suscribir(marca);
|
||||
marcaList.addItem(marca);
|
||||
} else {
|
||||
marcaService.actualizacion(marca);
|
||||
marcaList.updateItem(marca);
|
||||
}
|
||||
closeWindow();
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (marca.getMarcaId() == null) {
|
||||
marcaService.suscribir(marca);
|
||||
marcaList.addItem(marca);
|
||||
} else {
|
||||
marcaService.actualizacion(marca);
|
||||
marcaList.updateItem(marca);
|
||||
}
|
||||
|
||||
Messagebox.show(
|
||||
Labels.getLabel("editarMarcaController.MSG.suscribirOK"),
|
||||
Labels.getLabel("editarMarcaController.window.title"),
|
||||
Messagebox.OK, Messagebox.INFORMATION);
|
||||
busquedaMarcaController.refreshLista();
|
||||
closeWindow();
|
||||
}
|
||||
} else {
|
||||
Messagebox.show(
|
||||
Labels.getLabel("MSG.Registro.Existe"),
|
||||
Labels.getLabel("editarMarcaController.window.title"),
|
||||
Messagebox.OK, Messagebox.EXCLAMATION);
|
||||
}
|
||||
} catch (Exception ex) {
|
||||
log.error("editarMarcaController: " + ex);
|
||||
Messagebox.show(
|
||||
Labels.getLabel("MSG.Error"),
|
||||
Labels.getLabel("editarMarcaController.window.title"),
|
||||
Messagebox.OK, Messagebox.ERROR);
|
||||
}
|
||||
}
|
||||
Messagebox.show(
|
||||
Labels.getLabel("editarMarcaController.MSG.suscribirOK"),
|
||||
Labels.getLabel("editarMarcaController.window.title"),
|
||||
Messagebox.OK, Messagebox.INFORMATION);
|
||||
busquedaMarcaController.refreshLista();
|
||||
closeWindow();
|
||||
}
|
||||
} else {
|
||||
Messagebox.show(
|
||||
Labels.getLabel("MSG.Registro.Existe"),
|
||||
Labels.getLabel("editarMarcaController.window.title"),
|
||||
Messagebox.OK, Messagebox.EXCLAMATION);
|
||||
}
|
||||
} catch (Exception ex) {
|
||||
log.error("editarMarcaController: " + ex);
|
||||
Messagebox.show(
|
||||
Labels.getLabel("MSG.Error"),
|
||||
Labels.getLabel("editarMarcaController.window.title"),
|
||||
Messagebox.OK, Messagebox.ERROR);
|
||||
}
|
||||
}
|
||||
|
||||
public void onClick$btnApagar(Event ev) {
|
||||
try {
|
||||
int resp = Messagebox.show(
|
||||
Labels.getLabel("editarMarcaController.MSG.borrarPergunta"),
|
||||
Labels.getLabel("editarMarcaController.window.title"),
|
||||
Messagebox.YES | Messagebox.NO, Messagebox.QUESTION);
|
||||
public void onClick$btnApagar(Event ev) {
|
||||
try {
|
||||
int resp = Messagebox.show(
|
||||
Labels.getLabel("editarMarcaController.MSG.borrarPergunta"),
|
||||
Labels.getLabel("editarMarcaController.window.title"),
|
||||
Messagebox.YES | Messagebox.NO, Messagebox.QUESTION);
|
||||
|
||||
if (resp == Messagebox.YES) {
|
||||
marcaService.borrar(marca);
|
||||
if (resp == Messagebox.YES) {
|
||||
marcaService.borrar(marca);
|
||||
|
||||
Messagebox.show(
|
||||
Labels.getLabel("editarMarcaController.MSG.borrarOK"),
|
||||
Labels.getLabel("editarMarcaController.window.title"),
|
||||
Messagebox.OK, Messagebox.INFORMATION);
|
||||
Messagebox.show(
|
||||
Labels.getLabel("editarMarcaController.MSG.borrarOK"),
|
||||
Labels.getLabel("editarMarcaController.window.title"),
|
||||
Messagebox.OK, Messagebox.INFORMATION);
|
||||
|
||||
marcaList.removeItem(marca);
|
||||
marcaList.removeItem(marca);
|
||||
|
||||
closeWindow();
|
||||
}
|
||||
} catch (Exception ex) {
|
||||
log.error(ex);
|
||||
}
|
||||
}
|
||||
closeWindow();
|
||||
}
|
||||
} catch (Exception ex) {
|
||||
log.error(ex);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,13 +6,16 @@ import java.io.IOException;
|
|||
import java.io.InputStream;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Properties;
|
||||
|
||||
import org.springframework.context.annotation.Scope;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.zkoss.util.media.Media;
|
||||
import org.zkoss.zhtml.Filedownload;
|
||||
import org.zkoss.zk.ui.Component;
|
||||
import org.zkoss.zk.ui.event.Event;
|
||||
import org.zkoss.zk.ui.event.InputEvent;
|
||||
import org.zkoss.zk.ui.event.UploadEvent;
|
||||
import org.zkoss.zul.Combobox;
|
||||
import org.zkoss.zul.Comboitem;
|
||||
import org.zkoss.zul.Intbox;
|
||||
|
@ -130,4 +133,13 @@ public class ConfigLayoutImpressaoBoletoController extends MyGenericForwardCompo
|
|||
|
||||
txtLayout.setText("");
|
||||
}
|
||||
|
||||
public void onUpload(UploadEvent event) throws IOException {
|
||||
Media media = event.getMedia();
|
||||
|
||||
Properties props = new Properties();
|
||||
InputStream in = media.getStreamData();
|
||||
props.load(in);
|
||||
in.close();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
package com.rjconsultores.ventaboletos.web.utilerias.menu.item.confcomerciales;
|
||||
|
||||
import org.zkoss.util.resource.Labels;
|
||||
|
||||
import com.rjconsultores.ventaboletos.web.utilerias.PantallaUtileria;
|
||||
import com.rjconsultores.ventaboletos.web.utilerias.menu.DefaultItemMenuSistema;
|
||||
|
||||
|
@ -17,6 +19,6 @@ public class ItemMenuConfigLayoutImpressaoBoleto extends DefaultItemMenuSistema
|
|||
@Override
|
||||
public void ejecutar() {
|
||||
PantallaUtileria.openWindow("/gui/configuraciones_comerciales/configLayoutImpressaoBoleto.zul",
|
||||
"Config Layout Impressão Boleto", null, desktop);
|
||||
Labels.getLabel("configLayoutImpressaoBoletoController.window.title"), null, desktop);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3779,3 +3779,11 @@ editarParamConexionController.lbNome.value=Nome
|
|||
editarParamConexionController.lbDesc.value=Descrição
|
||||
editarParamConexionController.lbValor.value=Valor
|
||||
editarParamConexionController.MSG.suscribirOK=Parametro Atualizado com sucesso
|
||||
|
||||
# Configuracao Layout Impressao
|
||||
configLayoutImpressaoBoletoController.fileupload.label = Editar Arquivo
|
||||
configLayoutImpressaoBoletoController.window.title = Config Layout Impressão Boleto
|
||||
configLayoutImpressaoBoletoController.layout.label = Layout
|
||||
configLayoutImpressaoBoletoController.campo.label = Campo
|
||||
configLayoutImpressaoBoletoController.coluna.label = Coluna
|
||||
configLayoutImpressaoBoletoController.linha.label = Linha
|
||||
|
|
|
@ -6,13 +6,16 @@
|
|||
|
||||
<zk xmlns="http://www.zkoss.org/2005/zul">
|
||||
<window id="winConfigLayoutImpressaoBoleto"
|
||||
title="Config Layout Impressão Boleto"
|
||||
title="${c:l('configLayoutImpressaoBoletoController.window.title')}"
|
||||
apply="${configLayoutImpressaoBoletoController}"
|
||||
contentStyle="overflow:auto" height="470px" width="800px"
|
||||
border="normal">
|
||||
<toolbar>
|
||||
<button id="btnSalvar" image="/gui/img/save.png"
|
||||
width="35px" />
|
||||
<fileupload visible="false"
|
||||
label="${c:l('configLayoutImpressaoBoletoController.fileupload.label')}"
|
||||
onUpload="winConfigLayoutImpressaoBoleto$composer.onUpload(event)" />
|
||||
<button id="btnCerrar"
|
||||
onClick="winConfigLayoutImpressaoBoleto.detach()"
|
||||
image="/gui/img/exit.png" width="35px" />
|
||||
|
@ -22,7 +25,8 @@
|
|||
<grid fixedLayout="true">
|
||||
<rows>
|
||||
<row spans="2">
|
||||
<label value="Layout" />
|
||||
<label
|
||||
value="${c:l('configLayoutImpressaoBoletoController.layout.label')}" />
|
||||
</row>
|
||||
<row spans="2" align="center">
|
||||
<textbox id="txtLayout" rows="23" cols="60" />
|
||||
|
@ -38,7 +42,8 @@
|
|||
</columns>
|
||||
<rows>
|
||||
<row>
|
||||
<label value="Campo" />
|
||||
<label
|
||||
value="${c:l('configLayoutImpressaoBoletoController.campo.label')}" />
|
||||
<combobox id="cmbCampo">
|
||||
<comboitem value="getOrigen" label="De" />
|
||||
<comboitem value="getDestino"
|
||||
|
@ -97,11 +102,13 @@
|
|||
</combobox>
|
||||
</row>
|
||||
<row>
|
||||
<label value="Linha" />
|
||||
<label
|
||||
value="${c:l('configLayoutImpressaoBoletoController.linha.label')}" />
|
||||
<intbox id="txtLinha" />
|
||||
</row>
|
||||
<row>
|
||||
<label value="Coluna" />
|
||||
<label
|
||||
value="${c:l('configLayoutImpressaoBoletoController.coluna.label')}" />
|
||||
<intbox id="txtColuna" />
|
||||
</row>
|
||||
</rows>
|
||||
|
@ -119,11 +126,11 @@
|
|||
multiple="false">
|
||||
<listhead sizable="true">
|
||||
<listheader image="/gui/img/builder.gif"
|
||||
label="Campo" />
|
||||
label="${c:l('configLayoutImpressaoBoletoController.campo.label')}" />
|
||||
<listheader image="/gui/img/builder.gif"
|
||||
label="Linha" />
|
||||
label="${c:l('configLayoutImpressaoBoletoController.linha.label')}" />
|
||||
<listheader image="/gui/img/create_doc.gif"
|
||||
label="Coluna" />
|
||||
label="${c:l('configLayoutImpressaoBoletoController.coluna.label')}" />
|
||||
</listhead>
|
||||
</listbox>
|
||||
</vbox>
|
||||
|
|
Loading…
Reference in New Issue