Examples of moveDepartment()


Examples of com.narirelays.ems.services.DepartmentManagementService.moveDepartment()

  public String move() {
    System.out.println("move");
    // TODO Auto-generated method stub
    DepartmentManagementService departmentManagementService = (DepartmentManagementService)StorageService.ctx.getBean("departmentManagementService");
    if(departmentManagementService!=null){
      resultInfo = departmentManagementService.moveDepartment(request.getParameter("id"), request.getParameter("to_parent_id"));
      if(CacheProvider.cacheValid){
        Object obj = CacheProvider.removeObject(OLAP_DEPARTMENT_TREE);
      }
    }
    return SUCCESS;
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.