| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564 |
- package cn.com.lzt.maintainplan.controller;
- import cn.com.lzt.common.util.DictUtil;
- import cn.com.lzt.common.util.LztUtil;
- import cn.com.lzt.common.view.JsonDataModelAndView;
- import cn.com.lzt.maintainplan.entity.MaintainPlanEntity;
- import cn.com.lzt.maintainplan.page.MaintainPlanPage;
- import cn.com.lzt.maintainplan.service.MaintainPlanServiceI;
- import cn.com.lzt.maintainplanprojserv.entity.MaintainPlanProjservEntity;
- import cn.com.lzt.maintainplantimes.entity.MaintainPlanTimesEntity;
- import com.jeecg.qianbao.util.FormProcUtil;
- import com.xcgl.weixin.entity.WXAjaxJson;
- import org.apache.commons.lang3.StringUtils;
- import org.apache.log4j.Logger;
- import org.codehaus.jackson.map.ObjectMapper;
- import org.hibernate.criterion.Restrictions;
- import org.jeecgframework.core.beanvalidator.BeanValidators;
- import org.jeecgframework.core.common.controller.BaseController;
- import org.jeecgframework.core.common.exception.BusinessException;
- import org.jeecgframework.core.common.hibernate.qbc.CriteriaQuery;
- import org.jeecgframework.core.common.model.json.AjaxJson;
- import org.jeecgframework.core.common.model.json.DataGrid;
- import org.jeecgframework.core.constant.Globals;
- import org.jeecgframework.core.util.*;
- import org.jeecgframework.poi.excel.ExcelImportUtil;
- import org.jeecgframework.poi.excel.entity.ExportParams;
- import org.jeecgframework.poi.excel.entity.ImportParams;
- import org.jeecgframework.poi.excel.entity.vo.NormalExcelConstants;
- import org.jeecgframework.tag.core.easyui.TagUtil;
- import org.jeecgframework.web.system.pojo.base.TSUser;
- import org.jeecgframework.web.system.service.SystemService;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.http.HttpHeaders;
- import org.springframework.http.HttpStatus;
- import org.springframework.http.MediaType;
- import org.springframework.http.ResponseEntity;
- import org.springframework.stereotype.Controller;
- import org.springframework.ui.ModelMap;
- import org.springframework.web.bind.annotation.*;
- import org.springframework.web.multipart.MultipartFile;
- import org.springframework.web.multipart.MultipartHttpServletRequest;
- import org.springframework.web.servlet.ModelAndView;
- import org.springframework.web.util.UriComponentsBuilder;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- import javax.validation.ConstraintViolation;
- import javax.validation.Validator;
- import java.io.IOException;
- import java.net.URI;
- import java.util.*;
- /**
- * @Title: Controller
- * @Description: 供方服务计划
- * @author onlineGenerator
- * @date 2019-05-23 11:34:33
- * @version V1.0
- *
- */
- @Controller
- @RequestMapping("/maintainPlanController")
- public class MaintainPlanController extends BaseController {
- /**
- * Logger for this class
- */
- private static final Logger logger = Logger.getLogger(MaintainPlanController.class);
- @Autowired
- private MaintainPlanServiceI maintainPlanService;
- @Autowired
- private SystemService systemService;
- @Autowired
- private Validator validator;
- /**
- * 供方服务计划列表 页面跳转
- *
- * @return
- */
- @RequestMapping(params = "list")
- public ModelAndView list(HttpServletRequest request) {
- return new ModelAndView("cn/com/lzt/maintainplan/maintainPlanList");
- }
-
- @RequestMapping(params = "shortcutsetting")
- public ModelAndView shortcutsetting(HttpServletRequest request) {
- request.setAttribute("firsttime", request.getParameter("firsttime"));
- request.setAttribute("lasttime", request.getParameter("lasttime"));
- return new ModelAndView("cn/com/lzt/maintainplan/maintainPlan-shortcut");
- }
- /**
- * easyui AJAX请求数据
- *
- * @param request
- * @param response
- * @param dataGrid
- */
- @RequestMapping(params = "datagrid")
- public void datagrid(MaintainPlanEntity maintainPlan,HttpServletRequest request, HttpServletResponse response, DataGrid dataGrid) {
- CriteriaQuery cq = new CriteriaQuery(MaintainPlanEntity.class, dataGrid);
- if(StringUtils.isNotBlank(maintainPlan.getDepName())){
- cq.like("depName","%"+maintainPlan.getDepName()+"%");
- maintainPlan.setDepName(null);
- }
- if(StringUtils.isNotBlank(maintainPlan.getName())){
- cq.like("name","%"+maintainPlan.getName()+"%");
- maintainPlan.setName(null);
- }
- String hasContract = request.getParameter("hasContract");
- if(StringUtils.isNotBlank(hasContract)){
- if(hasContract.equals("0")) cq.isNull("contractId");
- if(hasContract.equals("1")) cq.isNotNull("contractId");
- }
- if(StringUtils.isNotBlank(maintainPlan.getMaintainMonth())){
- cq.like("maintainMonth","%"+maintainPlan.getMaintainMonth()+"%");
- maintainPlan.setMaintainMonth(null);
- }
- if(StringUtils.isNotBlank(maintainPlan.getMaintainYear())){
- cq.like("maintainYear","%"+maintainPlan.getMaintainYear()+"%");
- maintainPlan.setMaintainYear(null);
- }
- //查询条件组装器
- org.jeecgframework.core.extend.hqlsearch.HqlGenerateUtil.installHql(cq, maintainPlan);
- try{
- TSUser user = ResourceUtil.getSessionUser();
- cq.add(Restrictions.eq("createBy",user.getUserName()));
- //自定义追加查询条件
- }catch (Exception e) {
- throw new BusinessException(e.getMessage());
- }
- cq.add();
- this.maintainPlanService.getDataGridReturn(cq, true);
- TagUtil.datagrid(response, dataGrid);
- }
- /**
- * 删除供方服务计划
- *
- * @return
- */
- @RequestMapping(params = "doDel")
- @ResponseBody
- public AjaxJson doDel(MaintainPlanEntity maintainPlan, HttpServletRequest request) {
- AjaxJson j = new AjaxJson();
- maintainPlan = systemService.getEntity(MaintainPlanEntity.class, maintainPlan.getId());
- String message = "供方服务计划删除成功";
- try{
- maintainPlanService.delMain(maintainPlan);
- systemService.addLog(message, Globals.Log_Type_DEL, Globals.Log_Leavel_INFO);
- }catch(Exception e){
- e.printStackTrace();
- message = "供方服务计划删除失败";
- throw new BusinessException(e.getMessage());
- }
- j.setMsg(message);
- return j;
- }
- /**
- * 批量删除供方服务计划
- *
- * @return
- */
- @RequestMapping(params = "doBatchDel")
- @ResponseBody
- public AjaxJson doBatchDel(String ids,HttpServletRequest request){
- AjaxJson j = new AjaxJson();
- String message = "供方服务计划删除成功";
- try{
- for(String id:ids.split(",")){
- MaintainPlanEntity maintainPlan = systemService.getEntity(MaintainPlanEntity.class,
- id
- );
- maintainPlanService.delMain(maintainPlan);
- systemService.addLog(message, Globals.Log_Type_DEL, Globals.Log_Leavel_INFO);
- }
- }catch(Exception e){
- e.printStackTrace();
- message = "供方服务计划删除失败";
- throw new BusinessException(e.getMessage());
- }
- j.setMsg(message);
- return j;
- }
- /**
- * 添加供方服务计划
- *
- * @return
- */
- @RequestMapping(params = "doAdd")
- @ResponseBody
- public AjaxJson doAdd(MaintainPlanEntity maintainPlan,MaintainPlanPage maintainPlanPage, HttpServletRequest request) {
- if(StringUtils.isNotBlank(maintainPlan.getId())){
- return doUpdate(maintainPlan,maintainPlanPage,request);
- }
- List<MaintainPlanProjservEntity> maintainPlanProjservList = maintainPlanPage.getMaintainPlanProjservList();
- List<MaintainPlanTimesEntity> maintainPlanTimesList = maintainPlanPage.getMaintainPlanTimesList();
- AjaxJson j = new AjaxJson();
- String message = "添加成功";
- try{
- maintainPlanService.addMain(maintainPlan, maintainPlanProjservList,maintainPlanTimesList);
- systemService.addLog(message, Globals.Log_Type_INSERT, Globals.Log_Leavel_INFO);
- }catch(Exception e){
- e.printStackTrace();
- message = "供方服务计划添加失败";
- throw new BusinessException(e.getMessage());
- }
- j.setMsg(message);
- return j;
- }
- /**
- * 更新供方服务计划
- *
- * @return
- */
- @RequestMapping(params = "doUpdate")
- @ResponseBody
- public AjaxJson doUpdate(MaintainPlanEntity maintainPlan,MaintainPlanPage maintainPlanPage, HttpServletRequest request) {
- List<MaintainPlanProjservEntity> maintainPlanProjservList = maintainPlanPage.getMaintainPlanProjservList();
- List<MaintainPlanTimesEntity> maintainPlanTimesList = maintainPlanPage.getMaintainPlanTimesList();
- AjaxJson j = new AjaxJson();
- String message = "更新成功";
- try{
- maintainPlanService.updateMain(maintainPlan, maintainPlanProjservList,maintainPlanTimesList);
- systemService.addLog(message, Globals.Log_Type_UPDATE, Globals.Log_Leavel_INFO);
- }catch(Exception e){
- e.printStackTrace();
- message = "更新供方服务计划失败";
- throw new BusinessException(e.getMessage());
- }
- j.setMsg(message);
- return j;
- }
- /**
- * 供方服务计划新增页面跳转
- *
- * @return
- */
- @RequestMapping(params = "goAdd")
- public ModelAndView goAdd(MaintainPlanEntity maintainPlan, HttpServletRequest req) {
- if (StringUtil.isNotEmpty(maintainPlan.getId())) {
- maintainPlan = maintainPlanService.getEntity(MaintainPlanEntity.class, maintainPlan.getId());
- req.setAttribute("maintainPlanPage", maintainPlan);
- }
- return new ModelAndView("cn/com/lzt/maintainplan/maintainPlan-add");
- }
-
- /**
- * 供方服务计划编辑页面跳转
- *
- * @return
- */
- @RequestMapping(params = "goUpdate")
- public ModelAndView goUpdate(MaintainPlanEntity maintainPlan, HttpServletRequest req) {
- if (StringUtil.isNotEmpty(maintainPlan.getId())) {
- maintainPlan = maintainPlanService.getEntity(MaintainPlanEntity.class, maintainPlan.getId());
- req.setAttribute("entity", maintainPlan);
- }
- return new ModelAndView("cn/com/lzt/maintainplan/maintainPlan-add");
- }
-
-
- /**
- * 加载明细列表[供方服务计划服务明细]
- *
- * @return
- */
- @RequestMapping(params = "maintainPlanProjservList")
- public ModelAndView maintainPlanProjservList(MaintainPlanEntity maintainPlan, HttpServletRequest req) {
-
- //===================================================================================
- //获取参数
- Object id0 = maintainPlan.getId();
- //===================================================================================
- //查询-供方服务计划服务明细
- String hql0 = "from MaintainPlanProjservEntity where 1 = 1 AND mAINTAINID =? ";
- try{
- List<MaintainPlanProjservEntity> maintainPlanProjservEntityList = systemService.findHql(hql0,id0);
- req.setAttribute("maintainPlanProjservList", maintainPlanProjservEntityList);
- }catch(Exception e){
- logger.info(e.getMessage());
- }
- return new ModelAndView("cn/com/lzt/maintainplanprojserv/maintainPlanProjservList");
- }
- /**
- * 加载明细列表[供方服务计划时间明细]
- *
- * @return
- */
- @RequestMapping(params = "maintainPlanTimesList")
- public ModelAndView maintainPlanTimesList(MaintainPlanEntity maintainPlan, HttpServletRequest req) {
-
- //===================================================================================
- //获取参数
- Object id1 = maintainPlan.getId();
- //===================================================================================
- //查询-供方服务计划时间明细
- String hql1 = "from MaintainPlanTimesEntity where 1 = 1 AND mAINTAINPLANID =? ";
- try{
- List<MaintainPlanTimesEntity> maintainPlanTimesEntityList = systemService.findHql(hql1,id1);
- req.setAttribute("maintainPlanTimesList", maintainPlanTimesEntityList);
- }catch(Exception e){
- logger.info(e.getMessage());
- }
- return new ModelAndView("cn/com/lzt/maintainplantimes/maintainPlanTimesList");
- }
- /**
- * 导出excel
- *
- * @param request
- * @param response
- */
- @RequestMapping(params = "exportXls")
- public String exportXls(MaintainPlanEntity maintainPlan,HttpServletRequest request, HttpServletResponse response, DataGrid dataGrid,ModelMap map) {
- CriteriaQuery cq = new CriteriaQuery(MaintainPlanEntity.class, dataGrid);
- //查询条件组装器
- org.jeecgframework.core.extend.hqlsearch.HqlGenerateUtil.installHql(cq, maintainPlan);
- try{
- //自定义追加查询条件
- }catch (Exception e) {
- throw new BusinessException(e.getMessage());
- }
- cq.add();
- List<MaintainPlanEntity> list=this.maintainPlanService.getListByCriteriaQuery(cq, false);
- List<MaintainPlanPage> pageList=new ArrayList<MaintainPlanPage>();
- if(list!=null&&list.size()>0){
- for(MaintainPlanEntity entity:list){
- try{
- MaintainPlanPage page=new MaintainPlanPage();
- MyBeanUtils.copyBeanNotNull2Bean(entity,page);
- Object id0 = entity.getId();
- String hql0 = "from MaintainPlanProjservEntity where 1 = 1 AND mAINTAINID =? ";
- List<MaintainPlanProjservEntity> maintainPlanProjservEntityList = systemService.findHql(hql0,id0);
- page.setMaintainPlanProjservList(maintainPlanProjservEntityList);
- Object id1 = entity.getId();
- String hql1 = "from MaintainPlanTimesEntity where 1 = 1 AND mAINTAINPLANID =? ";
- List<MaintainPlanTimesEntity> maintainPlanTimesEntityList = systemService.findHql(hql1,id1);
- page.setMaintainPlanTimesList(maintainPlanTimesEntityList);
- pageList.add(page);
- }catch(Exception e){
- logger.info(e.getMessage());
- }
- }
- }
- map.put(NormalExcelConstants.FILE_NAME,"供方服务计划");
- map.put(NormalExcelConstants.CLASS,MaintainPlanPage.class);
- map.put(NormalExcelConstants.PARAMS,new ExportParams("供方服务计划列表", "导出人:Jeecg",
- "导出信息"));
- map.put(NormalExcelConstants.DATA_LIST,pageList);
- return NormalExcelConstants.JEECG_EXCEL_VIEW;
- }
- /**
- * 通过excel导入数据
- * @param request
- * @param
- * @return
- */
- @RequestMapping(params = "importExcel", method = RequestMethod.POST)
- @ResponseBody
- public AjaxJson importExcel(HttpServletRequest request, HttpServletResponse response) {
- AjaxJson j = new AjaxJson();
- MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request;
- Map<String, MultipartFile> fileMap = multipartRequest.getFileMap();
- for (Map.Entry<String, MultipartFile> entity : fileMap.entrySet()) {
- MultipartFile file = entity.getValue();// 获取上传文件对象
- ImportParams params = new ImportParams();
- params.setTitleRows(2);
- params.setHeadRows(2);
- params.setNeedSave(true);
- try {
- List<MaintainPlanPage> list = ExcelImportUtil.importExcel(file.getInputStream(), MaintainPlanPage.class, params);
- MaintainPlanEntity entity1=null;
- for (MaintainPlanPage page : list) {
- entity1=new MaintainPlanEntity();
- MyBeanUtils.copyBeanNotNull2Bean(page,entity1);
- maintainPlanService.addMain(entity1, page.getMaintainPlanProjservList(),page.getMaintainPlanTimesList());
- }
- j.setMsg("文件导入成功!");
- } catch (Exception e) {
- j.setMsg("文件导入失败!");
- logger.error(ExceptionUtil.getExceptionMessage(e));
- }finally{
- try {
- file.getInputStream().close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- }
- return j;
- }
- /**
- * 导出excel 使模板
- */
- @RequestMapping(params = "exportXlsByT")
- public String exportXlsByT(ModelMap map) {
- map.put(NormalExcelConstants.FILE_NAME,"供方服务计划");
- map.put(NormalExcelConstants.CLASS,MaintainPlanPage.class);
- map.put(NormalExcelConstants.PARAMS,new ExportParams("供方服务计划列表", "导出人:"+ ResourceUtil.getSessionUser().getRealName(),
- "导出信息"));
- map.put(NormalExcelConstants.DATA_LIST,new ArrayList());
- return NormalExcelConstants.JEECG_EXCEL_VIEW;
- }
- /**
- * 导入功能跳转
- *
- * @return
- */
- @RequestMapping(params = "upload")
- public ModelAndView upload(HttpServletRequest req) {
- req.setAttribute("controller_name", "maintainPlanController");
- return new ModelAndView("common/upload/pub_excel_upload");
- }
-
- @RequestMapping(method = RequestMethod.GET)
- @ResponseBody
- public List<MaintainPlanEntity> list() {
- List<MaintainPlanEntity> listMaintainPlans=maintainPlanService.getList(MaintainPlanEntity.class);
- return listMaintainPlans;
- }
-
- @RequestMapping(value = "/{id}", method = RequestMethod.GET)
- @ResponseBody
- public ResponseEntity<?> get(@PathVariable("id") String id) {
- MaintainPlanEntity task = maintainPlanService.get(MaintainPlanEntity.class, id);
- if (task == null) {
- return new ResponseEntity(HttpStatus.NOT_FOUND);
- }
- return new ResponseEntity(task, HttpStatus.OK);
- }
-
- @RequestMapping(method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE)
- @ResponseBody
- public ResponseEntity<?> create(@RequestBody MaintainPlanPage maintainPlanPage, UriComponentsBuilder uriBuilder) {
- //调用JSR303 Bean Validator进行校验,如果出错返回含400错误码及json格式的错误信息.
- Set<ConstraintViolation<MaintainPlanPage>> failures = validator.validate(maintainPlanPage);
- if (!failures.isEmpty()) {
- return new ResponseEntity(BeanValidators.extractPropertyAndMessage(failures), HttpStatus.BAD_REQUEST);
- }
- //保存
- List<MaintainPlanProjservEntity> maintainPlanProjservList = maintainPlanPage.getMaintainPlanProjservList();
- List<MaintainPlanTimesEntity> maintainPlanTimesList = maintainPlanPage.getMaintainPlanTimesList();
-
- MaintainPlanEntity maintainPlan = new MaintainPlanEntity();
- try{
- MyBeanUtils.copyBeanNotNull2Bean(maintainPlan,maintainPlanPage);
- }catch(Exception e){
- logger.info(e.getMessage());
- }
- maintainPlanService.addMain(maintainPlan, maintainPlanProjservList,maintainPlanTimesList);
- //按照Restful风格约定,创建指向新任务的url, 也可以直接返回id或对象.
- String id = maintainPlanPage.getId();
- URI uri = uriBuilder.path("/rest/maintainPlanController/" + id).build().toUri();
- HttpHeaders headers = new HttpHeaders();
- headers.setLocation(uri);
- return new ResponseEntity(headers, HttpStatus.CREATED);
- }
-
- @RequestMapping(value = "/{id}", method = RequestMethod.PUT, consumes = MediaType.APPLICATION_JSON_VALUE)
- public ResponseEntity<?> update(@RequestBody MaintainPlanPage maintainPlanPage) {
- //调用JSR303 Bean Validator进行校验,如果出错返回含400错误码及json格式的错误信息.
- Set<ConstraintViolation<MaintainPlanPage>> failures = validator.validate(maintainPlanPage);
- if (!failures.isEmpty()) {
- return new ResponseEntity(BeanValidators.extractPropertyAndMessage(failures), HttpStatus.BAD_REQUEST);
- }
- //保存
- List<MaintainPlanProjservEntity> maintainPlanProjservList = maintainPlanPage.getMaintainPlanProjservList();
- List<MaintainPlanTimesEntity> maintainPlanTimesList = maintainPlanPage.getMaintainPlanTimesList();
-
- MaintainPlanEntity maintainPlan = new MaintainPlanEntity();
- try{
- MyBeanUtils.copyBeanNotNull2Bean(maintainPlan,maintainPlanPage);
- }catch(Exception e){
- logger.info(e.getMessage());
- }
- maintainPlanService.updateMain(maintainPlan, maintainPlanProjservList,maintainPlanTimesList);
- //按Restful约定,返回204状态码, 无内容. 也可以返回200状态码.
- return new ResponseEntity(HttpStatus.NO_CONTENT);
- }
- @RequestMapping(value = "/{id}", method = RequestMethod.DELETE)
- @ResponseStatus(HttpStatus.NO_CONTENT)
- public void delete(@PathVariable("id") String id) {
- MaintainPlanEntity maintainPlan = maintainPlanService.get(MaintainPlanEntity.class, id);
- maintainPlanService.delMain(maintainPlan);
- }
- @RequestMapping(params = "goView")
- public ModelAndView goView(MaintainPlanEntity entity, HttpServletRequest req) {
- String userid = "";
- if (StringUtil.isNotEmpty(entity.getId())) {
- entity = systemService.getEntity(MaintainPlanEntity.class, entity.getId());
- req.setAttribute("entity", entity);
- }
- String taskId = oConvertUtils.getString(req.getParameter("taskId"));
- if(oConvertUtils.isNotEmpty(taskId)){
- FormProcUtil.initWorkflowParam(req);
- req.setAttribute("taskId",taskId);
- }
- req.setAttribute("in_process",true);
- return new ModelAndView("cn/com/lzt/maintainplan/maintainPlan-add");
- }
- //手机审批
- @RequestMapping(params = "goViewMobile")
- public ModelAndView goViewMobile(MaintainPlanEntity entity, HttpServletRequest req) {
- goView(entity,req);
- if(LztUtil.isApiRequest()) {
- Map<String, Object> data = LztUtil.copyReqAttributes(new String[]{"entity", "taskId"});
- String flag = req.getParameter("flag");
- data.put("flag",flag==null?-1:Integer.valueOf(flag));
- entity = (MaintainPlanEntity) req.getAttribute("entity");
- String serviceType = DictUtil.formatToTypeName(entity.getServicetype(),"servicetypedetail");
- data.put("serviceType",serviceType);
- String hql1 = "from MaintainPlanTimesEntity where 1 = 1 AND mAINTAINPLANID =? ";
- List<MaintainPlanTimesEntity> maintainPlanTimesEntityList = systemService.findHql(hql1,entity.getId());
- String timesString= "";
- for(MaintainPlanTimesEntity timesEntity : maintainPlanTimesEntityList){
- timesString+= DateUtils.formatDate(timesEntity.getServicetimestart())+" ~ "+DateUtils.formatDate(timesEntity.getServicetimeend())+"<br>";
- }
- data.put("timesString",timesString);
- return new JsonDataModelAndView(WXAjaxJson.success(data));
- }
- return null;
- }
- @RequestMapping(params = "planViewMobile")
- public ModelAndView planViewMobile(MaintainPlanEntity entity, HttpServletRequest req) {
- Map<String,Object> data = new HashMap<>();
- entity = systemService.getEntity(MaintainPlanEntity.class,entity.getId());
- String serviceType = DictUtil.formatToTypeName(entity.getServicetype(),"servicetypedetail");
- data.put("serviceType",serviceType);
- String hql1 = "from MaintainPlanTimesEntity where 1 = 1 AND mAINTAINPLANID =? ";
- List<MaintainPlanTimesEntity> maintainPlanTimesEntityList = systemService.findHql(hql1,entity.getId());
- String timesString= "";
- for(MaintainPlanTimesEntity timesEntity : maintainPlanTimesEntityList){
- timesString+= DateUtils.formatDate(timesEntity.getServicetimestart())+" ~ "+DateUtils.formatDate(timesEntity.getServicetimeend())+"<br>";
- }
- data.put("timesString",timesString);
- data.put("entity",entity);
- ObjectMapper mapper = new ObjectMapper();
- try {
- req.setAttribute("data",mapper.writeValueAsString(data));
- } catch (IOException e) {
- e.printStackTrace();
- }
- return new ModelAndView("cn/com/lzt/maintainplan/plan_view_mobile");
- }
- }
|