diff --git a/common-ruoyi/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/BaseEntity.java b/common-ruoyi/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/BaseEntity.java index 2f3eca9..f4f546f 100644 --- a/common-ruoyi/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/BaseEntity.java +++ b/common-ruoyi/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/BaseEntity.java @@ -41,10 +41,21 @@ public class BaseEntity implements Serializable /** 是否需要数据隔离 */ private Boolean needScope; + /** 删除标志 */ + private Boolean deleted; + /** 请求参数 */ @JsonInclude(JsonInclude.Include.NON_EMPTY) private Map params; + public Boolean getDeleted() { + return deleted; + } + + public void setDeleted(Boolean deleted) { + this.deleted = deleted; + } + public Boolean getNeedScope() { return needScope; } diff --git a/common-ruoyi/ruoyi-common/src/main/java/com/ruoyi/common/utils/SqlUtils.java b/common-ruoyi/ruoyi-common/src/main/java/com/ruoyi/common/utils/SqlUtils.java new file mode 100644 index 0000000..15d9f71 --- /dev/null +++ b/common-ruoyi/ruoyi-common/src/main/java/com/ruoyi/common/utils/SqlUtils.java @@ -0,0 +1,32 @@ +package com.ruoyi.common.utils; + +import java.util.Collection; + +/** + * SQL 工具类 + * @author wjh + * 2024/11/2 + */ +public class SqlUtils { + + /** + * TODO 批量更新SQL 拼接 暂时还没想好怎么做 + * @param collection + * @param primaryKey + * @param columnName + * @return + */ + public static String updateColumn(Collection collection, String primaryKey, String columnName) { + StringBuilder sb = new StringBuilder(); + sb.append(columnName).append(" = case ").append(primaryKey); + + for (Object item : collection) { + + sb.append(" when "); + + } + + return sb.toString(); + } + +} diff --git a/common-ruoyi/ruoyi-common/src/main/java/com/ruoyi/common/utils/collection/CollectionUtils.java b/common-ruoyi/ruoyi-common/src/main/java/com/ruoyi/common/utils/collection/CollectionUtils.java index 7b35a5b..86f0165 100644 --- a/common-ruoyi/ruoyi-common/src/main/java/com/ruoyi/common/utils/collection/CollectionUtils.java +++ b/common-ruoyi/ruoyi-common/src/main/java/com/ruoyi/common/utils/collection/CollectionUtils.java @@ -168,4 +168,37 @@ public class CollectionUtils extends org.springframework.util.CollectionUtils { } return result; } + + /** + * 将新旧列表转换为差异列表 + * @param newList 新列表 + * @param oldList 旧列表 + * @param primaryKeyFunc 唯一标识获取方法 + */ + public static DiffListVO convertToDiffList(List newList, List oldList, Function primaryKeyFunc) { + DiffListVO result = new DiffListVO<>(); + // 全新增 + if (CollectionUtils.isEmptyElement(oldList)) { + return result.setAdd(newList); + } + // 全删除 + if (CollectionUtils.isEmptyElement(newList)) { + return result.setDel(oldList); + } + + Set newKeys = newList.stream().map(primaryKeyFunc).collect(Collectors.toSet()); + Set oldKeys = oldList.stream().map(primaryKeyFunc).collect(Collectors.toSet()); + + // 不在旧列表则为新增 + List addList = newList.stream().filter(item -> !oldKeys.contains(primaryKeyFunc.apply(item))).filter(Objects::nonNull).collect(Collectors.toList()); + result.setAdd(addList); + // 不在新列表则为删除 + List delList = oldList.stream().filter(item -> !newKeys.contains(primaryKeyFunc.apply(item))).filter(Objects::nonNull).collect(Collectors.toList()); + result.setDel(delList); + // 在新列表,又在旧列表,则为更新 + List updateList = newList.stream().filter(item -> oldKeys.contains(primaryKeyFunc.apply(item))).filter(Objects::nonNull).collect(Collectors.toList()); + result.setUpdate(updateList); + + return result; + } } diff --git a/common-ruoyi/ruoyi-common/src/main/java/com/ruoyi/common/utils/collection/DiffListVO.java b/common-ruoyi/ruoyi-common/src/main/java/com/ruoyi/common/utils/collection/DiffListVO.java new file mode 100644 index 0000000..53523ba --- /dev/null +++ b/common-ruoyi/ruoyi-common/src/main/java/com/ruoyi/common/utils/collection/DiffListVO.java @@ -0,0 +1,39 @@ +package com.ruoyi.common.utils.collection; + +import lombok.Data; + +import java.util.List; + +/** + * 新旧差异列表 + * @author wjh + * 2024/11/2 + */ +@Data +public class DiffListVO { + List addList; + List updateList; + List delList; + + public DiffListVO setAdd(List list) { + this.addList = list; + return this; + } + public DiffListVO setUpdate(List list) { + this.updateList = list; + return this; + } + public DiffListVO setDel(List list) { + this.delList = list; + return this; + } + public int getAddCount() { + return CollectionUtils.isEmptyElement(addList) ? 0 : addList.size(); + } + public int getUpdateCount() { + return CollectionUtils.isEmptyElement(updateList) ? 0 : updateList.size(); + } + public int getDelCount() { + return CollectionUtils.isEmptyElement(delList) ? 0 : delList.size(); + } +} diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/controller/ReportController.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/controller/ReportController.java index bf65338..76ffa9e 100644 --- a/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/controller/ReportController.java +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/controller/ReportController.java @@ -4,6 +4,7 @@ import java.util.Collections; import java.util.List; import javax.servlet.http.HttpServletResponse; +import com.ruoyi.common.core.validate.ValidGroup; import com.ruoyi.web.yh.report.domain.bo.ReportBO; import com.ruoyi.web.yh.report.service.ReportAssembler; import com.ruoyi.web.yh.report.service.ReportConverter; @@ -51,7 +52,7 @@ public class ReportController extends BaseController /** * 查询报表列表 */ - @PreAuthorize("@ss.hasPermi('yh:report:list')") + @PreAuthorize("@ss.hasAnyPermi({'yh:report:list', 'yh:report:groupList'})") @GetMapping("/list") public TableDataInfo list(ReportQuery query) { @@ -83,7 +84,7 @@ public class ReportController extends BaseController { ReportVO report = reportService.selectReportByReportId(reportId); List list = Collections.singletonList(report); - reportAssembler.assembleProductList(list); // 拼接产量明细 + reportAssembler.assembleProductList(list, true); // 拼接产量明细 return success(report); } @@ -93,7 +94,7 @@ public class ReportController extends BaseController @PreAuthorize("@ss.hasPermi('yh:report:add')") @Log(title = "新增车间报表", businessType = BusinessType.INSERT) @PostMapping - public AjaxResult add(@RequestBody @Validated ReportVO data) + public AjaxResult add(@RequestBody @Validated(ValidGroup.Create.class) ReportVO data) { ReportBO bo = reportConverter.toBoByCreate(data); return toAjax(reportService.addReport(bo)); @@ -105,9 +106,9 @@ public class ReportController extends BaseController @PreAuthorize("@ss.hasPermi('yh:report:edit')") @Log(title = "修改车间报表", businessType = BusinessType.UPDATE) @PutMapping - public AjaxResult edit(@RequestBody Report report) - { - return toAjax(reportService.updateReport(report)); + public AjaxResult edit(@RequestBody @Validated(ValidGroup.Update.class) ReportVO data) { + ReportBO bo = reportConverter.toBoByUpdate(data); + return toAjax(reportService.editReport(bo)); } /** diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/domain/Report.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/domain/Report.java index 1fdb017..808d618 100644 --- a/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/domain/Report.java +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/domain/Report.java @@ -60,9 +60,11 @@ public class Report extends BaseEntity @DateTimeFormat(pattern = "yyyy-MM-dd") @Excel(name = "报表日期", width = 30, dateFormat = "yyyy-MM-dd") @ApiModelProperty("报表日期") + @NotNull(message = "报表日期不能为空") private LocalDate reportDate; @Excel(name = "总金额", readConverterExp = "元=") @ApiModelProperty("总金额") + @NotNull(message = "总金额不能为空") private BigDecimal totalAmount; } diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/domain/ReportVO.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/domain/ReportVO.java index 0e0e9bd..dcccf29 100644 --- a/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/domain/ReportVO.java +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/domain/ReportVO.java @@ -5,6 +5,7 @@ import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; +import javax.validation.constraints.Size; import java.util.List; /** @@ -19,5 +20,6 @@ public class ReportVO extends Report { private String deptName; @ApiModelProperty("产量明细") + @Size(min = 1, message = "至少填写一个产量明细") List productList; } diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/ReportAssembler.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/ReportAssembler.java index c29af67..5581425 100644 --- a/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/ReportAssembler.java +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/ReportAssembler.java @@ -12,7 +12,9 @@ public interface ReportAssembler { /** * 拼接产量数据 + * @param list 待拼接列表 + * @param assembleUserProd 是否拼接员工产量 */ - void assembleProductList(List list); + void assembleProductList(List list, boolean assembleUserProd); } diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/ReportConverter.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/ReportConverter.java index 25cd291..ecaee80 100644 --- a/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/ReportConverter.java +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/ReportConverter.java @@ -16,5 +16,8 @@ public interface ReportConverter { */ ReportBO toBoByCreate(ReportVO vo); - + /** + * 更新时,VO 转 BO + */ + ReportBO toBoByUpdate(ReportVO vo); } diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/ReportService.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/ReportService.java index ab86614..26fc672 100644 --- a/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/ReportService.java +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/ReportService.java @@ -67,4 +67,10 @@ public interface ReportService */ int addReport(ReportBO bo); + /** + * 修改报表 + * @param bo + * @return + */ + int editReport(ReportBO bo); } diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/impl/ReportAssemblerImpl.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/impl/ReportAssemblerImpl.java index 32d1f8d..1fbe950 100644 --- a/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/impl/ReportAssemblerImpl.java +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/impl/ReportAssemblerImpl.java @@ -7,6 +7,7 @@ import com.ruoyi.web.yh.report.service.ReportService; import com.ruoyi.web.yh.reportProd.domain.ReportProdQuery; import com.ruoyi.web.yh.reportProd.domain.ReportProdVO; import com.ruoyi.web.yh.reportProd.service.ReportProdService; +import com.ruoyi.web.yh.reportUserProd.service.ReportUserProdAssembler; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @@ -28,15 +29,26 @@ public class ReportAssemblerImpl implements ReportAssembler { @Autowired private ReportProdService reportProdService; + @Autowired + private ReportUserProdAssembler reportUserProdAssembler; + @Override - public void assembleProductList(List list) { + public void assembleProductList(List list, boolean assembleUserProd) { if (CollectionUtils.isEmptyElement(list)) { return; } + // 查询产量明细 ReportProdQuery query = new ReportProdQuery(); query.setReportIds(CollectionUtils.map(list, ReportVO::getReportId)); - Map> group = reportProdService.selectReportProdList(query) - .stream().collect(Collectors.groupingBy(ReportProdVO::getReportId)); + List prodList = reportProdService.selectReportProdList(query); + + // 拼接员工产量 + if (assembleUserProd) { + reportUserProdAssembler.assembleUserProd(prodList); + } + + // 分组 + Map> group = prodList.stream().collect(Collectors.groupingBy(ReportProdVO::getReportId)); for (ReportVO report : list) { List productList = group.get(report.getReportId()); diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/impl/ReportConverterImpl.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/impl/ReportConverterImpl.java index 0ebfb3d..600d15d 100644 --- a/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/impl/ReportConverterImpl.java +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/impl/ReportConverterImpl.java @@ -12,6 +12,8 @@ import com.ruoyi.web.yh.report.domain.enums.ReportStatus; import com.ruoyi.web.yh.report.service.ReportConverter; import com.ruoyi.web.yh.reportProd.domain.ReportProd; import com.ruoyi.web.yh.reportProd.domain.ReportProdVO; +import com.ruoyi.web.yh.reportProd.domain.bo.ReportProdBO; +import com.ruoyi.web.yh.reportProd.service.ReportProdConverter; import org.apache.commons.collections4.CollectionUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @@ -32,6 +34,9 @@ public class ReportConverterImpl implements ReportConverter { @Autowired private PriceService priceService; + @Autowired + private ReportProdConverter reportProdConverter; + @Override public ReportBO toBoByCreate(ReportVO vo) { if (vo == null) { @@ -41,38 +46,56 @@ public class ReportConverterImpl implements ReportConverter { LoginUser loginUser = SecurityUtils.getLoginUser(); // 报表主表数据 - Report report = new Report(); - report.setDeptId(vo.getDeptId()); - report.setStatus(ReportStatus.WAIT_VERIFY.getStatus()); - report.setCreateId(loginUser.getUserId()); - report.setReportDate(vo.getReportDate()); - report.setTotalAmount(vo.getTotalAmount()); - report.setCreateBy(loginUser.getNickName()); + ReportBO bo = new ReportBO(); + bo.setDeptId(vo.getDeptId()); + bo.setStatus(ReportStatus.WAIT_VERIFY.getStatus()); + bo.setCreateId(loginUser.getUserId()); + bo.setReportDate(vo.getReportDate()); + bo.setTotalAmount(vo.getTotalAmount()); + bo.setCreateBy(loginUser.getNickName()); // 报表产量数据 - List productList = new ArrayList<>(); + List productList = new ArrayList<>(); if (CollectionUtils.isNotEmpty(vo.getProductList())) { for (ReportProdVO item : vo.getProductList()) { - ReportProd prod = new ReportProd(); - prod.setPriceId(item.getPriceId()); - prod.setNum(item.getNum()); - prod.setPriceCategory(item.getPriceCategory()); - prod.setPriceSize(item.getPriceSize()); - prod.setPriceName(item.getPriceName()); - prod.setPriceSubName(item.getPriceSubName()); - prod.setPricePattern(item.getPricePattern()); - prod.setPriceSpec(item.getPriceSpec()); - prod.setPricePrice(item.getPricePrice()); - prod.setPriceUnit(item.getPriceUnit()); - prod.setPriceClassify(item.getPriceClassify()); - prod.setPriceQuantity(item.getPriceQuantity()); - productList.add(prod); + ReportProdBO prodBo = reportProdConverter.toBoByCreate(item); + productList.add(prodBo); } } // 组装数据 + bo.setProductList(productList); + return bo; + } + + @Override + public ReportBO toBoByUpdate(ReportVO vo) { + if (vo == null) { + return null; + } + + LoginUser loginUser = SecurityUtils.getLoginUser(); + + // 报表主表数据 ReportBO bo = new ReportBO(); - bo.setReport(report); + bo.setReportId(vo.getReportId()); + bo.setDeptId(vo.getDeptId()); + bo.setReportDate(vo.getReportDate()); + bo.setTotalAmount(vo.getTotalAmount()); + bo.setStatus(ReportStatus.WAIT_VERIFY.getStatus()); + bo.setUpdateId(loginUser.getUserId()); + bo.setUpdateBy(loginUser.getNickName()); + + // 报表产量数据 + List productList = new ArrayList<>(); + if (CollectionUtils.isNotEmpty(vo.getProductList())) { + for (ReportProdVO item : vo.getProductList()) { + ReportProdBO prodBo = reportProdConverter.toBoByUpdate(item); + productList.add(prodBo); + } + } + + // 组装数据 bo.setProductList(productList); return bo; } diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/impl/ReportServiceImpl.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/impl/ReportServiceImpl.java index bfa649c..af3f229 100644 --- a/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/impl/ReportServiceImpl.java +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/report/service/impl/ReportServiceImpl.java @@ -1,10 +1,22 @@ package com.ruoyi.web.yh.report.service.impl; import java.util.List; +import java.util.Objects; +import java.util.stream.Collectors; + import com.ruoyi.common.utils.DateUtils; import com.ruoyi.common.utils.ServiceUtil; +import com.ruoyi.common.utils.collection.CollectionUtils; +import com.ruoyi.common.utils.collection.DiffListVO; import com.ruoyi.web.yh.report.domain.bo.ReportBO; +import com.ruoyi.web.yh.reportProd.domain.ReportProd; +import com.ruoyi.web.yh.reportProd.domain.ReportProdVO; +import com.ruoyi.web.yh.reportProd.domain.bo.ReportProdBO; import com.ruoyi.web.yh.reportProd.service.ReportProdService; +import com.ruoyi.web.yh.reportUserProd.domain.ReportUserProd; +import com.ruoyi.web.yh.reportUserProd.domain.ReportUserProdVO; +import com.ruoyi.web.yh.reportUserProd.domain.bo.ReportUserProdBO; +import com.ruoyi.web.yh.reportUserProd.service.ReportUserProdService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.ruoyi.web.yh.report.mapper.ReportMapper; @@ -32,6 +44,9 @@ public class ReportServiceImpl implements ReportService @Autowired private ReportProdService reportProdService; + @Autowired + private ReportUserProdService reportUserProdService; + /** * 查询报表 * @@ -109,19 +124,132 @@ public class ReportServiceImpl implements ReportService @Override public int addReport(ReportBO bo) { ServiceUtil.assertion(bo == null, "参数错误"); + // TODO 校验 Integer result = transactionTemplate.execute(status -> { - // todo 新增主表 + // 新增主表 int insert = this.insertReport(bo); ServiceUtil.assertion(insert != 1, "新增报表失败"); - // TODO 新增子表 - int batchInsert = reportProdService.batchInsertByReportId(bo.getProductList(), bo.getReportId()); - ServiceUtil.assertion(batchInsert != bo.getProductList().size(), "新增报表产量明细失败"); + // 更新产量表 + this.batchUpdateProductList(bo); + + // 更新员工产量表 + this.batchUpdateUserProductList(bo); return insert; }); return result == null ? 0 : result; } + + /** + * 更新员工产量表 + * @param bo + * @return + */ + private int batchUpdateUserProductList(ReportBO bo) { + if (bo == null || bo.getReportId() == null || CollectionUtils.isEmptyElement(bo.getProductList())) { + return 0; + } + // 设置总产量ID + for (ReportProdBO prod : bo.getProductList()) { + if (prod.getUserProdList() == null) { + continue; + } + for (ReportUserProdBO userProd : prod.getUserProdList()) { + userProd.setProdId(prod.getId()); + } + } + + // 扁平化,获取列表 + List newList = bo.getProductList().stream() + .map(ReportProdBO::getUserProdList) + .flatMap(List::stream) + .filter(Objects::nonNull) + .collect(Collectors.toList()); + + // 查询旧列表 + List oldList = reportUserProdService.selectListByReportId(bo.getReportId()); + + // 获取差异 + DiffListVO diff = CollectionUtils.convertToDiffList(newList, oldList, ReportUserProd::getId); + + int result = 0; + if (diff.getAddCount() > 0) { + int insert = reportUserProdService.batchInsert(diff.getAddList()); + ServiceUtil.assertion(insert != diff.getAddCount(), "新增用户产量明细失败"); + result += insert; + } + if (diff.getUpdateCount() > 0) { + int update = reportUserProdService.batchUpdate(diff.getUpdateList()); + ServiceUtil.assertion(update != diff.getUpdateCount(), "修改用户产量明细失败"); + result += update; + } + if (diff.getDelCount() > 0) { + int del = reportUserProdService.batchLogicDel(diff.getDelList()); + ServiceUtil.assertion(del != diff.getDelCount(), "删除用户产量明细失败"); + result += del; + } + + return result; + } + + @Override + public int editReport(ReportBO bo) { + ServiceUtil.assertion(bo == null, "参数错误"); + + Integer result = transactionTemplate.execute(status -> { + // 修改主表 + int update = this.updateReport(bo); + ServiceUtil.assertion(update != 1, "修改报表失败"); + + // 修改产量表 + this.batchUpdateProductList(bo); + + // 修改员工产量表 + this.batchUpdateUserProductList(bo); + + return update; + }); + + return result == null ? 0 : result; + } + + /** + * 更新产量表 + */ + private int batchUpdateProductList(ReportBO bo) { + if (bo == null || CollectionUtils.isEmptyElement(bo.getProductList())) { + return 0; + } + // 修改报表ID + for (ReportProd prod : bo.getProductList()) { + prod.setReportId(bo.getReportId()); + } + + List oldList = reportProdService.selectByReportId(bo.getReportId()); + + // 分离出新增、修改、删除的列表 + DiffListVO diff = CollectionUtils.convertToDiffList(bo.getProductList(), oldList, ReportProd::getId); + + int result = 0; + if (diff.getAddCount() > 0) { + int batchInsert = reportProdService.batchInsert(diff.getAddList()); + ServiceUtil.assertion(batchInsert != diff.getAddCount(), "新增报表产量明细失败"); + result += batchInsert; + } + if (diff.getUpdateCount() > 0) { + int update = reportProdService.batchUpdate(diff.getUpdateList()); + ServiceUtil.assertion(update != diff.getUpdateCount(), "修改报表产量明细失败"); + result += update; + } + if (diff.getDelCount() > 0) { + int del = reportProdService.batchLogicDel(diff.getDelList()); + ServiceUtil.assertion(del != diff.getDelCount(), "删除报表产量明细失败"); + result += del; + } + + return result; + } } diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/domain/ReportProdVO.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/domain/ReportProdVO.java index bf13c28..916c980 100644 --- a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/domain/ReportProdVO.java +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/domain/ReportProdVO.java @@ -1,11 +1,18 @@ package com.ruoyi.web.yh.reportProd.domain; +import com.ruoyi.web.yh.reportUserProd.domain.ReportUserProdVO; +import io.swagger.annotations.ApiModelProperty; import lombok.Data; +import java.util.List; + /** * @author wjh * 2024/10/31 */ @Data public class ReportProdVO extends ReportProd { + + @ApiModelProperty("员工产量列表") + private List userProdList; } diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/domain/bo/ReportProdBO.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/domain/bo/ReportProdBO.java index 2dff36e..93e0edb 100644 --- a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/domain/bo/ReportProdBO.java +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/domain/bo/ReportProdBO.java @@ -1,10 +1,19 @@ package com.ruoyi.web.yh.reportProd.domain.bo; import com.ruoyi.web.yh.reportProd.domain.ReportProd; +import com.ruoyi.web.yh.reportUserProd.domain.bo.ReportUserProdBO; +import lombok.Data; + +import java.util.List; /** * @author wjh * 2024/10/31 */ +@Data public class ReportProdBO extends ReportProd { + + // 员工产量列表 + private List userProdList; + } diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/mapper/ReportProdMapper.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/mapper/ReportProdMapper.java index 0c0e673..c0ed7b8 100644 --- a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/mapper/ReportProdMapper.java +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/mapper/ReportProdMapper.java @@ -66,4 +66,14 @@ public interface ReportProdMapper * 批量新增 */ int batchInsert(@Param("list") List productList); + + /** + * 批量更新 + */ + int batchUpdate(@Param("list") List list); + + /** + * 批量逻辑删除 + */ + int batchLogicDel(@Param("ids") List ids); } diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/mapper/ReportProdMapper.xml b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/mapper/ReportProdMapper.xml index 3c8b335..86d0916 100644 --- a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/mapper/ReportProdMapper.xml +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/mapper/ReportProdMapper.xml @@ -21,7 +21,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" brp.price_price, brp.price_unit, brp.price_classify, - brp.price_quantity + brp.price_quantity, + brp.deleted from bst_report_prod brp @@ -36,6 +37,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" and brp.price_spec like concat('%', #{query.priceSpec}, '%') and brp.price_unit = #{query.priceUnit} and brp.price_classify like concat('%', #{query.priceClassify}, '%') + and brp.deleted = false + and brp.deleted = #{deleted} and brp.report_id in @@ -54,7 +57,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" @@ -91,7 +94,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" - + insert into bst_report_prod( report_id, price_id, @@ -164,6 +167,155 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" price_quantity = #{data.priceQuantity}, + + update bst_report_prod + + + + + WHEN #{item.id} THEN #{item.reportId} + + + WHEN #{item.id} THEN `report_id` + + + + + + + WHEN #{item.id} THEN #{item.priceId} + + + WHEN #{item.id} THEN `price_id` + + + + + + + WHEN #{item.id} THEN #{item.num} + + + WHEN #{item.id} THEN `num` + + + + + + + WHEN #{item.id} THEN #{item.priceCategory} + + + WHEN #{item.id} THEN `price_category` + + + + + + + WHEN #{item.id} THEN #{item.priceSize} + + + WHEN #{item.id} THEN `price_size` + + + + + + + WHEN #{item.id} THEN #{item.priceName} + + + WHEN #{item.id} THEN `price_name` + + + + + + + WHEN #{item.id} THEN #{item.priceSubName} + + + WHEN #{item.id} THEN `price_sub_name` + + + + + + + WHEN #{item.id} THEN #{item.pricePattern} + + + WHEN #{item.id} THEN `price_pattern` + + + + + + + WHEN #{item.id} THEN #{item.priceSpec} + + + WHEN #{item.id} THEN `price_spec` + + + + + + + WHEN #{item.id} THEN #{item.pricePrice} + + + WHEN #{item.id} THEN `price_price` + + + + + + + WHEN #{item.id} THEN #{item.priceUnit} + + + WHEN #{item.id} THEN `price_unit` + + + + + + + WHEN #{item.id} THEN #{item.priceClassify} + + + WHEN #{item.id} THEN `price_classify` + + + + + + + WHEN #{item.id} THEN #{item.priceQuantity} + + + WHEN #{item.id} THEN `price_quantity` + + + + + where id in + + #{item.id} + + + + + update bst_report_prod + set deleted = true + where id in + + #{id} + + + delete from bst_report_prod where id = #{id} diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/service/ReportProdConverter.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/service/ReportProdConverter.java new file mode 100644 index 0000000..0364a83 --- /dev/null +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/service/ReportProdConverter.java @@ -0,0 +1,25 @@ +package com.ruoyi.web.yh.reportProd.service; + +import com.ruoyi.web.yh.reportProd.domain.ReportProdVO; +import com.ruoyi.web.yh.reportProd.domain.bo.ReportProdBO; + +/** + * @author wjh + * 2024/11/2 + */ +public interface ReportProdConverter { + + /** + * 新增时,VO转为BO + * @param vo + * @return + */ + ReportProdBO toBoByCreate(ReportProdVO vo); + + /** + * 更新时,VO 转 BO + * @param vo + * @return + */ + ReportProdBO toBoByUpdate(ReportProdVO vo); +} diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/service/ReportProdService.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/service/ReportProdService.java index 62e92a0..f7a0325 100644 --- a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/service/ReportProdService.java +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/service/ReportProdService.java @@ -64,7 +64,25 @@ public interface ReportProdService /** * 根据报表ID,批量新增产量 * @param productList 产量列表 - * @param reportId 报表ID */ - int batchInsertByReportId(List productList, Long reportId); + int batchInsert(List productList); + + /** + * 根据报表ID,批量修改产量 + * + * @param list 产量列表 + */ + int batchUpdate(List list); + + /** + * 根据报表ID查询列表 + * @param reportId 报表ID + * @return + */ + List selectByReportId(Long reportId); + + /** + * 批量逻辑删除 + */ + int batchLogicDel(List list); } diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/service/impl/ReportProdConverterImpl.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/service/impl/ReportProdConverterImpl.java new file mode 100644 index 0000000..536ee70 --- /dev/null +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/service/impl/ReportProdConverterImpl.java @@ -0,0 +1,93 @@ +package com.ruoyi.web.yh.reportProd.service.impl; + +import com.ruoyi.web.yh.reportProd.domain.ReportProdVO; +import com.ruoyi.web.yh.reportProd.domain.bo.ReportProdBO; +import com.ruoyi.web.yh.reportProd.service.ReportProdConverter; +import com.ruoyi.web.yh.reportUserProd.domain.ReportUserProdVO; +import com.ruoyi.web.yh.reportUserProd.domain.bo.ReportUserProdBO; +import com.ruoyi.web.yh.reportUserProd.service.ReportUserProdConverter; +import org.apache.commons.collections4.CollectionUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.ArrayList; +import java.util.List; + +/** + * @author wjh + * 2024/11/2 + */ +@Service +public class ReportProdConverterImpl implements ReportProdConverter { + + @Autowired + private ReportUserProdConverter reportUserProdConverter; + + @Override + public ReportProdBO toBoByCreate(ReportProdVO vo) { + if (vo == null) { + return null; + } + + ReportProdBO bo = new ReportProdBO(); + bo.setPriceId(vo.getPriceId()); + bo.setNum(vo.getNum()); + bo.setPriceCategory(vo.getPriceCategory()); + bo.setPriceSize(vo.getPriceSize()); + bo.setPriceName(vo.getPriceName()); + bo.setPriceSubName(vo.getPriceSubName()); + bo.setPricePattern(vo.getPricePattern()); + bo.setPriceSpec(vo.getPriceSpec()); + bo.setPricePrice(vo.getPricePrice()); + bo.setPriceUnit(vo.getPriceUnit()); + bo.setPriceClassify(vo.getPriceClassify()); + bo.setPriceQuantity(vo.getPriceQuantity()); + + // 用户产量明细 + List userProdList = new ArrayList<>(); + if (CollectionUtils.isNotEmpty(vo.getUserProdList())) { + for (ReportUserProdVO item : vo.getUserProdList()) { + ReportUserProdBO userProd = reportUserProdConverter.toBoByCreate(item); + userProdList.add(userProd); + } + } + bo.setUserProdList(userProdList); + + return bo; + } + + @Override + public ReportProdBO toBoByUpdate(ReportProdVO vo) { + if (vo == null) { + return null; + } + + ReportProdBO bo = new ReportProdBO(); + bo.setId(vo.getId()); + bo.setReportId(vo.getReportId()); + bo.setPriceId(vo.getPriceId()); + bo.setNum(vo.getNum()); + bo.setPriceCategory(vo.getPriceCategory()); + bo.setPriceSize(vo.getPriceSize()); + bo.setPriceName(vo.getPriceName()); + bo.setPriceSubName(vo.getPriceSubName()); + bo.setPricePattern(vo.getPricePattern()); + bo.setPriceSpec(vo.getPriceSpec()); + bo.setPricePrice(vo.getPricePrice()); + bo.setPriceUnit(vo.getPriceUnit()); + bo.setPriceClassify(vo.getPriceClassify()); + bo.setPriceQuantity(vo.getPriceQuantity()); + + // 用户产量明细 + List userProdList = new ArrayList<>(); + if (CollectionUtils.isNotEmpty(vo.getUserProdList())) { + for (ReportUserProdVO item : vo.getUserProdList()) { + ReportUserProdBO userProd = reportUserProdConverter.toBoByUpdate(item); + userProdList.add(userProd); + } + } + bo.setUserProdList(userProdList); + + return bo; + } +} diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/service/impl/ReportProdServiceImpl.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/service/impl/ReportProdServiceImpl.java index 0a00d6f..209b613 100644 --- a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/service/impl/ReportProdServiceImpl.java +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportProd/service/impl/ReportProdServiceImpl.java @@ -1,8 +1,15 @@ package com.ruoyi.web.yh.reportProd.service.impl; +import java.util.Collections; import java.util.List; +import java.util.Objects; +import java.util.stream.Collectors; +import com.ruoyi.common.utils.ServiceUtil; import com.ruoyi.common.utils.collection.CollectionUtils; +import com.ruoyi.web.yh.reportProd.domain.bo.ReportProdBO; +import com.ruoyi.web.yh.reportUserProd.domain.bo.ReportUserProdBO; +import com.ruoyi.web.yh.reportUserProd.service.ReportUserProdService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.ruoyi.web.yh.reportProd.mapper.ReportProdMapper; @@ -10,6 +17,7 @@ import com.ruoyi.web.yh.reportProd.domain.ReportProd; import com.ruoyi.web.yh.reportProd.domain.ReportProdVO; import com.ruoyi.web.yh.reportProd.domain.ReportProdQuery; import com.ruoyi.web.yh.reportProd.service.ReportProdService; +import org.springframework.transaction.support.TransactionTemplate; /** * 报表产量Service业务层处理 @@ -23,6 +31,12 @@ public class ReportProdServiceImpl implements ReportProdService @Autowired private ReportProdMapper reportProdMapper; + @Autowired + private TransactionTemplate transactionTemplate; + + @Autowired + private ReportUserProdService reportUserProdService; + /** * 查询报表产量 * @@ -96,14 +110,37 @@ public class ReportProdServiceImpl implements ReportProdService } @Override - public int batchInsertByReportId(List productList, Long reportId) { - if (CollectionUtils.isEmptyElement(productList) || reportId == null) { + public int batchInsert(List productList) { + if (CollectionUtils.isEmptyElement(productList) ) { return 0; } - // TODO 校验 - for (ReportProd prod : productList) { - prod.setReportId(reportId); - } return reportProdMapper.batchInsert(productList); } + + @Override + public int batchUpdate(List list) { + if (CollectionUtils.isEmptyElement(list)) { + return 0; + } + return reportProdMapper.batchUpdate(list); + } + + @Override + public List selectByReportId(Long reportId) { + if (reportId == null) { + return Collections.emptyList(); + } + ReportProdQuery query = new ReportProdQuery(); + query.setReportId(reportId); + return reportProdMapper.selectReportProdList(query); + } + + @Override + public int batchLogicDel(List list) { + if (CollectionUtils.isEmptyElement(list)) { + return 0; + } + List ids = list.stream().map(ReportProdVO::getId).filter(Objects::nonNull).collect(Collectors.toList()); + return reportProdMapper.batchLogicDel(ids); + } } diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/controller/ReportUserProdController.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/controller/ReportUserProdController.java new file mode 100644 index 0000000..644f356 --- /dev/null +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/controller/ReportUserProdController.java @@ -0,0 +1,103 @@ +package com.ruoyi.web.yh.reportUserProd.controller; + +import java.util.List; +import javax.servlet.http.HttpServletResponse; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; +import com.ruoyi.common.annotation.Log; +import com.ruoyi.common.core.controller.BaseController; +import com.ruoyi.common.core.domain.AjaxResult; +import com.ruoyi.common.enums.BusinessType; +import com.ruoyi.web.yh.reportUserProd.domain.ReportUserProdVO; +import com.ruoyi.web.yh.reportUserProd.domain.ReportUserProdQuery; +import com.ruoyi.web.yh.reportUserProd.service.ReportUserProdService; +import com.ruoyi.common.utils.poi.ExcelUtil; +import com.ruoyi.common.core.page.TableDataInfo; + +/** + * 员工产量Controller + * + * @author ruoyi + * @date 2024-11-02 + */ +@RestController +@RequestMapping("/yh/reportUserProd") +public class ReportUserProdController extends BaseController +{ + @Autowired + private ReportUserProdService reportUserProdService; + + /** + * 查询员工产量列表 + */ + @PreAuthorize("@ss.hasPermi('yh:reportUserProd:list')") + @GetMapping("/list") + public TableDataInfo list(ReportUserProdQuery query) + { + startPage(); + startOrderBy(); + List list = reportUserProdService.selectReportUserProdList(query); + return getDataTable(list); + } + + /** + * 导出员工产量列表 + */ + @PreAuthorize("@ss.hasPermi('yh:reportUserProd:export')") + @Log(title = "导出员工产量", businessType = BusinessType.EXPORT) + @PostMapping("/export") + public void export(HttpServletResponse response, ReportUserProdQuery query) + { + List list = reportUserProdService.selectReportUserProdList(query); + ExcelUtil util = new ExcelUtil(ReportUserProdVO.class); + util.exportExcel(response, list, "员工产量数据"); + } + + /** + * 获取员工产量详细信息 + */ + @PreAuthorize("@ss.hasPermi('yh:reportUserProd:query')") + @GetMapping(value = "/{id}") + public AjaxResult getInfo(@PathVariable("id") Long id) + { + return success(reportUserProdService.selectReportUserProdById(id)); + } + + /** + * 新增员工产量 + */ +// @PreAuthorize("@ss.hasPermi('yh:reportUserProd:add')") +// @Log(title = "新增员工产量", businessType = BusinessType.INSERT) +// @PostMapping +// public AjaxResult add(@RequestBody ReportUserProd reportUserProd) +// { +// return toAjax(reportUserProdService.insertReportUserProd(reportUserProd)); +// } +// +// /** +// * 修改员工产量 +// */ +// @PreAuthorize("@ss.hasPermi('yh:reportUserProd:edit')") +// @Log(title = "修改员工产量", businessType = BusinessType.UPDATE) +// @PutMapping +// public AjaxResult edit(@RequestBody ReportUserProd reportUserProd) +// { +// return toAjax(reportUserProdService.updateReportUserProd(reportUserProd)); +// } +// +// /** +// * 删除员工产量 +// */ +// @PreAuthorize("@ss.hasPermi('yh:reportUserProd:remove')") +// @Log(title = "删除员工产量", businessType = BusinessType.DELETE) +// @DeleteMapping("/{ids}") +// public AjaxResult remove(@PathVariable Long[] ids) +// { +// return toAjax(reportUserProdService.deleteReportUserProdByIds(ids)); +// } +} diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/domain/ReportUserProd.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/domain/ReportUserProd.java new file mode 100644 index 0000000..e697097 --- /dev/null +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/domain/ReportUserProd.java @@ -0,0 +1,36 @@ +package com.ruoyi.web.yh.reportUserProd.domain; + +import java.math.BigDecimal; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; +import com.ruoyi.common.annotation.Excel; +import com.ruoyi.common.core.domain.BaseEntity; + +/** + * 员工产量对象 bst_report_user_prod + * + * @author ruoyi + * @date 2024-11-02 + */ +@Data +public class ReportUserProd extends BaseEntity +{ + private static final long serialVersionUID = 1L; + + private Long id; + + @Excel(name = "总产量ID") + @ApiModelProperty("总产量ID") + private Long prodId; + + @Excel(name = "员工ID") + @ApiModelProperty("员工ID") + private Long userId; + + @Excel(name = "产量") + @ApiModelProperty("产量") + private BigDecimal num; + +} diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/domain/ReportUserProdQuery.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/domain/ReportUserProdQuery.java new file mode 100644 index 0000000..41cdeec --- /dev/null +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/domain/ReportUserProdQuery.java @@ -0,0 +1,18 @@ +package com.ruoyi.web.yh.reportUserProd.domain; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.util.List; + +/** + * @author wjh + * 2024/11/2 + */ +@Data +public class ReportUserProdQuery extends ReportUserProdVO { + + @ApiModelProperty("产量ID列表") + private List prodIds; + +} diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/domain/ReportUserProdVO.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/domain/ReportUserProdVO.java new file mode 100644 index 0000000..6cde00d --- /dev/null +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/domain/ReportUserProdVO.java @@ -0,0 +1,36 @@ +package com.ruoyi.web.yh.reportUserProd.domain; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.math.BigDecimal; +import java.time.LocalDate; + +/** + * @author wjh + * 2024/11/2 + */ +@Data +public class ReportUserProdVO extends ReportUserProd { + + @ApiModelProperty("用户名称") + private String userName; + + @ApiModelProperty("报表日期") + private LocalDate reportDate; + + @ApiModelProperty("报表状态") + private String reportStatus; + + @ApiModelProperty("工序名称") + private String priceName; + + @ApiModelProperty("工序单位") + private String priceUnit; + + @ApiModelProperty("工序单价") + private BigDecimal pricePrice; + + @ApiModelProperty("报表ID") + private Long reportId; +} diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/domain/bo/ReportUserProdBO.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/domain/bo/ReportUserProdBO.java new file mode 100644 index 0000000..e37d579 --- /dev/null +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/domain/bo/ReportUserProdBO.java @@ -0,0 +1,12 @@ +package com.ruoyi.web.yh.reportUserProd.domain.bo; + +import com.ruoyi.web.yh.reportUserProd.domain.ReportUserProd; +import lombok.Data; + +/** + * @author wjh + * 2024/11/2 + */ +@Data +public class ReportUserProdBO extends ReportUserProd { +} diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/mapper/ReportUserProdMapper.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/mapper/ReportUserProdMapper.java new file mode 100644 index 0000000..67cf114 --- /dev/null +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/mapper/ReportUserProdMapper.java @@ -0,0 +1,80 @@ +package com.ruoyi.web.yh.reportUserProd.mapper; + +import java.util.List; +import com.ruoyi.web.yh.reportUserProd.domain.ReportUserProd; +import com.ruoyi.web.yh.reportUserProd.domain.ReportUserProdVO; +import com.ruoyi.web.yh.reportUserProd.domain.ReportUserProdQuery; +import com.ruoyi.web.yh.reportUserProd.domain.bo.ReportUserProdBO; +import org.apache.ibatis.annotations.Param; + +/** + * 员工产量Mapper接口 + * + * @author ruoyi + * @date 2024-11-02 + */ +public interface ReportUserProdMapper +{ + /** + * 查询员工产量 + * + * @param id 员工产量主键 + * @return 员工产量 + */ + public ReportUserProdVO selectReportUserProdById(Long id); + + /** + * 查询员工产量列表 + * + * @param query 员工产量 + * @return 员工产量集合 + */ + public List selectReportUserProdList(@Param("query")ReportUserProdQuery query); + + /** + * 新增员工产量 + * + * @param reportUserProd 员工产量 + * @return 结果 + */ + public int insertReportUserProd(ReportUserProd reportUserProd); + + /** + * 修改员工产量 + * + * @param reportUserProd 员工产量 + * @return 结果 + */ + public int updateReportUserProd(@Param("data") ReportUserProd reportUserProd); + + /** + * 删除员工产量 + * + * @param id 员工产量主键 + * @return 结果 + */ + public int deleteReportUserProdById(Long id); + + /** + * 批量删除员工产量 + * + * @param ids 需要删除的数据主键集合 + * @return 结果 + */ + public int deleteReportUserProdByIds(Long[] ids); + + /** + * 批量新增 + */ + int batchInsert(@Param("list") List list); + + /** + * 批量更新 + */ + int batchUpdate(@Param("list") List list); + + /** + * 批量逻辑删除 + */ + int batchLogicDel(@Param("ids") List ids); +} diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/mapper/ReportUserProdMapper.xml b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/mapper/ReportUserProdMapper.xml new file mode 100644 index 0000000..002e7e5 --- /dev/null +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/mapper/ReportUserProdMapper.xml @@ -0,0 +1,182 @@ + + + + + + + + select + brup.id, + brup.prod_id, + brup.user_id, + brup.num, + brup.deleted, + su.nick_name as user_name, + brp.price_name as price_name, + brp.price_unit as price_unit, + brp.price_price as price_price, + brp.report_id as report_id, + br.report_date as report_date, + br.status as report_status + from bst_report_user_prod brup + left join sys_user su on su.user_id = brup.user_id + left join bst_report_prod brp on brp.id = brup.prod_id + left join bst_report br on br.report_id = brp.report_id + left join sys_dept sd on sd.dept_id = br.dept_id + + + + and brup.id = #{query.id} + and brup.prod_id = #{query.prodId} + and brup.user_id = #{query.userId} + and brp.report_id = #{query.reportId} + and brup.deleted = false + and brup.deleted = #{query.deleted} + + and brup.prod_id in + + #{item} + + + ${query.params.dataScope} + + + + + + + + insert into bst_report_user_prod + + prod_id, + user_id, + num, + deleted, + + + #{prodId}, + #{userId}, + #{num}, + #{deleted}, + + + + + insert into bst_report_user_prod ( + prod_id, + user_id, + num, + deleted + ) + values + + + #{i.prodId}, + default, + #{i.userId}, + default, + #{i.num}, + default, + #{i.deleted}, + default, + + + + + + update bst_report_user_prod + + + + where id = #{data.id} + + + + prod_id = #{data.prodId}, + user_id = #{data.userId}, + num = #{data.num}, + deleted = #{data.deleted}, + + + + update bst_report_user_prod + + + + + WHEN #{item.id} THEN #{item.prodId} + + + WHEN #{item.id} THEN `prod_id` + + + + + + + WHEN #{item.id} THEN #{item.userId} + + + WHEN #{item.id} THEN `user_id` + + + + + + + WHEN #{item.id} THEN #{item.num} + + + WHEN #{item.id} THEN `num` + + + + + + + WHEN #{item.id} THEN #{item.deleted} + + + WHEN #{item.id} THEN `deleted` + + + + + where id in + + #{item.id} + + + + + + update bst_report_user_prod + set deleted = 1 + where id in + + #{item} + + + + + + delete from bst_report_user_prod where id = #{id} + + + + delete from bst_report_user_prod where id in + + #{id} + + + diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/service/ReportUserProdAssembler.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/service/ReportUserProdAssembler.java new file mode 100644 index 0000000..fcf668d --- /dev/null +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/service/ReportUserProdAssembler.java @@ -0,0 +1,17 @@ +package com.ruoyi.web.yh.reportUserProd.service; + +import com.ruoyi.web.yh.reportProd.domain.ReportProdVO; + +import java.util.List; + +/** + * @author wjh + * 2024/11/2 + */ +public interface ReportUserProdAssembler { + + /** + * 拼接员工产量 + */ + void assembleUserProd(List list); +} diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/service/ReportUserProdConverter.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/service/ReportUserProdConverter.java new file mode 100644 index 0000000..0d9d5df --- /dev/null +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/service/ReportUserProdConverter.java @@ -0,0 +1,23 @@ +package com.ruoyi.web.yh.reportUserProd.service; + +import com.ruoyi.web.yh.reportUserProd.domain.ReportUserProdVO; +import com.ruoyi.web.yh.reportUserProd.domain.bo.ReportUserProdBO; + +/** + * @author wjh + * 2024/11/2 + */ +public interface ReportUserProdConverter { + + /** + * 新增时,vo转bo + * @param vo + * @return + */ + ReportUserProdBO toBoByCreate(ReportUserProdVO vo); + + /** + * 更新时,vo转bo + */ + ReportUserProdBO toBoByUpdate(ReportUserProdVO vo); +} diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/service/ReportUserProdService.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/service/ReportUserProdService.java new file mode 100644 index 0000000..159179e --- /dev/null +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/service/ReportUserProdService.java @@ -0,0 +1,88 @@ +package com.ruoyi.web.yh.reportUserProd.service; + +import java.util.List; +import com.ruoyi.web.yh.reportUserProd.domain.ReportUserProd; +import com.ruoyi.web.yh.reportUserProd.domain.ReportUserProdVO; +import com.ruoyi.web.yh.reportUserProd.domain.ReportUserProdQuery; + +/** + * 员工产量Service接口 + * + * @author ruoyi + * @date 2024-11-02 + */ +public interface ReportUserProdService +{ + /** + * 查询员工产量 + * + * @param id 员工产量主键 + * @return 员工产量 + */ + public ReportUserProdVO selectReportUserProdById(Long id); + + /** + * 查询员工产量列表 + * + * @param reportUserProd 员工产量 + * @return 员工产量集合 + */ + public List selectReportUserProdList(ReportUserProdQuery reportUserProd); + + /** + * 新增员工产量 + * + * @param reportUserProd 员工产量 + * @return 结果 + */ + public int insertReportUserProd(ReportUserProd reportUserProd); + + /** + * 修改员工产量 + * + * @param reportUserProd 员工产量 + * @return 结果 + */ + public int updateReportUserProd(ReportUserProd reportUserProd); + + /** + * 批量删除员工产量 + * + * @param ids 需要删除的员工产量主键集合 + * @return 结果 + */ + public int deleteReportUserProdByIds(Long[] ids); + + /** + * 删除员工产量信息 + * + * @param id 员工产量主键 + * @return 结果 + */ + public int deleteReportUserProdById(Long id); + + /** + * 批量新增 + * @param list + * @return + */ + int batchInsert(List list); + + /** + * 根据报表ID查询列表 + * + * @param reportId + * @return + */ + List selectListByReportId(Long reportId); + + /** + * 批量更新 + */ + int batchUpdate(List list); + + /** + * 批量删除 + */ + int batchLogicDel(List list); +} diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/service/impl/ReportUserProdAssemblerImpl.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/service/impl/ReportUserProdAssemblerImpl.java new file mode 100644 index 0000000..65e0dbe --- /dev/null +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/service/impl/ReportUserProdAssemblerImpl.java @@ -0,0 +1,48 @@ +package com.ruoyi.web.yh.reportUserProd.service.impl; + +import com.ruoyi.common.utils.collection.CollectionUtils; +import com.ruoyi.web.yh.reportProd.domain.ReportProdVO; +import com.ruoyi.web.yh.reportUserProd.domain.ReportUserProdQuery; +import com.ruoyi.web.yh.reportUserProd.domain.ReportUserProdVO; +import com.ruoyi.web.yh.reportUserProd.service.ReportUserProdAssembler; +import com.ruoyi.web.yh.reportUserProd.service.ReportUserProdService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.ArrayList; +import java.util.List; +import java.util.Map; +import java.util.stream.Collectors; + +/** + * @author wjh + * 2024/11/2 + */ +@Service +public class ReportUserProdAssemblerImpl implements ReportUserProdAssembler { + + @Autowired + private ReportUserProdService reportUserProdService; + + @Override + public void assembleUserProd(List list) { + if (CollectionUtils.isEmptyElement(list)) { + return; + } + + ReportUserProdQuery query = new ReportUserProdQuery(); + query.setProdIds(CollectionUtils.map(list, ReportProdVO::getId)); + Map> group = reportUserProdService.selectReportUserProdList(query) + .stream().collect(Collectors.groupingBy(ReportUserProdVO::getProdId)); + + for (ReportProdVO prod : list) { + List userProdList = group.get(prod.getId()); + if (userProdList == null) { + prod.setUserProdList(new ArrayList<>()); + } else { + prod.setUserProdList(userProdList); + } + } + + } +} diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/service/impl/ReportUserProdConverterImpl.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/service/impl/ReportUserProdConverterImpl.java new file mode 100644 index 0000000..62b2059 --- /dev/null +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/service/impl/ReportUserProdConverterImpl.java @@ -0,0 +1,46 @@ +package com.ruoyi.web.yh.reportUserProd.service.impl; + +import com.ruoyi.web.yh.reportUserProd.domain.ReportUserProd; +import com.ruoyi.web.yh.reportUserProd.domain.ReportUserProdVO; +import com.ruoyi.web.yh.reportUserProd.domain.bo.ReportUserProdBO; +import com.ruoyi.web.yh.reportUserProd.service.ReportUserProdConverter; +import org.springframework.stereotype.Service; + +/** + * @author wjh + * 2024/11/2 + */ +@Service +public class ReportUserProdConverterImpl implements ReportUserProdConverter { + /** + * 新增时,vo转bo + * + * @param vo + * @return + */ + @Override + public ReportUserProdBO toBoByCreate(ReportUserProdVO vo) { + if (vo == null) { + return null; + } + + ReportUserProdBO bo = new ReportUserProdBO(); + bo.setUserId(vo.getUserId()); + bo.setNum(vo.getNum()); + return bo; + } + + @Override + public ReportUserProdBO toBoByUpdate(ReportUserProdVO vo) { + if (vo == null) { + return null; + } + + ReportUserProdBO bo = new ReportUserProdBO(); + bo.setId(vo.getId()); + bo.setProdId(vo.getProdId()); + bo.setUserId(vo.getUserId()); + bo.setNum(vo.getNum()); + return bo; + } +} diff --git a/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/service/impl/ReportUserProdServiceImpl.java b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/service/impl/ReportUserProdServiceImpl.java new file mode 100644 index 0000000..251980a --- /dev/null +++ b/ruoyi-web/src/main/java/com/ruoyi/web/yh/reportUserProd/service/impl/ReportUserProdServiceImpl.java @@ -0,0 +1,134 @@ +package com.ruoyi.web.yh.reportUserProd.service.impl; + +import java.util.Collections; +import java.util.List; +import java.util.stream.Collectors; + +import com.ruoyi.common.utils.collection.CollectionUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import com.ruoyi.web.yh.reportUserProd.mapper.ReportUserProdMapper; +import com.ruoyi.web.yh.reportUserProd.domain.ReportUserProd; +import com.ruoyi.web.yh.reportUserProd.domain.ReportUserProdVO; +import com.ruoyi.web.yh.reportUserProd.domain.ReportUserProdQuery; +import com.ruoyi.web.yh.reportUserProd.service.ReportUserProdService; + +/** + * 员工产量Service业务层处理 + * + * @author ruoyi + * @date 2024-11-02 + */ +@Service +public class ReportUserProdServiceImpl implements ReportUserProdService +{ + @Autowired + private ReportUserProdMapper reportUserProdMapper; + + /** + * 查询员工产量 + * + * @param id 员工产量主键 + * @return 员工产量 + */ + @Override + public ReportUserProdVO selectReportUserProdById(Long id) + { + return reportUserProdMapper.selectReportUserProdById(id); + } + + /** + * 查询员工产量列表 + * + * @param reportUserProd 员工产量 + * @return 员工产量 + */ + @Override + public List selectReportUserProdList(ReportUserProdQuery reportUserProd) + { + return reportUserProdMapper.selectReportUserProdList(reportUserProd); + } + + /** + * 新增员工产量 + * + * @param reportUserProd 员工产量 + * @return 结果 + */ + @Override + public int insertReportUserProd(ReportUserProd reportUserProd) + { + return reportUserProdMapper.insertReportUserProd(reportUserProd); + } + + /** + * 修改员工产量 + * + * @param reportUserProd 员工产量 + * @return 结果 + */ + @Override + public int updateReportUserProd(ReportUserProd reportUserProd) + { + return reportUserProdMapper.updateReportUserProd(reportUserProd); + } + + /** + * 批量删除员工产量 + * + * @param ids 需要删除的员工产量主键 + * @return 结果 + */ + @Override + public int deleteReportUserProdByIds(Long[] ids) + { + return reportUserProdMapper.deleteReportUserProdByIds(ids); + } + + /** + * 删除员工产量信息 + * + * @param id 员工产量主键 + * @return 结果 + */ + @Override + public int deleteReportUserProdById(Long id) + { + return reportUserProdMapper.deleteReportUserProdById(id); + } + + @Override + public int batchInsert(List list) { + if (CollectionUtils.isEmptyElement(list)) { + return 0; + } + return reportUserProdMapper.batchInsert(list); + } + + @Override + public List selectListByReportId(Long reportId) { + if (reportId == null) { + return Collections.emptyList(); + } + ReportUserProdQuery query = new ReportUserProdQuery(); + query.setReportId(reportId); + return reportUserProdMapper.selectReportUserProdList(query); + } + + @Override + public int batchUpdate(List list) { + if (CollectionUtils.isEmptyElement(list)) { + return 0; + } + return reportUserProdMapper.batchUpdate(list); + } + + @Override + public int batchLogicDel(List list) { + if (CollectionUtils.isEmptyElement(list)) { + return 0; + } + List ids = list.stream().map(ReportUserProd::getId).collect(Collectors.toList()); + return reportUserProdMapper.batchLogicDel(ids); + } +}