|
@@ -41,22 +41,6 @@ public class ItdmWeituoShenheController extends JeecgController<ItdmWeituoInfo,
|
|
|
@Autowired
|
|
|
private IItdmWeituoInfoService itdmWeituoInfoService;
|
|
|
|
|
|
-
|
|
|
-
|
|
|
- /**根据委托单位查询委托信息列表*/
|
|
|
- @ApiOperation(value="根据委托单位查询委托信息列表", notes="根据委托单位查询委托信息列表")
|
|
|
- @GetMapping(value = "/weituoNoList")
|
|
|
- public Result<List<ItdmWeituoInfo>> selectWTListByClient(@RequestParam(name="weituoClient") String weituoClient){
|
|
|
- return Result.OK(itdmWeituoInfoService.selectWTListByClient(weituoClient));
|
|
|
- }
|
|
|
-
|
|
|
- /**查询委托单位名称(不重复)*/
|
|
|
- @ApiOperation(value="查询委托单位列表", notes="查询委托单位列表")
|
|
|
- @GetMapping(value = "/distinctClientList")
|
|
|
- public Result<List<String>> selectDistinctClientList(){
|
|
|
- return Result.OK(itdmWeituoInfoService.selectDistinctClientList());
|
|
|
- }
|
|
|
-
|
|
|
/**
|
|
|
* 分页列表查询
|
|
|
*
|
|
@@ -80,141 +64,4 @@ public class ItdmWeituoShenheController extends JeecgController<ItdmWeituoInfo,
|
|
|
return Result.OK(pageList);
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * 添加
|
|
|
- *
|
|
|
- * @param itdmWeituoInfo
|
|
|
- * @return
|
|
|
- */
|
|
|
- @AutoLog(value = "委托信息-添加")
|
|
|
- @ApiOperation(value="委托信息-添加", notes="委托信息-添加")
|
|
|
- //@RequiresPermissions("org.jeecg.modules:itdm_weituo_info:add")
|
|
|
- @PostMapping(value = "/add")
|
|
|
- public Result<String> add(@RequestBody WeituoInsertCommand itdmWeituoInfo) {
|
|
|
- itdmWeituoInfoService.saveWeituo(itdmWeituoInfo);
|
|
|
- return Result.OK("添加成功!");
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 编辑
|
|
|
- *
|
|
|
- * @param itdmWeituoInfo
|
|
|
- * @return
|
|
|
- */
|
|
|
- @AutoLog(value = "委托信息-编辑")
|
|
|
- @ApiOperation(value="委托信息-编辑", notes="委托信息-编辑")
|
|
|
- //@RequiresPermissions("org.jeecg.modules:itdm_weituo_info:edit")
|
|
|
- @RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST})
|
|
|
- public Result<String> edit(@RequestBody WeituoUpdateCommand itdmWeituoInfo) {
|
|
|
- itdmWeituoInfoService.updateWeituo(itdmWeituoInfo);
|
|
|
-
|
|
|
- return Result.OK("编辑成功!");
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 通过id删除
|
|
|
- *
|
|
|
- * @param id
|
|
|
- * @return
|
|
|
- */
|
|
|
- @AutoLog(value = "委托信息-通过id删除")
|
|
|
- @ApiOperation(value="委托信息-通过id删除", notes="委托信息-通过id删除")
|
|
|
- //@RequiresPermissions("org.jeecg.modules:itdm_weituo_info:delete")
|
|
|
- @DeleteMapping(value = "/delete")
|
|
|
- public Result<String> delete(@RequestParam(name="id",required=true) String id) {
|
|
|
- itdmWeituoInfoService.deleteById(id);
|
|
|
- return Result.OK("删除成功!");
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 批量删除
|
|
|
- *
|
|
|
- * @param ids
|
|
|
- * @return
|
|
|
- */
|
|
|
- @AutoLog(value = "委托信息-批量删除")
|
|
|
- @ApiOperation(value="委托信息-批量删除", notes="委托信息-批量删除")
|
|
|
- //@RequiresPermissions("org.jeecg.modules:itdm_weituo_info:deleteBatch")
|
|
|
- @DeleteMapping(value = "/deleteBatch")
|
|
|
- public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) {
|
|
|
- this.itdmWeituoInfoService.deleteByIds(Arrays.asList(ids.split(",")));
|
|
|
- return Result.OK("批量删除成功!");
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 通过id查询
|
|
|
- *
|
|
|
- * @param id
|
|
|
- * @return
|
|
|
- */
|
|
|
- //@AutoLog(value = "委托信息-通过id查询")
|
|
|
- @ApiOperation(value="委托信息-通过id查询", notes="委托信息-通过id查询")
|
|
|
- @GetMapping(value = "/queryById")
|
|
|
- public Result<ItdmWeituoInfoInfoVO> queryById(@RequestParam(name="id",required=true) String id) {
|
|
|
- ItdmWeituoInfoInfoVO itdmWeituoInfo = itdmWeituoInfoService.findById(id);
|
|
|
- if(itdmWeituoInfo==null) {
|
|
|
- return Result.error("未找到对应数据");
|
|
|
- }
|
|
|
- return Result.OK(itdmWeituoInfo);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 导出excel
|
|
|
- *
|
|
|
- * @param request
|
|
|
- * @param itdmWeituoInfo
|
|
|
- */
|
|
|
- //@RequiresPermissions("org.jeecg.modules:itdm_weituo_info:exportXls")
|
|
|
- @RequestMapping(value = "/exportXls")
|
|
|
- public ModelAndView exportXls(HttpServletRequest request, ItdmWeituoInfo itdmWeituoInfo) {
|
|
|
- return super.exportXls(request, itdmWeituoInfo, ItdmWeituoInfo.class, "委托信息");
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 通过excel导入数据
|
|
|
- *
|
|
|
- * @param request
|
|
|
- * @param response
|
|
|
- * @return
|
|
|
- */
|
|
|
- //@RequiresPermissions("itdm_weituo_info:importExcel")
|
|
|
- @RequestMapping(value = "/importExcel", method = RequestMethod.POST)
|
|
|
- public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
|
|
|
- return super.importExcel(request, response, ItdmWeituoInfo.class);
|
|
|
- }
|
|
|
- @AutoLog(value = "添加或编辑委托信息")
|
|
|
- @ApiOperation(value = "添加或编辑委托信息", notes = "添加或编辑委托信息")
|
|
|
- @RequestMapping("/saveOrUpdateWeituo")
|
|
|
- public Result<String> saveOrUpdateWeituo(@RequestBody ItdmWeituoInfo weituoInfo) {
|
|
|
- try {
|
|
|
- if (StringUtils.isBlank(weituoInfo.getId())) { // 添加
|
|
|
- weituoInfo.setCreateTime(new Date());
|
|
|
- weituoInfo.setShenheStatus("待审核"); // 初始状态为待审核
|
|
|
- itdmWeituoInfoService.save(weituoInfo); // 调用 service 的保存方法
|
|
|
- } else { // 编辑
|
|
|
- ItdmWeituoInfo oldWeituo = itdmWeituoInfoService.getById(weituoInfo.getId());
|
|
|
- if (oldWeituo == null) {
|
|
|
- return Result.error("未找到对应数据");
|
|
|
- }
|
|
|
- // 这里只修改一些需要修改的属性,其他属性不变
|
|
|
- oldWeituo.setShenheStatus(weituoInfo.getShenheStatus());
|
|
|
- oldWeituo.setShenheMsg(weituoInfo.getShenheMsg());
|
|
|
- oldWeituo.setWeituoNo(weituoInfo.getWeituoNo());
|
|
|
- oldWeituo.setShenheTime((new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date())));
|
|
|
-
|
|
|
- // 需要根据业务逻辑进行判断
|
|
|
- if ("审核通过".equals(oldWeituo.getShenheStatus())) {
|
|
|
- oldWeituo.setUpdateTime(new Date());
|
|
|
- }
|
|
|
-
|
|
|
- itdmWeituoInfoService.updateById(oldWeituo); // 调用 service 的更新方法
|
|
|
- }
|
|
|
-
|
|
|
- return Result.OK("操作成功!");
|
|
|
- } catch (Exception e) {
|
|
|
- log.error("添加或编辑委托信息出错!", e);
|
|
|
- return Result.error("操作失败!");
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
}
|