public void onClick$btnBuscar() { if (txtHm.getValue().isEmpty()) { MensajeEmergente.mostrar("NOFINDED", asignarFocusBuscar); } else { paciente = servicioPaciente.buscarUno(txtHm.getValue(), 'A'); veterinario = usuario.getPersona().getVeterinario(); if (paciente == null) { MensajeEmergente.mostrar("NOTFOUND", asignarFocusBuscar); } else { txtHm.setDisabled(true); txtNombrePaciente.setValue(paciente.getNombre()); txtRaza.setValue(paciente.getRaza().getNombre()); txtEspecie.setValue(paciente.getRaza().getEspecie().getNombre()); txtSexo.setValue(paciente.getSexo().getNombre()); txtNombreResponsable.setValue( paciente.getResponsable().getPersona().getNombre() + " " + paciente.getResponsable().getPersona().getApellido()); txtCi.setValue(String.valueOf(paciente.getResponsable().getCedula())); txtEdad.setValue(HelperDateAge.age(paciente.getFechaNac(), ' ')); visibilidadSecciones(true, true, true); cargar(); actividadBotones(false, false, true, false, false, false); } } }
// Metodo para guardar la informacion // public void guardarDatos() throws Exception { try { // log.info("ejecutando metodo guardarDatos()"); if (validarForm()) { FormularioUtil.setUpperCase(groupboxEditar); // Cargamos los componentes // Maestro_manual maestro_manual = new Maestro_manual(); maestro_manual.setId_manual( (lgxId_manual.getValue() != null ? lgxId_manual.getValue() : 0L)); maestro_manual.setCodigo_empresa(codigo_empresa); maestro_manual.setCodigo_sucursal(codigo_sucursal); maestro_manual.setManual(tbxManual.getValue()); maestro_manual.setTipo_manual(lbxTipo_manual.getSelectedItem().getValue().toString()); maestro_manual.setTipo_moneda(lbxTipo_moneda.getSelectedItem().getValue().toString()); maestro_manual.setCreacion_date(new Timestamp(new GregorianCalendar().getTimeInMillis())); maestro_manual.setCreacion_user(usuarios.getCodigo().toString()); Map<String, Object> mapa_datos = new HashMap<String, Object>(); mapa_datos.put("maestro_manual", maestro_manual); mapa_datos.put("accion", tbxAccion.getValue()); mapa_datos.put("mapa_datos_procedimientos", mapa_datos_procedimientos); maestro_manualService.guardarDatos(mapa_datos); tbxAccion.setValue("modificar"); mostrarDatos(maestro_manual); MensajesUtil.mensajeInformacion( "Informacion ..", "Los datos se guardaron satisfactoriamente"); } } catch (Exception e) { MensajesUtil.mensajeError(e, "", this); } }
@Listen("onClick = button#cfgSave") public void cfgSaveClick(MouseEvent event) { if (logger.isDebugEnabled()) logger.debug(" cfgSave button event = " + event); try { Properties config = Util.getConfig(null); if (isValidPort(portsToScan.getText())) { config.setProperty(Constants.SERIAL_PORTS, portsToScan.getValue()); } else { Messagebox.show( "Device ports to scan is invalid. In Linux (pi) '/dev/ttyUSB0,/dev/ttyUSB1,etc', in MS Windows 'COM1,COM2,COM3,etc'"); } if (isValidBaudRate(portBaudRate.getValue())) { config.setProperty(Constants.SERIAL_PORT_BAUD, portBaudRate.getValue()); Util.saveConfig(); } else { Messagebox.show("Device baud rate (speed) must be one of 4800,9600,19200,38400,57600"); } if (NumberUtils.isNumber(cfgWindOffset.getValue())) { config.setProperty(Constants.WIND_ZERO_OFFSET, cfgWindOffset.getValue()); Util.saveConfig(); // notify others producer.sendBody(Constants.WIND_ZERO_ADJUST_CMD + ":" + cfgWindOffset.getValue() + ","); } else { Messagebox.show("Wind offset must be numeric"); } config.setProperty(Constants.PREFER_RMC, (String) useRmcGroup.getSelectedItem().getValue()); config.setProperty( Constants.DNS_USE_CHOICE, (String) useHomeGroup.getSelectedItem().getValue()); Util.saveConfig(); } catch (Exception e) { logger.error(e.getMessage(), e); } }
public void doActualizar() { // usuarioSelected.setStatus(checkEstadoUsuario.isChecked()); usuarioSelected.setCodigoempleado(txtNumerocarne.getValue()); usuarioSelected.setContrasena(txtClaveUsuario2.getValue()); usuarioSelected.setNombreCompleto(txtNombreUsuario.getValue()); usuarioSelected.setNombreusuario(txtUsuarioSistema.getValue()); usuarioSelected.setRegistroslista(txtRegistrosLista.getValue()); // try { // responseOperacion = usuarioBean.guardarUsuario(usuarioSelected, Boolean.FALSE); if (responseOperacion.getCodigoRespuesta() == Constants.CODE_OPERACION_SATISFACTORIA) { // MensajeMultilinea.show("Usuario actualizado Satisfactoriamente", // Constants.MENSAJE_TIPO_INFO); // usuarioSelected = responseOperacion.getUsuario(); loadDataFromEntity(); doReadOnly(Boolean.TRUE); doEditButton(); listaUsuarioCtrl.refresTotalRegistros(); listaUsuarioCtrl.refreshModel(0); } else { MensajeMultilinea.show(responseOperacion.getMensajeRespuesta(), Constants.MENSAJE_TIPO_ERROR); } // } catch (DiservWebException bex) { // bex.printStackTrace(); // MensajeMultilinea.show(bex.toString(), Constants.MENSAJE_TIPO_ERROR); // } doReadOnly(Boolean.TRUE); doEditButton(); }
/** * Search/filter data for the filled out fields<br> * <br> * 1. Count how many textboxes are filled. <br> * 2. Create a map with the count entries. <br> * 3. Store the propertynames(must corresponds to the domain classes properties) and values to the * map. <br> * 4. Call the ServiceDAO method with the map as parameter. <br> */ private void doSearchArticle() { // ++ create the searchObject and init sorting ++// // only in sample app init with all orders HibernateSearchObject<Article> soArticle = new HibernateSearchObject<Article>(Article.class, getPageSizeArticleSearch()); soArticle.addSort("artNr", false); if (StringUtils.isNotEmpty(tb_OrderPosition_SearchArticlelNo.getValue())) { soArticle.addFilter( new Filter( "artNr", "%" + tb_OrderPosition_SearchArticlelNo.getValue() + "%", Filter.OP_ILIKE)); } if (StringUtils.isNotEmpty(tb_OrderPosition_SearchArticleDesc.getValue())) { soArticle.addFilter( new Filter( "artKurzbezeichnung", "%" + tb_OrderPosition_SearchArticleDesc.getValue() + "%", Filter.OP_ILIKE)); } // Set the ListModel. getPlwArticles().init(soArticle, listBoxArticleSearch, paging_ListBoxArticleSearch); }
@SuppressWarnings("unchecked") @Override public void doAfterCompose(Component comp) throws Exception { super.doAfterCompose(comp); webEmployee = (WebEmployee) ZkUtils.getSessionAttribute("webEmployee"); Map<String, String> map = new HashMap<String, String>(); map = ZkUtils.getExecutionArgs(); String dbId = map.get("dbId"); currentPage = map.get("currentPage"); aDbId = dbId; codeDb = ((ErmCodeDbService) SpringUtil.getBean("ermCodeDbService")) .findcodeDbByDbId(dbId, webEmployee); if (dbId != null) { dbIdTxt.setValue(codeDb.getDbId()); dbNameTxt.setValue(codeDb.getName()); resourcesIdTxt.setValue(codeDb.getResourcesId()); // solr查詢語句 String solrQuery = ""; solrQuery += "type_id:DB"; // resourceId if (codeDb.getResourcesId() != null && !codeDb.getResourcesId().trim().equals("")) { solrQuery += " resources_id:" + codeDb.getResourcesId(); } List<ErmResourcesMainfileV> resMainDbwsList = ((ResourcesMainDbwsSolrSearch) SpringUtil.getBean("resourcesMainDbwsSolrSearch")) .resourcesMainSearch(solrQuery); if (resMainDbwsList.size() > 0) { resourcesNameTxt.setValue(resMainDbwsList.get(0).getTitle()); } orderNoIbx.setValue(codeDb.getOrderNo()); urlTxt.setValue(codeDb.getUrl()); if (codeDb.getEzproxy() != null) { if (codeDb.getEzproxy().equals("Y")) { ezproxyRdo.setSelectedIndex(0); } else { ezproxyRdo.setSelectedIndex(1); } } ((ErmResourcesSuunitIdService) SpringUtil.getBean("ermResourcesSuunitIdService")) .findBySuunitResId(dbId); } if (dbIdTxt.getValue() == null || dbIdTxt.getValue().equals("")) { addSuunitBtn.setDisabled(true); delSuunitBtn.setDisabled(true); } flushList(); // List<ErmResourcesSuunit> sunitList=new // ArrayList<ErmResourcesSuunit>(); // sunitList=((ErmResourcesSuunitIdService) SpringUtil // .getBean("ermResourcesSuunitIdService")).findBySuunitResId(dbId); // if (sunitList.size() > 0) { // ListModelList<ErmResourcesSuunit> listModel = new // ListModelList<ErmResourcesSuunit>(sunitList); // listModel.setMultiple(true); // resMainSuunitLix.setModel(listModel); // } }
public void onClick$search() { this.selectGrade = gradeList.getSelectGrade(); List tlist = studentService.findBydeplistAndrid( dlist, Role, gradeList.getSelectGrade(), nameSearch.getValue(), tnoSearch.getValue()); leaderlist.setModel(new ListModelList(tlist)); }
/** Stores the init values in mem vars. <br> */ private void doStoreInitValues() { oldVar_artNr = artNr.getValue(); oldVar_artKurzbezeichnung = artKurzbezeichnung.getValue(); oldVar_aupMenge = aupMenge.getValue(); oldVar_aupEinzelwert = aupEinzelwert.getValue(); oldVar_aupGesamtwert = aupGesamtwert.getValue(); }
/** * * <li>功能描述:重新加载用户列表 void * * @author DaLei @2010-3-17 */ private void reloadList() { List<WkTUser> ulist; if (serchkey.getValue() == null || serchkey.getValue().length() == 0) { ulist = userService.getUsersOfDept(this.dept.getKdId()); } else { ulist = userService.getUsersOfDept(this.dept.getKdId(), serchkey.getValue()); } userList = new ListModelList(); userList.addAll(ulist); userListbox.setModel(userList); }
/** * Checks, if data are changed since the last call of <br> * doStoreInitData() . <br> * * @return true, if data are changed, otherwise false */ private boolean isDataChanged() { boolean changed = false; if (oldVar_rolShortdescription != rolShortdescription.getValue()) { changed = true; } if (oldVar_rolLongdescription != rolLongdescription.getValue()) { changed = true; } return changed; }
public void onClick$btnSavePermissionType() { try { PermitionType permitionType = new PermitionType(code.getValue(), description.getValue(), days.getValue(), true); HRMBusinessLogic.getInstance(ConnectionUtil.getInstance().getConn()) .createPermitionType(0, IDBConstants.MODUL_MASTER_DATA, permitionType); parent.prepareList(); closeWindow(); } catch (Exception ex) { ex.printStackTrace(); } }
private void onNameChanged(InputEvent e) { String value = e.getValue(); Textbox box = (Textbox) e.getTarget(); String lastName, firstName; if (box == lastNameBox) { lastName = value; firstName = firstNameBox.getValue(); } else { lastName = lastNameBox.getValue(); firstName = value; } labelBox.setValue(lastName + ", " + firstName); }
@Listen("onChange = #txtRTF0005; onOK = #txtRTF0005") public boolean claveRTExiste() { if (txtSYF0005.getText().compareTo("") != 0) { if (servicioF0004.buscar(txtSYF0005.getValue(), txtRTF0005.getValue()) == null) { msj.mensajeAlerta(Mensaje.claveRTNoEsta); txtRTF0005.setFocus(true); lblDescripcionF0004.setValue(""); return true; } else lblDescripcionF0004.setValue( servicioF0004.buscar(txtSYF0005.getValue(), txtRTF0005.getValue()).getDtdl01()); } return false; }
@Listen("onChange = #txtKYF0005") public boolean claveKYExiste() { if (txtSYF0005.getText().compareTo("") == 0) { if (txtSYF0005.getText().compareTo("") == 0) { if (servicioF0005.buscar( txtSYF0005.getValue(), txtRTF0005.getValue(), txtKYF0005.getValue()) != null) { msj.mensajeAlerta(Mensaje.claveUsada); txtKYF0005.setFocus(true); return true; } } } return false; }
@Listen("onClick=#saveBtn") public void addCodeDb() { try { Map<String, String> map = new HashMap<String, String>(); map = ZkUtils.getExecutionArgs(); ErmCodeDb ermCodeDb = new ErmCodeDb(); List<ErmCodeDb> codeDbList = ((ErmCodeDbService) SpringUtil.getBean("ermCodeDbService")).findAllCodeDb(webEmployee); String tempId = "OB"; Long number = (long) codeDbList.size(); number = number + 1; String dbId = tempId + RandomIDGenerator.fmtLong(number, 9); ermCodeDb.setDbId(dbId); aDbId = dbId; dbIdTxt.setValue(dbId); if (dbNameTxt.getValue() != null && !"".equals(dbNameTxt.getValue())) { ermCodeDb.setName(dbNameTxt.getValue()); } else { ZkUtils.showExclamation( Labels.getLabel("webErwSource.nameZhTw") + " " + Labels.getLabel("cannottNull"), Labels.getLabel("warn")); dbNameTxt.focus(); return; } if (resourcesIdTxt.getValue() != null) { ermCodeDb.setResourcesId(resourcesIdTxt.getValue()); } ermCodeDb.setHistory("N"); if (ezproxyRdo.getSelectedItem().getValue() != null) { ermCodeDb.setEzproxy(ezproxyRdo.getSelectedItem().getValue().toString()); } if (urlTxt.getValue() != null && !"".equals(urlTxt.getValue())) { ermCodeDb.setUrl(urlTxt.getValue()); } if (orderNoIbx.getValue() != null) { ermCodeDb.setOrderNo(orderNoIbx.getValue()); } ermCodeDb.setIsDataEffid(1); ermCodeDb.setWebEmployee(webEmployee); ermCodeDb.setCreateDate(new Date()); ((ErmCodeDbService) SpringUtil.getBean("ermCodeDbService")).saveCodeDb(ermCodeDb); ((WebSysLogService) SpringUtil.getBean("webSysLogService")) .insertLog( ZkUtils.getRemoteAddr(), ermCodeDb.getWebEmployee().getEmployeesn(), "codeDb_" + ermCodeDb.getDbId()); ZkUtils.showInformation(Labels.getLabel("saveOK"), Labels.getLabel("info")); dbIdTxt.setValue(ermCodeDb.getDbId()); addSuunitBtn.setDisabled(false); delSuunitBtn.setDisabled(false); String url = "ermCodeDb/ermCodeDb.zul"; ZkUtils.refurbishMethod(url); } catch (WrongValueException e) { log.error("新增資料庫異常" + e); } }
void modifierCompte() { try { Compte compte = compteManager.get(Long.parseLong(idCompte.getValue())); compte.setNom(nom.getValue()); compte.setSolde(solde.getValue().floatValue()); compte.setSoldeReel(soldeReel.getValue().floatValue()); compte.setSoldePrevisionnel(soldePrevisionnel.getValue().floatValue()); compteManager.update(compte); for (Object object : self.getDesktop() .getPage("mainPage") .getFellow("contentNiv2") .getFellow("contentNiv3") .getFellows()) { System.out.println("fellow : " + object.toString() + " - " + object.getClass().getName()); } List<Compte> listCompte = compteManager.getAll(); ListModelList listModelList = new ListModelList(); listModelList.addAll(listCompte); ((Listbox) self.getDesktop() .getPage("mainPage") .getFellow("contentNiv2") .getFellow("contentNiv3") .getFellow("main") .getFellow("list")) .setModel(listModelList); win.detach(); } catch (Exception e) { e.printStackTrace(); } }
// Metodo para buscar // public void buscarDatos() throws Exception { try { Map<String, Object> parameters = new HashMap<String, Object>(); String value = tbxValue.getValue().trim().toUpperCase(); parameters.put("codigo_empresa", codigo_empresa); parameters.put("codigo_sucursal", codigo_sucursal); String parameter = lbxParameter.getSelectedItem().getValue().toString(); parameters.put("parameter", parameter); parameters.put("value", "%" + value + "%"); parameters.put("limite_paginado", "limit 25 offset 0"); List<Maestro_manual> lista_datos = maestro_manualService.listar(parameters); listboxResultado.getItems().clear(); divPopups.getChildren().clear(); for (Maestro_manual maestro_manual : lista_datos) { listboxResultado.appendChild(crearFilas(maestro_manual, this)); } listboxResultado.applyProperties(); listboxResultado.invalidate(); } catch (Exception e) { MensajesUtil.mensajeError(e, "", this); } }
@Override public void initWindow() { yearlist.initCqYearlist(getXyUserRole().getDept().getKdSchid()); Date now = new Date(); List tlist = zbteacherService.findByYear( now.getYear() + 1900, getXyUserRole().getKdId(), tnoSearch.getValue(), nameSearch.getValue()); if (tlist != null) { teacherlist.setModel(new ListModelList(tlist)); } else { teacherlist.setModel(new ListModelList()); } }
// Metodo para buscar // public void buscarDatos() throws Exception { try { String parameter = lbxParameter.getSelectedItem().getValue().toString(); String value = tbxValue.getValue().toUpperCase().trim(); Map<String, Object> parameters = new HashMap<String, Object>(); parameters.put("parameter", parameter); parameters.put("value", "%" + value + "%"); anexo3_entidadService.setLimit("limit 25 offset 0"); List<Anexo3_entidad> lista_datos = anexo3_entidadService.listar(parameters); rowsResultado.getChildren().clear(); for (Anexo3_entidad anexo3_entidad : lista_datos) { rowsResultado.appendChild(crearFilas(anexo3_entidad, this)); } gridResultado.setVisible(true); gridResultado.setMold("paging"); gridResultado.setPageSize(20); gridResultado.applyProperties(); gridResultado.invalidate(); } catch (Exception e) { MensajesUtil.mensajeError(e, "", this); } }
public void onMostrarModuloOrdenamiento() throws Exception { if (orden_servicioAction != null) orden_servicioAction.detach(); Map parametros = new HashMap(); parametros.put("nro_identificacion", admision_seleccionada.getNro_identificacion()); parametros.put("nro_ingreso", admision_seleccionada.getNro_ingreso()); parametros.put("estado", admision_seleccionada.getEstado()); parametros.put("codigo_administradora", admision_seleccionada.getCodigo_administradora()); parametros.put("id_plan", admision_seleccionada.getId_plan()); parametros.put("tipo_hc", ""); parametros.put("ocultaValor", ""); parametros.put("admision", admision_seleccionada); parametros.put("opcion_formulario", tbxAccion.getValue()); /* este parametros es para que oculte las vistas */ parametros.put("ocultarInformacion", "_Ocultar"); parametros.put("ocultar_consentimiento", "S"); parametros.put("ocultarEstado", "ocultarEstado"); orden_servicioAction = (Orden_servicio_internoAction) Executions.createComponents("/pages/orden_servicio_interno.zul", null, parametros); orden_servicioAction.inicializar(this); divModuloOrdenamiento.appendChild(orden_servicioAction); orden_servicioAction.obtenerBotonImprimir().setVisible(false); // cargo_farmacologico = true; // } }
public void onClick$btnBuscar() { if (txtNombreCardiaca.getValue().isEmpty()) { MensajeEmergente.mostrar("NOFINDED", asignarFocusBuscar); } else { cardiacas = servicioCardiaca.buscarCoincidencias(txtNombreCardiaca.getValue(), 'A'); if (cardiacas.isEmpty()) { MensajeEmergente.mostrar("NOTFOUND", asignarFocusBuscar); } else { listCardiaca.setModel(new BindingListModelList(cardiacas, false)); buscando = true; verTodos = false; } } apagarBotones(); }
// Metodo para validar campos del formulario // public boolean validarForm() throws Exception { boolean valida = true; XulElement xulElement = null; if (tbxManual.getValue().trim().isEmpty()) { MensajesUtil.notificarError("El campo Manual es obligatorio", tbxManual); valida = false; if (xulElement == null) xulElement = tbxManual; } if (lbxTipo_manual.getSelectedItem().getValue().toString().trim().isEmpty()) { MensajesUtil.notificarError("El campo Tipo manual es obligatorio", lbxTipo_manual); valida = false; if (xulElement == null) xulElement = lbxTipo_manual; } if (lbxTipo_moneda.getSelectedItem().getValue().toString().trim().isEmpty()) { MensajesUtil.notificarError("El campo Tipo moneda es obligatorio", lbxTipo_moneda); valida = false; if (xulElement == null) xulElement = lbxTipo_moneda; } if (xulElement != null) { Clients.scrollIntoView(xulElement); xulElement.setFocus(true); } return valida; }
@Listen("onChange = #txtCodigo") public boolean claveExiste() { if (servicioAliado.existe(txtCodigo.getValue())) { msj.mensajeAlerta(Mensaje.claveUsada); txtCodigo.setFocus(true); return true; } else return false; }
/* * (non-Javadoc) * * @see com.hxzy.base.web.window.ActionWindow#onSubmit() */ @Override public void onSubmit() { Dict category = null; if (combobox.getSelectedItem() != null) { category = (Dict) combobox.getSelectedItem().getValue(); } member.setCompanyName(companyName.getValue()); member.setCategory(category); member.setContacts(contacts.getValue()); member.setJoinTime(joinTime.getValue()); member.setEndTime(endTime.getValue()); memberService.update(member); ((ListWindow) this.getParent()).onFind(); }
public void onClick$view() { WkTDept dept = (WkTDept) deptlist.getSelectedItem().getValue(); /*如果JXKH_AppraisalMember中有再去WKTUser中查询**/ // 首先去JXKH_AppraisalMember中查询 List<JXKH_AppraisalMember> managerList = auditConfigService.findManagerPeo(perId.getValue(), perName.getValue(), dept.getKdId()); List<WkTUser> checkedmanagerList = new ArrayList<WkTUser>(); if (managerList.size() > 0) { for (int i = 0; i < managerList.size(); i++) { List<WkTUser> manage = auditConfigService.findUser(managerList.get(i).getKuId()); manage.get(0).getKuName(); checkedmanagerList.add(manage.get(0)); } } listbox1.setModel(new ListModelList(checkedmanagerList)); checkedmanagerList.clear(); }
public void onClick$query() { Integer year; if (yearlist.getSelectedItem() != null) { year = Integer.parseInt(yearlist.getSelectedItem().getLabel()); } else { Date now = new Date(); year = now.getYear() + 1900; } List tlist = zbteacherService.findByYear( year, getXyUserRole().getKdId(), tnoSearch.getValue(), nameSearch.getValue()); if (tlist != null) { teacherlist.setModel(new ListModelList(tlist)); } else { teacherlist.setModel(new ListModelList()); } }
public void recargar() { seleccion = null; if (verTodos) cardiacas = servicioCardiaca.buscarTodos('A'); else if (buscando) cardiacas = servicioCardiaca.buscarCoincidencias(txtNombreCardiaca.getValue(), 'A'); else cardiacas.clear(); listCardiaca.setModel(new BindingListModelList(cardiacas, false)); }
@Listen("onClick = #btnAgregar") public void annadirLista() { if (validarItems()) { // contador++; Double cantidad = txtTotal.getValue(); if (cantidad == null) cantidad = (double) 0; txtTotal.setValue(cantidad + spnImporte.getValue()); TabDetalles object = new TabDetalles(); object.setConNot(txtConcepto.getValue()); object.setRefNot(txtReferencia.getValue()); object.setMonNot(spnImporte.getValue()); object.setImpNot(spnImporte.getValue()); listaDetalle.add(object); ltbPedidos.setModel(new ListModelList<TabDetalles>(listaDetalle)); ltbPedidos.renderAll(); limpiarCamposItem(); } else msj.mensajeError(Mensaje.camposVaciosItem); }
/** * *********************************************************** Search * *********************************************************** */ @Listen("onClick = #searchBtn") public void search() { String searchTerm = searchBox.getValue(); List<Node> nodes = nodeDao.matchByLabel("%" + searchTerm + "%"); ListModelList<Node> nodeModel = new ListModelList<Node>(nodes); nodeList.setModel(nodeModel); nodeList.setItemRenderer(new NodeRenderer()); footer.setLabel(nodes.size() + " nodes found."); }
public void onClick$query() { isQuery = true; nameSearch = null; auditStateSearch = null; indicatorId = null; nameSearch = name.getValue(); if (auditState.getSelectedItem().getValue().equals("")) { auditStateSearch = null; } else if (auditState.getSelectedItem().getValue().equals("待审核")) { auditStateSearch = 0; } else if (auditState.getSelectedItem().getValue().equals("部门通过")) { auditStateSearch = 1; } else if (auditState.getSelectedItem().getValue().equals("主部门审核中")) { auditStateSearch = 2; } else if (auditState.getSelectedItem().getValue().equals("部门不通过")) { auditStateSearch = 3; } else if (auditState.getSelectedItem().getValue().equals("业务办通过")) { auditStateSearch = 4; } else if (auditState.getSelectedItem().getValue().equals("业务办不通过")) { auditStateSearch = 5; } else if (auditState.getSelectedItem().getValue().equals("归档")) { auditStateSearch = 6; } if (rank.getSelectedIndex() != 0) { Jxkh_BusinessIndicator qkType = (Jxkh_BusinessIndicator) rank.getSelectedItem().getValue(); indicatorId = qkType.getKbId(); } zxPaging.addEventListener( "onPaging", new EventListener() { public void onEvent(Event arg0) throws Exception { meetingList = jxkhQklwService.findMeetingByConditionAndPages( nameSearch, auditStateSearch, indicatorId, user.getDept().getKdNumber(), zxPaging.getActivePage(), zxPaging.getPageSize()); qklwListbox.setModel(new ListModelList(meetingList)); } }); int totalNum = jxkhQklwService.findMeetingByConditions( nameSearch, auditStateSearch, indicatorId, user.getDept().getKdNumber()); zxPaging.setTotalSize(totalNum); meetingList = jxkhQklwService.findMeetingByConditionAndPages( nameSearch, auditStateSearch, indicatorId, user.getDept().getKdNumber(), zxPaging.getActivePage(), zxPaging.getPageSize()); qklwListbox.setModel(new ListModelList(meetingList)); }