package com.zcloud.controller.scrapManage; import com.zcloud.controller.base.BaseController; import com.zcloud.entity.Page; import com.zcloud.entity.PageData; import com.zcloud.logs.LogAnno; import com.zcloud.service.assignedManage.AssignedManageService; import com.zcloud.service.freighttrailer.FreightTrailerService; import com.zcloud.service.operatingvehicles.OperatingVehiclesService; import com.zcloud.service.scrapManage.ScrapManageService; import com.zcloud.util.*; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.util.ObjectUtils; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.multipart.MultipartFile; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; @Controller @RequestMapping("/scrapmanage") public class ScrapManageController extends BaseController { @Autowired private ScrapManageService scrapManageService; @Autowired private FreightTrailerService freightTrailerService; @Autowired private OperatingVehiclesService operatingVehiclesService; @Autowired private Smb smb; /**新增 * @param * @throws Exception */ @RequestMapping(value="/add") @ResponseBody public Object add() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); pd.put("SCRAP_ID", this.get32UUID()); //报废主键 pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID()); pd.put("ISDELETE", "0"); //是否删除(0:有效 1:删除) pd.put("CREATOR", Jurisdiction.getUSER_ID()); //添加人id pd.put("CREATORNAME", Jurisdiction.getUsername()); //添加人名字 pd.put("CREATTIME", DateUtil.date2Str(new Date())); //添加时间 freightTrailerService.editScrapStatus(pd); scrapManageService.save(pd); map.put("pd", pd); map.put("result", errInfo); return map; } /**删除 * @param * @throws Exception */ @RequestMapping(value="/delete") @ResponseBody public Object delete() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); pd.put("DELETOR", Jurisdiction.getUSER_ID()); pd.put("DELETORNAME", Jurisdiction.getUsername()); pd.put("DELETTIME", DateUtil.date2Str(new Date())); pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID()); PageData pageData = scrapManageService.findById(pd); if("运输车辆".equals(pageData.getString("SCRAP_VEHICLEMODEL"))) { PageData pd2 = new PageData(); pd2.put("PLATE_NUMBER", pageData.get("PLATE_NUMBER")); pd2.put("CORPINFO_ID", pageData.get("CORPINFO_ID")); PageData scrapVehicle = operatingVehiclesService.findByfindByPlateNumber(pd2); scrapVehicle.put("ISSCRAP", "0"); operatingVehiclesService.edit(scrapVehicle); }else{ PageData pd2 = new PageData(); pd2.put("PLATE_NUMBER", pageData.get("PLATE_NUMBER")); pd2.put("CORPINFO_ID", pageData.get("CORPINFO_ID")); PageData scrapVehicle = freightTrailerService.findByPlateNumber(pd2); scrapVehicle.put("ISSCRAP", "0"); freightTrailerService.edit(scrapVehicle); } scrapManageService.delete(pd); map.put("result", errInfo); //返回结果 return map; } /**修改 * @param * @throws Exception */ @RequestMapping(value="/edit") @ResponseBody public Object edit() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); pd.put("ISDELETE", "0"); //是否删除(0:有效 1:删除) pd.put("CREATOR", Jurisdiction.getUSER_ID()); //添加人id pd.put("CREATORNAME", Jurisdiction.getUsername()); //添加人名字 pd.put("CREATTIME", DateUtil.date2Str(new Date())); //添加时间 pd.put("OPERATOR", Jurisdiction.getUSER_ID()); //修改人id pd.put("OPERATORNAME", Jurisdiction.getUsername()); // 修改人名字 pd.put("OPERATTIME", DateUtil.date2Str(new Date())); // 修改时间 scrapManageService.edit(pd); map.put("pd", pd); map.put("result", errInfo); return map; } /**去修改页面获取数据 * @param * @throws Exception */ @RequestMapping(value="/goEdit") @ResponseBody public Object goEdit() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID()); pd = scrapManageService.findById(pd); map.put("pd", pd); map.put("result", errInfo); return map; } @RequestMapping(value="/list") @ResponseBody public Object list(Page page) throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); String KEYWORDS = pd.getString("KEYWORDS"); //关键词检索条件 if(Tools.notEmpty(KEYWORDS))pd.put("KEYWORDS", KEYWORDS.trim()); page.setPd(pd); List varList = scrapManageService.list(page); //列出MajorDangerSource列表 map.put("varList", varList); map.put("page", page); map.put("result", errInfo); return map; } @RequestMapping(value = "/freightVehicleList") @ResponseBody public Object freightVehicleList() throws Exception { Map map = new HashMap(); String errInfo = "success"; String corpId = Jurisdiction.getCORPINFO_ID(); List freightlist = freightTrailerService.trailerList(corpId); //货运挂车列表 map.put("list", freightlist); map.put("result", errInfo); return map; } @RequestMapping(value = "/operationVehicleList") @ResponseBody public Object operationVehicleList() throws Exception { Map map = new HashMap(); String errInfo = "success"; String corpId = Jurisdiction.getCORPINFO_ID(); List freightlist = operatingVehiclesService.operationVehicleList(corpId); //货运挂车列表 map.put("list", freightlist); map.put("result", errInfo); return map; } @RequestMapping(value = "/getscrapoperationvehiclelist") @ResponseBody public Object getScrapOperationVehicleList() throws Exception { Map map = new HashMap(); String errInfo = "success"; String corpId = Jurisdiction.getCORPINFO_ID(); List operationList = operatingVehiclesService.operationVehicleList(corpId); //列出Question列表 List scrapList = scrapManageService.scrapListAll(corpId); for (int i = 0; i < scrapList.size(); i++) { for (int j = 0; j < operationList.size(); j++) { if(scrapList.get(i).get("PLATE_NUMBER").equals(operationList.get(j).get("PLATE_NUMBER"))) { operationList.remove(j); } } } map.put("varList", operationList); map.put("result", errInfo); return map; } /*@RequestMapping(value = "/getscrapfreighttrailerlist") @ResponseBody public Object getScrapFreightTrailerList() throws Exception { Map map = new HashMap(); String errInfo = "success"; String corpId = Jurisdiction.getCORPINFO_ID(); List freightList = freightTrailerService.trailerList(corpId); List scrapList = scrapManageService.scrapListAll(corpId); for (int i = 0; i < scrapList.size(); i++) { for (int j = 0; j < freightList.size(); j++) { if(scrapList.get(i).get("PLATE_NUMBER").equals(freightList.get(j).get("PLATE_NUMBER"))) { freightList.remove(j); } } } map.put("varList", freightList); map.put("result", errInfo); return map; }*/ @RequestMapping(value = "/getscrapfreighttrailerlist") @ResponseBody public Object getScrapFreightTrailerList() throws Exception { Map map = new HashMap(); String errInfo = "success"; String corpId = Jurisdiction.getCORPINFO_ID(); List freightList = freightTrailerService.trailerList(corpId); map.put("varList", freightList); map.put("result", errInfo); return map; } }