private void executeAudit(List beanList, int isGoonAudit, FuncButton button) { GkCommentDialog commentDialog = new GkCommentDialog( DefaultKeyboardFocusManager.getCurrentKeyboardFocusManager().getActiveWindow(), ModalityType.APPLICATION_MODAL); if (commentDialog.cancel) { return; } boolean success = true; String errorInfo = ""; try { String comment = commentDialog.getComment(); for (int i = 0; i < beanList.size(); i++) { ZcEbEvalReport report = (ZcEbEvalReport) beanList.get(i); report.setIsGoonAudit(isGoonAudit); report.setComment(comment); report.setAuditorId(WorkEnv.getInstance().getCurrUserId()); } requestMeta.setFuncId(button.getFuncId()); zcEbEvalServiceDelegate.updateZcEbEvalStatus(beanList, requestMeta); zcEbEvalServiceDelegate.auditFN(beanList, requestMeta); } catch (Exception e) { success = false; logger.error(e.getMessage(), e); errorInfo += e.getMessage(); } if (success) { refreshCurrentTabData(); JOptionPane.showMessageDialog(this, "审核成功!", "提示", JOptionPane.INFORMATION_MESSAGE); } else { JOptionPane.showMessageDialog(this, "审核失败 !" + errorInfo, "错误", JOptionPane.ERROR_MESSAGE); } }
package com.ufgov.zc.client.zc.expertevaluate;
package com.ufgov.zc.client.component;
/**
package com.ufgov.zc.client.zc.auditsheet;