Пример #1
0
 /**
  * @param request
  * @return
  * @throws FragmentEventException
  */
 public HtmlFragmentResponse searchFinancial(HtmlFragmentRequest request)
     throws FragmentEventException {
   HtmlFragmentResponse res = getResponse();
   try {
     FinancialBean bean = (FinancialBean) request.getForm("searchFinancial");
     Company c = bean.getFinancial();
     if (c == null) {
       c = new Company();
       bean.setFinancial(c);
     }
     List<Company> cs = finService.getCompanies(c, bean.getOffset(), bean.getLimit());
     List<FinancialBean> cbs = new ArrayList<FinancialBean>();
     if (cs != null) {
       for (Company company : cs) {
         FinancialBean cb = new FinancialBean();
         cb.setFinancial(company);
         cbs.add(cb);
       }
     }
     int allCount = finService.allCount(c);
     TableWidget table =
         new DefaultTableWidget(
             "financials", cbs, new PagingBean(bean.getPageNum(), bean.getNumPerPage(), allCount));
     res.addTable(table);
     FormWidget form = new DefaultFormWidget("searchFinancial", bean);
     res.addForm(form);
     res.forward("pages/financial/financialManager.html");
   } catch (Exception e) {
     log.error(e.getMessage(), e);
     throw new FragmentEventException(e);
   }
   return res;
 }
Пример #2
0
 /**
  * @param request
  * @return
  * @throws FragmentEventException
  */
 public HtmlFragmentResponse showEdit(HtmlFragmentRequest request) throws FragmentEventException {
   HtmlFragmentResponse res = getResponse();
   try {
     FinancialBean bean = (FinancialBean) request.getForm("financial");
     if (bean.getFinancial() == null) {
       MessageWidget message = new DefaultMessageWidget("请选择一条记录");
       message.fail();
       res.addMessage(message);
       return res;
     }
     Company financial = finService.getFinancialByID(bean.getFinancial().getId());
     if (financial != null) {
       bean.setFinancial(financial);
       FormWidget form = new DefaultFormWidget("financial", bean);
       res.addForm(form);
     } else {
       FormWidget form = new DefaultFormWidget("financial", new FinancialBean());
       res.addForm(form);
     }
   } catch (Exception e) {
     log.error(e.getMessage(), e);
     throw new FragmentEventException(e);
   }
   res.forward("pages/financial/editFinancial.html");
   return res;
 }
Пример #3
0
 /**
  * @param request
  * @return
  * @throws FragmentEventException
  */
 public HtmlFragmentResponse showAdd(HtmlFragmentRequest request) throws FragmentEventException {
   HtmlFragmentResponse res = this.getResponse();
   res.forward("pages/financial/addFinancial.html");
   return res;
 }