141 lines
5.1 KiB
Java
141 lines
5.1 KiB
Java
package com.jsh.erp.controller;
|
|
|
|
import com.alibaba.fastjson.JSON;
|
|
import com.alibaba.fastjson.JSONArray;
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import com.jsh.erp.constants.ExceptionConstants;
|
|
import com.jsh.erp.datasource.entities.MaterialCategory;
|
|
import com.jsh.erp.datasource.entities.Organization;
|
|
import com.jsh.erp.datasource.vo.TreeNode;
|
|
import com.jsh.erp.exception.BusinessRunTimeException;
|
|
import com.jsh.erp.service.materialCategory.MaterialCategoryService;
|
|
import com.jsh.erp.service.organization.OrganizationService;
|
|
import com.jsh.erp.utils.BaseResponseInfo;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
import javax.annotation.Resource;
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import java.text.SimpleDateFormat;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* create by: cjl
|
|
* description:
|
|
*
|
|
* create time: 2019/3/6 10:54
|
|
*/
|
|
@RestController
|
|
@RequestMapping(value = "/organization")
|
|
@Api(tags = {"机构管理"})
|
|
public class OrganizationController {
|
|
private Logger logger = LoggerFactory.getLogger(OrganizationController.class);
|
|
|
|
@Resource
|
|
private OrganizationService organizationService;
|
|
/**
|
|
* 根据id来查询机构信息
|
|
* @param id
|
|
* @param request
|
|
* @return
|
|
*/
|
|
@GetMapping(value = "/findById")
|
|
@ApiOperation(value = "根据id来查询机构信息")
|
|
public BaseResponseInfo findById(@RequestParam("id") Long id, HttpServletRequest request) throws Exception {
|
|
BaseResponseInfo res = new BaseResponseInfo();
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
try {
|
|
List<Organization> dataList = organizationService.findById(id);
|
|
JSONObject outer = new JSONObject();
|
|
if (null != dataList) {
|
|
for (Organization org : dataList) {
|
|
outer.put("id", org.getId());
|
|
outer.put("orgAbr", org.getOrgAbr());
|
|
outer.put("parentId", org.getParentId());
|
|
List<Organization> dataParentList = organizationService.findByParentId(org.getParentId());
|
|
if(dataParentList!=null&&dataParentList.size()>0){
|
|
//父级机构名称显示简称
|
|
outer.put("orgParentName", dataParentList.get(0).getOrgAbr());
|
|
}
|
|
outer.put("orgNo", org.getOrgNo());
|
|
outer.put("sort", org.getSort());
|
|
outer.put("remark", org.getRemark());
|
|
}
|
|
}
|
|
res.code = 200;
|
|
res.data = outer;
|
|
} catch(Exception e){
|
|
e.printStackTrace();
|
|
res.code = 500;
|
|
res.data = "获取数据失败";
|
|
}
|
|
return res;
|
|
}
|
|
|
|
/**
|
|
* create by: cjl
|
|
* description:
|
|
* 获取机构树数据
|
|
* create time: 2019/2/19 11:49
|
|
* @Param:
|
|
* @return com.alibaba.fastjson.JSONArray
|
|
*/
|
|
@RequestMapping(value = "/getOrganizationTree")
|
|
@ApiOperation(value = "获取机构树数据")
|
|
public JSONArray getOrganizationTree(@RequestParam("id") Long id) throws Exception{
|
|
JSONArray arr=new JSONArray();
|
|
List<TreeNode> organizationTree= organizationService.getOrganizationTree(id);
|
|
if(organizationTree!=null&&organizationTree.size()>0){
|
|
for(TreeNode node:organizationTree){
|
|
String str=JSON.toJSONString(node);
|
|
JSONObject obj=JSON.parseObject(str);
|
|
arr.add(obj);
|
|
}
|
|
}
|
|
return arr;
|
|
}
|
|
/**
|
|
* create by: cjl
|
|
* description:
|
|
* 新增机构信息
|
|
* create time: 2019/2/19 17:17
|
|
* @Param: beanJson
|
|
* @return java.lang.Object
|
|
*/
|
|
@PostMapping(value = "/addOrganization")
|
|
@ApiOperation(value = "新增机构信息")
|
|
public Object addOrganization(@RequestParam("info") String beanJson) throws Exception {
|
|
JSONObject result = ExceptionConstants.standardSuccess();
|
|
Organization org= JSON.parseObject(beanJson, Organization.class);
|
|
int i= organizationService.addOrganization(org);
|
|
if(i<1){
|
|
throw new BusinessRunTimeException(ExceptionConstants.ORGANIZATION_ADD_FAILED_CODE,
|
|
ExceptionConstants.ORGANIZATION_ADD_FAILED_MSG);
|
|
}
|
|
return result;
|
|
}
|
|
/**
|
|
* create by: cjl
|
|
* description:
|
|
* 修改机构信息
|
|
* create time: 2019/2/20 9:30
|
|
* @Param: beanJson
|
|
* @return java.lang.Object
|
|
*/
|
|
@PostMapping(value = "/editOrganization")
|
|
@ApiOperation(value = "修改机构信息")
|
|
public Object editOrganization(@RequestParam("info") String beanJson) throws Exception {
|
|
JSONObject result = ExceptionConstants.standardSuccess();
|
|
Organization org= JSON.parseObject(beanJson, Organization.class);
|
|
int i= organizationService.editOrganization(org);
|
|
if(i<1){
|
|
throw new BusinessRunTimeException(ExceptionConstants.ORGANIZATION_EDIT_FAILED_CODE,
|
|
ExceptionConstants.ORGANIZATION_EDIT_FAILED_MSG);
|
|
}
|
|
return result;
|
|
}
|
|
}
|