| | |
| | | package org.jeecg.modules.eam.controller; |
| | | |
| | | import java.util.Arrays; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import java.io.IOException; |
| | | import java.io.UnsupportedEncodingException; |
| | | import java.net.URLDecoder; |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import org.jeecg.common.api.vo.Result; |
| | | import org.jeecg.common.system.query.QueryGenerator; |
| | | import org.jeecg.common.aspect.annotation.AutoLog; |
| | | import org.jeecg.common.util.oConvertUtils; |
| | | import org.jeecg.modules.eam.entity.EamEquipmentScrap; |
| | | import org.jeecg.modules.eam.service.IEamEquipmentScrapService; |
| | | import java.util.Date; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.alibaba.fastjson.parser.Feature; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.jeecg.common.system.base.controller.JeecgController; |
| | | import org.jeecgframework.poi.excel.ExcelImportUtil; |
| | | import org.jeecgframework.poi.excel.def.NormalExcelConstants; |
| | | import org.jeecgframework.poi.excel.entity.ExportParams; |
| | | import org.jeecgframework.poi.excel.entity.ImportParams; |
| | | import org.jeecgframework.poi.excel.view.JeecgEntityExcelView; |
| | | |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | 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 com.alibaba.fastjson.JSON; |
| | | import com.fasterxml.jackson.core.JsonProcessingException; |
| | | import com.fasterxml.jackson.databind.ObjectMapper; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.jeecg.common.api.vo.Result; |
| | | import org.jeecg.common.aspect.annotation.AutoLog; |
| | | import org.jeecg.common.constant.CommonConstant; |
| | | import org.jeecg.common.system.base.controller.JeecgController; |
| | | import org.jeecg.common.util.TranslateDictTextUtils; |
| | | import org.jeecg.modules.eam.constant.BusinessCodeConst; |
| | | import org.jeecg.modules.eam.constant.EquipmentScrapStatusEnum; |
| | | import org.jeecg.modules.eam.entity.EamEquipmentScrap; |
| | | import org.jeecg.modules.eam.request.EamEquipmentScrapQuery; |
| | | import org.jeecg.modules.eam.request.EamEquipmentScrapRequest; |
| | | import org.jeecg.modules.eam.service.IEamEquipmentScrapService; |
| | | import org.jeecg.modules.system.service.ISysBusinessCodeRuleService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | /** |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import java.util.Arrays; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: 设备报废(转让) |
| | | * @Author: jeecg-boot |
| | | * @Date: 2025-05-15 |
| | | * @Date: 2025-05-15 |
| | | * @Version: V1.0 |
| | | */ |
| | | @Slf4j |
| | | @Api(tags="设备报废(转让)") |
| | | @Api(tags = "设备报废(转让)") |
| | | @RestController |
| | | @RequestMapping("/eam/eamEquipmentScrap") |
| | | public class EamEquipmentScrapController extends JeecgController<EamEquipmentScrap, IEamEquipmentScrapService> { |
| | | @Autowired |
| | | private IEamEquipmentScrapService eamEquipmentScrapService; |
| | | |
| | | /** |
| | | * 分页列表查询 |
| | | * |
| | | * @param eamEquipmentScrap |
| | | * @param pageNo |
| | | * @param pageSize |
| | | * @param req |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "设备报废(转让)-分页列表查询") |
| | | @ApiOperation(value="设备报废(转让)-分页列表查询", notes="设备报废(转让)-分页列表查询") |
| | | @GetMapping(value = "/list") |
| | | public Result<?> queryPageList(EamEquipmentScrap eamEquipmentScrap, |
| | | @RequestParam(name="pageNo", defaultValue="1") Integer pageNo, |
| | | @RequestParam(name="pageSize", defaultValue="10") Integer pageSize, |
| | | HttpServletRequest req) { |
| | | QueryWrapper<EamEquipmentScrap> queryWrapper = QueryGenerator.initQueryWrapper(eamEquipmentScrap, req.getParameterMap()); |
| | | Page<EamEquipmentScrap> page = new Page<EamEquipmentScrap>(pageNo, pageSize); |
| | | IPage<EamEquipmentScrap> pageList = eamEquipmentScrapService.page(page, queryWrapper); |
| | | return Result.OK(pageList); |
| | | } |
| | | |
| | | /** |
| | | * 添加 |
| | | * |
| | | * @param eamEquipmentScrap |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "设备报废(转让)-添加") |
| | | @ApiOperation(value="设备报废(转让)-添加", notes="设备报废(转让)-添加") |
| | | @PostMapping(value = "/add") |
| | | public Result<?> add(@RequestBody EamEquipmentScrap eamEquipmentScrap) { |
| | | eamEquipmentScrapService.save(eamEquipmentScrap); |
| | | return Result.OK("添加成功!"); |
| | | } |
| | | |
| | | /** |
| | | * 编辑 |
| | | * |
| | | * @param eamEquipmentScrap |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "设备报废(转让)-编辑") |
| | | @ApiOperation(value="设备报废(转让)-编辑", notes="设备报废(转让)-编辑") |
| | | @RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST}) |
| | | public Result<?> edit(@RequestBody EamEquipmentScrap eamEquipmentScrap) { |
| | | eamEquipmentScrapService.updateById(eamEquipmentScrap); |
| | | return Result.OK("编辑成功!"); |
| | | } |
| | | |
| | | /** |
| | | * 通过id删除 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "设备报废(转让)-通过id删除") |
| | | @ApiOperation(value="设备报废(转让)-通过id删除", notes="设备报废(转让)-通过id删除") |
| | | @DeleteMapping(value = "/delete") |
| | | public Result<?> delete(@RequestParam(name="id",required=true) String id) { |
| | | eamEquipmentScrapService.removeById(id); |
| | | return Result.OK("删除成功!"); |
| | | } |
| | | |
| | | /** |
| | | * 批量删除 |
| | | * |
| | | * @param ids |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "设备报废(转让)-批量删除") |
| | | @ApiOperation(value="设备报废(转让)-批量删除", notes="设备报废(转让)-批量删除") |
| | | @DeleteMapping(value = "/deleteBatch") |
| | | public Result<?> deleteBatch(@RequestParam(name="ids",required=true) String ids) { |
| | | this.eamEquipmentScrapService.removeByIds(Arrays.asList(ids.split(","))); |
| | | return Result.OK("批量删除成功!"); |
| | | } |
| | | |
| | | /** |
| | | * 通过id查询 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "设备报废(转让)-通过id查询") |
| | | @ApiOperation(value="设备报废(转让)-通过id查询", notes="设备报废(转让)-通过id查询") |
| | | @GetMapping(value = "/queryById") |
| | | public Result<?> queryById(@RequestParam(name="id",required=true) String id) { |
| | | EamEquipmentScrap eamEquipmentScrap = eamEquipmentScrapService.getById(id); |
| | | return Result.OK(eamEquipmentScrap); |
| | | } |
| | | @Autowired |
| | | private IEamEquipmentScrapService eamEquipmentScrapService; |
| | | @Autowired |
| | | private ISysBusinessCodeRuleService businessCodeRuleService; |
| | | @Autowired |
| | | private ObjectMapper objectMapper; |
| | | @Autowired |
| | | private TranslateDictTextUtils translateDictTextUtils; |
| | | |
| | | /** |
| | | * 导出excel |
| | | * |
| | | * @param request |
| | | * @param eamEquipmentScrap |
| | | */ |
| | | @RequestMapping(value = "/exportXls") |
| | | public ModelAndView exportXls(HttpServletRequest request, EamEquipmentScrap eamEquipmentScrap) { |
| | | return super.exportXls(request, eamEquipmentScrap, EamEquipmentScrap.class, "设备报废(转让)"); |
| | | } |
| | | /** |
| | | * 分页列表查询 |
| | | * |
| | | * @param eamEquipmentScrap |
| | | * @param pageNo |
| | | * @param pageSize |
| | | * @param req |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "设备报废(转让)-分页列表查询") |
| | | @ApiOperation(value = "设备报废(转让)-分页列表查询", notes = "设备报废(转让)-分页列表查询") |
| | | @GetMapping(value = "/list") |
| | | public Result<?> queryPageList(EamEquipmentScrapQuery query, |
| | | @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo, |
| | | @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize, |
| | | HttpServletRequest req) { |
| | | Page<EamEquipmentScrap> page = new Page<EamEquipmentScrap>(pageNo, pageSize); |
| | | IPage<EamEquipmentScrap> pageList = eamEquipmentScrapService.queryPageList(page, query); |
| | | return Result.OK(pageList); |
| | | } |
| | | |
| | | /** |
| | | * 通过excel导入数据 |
| | | * |
| | | * @param request |
| | | * @param response |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/importExcel", method = RequestMethod.POST) |
| | | public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) { |
| | | return super.importExcel(request, response, EamEquipmentScrap.class); |
| | | } |
| | | /** |
| | | * 添加 |
| | | * |
| | | * @param request |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "设备报废(转让)-添加") |
| | | @ApiOperation(value = "设备报废(转让)-添加", notes = "设备报废(转让)-添加") |
| | | @PostMapping(value = "/add") |
| | | public Result<?> add(@RequestBody EamEquipmentScrap request) { |
| | | if (request == null) { |
| | | return Result.error("添加的对象不能为空!"); |
| | | } |
| | | request.setCode(businessCodeRuleService.generateBusinessCodeSeq(BusinessCodeConst.SCRAP_CODE_RULE)); |
| | | request.setScrapStatus(EquipmentScrapStatusEnum.WAIT_SUBMIT.name()); |
| | | request.setDelFlag(CommonConstant.DEL_FLAG_0); |
| | | boolean b = eamEquipmentScrapService.addScrap(request); |
| | | if (!b) { |
| | | return Result.error("添加失败!"); |
| | | } |
| | | return Result.OK("添加成功!"); |
| | | } |
| | | |
| | | /** |
| | | * 编辑 |
| | | * |
| | | * @param request |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "设备报废(转让)-编辑") |
| | | @ApiOperation(value = "设备报废(转让)-编辑", notes = "设备报废(转让)-编辑") |
| | | @RequestMapping(value = "/edit", method = {RequestMethod.PUT, RequestMethod.POST}) |
| | | public Result<?> edit(@RequestBody EamEquipmentScrap request) { |
| | | if (request == null) { |
| | | return Result.error("编辑的对象不能为空!"); |
| | | } |
| | | boolean b = eamEquipmentScrapService.editScrap(request); |
| | | if (!b) { |
| | | return Result.error("编辑失败!"); |
| | | } |
| | | return Result.OK("编辑成功!"); |
| | | } |
| | | |
| | | /** |
| | | * 通过id删除 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "设备报废(转让)-通过id删除") |
| | | @ApiOperation(value = "设备报废(转让)-通过id删除", notes = "设备报废(转让)-通过id删除") |
| | | @DeleteMapping(value = "/delete") |
| | | public Result<?> delete(@RequestParam(name = "id", required = true) String id) { |
| | | EamEquipmentScrap entity = eamEquipmentScrapService.getById(id); |
| | | if (entity != null) { |
| | | entity.setDelFlag(CommonConstant.DEL_FLAG_1); |
| | | eamEquipmentScrapService.updateById(entity); |
| | | } |
| | | return Result.OK("删除成功!"); |
| | | } |
| | | |
| | | /** |
| | | * 批量删除 |
| | | * |
| | | * @param ids |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "设备报废(转让)-批量删除") |
| | | @ApiOperation(value = "设备报废(转让)-批量删除", notes = "设备报废(转让)-批量删除") |
| | | @DeleteMapping(value = "/deleteBatch") |
| | | public Result<?> deleteBatch(@RequestParam(name = "ids", required = true) String ids) { |
| | | this.eamEquipmentScrapService.removeByIds(Arrays.asList(ids.split(","))); |
| | | List<String> list = Arrays.asList(ids.split(",")); |
| | | list.forEach(id -> { |
| | | EamEquipmentScrap entity = eamEquipmentScrapService.getById(id); |
| | | if (entity != null) { |
| | | entity.setDelFlag(CommonConstant.DEL_FLAG_1); |
| | | eamEquipmentScrapService.updateById(entity); |
| | | } |
| | | }); |
| | | return Result.OK("批量删除成功!"); |
| | | } |
| | | |
| | | /** |
| | | * 通过id查询 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "设备报废(转让)-通过id查询") |
| | | @ApiOperation(value = "设备报废(转让)-通过id查询", notes = "设备报废(转让)-通过id查询") |
| | | @GetMapping(value = "/queryById") |
| | | public Result<?> queryById(@RequestParam(name = "id", required = true) String id) { |
| | | EamEquipmentScrap eamEquipmentScrap = eamEquipmentScrapService.getById(id); |
| | | if (eamEquipmentScrap == null) { |
| | | return Result.error("未找到对应数据"); |
| | | } |
| | | try { |
| | | String json = objectMapper.writeValueAsString(eamEquipmentScrap); |
| | | JSONObject item = JSONObject.parseObject(json, Feature.OrderedField); |
| | | translateDictTextUtils.translateField("reportUser", eamEquipmentScrap.getReportUser(), item, "sys_user,realname,username"); |
| | | return Result.OK(item); |
| | | } catch (JsonProcessingException e) { |
| | | return Result.error("数据转译失败!"); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 提交 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "设备报废(转让)-提交") |
| | | @ApiOperation(value = "设备报废(转让)-提交", notes = "设备报废(转让)-提交") |
| | | @GetMapping(value = "/submit") |
| | | public Result<?> submit(@RequestParam(name = "id", required = true) String id) { |
| | | boolean b = eamEquipmentScrapService.submit(id); |
| | | if (!b) { |
| | | return Result.error("操作失败!"); |
| | | } |
| | | return Result.OK("操作成功!"); |
| | | } |
| | | |
| | | /** |
| | | * 审批流 |
| | | * |
| | | * @param request |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "设备报废(转让)-审批流") |
| | | @ApiOperation(value = "设备报废(转让)-审批流", notes = "设备报废(转让)-审批流") |
| | | @RequestMapping(value = "/approval", method = {RequestMethod.PUT, RequestMethod.POST}) |
| | | public Result<?> approval(@RequestBody EamEquipmentScrapRequest request) { |
| | | if (request == null) { |
| | | return Result.error("添加的对象不能为空!"); |
| | | } |
| | | EamEquipmentScrap entity = eamEquipmentScrapService.approval(request); |
| | | if (entity == null) { |
| | | return Result.error("操作失败!"); |
| | | } |
| | | return Result.OK("操作成功!"); |
| | | } |
| | | } |