Package pl.zgora.uz.wmie.fe.sps.business.service

Examples of pl.zgora.uz.wmie.fe.sps.business.service.CompanyService.load()


      //prepareDataForSelect(req); 
      targetPage = "/pages/company/companyForm.jsp";
    } else if (DETAILS.equals(method)) {
      try {
        //prepareDataForSelect(req);
        Company company = companyService.load(Integer.valueOf(req.getParameter("id")));
        req.setAttribute("id", String.valueOf(company.getIdCompany()));
        req.setAttribute("name", company.getName());
        req.setAttribute("address", company.getAddress());
        if (company.getUserLogin()!=null) {
          req.setAttribute("userLogin", company.getUserLogin());
View Full Code Here


      req.setAttribute("refreshTableFunction", "refreshCompanyTabele");
      targetPage = "/pages/default/closeAndRefresh.jsp";
    } else if(PRE_EDIT_ACTION.equals(method)) {
      try {
        //prepareDataForSelect(req);
        Company company = companyService.load(Integer.valueOf(req.getParameter("id")));
        req.setAttribute("id", String.valueOf(company.getIdCompany()));
        req.setAttribute("name", company.getName());
        req.setAttribute("address", company.getAddress());
        req.setAttribute("userLogin", company.getUserLogin());
        req.setAttribute("userPassword", company.getUserPassword());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.