diff --git a/blade-service-api/logpm-aftersales-api/src/main/java/com/logpm/aftersales/entity/AftersalesAppealEntity.java b/blade-service-api/logpm-aftersales-api/src/main/java/com/logpm/aftersales/entity/AftersalesAppealEntity.java new file mode 100644 index 000000000..738c2e2e0 --- /dev/null +++ b/blade-service-api/logpm-aftersales-api/src/main/java/com/logpm/aftersales/entity/AftersalesAppealEntity.java @@ -0,0 +1,115 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.aftersales.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.util.Date; +import lombok.EqualsAndHashCode; +import org.springblade.core.tenant.mp.TenantEntity; + +/** + * 异常工单申述表 实体类 + * + * @author cyz + * @since 2023-12-04 + */ +@Data +@TableName("logpm_aftersales_appeal") +@ApiModel(value = "AftersalesAppeal对象", description = "异常工单申述表") +@EqualsAndHashCode(callSuper = true) +public class AftersalesAppealEntity extends TenantEntity { + + /** + * 预留1 + */ + @ApiModelProperty(value = "预留1") + private String reserve1; + /** + * 预留2 + */ + @ApiModelProperty(value = "预留2") + private String reserve2; + /** + * 预留3 + */ + @ApiModelProperty(value = "预留3") + private String reserve3; + /** + * 预留4 + */ + @ApiModelProperty(value = "预留4") + private String reserve4; + /** + * 预留5 + */ + @ApiModelProperty(value = "预留5") + private String reserve5; + /** + * 异常工单ID + */ + @ApiModelProperty(value = "异常工单ID") + private Long workOrderId; + /** + * 仓库ID + */ + @ApiModelProperty(value = "仓库ID") + private Long warehouseId; + /** + * 申述理由 + */ + @ApiModelProperty(value = "申述理由") + private String reason; + /** + * 申述人 + */ + @ApiModelProperty(value = "申述人") + private String claimant; + /** + * 申述人ID + */ + @ApiModelProperty(value = "申述人ID") + private Long claimantUserId; + /** + * 类型;0 待处理 1 成立 2 不成立 + */ + @ApiModelProperty(value = "类型;0 待处理 1 成立 2 不成立") + private String typesOf; + /** + * 审核原因 + */ + @ApiModelProperty(value = "审核原因") + private String handlingReason; + /** + * 处理人 + */ + @ApiModelProperty(value = "处理人") + private String processedByName; + /** + * 处理时间 + */ + @ApiModelProperty(value = "处理时间") + private Date processedDate; + /** + * 处理人ID + */ + @ApiModelProperty(value = "处理人ID") + private Long processedById; + +} diff --git a/blade-service-api/logpm-aftersales-api/src/main/java/com/logpm/aftersales/entity/AftersalesAppealPeopleEntity.java b/blade-service-api/logpm-aftersales-api/src/main/java/com/logpm/aftersales/entity/AftersalesAppealPeopleEntity.java new file mode 100644 index 000000000..9d367ec98 --- /dev/null +++ b/blade-service-api/logpm-aftersales-api/src/main/java/com/logpm/aftersales/entity/AftersalesAppealPeopleEntity.java @@ -0,0 +1,85 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.aftersales.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import java.util.Date; +import lombok.EqualsAndHashCode; +import org.springblade.core.tenant.mp.TenantEntity; + +/** + * 工单申述实际责任人表 实体类 + * + * @author cyz + * @since 2023-12-04 + */ +@Data +@TableName("logpm_aftersales_appeal_people") +@ApiModel(value = "AftersalesAppealPeople对象", description = "工单申述实际责任人表") +@EqualsAndHashCode(callSuper = true) +public class AftersalesAppealPeopleEntity extends TenantEntity { + + /** + * 预留1 + */ + @ApiModelProperty(value = "预留1") + private String reserve1; + /** + * 预留2 + */ + @ApiModelProperty(value = "预留2") + private String reserve2; + /** + * 预留3 + */ + @ApiModelProperty(value = "预留3") + private String reserve3; + /** + * 预留4 + */ + @ApiModelProperty(value = "预留4") + private String reserve4; + /** + * 预留5 + */ + @ApiModelProperty(value = "预留5") + private String reserve5; + /** + * 异常工单ID + */ + @ApiModelProperty(value = "异常工单ID") + private Long workOrderId; + /** + * 实际责任人名称 + */ + @ApiModelProperty(value = "实际责任人名称") + private String actualPersonName; + /** + * 实际责任人ID + */ + @ApiModelProperty(value = "实际责任人ID") + private String actualPersonId; + /** + * 仓库ID + */ + @ApiModelProperty(value = "仓库ID") + private String warehouseId; + +} diff --git a/blade-service-api/logpm-aftersales-api/src/main/java/com/logpm/aftersales/feign/IAftersalesAppealClient.java b/blade-service-api/logpm-aftersales-api/src/main/java/com/logpm/aftersales/feign/IAftersalesAppealClient.java new file mode 100644 index 000000000..c09503d93 --- /dev/null +++ b/blade-service-api/logpm-aftersales-api/src/main/java/com/logpm/aftersales/feign/IAftersalesAppealClient.java @@ -0,0 +1,49 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.aftersales.feign; + +import org.springblade.core.mp.support.BladePage; +import com.logpm.aftersales.entity.AftersalesAppealEntity; +import org.springframework.cloud.openfeign.FeignClient; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RequestParam; + +/** + * 异常工单申述表 Feign接口类 + * + * @author cyz + * @since 2023-12-04 + */ +@FeignClient( + value = "blade-aftersalesAppeal" +) +public interface IAftersalesAppealClient { + + String API_PREFIX = "/appeal/client"; + String TOP = API_PREFIX + "/top"; + + /** + * 获取异常工单申述表列表 + * + * @param current 页号 + * @param size 页数 + * @return BladePage + */ + @GetMapping(TOP) + BladePage top(@RequestParam("current") Integer current, @RequestParam("size") Integer size); + +} diff --git a/blade-service-api/logpm-aftersales-api/src/main/java/com/logpm/aftersales/feign/IAftersalesAppealPeopleClient.java b/blade-service-api/logpm-aftersales-api/src/main/java/com/logpm/aftersales/feign/IAftersalesAppealPeopleClient.java new file mode 100644 index 000000000..9e9fe8319 --- /dev/null +++ b/blade-service-api/logpm-aftersales-api/src/main/java/com/logpm/aftersales/feign/IAftersalesAppealPeopleClient.java @@ -0,0 +1,49 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.aftersales.feign; + +import org.springblade.core.mp.support.BladePage; +import com.logpm.aftersales.entity.AftersalesAppealPeopleEntity; +import org.springframework.cloud.openfeign.FeignClient; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RequestParam; + +/** + * 工单申述实际责任人表 Feign接口类 + * + * @author cyz + * @since 2023-12-04 + */ +@FeignClient( + value = "blade-aftersalesAppealPeople" +) +public interface IAftersalesAppealPeopleClient { + + String API_PREFIX = "/appealPeople/client"; + String TOP = API_PREFIX + "/top"; + + /** + * 获取工单申述实际责任人表列表 + * + * @param current 页号 + * @param size 页数 + * @return BladePage + */ + @GetMapping(TOP) + BladePage top(@RequestParam("current") Integer current, @RequestParam("size") Integer size); + +} diff --git a/blade-service-api/logpm-aftersales-api/src/main/java/com/logpm/aftersales/vo/AftersalesAppealPeopleVO.java b/blade-service-api/logpm-aftersales-api/src/main/java/com/logpm/aftersales/vo/AftersalesAppealPeopleVO.java new file mode 100644 index 000000000..bf9f7c81a --- /dev/null +++ b/blade-service-api/logpm-aftersales-api/src/main/java/com/logpm/aftersales/vo/AftersalesAppealPeopleVO.java @@ -0,0 +1,35 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.aftersales.vo; + +import com.logpm.aftersales.entity.AftersalesAppealPeopleEntity; +import org.springblade.core.tool.node.INode; +import lombok.Data; +import lombok.EqualsAndHashCode; + +/** + * 工单申述实际责任人表 视图实体类 + * + * @author cyz + * @since 2023-12-04 + */ +@Data +@EqualsAndHashCode(callSuper = true) +public class AftersalesAppealPeopleVO extends AftersalesAppealPeopleEntity { + private static final long serialVersionUID = 1L; + +} diff --git a/blade-service-api/logpm-aftersales-api/src/main/java/com/logpm/aftersales/vo/AftersalesAppealVO.java b/blade-service-api/logpm-aftersales-api/src/main/java/com/logpm/aftersales/vo/AftersalesAppealVO.java new file mode 100644 index 000000000..da7216900 --- /dev/null +++ b/blade-service-api/logpm-aftersales-api/src/main/java/com/logpm/aftersales/vo/AftersalesAppealVO.java @@ -0,0 +1,35 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.aftersales.vo; + +import com.logpm.aftersales.entity.AftersalesAppealEntity; +import org.springblade.core.tool.node.INode; +import lombok.Data; +import lombok.EqualsAndHashCode; + +/** + * 异常工单申述表 视图实体类 + * + * @author cyz + * @since 2023-12-04 + */ +@Data +@EqualsAndHashCode(callSuper = true) +public class AftersalesAppealVO extends AftersalesAppealEntity { + private static final long serialVersionUID = 1L; + +} diff --git a/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/controller/AftersalesAppealController.java b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/controller/AftersalesAppealController.java new file mode 100644 index 000000000..02f3d21bc --- /dev/null +++ b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/controller/AftersalesAppealController.java @@ -0,0 +1,163 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.aftersales.controller; + +import com.logpm.aftersales.dto.AftersalesAppealDTO; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import io.swagger.annotations.ApiParam; +import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; +import lombok.AllArgsConstructor; +import javax.validation.Valid; + +import lombok.extern.slf4j.Slf4j; +import org.springblade.core.secure.BladeUser; +import org.springblade.core.mp.support.Condition; +import org.springblade.core.mp.support.Query; +import org.springblade.core.secure.utils.AuthUtil; +import org.springblade.core.tool.api.R; +import org.springblade.core.tool.utils.AesUtil; +import org.springblade.core.tool.utils.Func; +import org.springframework.web.bind.annotation.*; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.logpm.aftersales.entity.AftersalesAppealEntity; +import com.logpm.aftersales.vo.AftersalesAppealVO; +import com.logpm.aftersales.excel.AftersalesAppealExcel; +import com.logpm.aftersales.wrapper.AftersalesAppealWrapper; +import com.logpm.aftersales.service.IAftersalesAppealService; +import org.springblade.core.boot.ctrl.BladeController; +import org.springblade.core.tool.utils.DateUtil; +import org.springblade.core.excel.util.ExcelUtil; +import org.springblade.core.tool.constant.BladeConstant; +import springfox.documentation.annotations.ApiIgnore; + +import java.util.Date; +import java.util.Map; +import java.util.List; +import javax.servlet.http.HttpServletResponse; + +/** + * 异常工单申述表 控制器 + * + * @author cyz + * @since 2023-12-04 + */ +@RestController +@AllArgsConstructor +@RequestMapping("/aftersalesAppeal") +@Api(value = "异常工单申述表", tags = "异常工单申述表接口") +@Slf4j +public class AftersalesAppealController extends BladeController { + + private final IAftersalesAppealService aftersalesAppealService; + + /** + * 异常工单申述表 详情 + */ + @GetMapping("/detail") + @ApiOperationSupport(order = 1) + @ApiOperation(value = "详情", notes = "传入aftersalesAppeal") + public R detail(AftersalesAppealEntity aftersalesAppeal) { + AftersalesAppealEntity detail = aftersalesAppealService.getOne(Condition.getQueryWrapper(aftersalesAppeal)); + return R.data(AftersalesAppealWrapper.build().entityVO(detail)); + } + /** + * 异常工单申述表 分页 + */ + @GetMapping("/list") + @ApiOperationSupport(order = 2) + @ApiOperation(value = "分页", notes = "传入aftersalesAppeal") + public R> list(@ApiIgnore @RequestParam Map aftersalesAppeal, Query query) { + IPage pages = aftersalesAppealService.page(Condition.getPage(query), Condition.getQueryWrapper(aftersalesAppeal, AftersalesAppealEntity.class)); + return R.data(AftersalesAppealWrapper.build().pageVO(pages)); + } + + /** + * 异常工单申述表 自定义分页 + */ + @GetMapping("/page") + @ApiOperationSupport(order = 3) + @ApiOperation(value = "分页", notes = "传入aftersalesAppeal") + public R> page(AftersalesAppealVO aftersalesAppeal, Query query) { + IPage pages = aftersalesAppealService.selectAftersalesAppealPage(Condition.getPage(query), aftersalesAppeal); + return R.data(pages); + } + + /** + * 异常工单申述表 新增 + */ + @PostMapping("/save") + @ApiOperationSupport(order = 4) + @ApiOperation(value = "新增", notes = "传入aftersalesAppeal") + public R save(@Valid @RequestBody AftersalesAppealEntity aftersalesAppeal) { + return R.status(aftersalesAppealService.save(aftersalesAppeal)); + } + + /** + * 异常工单申述表 修改 + */ + @PostMapping("/update") + @ApiOperationSupport(order = 5) + @ApiOperation(value = "修改", notes = "传入aftersalesAppeal") + public R update(@Valid @RequestBody AftersalesAppealEntity aftersalesAppeal) { + log.info("客服操作确定修改》》》》{}",aftersalesAppeal); + BladeUser user = AuthUtil.getUser(); + aftersalesAppeal.setProcessedByName(user.getUserName()); + aftersalesAppeal.setProcessedById(user.getUserId()); + aftersalesAppeal.setProcessedDate(new Date()); + return R.status(aftersalesAppealService.updateById(aftersalesAppeal)); + } + + /** + * 异常工单申述表 新增或修改 + */ + @PostMapping("/submit") + @ApiOperationSupport(order = 6) + @ApiOperation(value = "新增或修改", notes = "传入aftersalesAppeal") + public R submit(@Valid @RequestBody AftersalesAppealDTO aftersalesAppeal) { + return R.status(aftersalesAppealService.saveOrUpdateOwn(aftersalesAppeal)); + } + + /** + * 异常工单申述表 删除 + */ + @PostMapping("/remove") + @ApiOperationSupport(order = 7) + @ApiOperation(value = "逻辑删除", notes = "传入ids") + public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { + return R.status(aftersalesAppealService.deleteLogic(Func.toLongList(ids))); + } + + + /** + * 导出数据 + */ + @GetMapping("/export-aftersalesAppeal") + @ApiOperationSupport(order = 9) + @ApiOperation(value = "导出数据", notes = "传入aftersalesAppeal") + public void exportAftersalesAppeal(@ApiIgnore @RequestParam Map aftersalesAppeal, BladeUser bladeUser, HttpServletResponse response) { + QueryWrapper queryWrapper = Condition.getQueryWrapper(aftersalesAppeal, AftersalesAppealEntity.class); + //if (!AuthUtil.isAdministrator()) { + // queryWrapper.lambda().eq(AftersalesAppeal::getTenantId, bladeUser.getTenantId()); + //} + queryWrapper.lambda().eq(AftersalesAppealEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED); + List list = aftersalesAppealService.exportAftersalesAppeal(queryWrapper); + ExcelUtil.export(response, "异常工单申述表数据" + DateUtil.time(), "异常工单申述表数据表", list, AftersalesAppealExcel.class); + } + +} diff --git a/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/controller/AftersalesAppealPeopleController.java b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/controller/AftersalesAppealPeopleController.java new file mode 100644 index 000000000..b35b66c89 --- /dev/null +++ b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/controller/AftersalesAppealPeopleController.java @@ -0,0 +1,151 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.aftersales.controller; + +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import io.swagger.annotations.ApiParam; +import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; +import lombok.AllArgsConstructor; +import javax.validation.Valid; + +import org.springblade.core.secure.BladeUser; +import org.springblade.core.mp.support.Condition; +import org.springblade.core.mp.support.Query; +import org.springblade.core.tool.api.R; +import org.springblade.core.tool.utils.Func; +import org.springframework.web.bind.annotation.*; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.logpm.aftersales.entity.AftersalesAppealPeopleEntity; +import com.logpm.aftersales.vo.AftersalesAppealPeopleVO; +import com.logpm.aftersales.excel.AftersalesAppealPeopleExcel; +import com.logpm.aftersales.wrapper.AftersalesAppealPeopleWrapper; +import com.logpm.aftersales.service.IAftersalesAppealPeopleService; +import org.springblade.core.boot.ctrl.BladeController; +import org.springblade.core.tool.utils.DateUtil; +import org.springblade.core.excel.util.ExcelUtil; +import org.springblade.core.tool.constant.BladeConstant; +import springfox.documentation.annotations.ApiIgnore; +import java.util.Map; +import java.util.List; +import javax.servlet.http.HttpServletResponse; + +/** + * 工单申述实际责任人表 控制器 + * + * @author cyz + * @since 2023-12-04 + */ +@RestController +@AllArgsConstructor +@RequestMapping("/aftersalesAppealPeople") +@Api(value = "工单申述实际责任人表", tags = "工单申述实际责任人表接口") +public class AftersalesAppealPeopleController extends BladeController { + + private final IAftersalesAppealPeopleService aftersalesAppealPeopleService; + + /** + * 工单申述实际责任人表 详情 + */ + @GetMapping("/detail") + @ApiOperationSupport(order = 1) + @ApiOperation(value = "详情", notes = "传入aftersalesAppealPeople") + public R detail(AftersalesAppealPeopleEntity aftersalesAppealPeople) { + AftersalesAppealPeopleEntity detail = aftersalesAppealPeopleService.getOne(Condition.getQueryWrapper(aftersalesAppealPeople)); + return R.data(AftersalesAppealPeopleWrapper.build().entityVO(detail)); + } + /** + * 工单申述实际责任人表 分页 + */ + @GetMapping("/list") + @ApiOperationSupport(order = 2) + @ApiOperation(value = "分页", notes = "传入aftersalesAppealPeople") + public R> list(@ApiIgnore @RequestParam Map aftersalesAppealPeople, Query query) { + IPage pages = aftersalesAppealPeopleService.page(Condition.getPage(query), Condition.getQueryWrapper(aftersalesAppealPeople, AftersalesAppealPeopleEntity.class)); + return R.data(AftersalesAppealPeopleWrapper.build().pageVO(pages)); + } + + /** + * 工单申述实际责任人表 自定义分页 + */ + @GetMapping("/page") + @ApiOperationSupport(order = 3) + @ApiOperation(value = "分页", notes = "传入aftersalesAppealPeople") + public R> page(AftersalesAppealPeopleVO aftersalesAppealPeople, Query query) { + IPage pages = aftersalesAppealPeopleService.selectAftersalesAppealPeoplePage(Condition.getPage(query), aftersalesAppealPeople); + return R.data(pages); + } + + /** + * 工单申述实际责任人表 新增 + */ + @PostMapping("/save") + @ApiOperationSupport(order = 4) + @ApiOperation(value = "新增", notes = "传入aftersalesAppealPeople") + public R save(@Valid @RequestBody AftersalesAppealPeopleEntity aftersalesAppealPeople) { + return R.status(aftersalesAppealPeopleService.save(aftersalesAppealPeople)); + } + + /** + * 工单申述实际责任人表 修改 + */ + @PostMapping("/update") + @ApiOperationSupport(order = 5) + @ApiOperation(value = "修改", notes = "传入aftersalesAppealPeople") + public R update(@Valid @RequestBody AftersalesAppealPeopleEntity aftersalesAppealPeople) { + return R.status(aftersalesAppealPeopleService.updateById(aftersalesAppealPeople)); + } + + /** + * 工单申述实际责任人表 新增或修改 + */ + @PostMapping("/submit") + @ApiOperationSupport(order = 6) + @ApiOperation(value = "新增或修改", notes = "传入aftersalesAppealPeople") + public R submit(@Valid @RequestBody AftersalesAppealPeopleEntity aftersalesAppealPeople) { + return R.status(aftersalesAppealPeopleService.saveOrUpdate(aftersalesAppealPeople)); + } + + /** + * 工单申述实际责任人表 删除 + */ + @PostMapping("/remove") + @ApiOperationSupport(order = 7) + @ApiOperation(value = "逻辑删除", notes = "传入ids") + public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { + return R.status(aftersalesAppealPeopleService.deleteLogic(Func.toLongList(ids))); + } + + + /** + * 导出数据 + */ + @GetMapping("/export-aftersalesAppealPeople") + @ApiOperationSupport(order = 9) + @ApiOperation(value = "导出数据", notes = "传入aftersalesAppealPeople") + public void exportAftersalesAppealPeople(@ApiIgnore @RequestParam Map aftersalesAppealPeople, BladeUser bladeUser, HttpServletResponse response) { + QueryWrapper queryWrapper = Condition.getQueryWrapper(aftersalesAppealPeople, AftersalesAppealPeopleEntity.class); + //if (!AuthUtil.isAdministrator()) { + // queryWrapper.lambda().eq(AftersalesAppealPeople::getTenantId, bladeUser.getTenantId()); + //} + queryWrapper.lambda().eq(AftersalesAppealPeopleEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED); + List list = aftersalesAppealPeopleService.exportAftersalesAppealPeople(queryWrapper); + ExcelUtil.export(response, "工单申述实际责任人表数据" + DateUtil.time(), "工单申述实际责任人表数据表", list, AftersalesAppealPeopleExcel.class); + } + +} diff --git a/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/dto/AftersalesAppealDTO.java b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/dto/AftersalesAppealDTO.java new file mode 100644 index 000000000..1507411b8 --- /dev/null +++ b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/dto/AftersalesAppealDTO.java @@ -0,0 +1,41 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.aftersales.dto; + +import com.logpm.aftersales.entity.AftersalesAppealEntity; +import com.logpm.aftersales.entity.AftersalesAppealPeopleEntity; +import lombok.Data; +import lombok.EqualsAndHashCode; + +import java.util.List; + +/** + * 异常工单申述表 数据传输对象实体类 + * + * @author cyz + * @since 2023-12-04 + */ +@Data +@EqualsAndHashCode(callSuper = true) +public class AftersalesAppealDTO extends AftersalesAppealEntity { + private static final long serialVersionUID = 1L; + /** + * 实际责任人数据 + */ + private List peopleEntityList; + +} diff --git a/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/dto/AftersalesAppealPeopleDTO.java b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/dto/AftersalesAppealPeopleDTO.java new file mode 100644 index 000000000..4cf70a98d --- /dev/null +++ b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/dto/AftersalesAppealPeopleDTO.java @@ -0,0 +1,34 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.aftersales.dto; + +import com.logpm.aftersales.entity.AftersalesAppealPeopleEntity; +import lombok.Data; +import lombok.EqualsAndHashCode; + +/** + * 工单申述实际责任人表 数据传输对象实体类 + * + * @author cyz + * @since 2023-12-04 + */ +@Data +@EqualsAndHashCode(callSuper = true) +public class AftersalesAppealPeopleDTO extends AftersalesAppealPeopleEntity { + private static final long serialVersionUID = 1L; + +} diff --git a/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/excel/AftersalesAppealExcel.java b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/excel/AftersalesAppealExcel.java new file mode 100644 index 000000000..68275b3fe --- /dev/null +++ b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/excel/AftersalesAppealExcel.java @@ -0,0 +1,147 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.aftersales.excel; + + +import lombok.Data; + +import java.util.Date; +import com.alibaba.excel.annotation.ExcelProperty; +import com.alibaba.excel.annotation.write.style.ColumnWidth; +import com.alibaba.excel.annotation.write.style.ContentRowHeight; +import com.alibaba.excel.annotation.write.style.HeadRowHeight; +import java.io.Serializable; + + +/** + * 异常工单申述表 Excel实体类 + * + * @author cyz + * @since 2023-12-04 + */ +@Data +@ColumnWidth(25) +@HeadRowHeight(20) +@ContentRowHeight(18) +public class AftersalesAppealExcel implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 租户号 + */ + @ColumnWidth(20) + @ExcelProperty("租户号") + private String tenantId; + /** + * 是否已删除 + */ + @ColumnWidth(20) + @ExcelProperty("是否已删除") + private Integer isDeleted; + /** + * 预留1 + */ + @ColumnWidth(20) + @ExcelProperty("预留1") + private String reserve1; + /** + * 预留2 + */ + @ColumnWidth(20) + @ExcelProperty("预留2") + private String reserve2; + /** + * 预留3 + */ + @ColumnWidth(20) + @ExcelProperty("预留3") + private String reserve3; + /** + * 预留4 + */ + @ColumnWidth(20) + @ExcelProperty("预留4") + private String reserve4; + /** + * 预留5 + */ + @ColumnWidth(20) + @ExcelProperty("预留5") + private String reserve5; + /** + * 异常工单ID + */ + @ColumnWidth(20) + @ExcelProperty("异常工单ID") + private String workOrderId; + /** + * 仓库ID + */ + @ColumnWidth(20) + @ExcelProperty("仓库ID") + private String warehouseId; + /** + * 申述理由 + */ + @ColumnWidth(20) + @ExcelProperty("申述理由") + private String reason; + /** + * 申述人 + */ + @ColumnWidth(20) + @ExcelProperty("申述人") + private String claimant; + /** + * 申述人ID + */ + @ColumnWidth(20) + @ExcelProperty("申述人ID") + private String claimantUserId; + /** + * 类型;0 待处理 1 成立 2 不成立 + */ + @ColumnWidth(20) + @ExcelProperty("类型;0 待处理 1 成立 2 不成立") + private String typesOf; + /** + * 审核原因 + */ + @ColumnWidth(20) + @ExcelProperty("审核原因") + private String handlingReason; + /** + * 处理人 + */ + @ColumnWidth(20) + @ExcelProperty("处理人") + private String processedByName; + /** + * 处理时间 + */ + @ColumnWidth(20) + @ExcelProperty("处理时间") + private String processedDate; + /** + * 处理人ID + */ + @ColumnWidth(20) + @ExcelProperty("处理人ID") + private String processedById; + +} diff --git a/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/excel/AftersalesAppealPeopleExcel.java b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/excel/AftersalesAppealPeopleExcel.java new file mode 100644 index 000000000..f414f9d2e --- /dev/null +++ b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/excel/AftersalesAppealPeopleExcel.java @@ -0,0 +1,111 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.aftersales.excel; + + +import lombok.Data; + +import java.util.Date; +import com.alibaba.excel.annotation.ExcelProperty; +import com.alibaba.excel.annotation.write.style.ColumnWidth; +import com.alibaba.excel.annotation.write.style.ContentRowHeight; +import com.alibaba.excel.annotation.write.style.HeadRowHeight; +import java.io.Serializable; + + +/** + * 工单申述实际责任人表 Excel实体类 + * + * @author cyz + * @since 2023-12-04 + */ +@Data +@ColumnWidth(25) +@HeadRowHeight(20) +@ContentRowHeight(18) +public class AftersalesAppealPeopleExcel implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 租户号 + */ + @ColumnWidth(20) + @ExcelProperty("租户号") + private String tenantId; + /** + * 是否已删除 + */ + @ColumnWidth(20) + @ExcelProperty("是否已删除") + private Integer isDeleted; + /** + * 预留1 + */ + @ColumnWidth(20) + @ExcelProperty("预留1") + private String reserve1; + /** + * 预留2 + */ + @ColumnWidth(20) + @ExcelProperty("预留2") + private String reserve2; + /** + * 预留3 + */ + @ColumnWidth(20) + @ExcelProperty("预留3") + private String reserve3; + /** + * 预留4 + */ + @ColumnWidth(20) + @ExcelProperty("预留4") + private String reserve4; + /** + * 预留5 + */ + @ColumnWidth(20) + @ExcelProperty("预留5") + private String reserve5; + /** + * 异常工单ID + */ + @ColumnWidth(20) + @ExcelProperty("异常工单ID") + private String workOrderId; + /** + * 实际责任人名称 + */ + @ColumnWidth(20) + @ExcelProperty("实际责任人名称") + private String actualPersonName; + /** + * 实际责任人ID + */ + @ColumnWidth(20) + @ExcelProperty("实际责任人ID") + private String actualPersonId; + /** + * 仓库ID + */ + @ColumnWidth(20) + @ExcelProperty("仓库ID") + private String warehouseId; + +} diff --git a/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/feign/AftersalesAppealClient.java b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/feign/AftersalesAppealClient.java new file mode 100644 index 000000000..8503370e0 --- /dev/null +++ b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/feign/AftersalesAppealClient.java @@ -0,0 +1,53 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.aftersales.feign; + +import com.baomidou.mybatisplus.core.metadata.IPage; +import lombok.AllArgsConstructor; +import org.springblade.core.mp.support.BladePage; +import org.springblade.core.mp.support.Condition; +import org.springblade.core.mp.support.Query; +import com.logpm.aftersales.entity.AftersalesAppealEntity; +import com.logpm.aftersales.service.IAftersalesAppealService; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RestController; +import springfox.documentation.annotations.ApiIgnore; + +/** + * 异常工单申述表 Feign实现类 + * + * @author cyz + * @since 2023-12-04 + */ +@ApiIgnore() +@RestController +@AllArgsConstructor +public class AftersalesAppealClient implements IAftersalesAppealClient { + + private final IAftersalesAppealService aftersalesAppealService; + + @Override + @GetMapping(TOP) + public BladePage top(Integer current, Integer size) { + Query query = new Query(); + query.setCurrent(current); + query.setSize(size); + IPage page = aftersalesAppealService.page(Condition.getPage(query)); + return BladePage.of(page); + } + +} diff --git a/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/feign/AftersalesAppealPeopleClient.java b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/feign/AftersalesAppealPeopleClient.java new file mode 100644 index 000000000..1a0385932 --- /dev/null +++ b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/feign/AftersalesAppealPeopleClient.java @@ -0,0 +1,53 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.aftersales.feign; + +import com.baomidou.mybatisplus.core.metadata.IPage; +import lombok.AllArgsConstructor; +import org.springblade.core.mp.support.BladePage; +import org.springblade.core.mp.support.Condition; +import org.springblade.core.mp.support.Query; +import com.logpm.aftersales.entity.AftersalesAppealPeopleEntity; +import com.logpm.aftersales.service.IAftersalesAppealPeopleService; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RestController; +import springfox.documentation.annotations.ApiIgnore; + +/** + * 工单申述实际责任人表 Feign实现类 + * + * @author cyz + * @since 2023-12-04 + */ +@ApiIgnore() +@RestController +@AllArgsConstructor +public class AftersalesAppealPeopleClient implements IAftersalesAppealPeopleClient { + + private final IAftersalesAppealPeopleService aftersalesAppealPeopleService; + + @Override + @GetMapping(TOP) + public BladePage top(Integer current, Integer size) { + Query query = new Query(); + query.setCurrent(current); + query.setSize(size); + IPage page = aftersalesAppealPeopleService.page(Condition.getPage(query)); + return BladePage.of(page); + } + +} diff --git a/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/mapper/AftersalesAppealMapper.java b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/mapper/AftersalesAppealMapper.java new file mode 100644 index 000000000..339dbfa08 --- /dev/null +++ b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/mapper/AftersalesAppealMapper.java @@ -0,0 +1,54 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.aftersales.mapper; + +import com.logpm.aftersales.entity.AftersalesAppealEntity; +import com.logpm.aftersales.vo.AftersalesAppealVO; +import com.logpm.aftersales.excel.AftersalesAppealExcel; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.baomidou.mybatisplus.core.conditions.Wrapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import org.apache.ibatis.annotations.Param; +import java.util.List; + +/** + * 异常工单申述表 Mapper 接口 + * + * @author cyz + * @since 2023-12-04 + */ +public interface AftersalesAppealMapper extends BaseMapper { + + /** + * 自定义分页 + * + * @param page + * @param aftersalesAppeal + * @return + */ + List selectAftersalesAppealPage(IPage page, AftersalesAppealVO aftersalesAppeal); + + + /** + * 获取导出数据 + * + * @param queryWrapper + * @return + */ + List exportAftersalesAppeal(@Param("ew") Wrapper queryWrapper); + +} diff --git a/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/mapper/AftersalesAppealMapper.xml b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/mapper/AftersalesAppealMapper.xml new file mode 100644 index 000000000..e2d9c8957 --- /dev/null +++ b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/mapper/AftersalesAppealMapper.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/mapper/AftersalesAppealPeopleMapper.java b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/mapper/AftersalesAppealPeopleMapper.java new file mode 100644 index 000000000..62c8347c6 --- /dev/null +++ b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/mapper/AftersalesAppealPeopleMapper.java @@ -0,0 +1,54 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.aftersales.mapper; + +import com.logpm.aftersales.entity.AftersalesAppealPeopleEntity; +import com.logpm.aftersales.vo.AftersalesAppealPeopleVO; +import com.logpm.aftersales.excel.AftersalesAppealPeopleExcel; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.baomidou.mybatisplus.core.conditions.Wrapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import org.apache.ibatis.annotations.Param; +import java.util.List; + +/** + * 工单申述实际责任人表 Mapper 接口 + * + * @author cyz + * @since 2023-12-04 + */ +public interface AftersalesAppealPeopleMapper extends BaseMapper { + + /** + * 自定义分页 + * + * @param page + * @param aftersalesAppealPeople + * @return + */ + List selectAftersalesAppealPeoplePage(IPage page, AftersalesAppealPeopleVO aftersalesAppealPeople); + + + /** + * 获取导出数据 + * + * @param queryWrapper + * @return + */ + List exportAftersalesAppealPeople(@Param("ew") Wrapper queryWrapper); + +} diff --git a/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/mapper/AftersalesAppealPeopleMapper.xml b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/mapper/AftersalesAppealPeopleMapper.xml new file mode 100644 index 000000000..6c7024d34 --- /dev/null +++ b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/mapper/AftersalesAppealPeopleMapper.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/service/IAftersalesAppealPeopleService.java b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/service/IAftersalesAppealPeopleService.java new file mode 100644 index 000000000..8d8554d94 --- /dev/null +++ b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/service/IAftersalesAppealPeopleService.java @@ -0,0 +1,52 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.aftersales.service; + +import com.baomidou.mybatisplus.core.conditions.Wrapper; +import com.logpm.aftersales.entity.AftersalesAppealPeopleEntity; +import com.logpm.aftersales.vo.AftersalesAppealPeopleVO; +import com.logpm.aftersales.excel.AftersalesAppealPeopleExcel; +import com.baomidou.mybatisplus.core.metadata.IPage; +import org.springblade.core.mp.base.BaseService; +import java.util.List; + +/** + * 工单申述实际责任人表 服务类 + * + * @author cyz + * @since 2023-12-04 + */ +public interface IAftersalesAppealPeopleService extends BaseService { + /** + * 自定义分页 + * + * @param page + * @param aftersalesAppealPeople + * @return + */ + IPage selectAftersalesAppealPeoplePage(IPage page, AftersalesAppealPeopleVO aftersalesAppealPeople); + + + /** + * 导出数据 + * + * @param queryWrapper + * @return + */ + List exportAftersalesAppealPeople(Wrapper queryWrapper); + +} diff --git a/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/service/IAftersalesAppealService.java b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/service/IAftersalesAppealService.java new file mode 100644 index 000000000..4ae4003ab --- /dev/null +++ b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/service/IAftersalesAppealService.java @@ -0,0 +1,59 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.aftersales.service; + +import com.baomidou.mybatisplus.core.conditions.Wrapper; +import com.logpm.aftersales.dto.AftersalesAppealDTO; +import com.logpm.aftersales.entity.AftersalesAppealEntity; +import com.logpm.aftersales.vo.AftersalesAppealVO; +import com.logpm.aftersales.excel.AftersalesAppealExcel; +import com.baomidou.mybatisplus.core.metadata.IPage; +import org.springblade.core.mp.base.BaseService; +import java.util.List; + +/** + * 异常工单申述表 服务类 + * + * @author cyz + * @since 2023-12-04 + */ +public interface IAftersalesAppealService extends BaseService { + /** + * 自定义分页 + * + * @param page + * @param aftersalesAppeal + * @return + */ + IPage selectAftersalesAppealPage(IPage page, AftersalesAppealVO aftersalesAppeal); + + + /** + * 导出数据 + * + * @param queryWrapper + * @return + */ + List exportAftersalesAppeal(Wrapper queryWrapper); + + /** + * 自定义添加和修改 + * @param aftersalesAppeal + * @return + */ + boolean saveOrUpdateOwn(AftersalesAppealDTO aftersalesAppeal); +} diff --git a/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/service/impl/AftersalesAppealPeopleServiceImpl.java b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/service/impl/AftersalesAppealPeopleServiceImpl.java new file mode 100644 index 000000000..9a69f3779 --- /dev/null +++ b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/service/impl/AftersalesAppealPeopleServiceImpl.java @@ -0,0 +1,54 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.aftersales.service.impl; + +import com.logpm.aftersales.entity.AftersalesAppealPeopleEntity; +import com.logpm.aftersales.vo.AftersalesAppealPeopleVO; +import com.logpm.aftersales.excel.AftersalesAppealPeopleExcel; +import com.logpm.aftersales.mapper.AftersalesAppealPeopleMapper; +import com.logpm.aftersales.service.IAftersalesAppealPeopleService; +import org.springframework.stereotype.Service; +import com.baomidou.mybatisplus.core.conditions.Wrapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import org.springblade.core.mp.base.BaseServiceImpl; +import java.util.List; + +/** + * 工单申述实际责任人表 服务实现类 + * + * @author cyz + * @since 2023-12-04 + */ +@Service +public class AftersalesAppealPeopleServiceImpl extends BaseServiceImpl implements IAftersalesAppealPeopleService { + + @Override + public IPage selectAftersalesAppealPeoplePage(IPage page, AftersalesAppealPeopleVO aftersalesAppealPeople) { + return page.setRecords(baseMapper.selectAftersalesAppealPeoplePage(page, aftersalesAppealPeople)); + } + + + @Override + public List exportAftersalesAppealPeople(Wrapper queryWrapper) { + List aftersalesAppealPeopleList = baseMapper.exportAftersalesAppealPeople(queryWrapper); + //aftersalesAppealPeopleList.forEach(aftersalesAppealPeople -> { + // aftersalesAppealPeople.setTypeName(DictCache.getValue(DictEnum.YES_NO, AftersalesAppealPeople.getType())); + //}); + return aftersalesAppealPeopleList; + } + +} diff --git a/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/service/impl/AftersalesAppealServiceImpl.java b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/service/impl/AftersalesAppealServiceImpl.java new file mode 100644 index 000000000..c6a9ba98b --- /dev/null +++ b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/service/impl/AftersalesAppealServiceImpl.java @@ -0,0 +1,127 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.aftersales.service.impl; + +import cn.hutool.core.util.ObjectUtil; +import com.baomidou.mybatisplus.core.toolkit.ObjectUtils; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; +import com.logpm.aftersales.dto.AftersalesAppealDTO; +import com.logpm.aftersales.entity.AftersalesAppealEntity; +import com.logpm.aftersales.entity.AftersalesAppealPeopleEntity; +import com.logpm.aftersales.service.IAftersalesAppealPeopleService; +import com.logpm.aftersales.vo.AftersalesAppealPeopleVO; +import com.logpm.aftersales.vo.AftersalesAppealVO; +import com.logpm.aftersales.excel.AftersalesAppealExcel; +import com.logpm.aftersales.mapper.AftersalesAppealMapper; +import com.logpm.aftersales.service.IAftersalesAppealService; +import com.logpm.basicdata.entity.BasicdataWarehouseEntity; +import com.logpm.basicdata.feign.IBasicdataWarehouseClient; +import lombok.AllArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.springblade.core.log.exception.ServiceException; +import org.springblade.core.mp.base.BaseEntity; +import org.springblade.core.secure.BladeUser; +import org.springblade.core.secure.utils.AuthUtil; +import org.springblade.core.tool.utils.BeanUtil; +import org.springframework.stereotype.Service; +import com.baomidou.mybatisplus.core.conditions.Wrapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import org.springblade.core.mp.base.BaseServiceImpl; +import java.util.List; +import java.util.stream.Collectors; + +/** + * 异常工单申述表 服务实现类 + * + * @author cyz + * @since 2023-12-04 + */ +@Service +@AllArgsConstructor +@Slf4j +public class AftersalesAppealServiceImpl extends BaseServiceImpl implements IAftersalesAppealService { + + private final IAftersalesAppealPeopleService aftersalesAppealPeopleService; + + private final IBasicdataWarehouseClient basicdataWarehouseClient; + + @Override + public IPage selectAftersalesAppealPage(IPage page, AftersalesAppealVO aftersalesAppeal) { + return page.setRecords(baseMapper.selectAftersalesAppealPage(page, aftersalesAppeal)); + } + + + @Override + public List exportAftersalesAppeal(Wrapper queryWrapper) { + List aftersalesAppealList = baseMapper.exportAftersalesAppeal(queryWrapper); + //aftersalesAppealList.forEach(aftersalesAppeal -> { + // aftersalesAppeal.setTypeName(DictCache.getValue(DictEnum.YES_NO, AftersalesAppeal.getType())); + //}); + return aftersalesAppealList; + } + + /** + * 新增和修改 + * @param aftersalesAppeal + * @return + */ + @Override + public boolean saveOrUpdateOwn(AftersalesAppealDTO aftersalesAppeal) { + log.info("新增和修改申述信息》》{}",aftersalesAppeal); + BladeUser user = AuthUtil.getUser(); + BasicdataWarehouseEntity myCurrentWarehouse = basicdataWarehouseClient.getMyCurrentWarehouse(); + if(ObjectUtils.isNull(myCurrentWarehouse)){ + throw new ServiceException("请选择仓库!"); + } + + if(ObjectUtils.isNotNull( aftersalesAppeal.getId())){ + //修改 + if(ObjectUtils.isNotNull( aftersalesAppeal.getPeopleEntityList()) ){ + //修改实际责任人 + List list = aftersalesAppealPeopleService.list(Wrappers.query().lambda() + .eq(AftersalesAppealPeopleEntity::getWorkOrderId, aftersalesAppeal.getWorkOrderId()) + ); + List collect = list.stream().map(AftersalesAppealPeopleEntity::getId).collect(Collectors.toList()); + aftersalesAppealPeopleService.deleteLogic(collect); + + } + baseMapper.updateById(aftersalesAppeal); + }else{ + //新增 + AftersalesAppealEntity aftersalesAppealEntity = new AftersalesAppealEntity(); + BeanUtil.copyProperties(aftersalesAppeal,aftersalesAppealEntity); + aftersalesAppeal.setClaimantUserId(user.getUserId()); + aftersalesAppeal.setClaimant(user.getUserName()); + aftersalesAppeal.setTypesOf("0"); + aftersalesAppeal.setWarehouseId(myCurrentWarehouse.getId()); + baseMapper.insert(aftersalesAppealEntity); + + } + if(ObjectUtil.isNotNull( aftersalesAppeal.getPeopleEntityList())){ + //添加实际收货人 + aftersalesAppeal.getPeopleEntityList().forEach( i ->{ + AftersalesAppealPeopleEntity aftersalesAppealPeople = new AftersalesAppealPeopleEntity(); + BeanUtil.copyProperties(i,aftersalesAppealPeople); + aftersalesAppealPeople.setWorkOrderId(aftersalesAppeal.getWorkOrderId()); + aftersalesAppealPeopleService.save(aftersalesAppealPeople); + }); + } + + return false; + } + +} diff --git a/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/wrapper/AftersalesAppealPeopleWrapper.java b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/wrapper/AftersalesAppealPeopleWrapper.java new file mode 100644 index 000000000..6fadde4b5 --- /dev/null +++ b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/wrapper/AftersalesAppealPeopleWrapper.java @@ -0,0 +1,50 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.aftersales.wrapper; + +import org.springblade.core.mp.support.BaseEntityWrapper; +import org.springblade.core.tool.utils.BeanUtil; +import com.logpm.aftersales.entity.AftersalesAppealPeopleEntity; +import com.logpm.aftersales.vo.AftersalesAppealPeopleVO; +import java.util.Objects; + +/** + * 工单申述实际责任人表 包装类,返回视图层所需的字段 + * + * @author cyz + * @since 2023-12-04 + */ +public class AftersalesAppealPeopleWrapper extends BaseEntityWrapper { + + public static AftersalesAppealPeopleWrapper build() { + return new AftersalesAppealPeopleWrapper(); + } + + @Override + public AftersalesAppealPeopleVO entityVO(AftersalesAppealPeopleEntity aftersalesAppealPeople) { + AftersalesAppealPeopleVO aftersalesAppealPeopleVO = Objects.requireNonNull(BeanUtil.copy(aftersalesAppealPeople, AftersalesAppealPeopleVO.class)); + + //User createUser = UserCache.getUser(aftersalesAppealPeople.getCreateUser()); + //User updateUser = UserCache.getUser(aftersalesAppealPeople.getUpdateUser()); + //aftersalesAppealPeopleVO.setCreateUserName(createUser.getName()); + //aftersalesAppealPeopleVO.setUpdateUserName(updateUser.getName()); + + return aftersalesAppealPeopleVO; + } + + +} diff --git a/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/wrapper/AftersalesAppealWrapper.java b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/wrapper/AftersalesAppealWrapper.java new file mode 100644 index 000000000..4d4087102 --- /dev/null +++ b/blade-service/logpm-aftersales/src/main/java/com/logpm/aftersales/wrapper/AftersalesAppealWrapper.java @@ -0,0 +1,50 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.aftersales.wrapper; + +import org.springblade.core.mp.support.BaseEntityWrapper; +import org.springblade.core.tool.utils.BeanUtil; +import com.logpm.aftersales.entity.AftersalesAppealEntity; +import com.logpm.aftersales.vo.AftersalesAppealVO; +import java.util.Objects; + +/** + * 异常工单申述表 包装类,返回视图层所需的字段 + * + * @author cyz + * @since 2023-12-04 + */ +public class AftersalesAppealWrapper extends BaseEntityWrapper { + + public static AftersalesAppealWrapper build() { + return new AftersalesAppealWrapper(); + } + + @Override + public AftersalesAppealVO entityVO(AftersalesAppealEntity aftersalesAppeal) { + AftersalesAppealVO aftersalesAppealVO = Objects.requireNonNull(BeanUtil.copy(aftersalesAppeal, AftersalesAppealVO.class)); + + //User createUser = UserCache.getUser(aftersalesAppeal.getCreateUser()); + //User updateUser = UserCache.getUser(aftersalesAppeal.getUpdateUser()); + //aftersalesAppealVO.setCreateUserName(createUser.getName()); + //aftersalesAppealVO.setUpdateUserName(updateUser.getName()); + + return aftersalesAppealVO; + } + + +} diff --git a/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/controller/DistributionStockArticleController.java b/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/controller/DistributionStockArticleController.java index 43cac09b4..16dd7dbf1 100644 --- a/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/controller/DistributionStockArticleController.java +++ b/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/controller/DistributionStockArticleController.java @@ -271,7 +271,6 @@ public class DistributionStockArticleController extends BladeController { // distributionStockArticle.setWarehouseIdList(collect); IPage pages = distributionStockArticleService.selectClientListPage(Condition.getPage(query), distributionStockArticle); - DistributionStockArticleWrapper.build().pageVO(pages); return R.data(DistributionStockArticleWrapper.build().pageVO(pages)); } diff --git a/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/wrapper/DistributionStockArticleWrapper.java b/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/wrapper/DistributionStockArticleWrapper.java index bd69a4c28..1bcc7c79b 100644 --- a/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/wrapper/DistributionStockArticleWrapper.java +++ b/blade-service/logpm-distribution/src/main/java/com/logpm/distribution/wrapper/DistributionStockArticleWrapper.java @@ -37,18 +37,18 @@ public class DistributionStockArticleWrapper extends BaseEntityWrapper mtFactoryOrderMainList = mtFactoryOrderMainService.findMtFactoryOrderMainByInvoiceOrderCode(unloadCarNum); - if (mtFactoryOrderMainList.size() > 0) { + if (!mtFactoryOrderMainList.isEmpty()) { mtFactoryOrderMainList.get(0); mtPushData.setRefId(mtFactoryOrderMainList.get(0).getId()); }