|
@@ -9,6 +9,7 @@ import com.ims.eval.cache.CacheContext;
|
|
|
import com.ims.eval.config.CustomException;
|
|
|
import com.ims.eval.entity.*;
|
|
|
import com.ims.eval.dao.EvaluateReportMapper;
|
|
|
+import com.ims.eval.entity.dto.response.EvaluateReportInfoResDTO;
|
|
|
import com.ims.eval.entity.dto.response.EvaluateRuleInfoResDTO;
|
|
|
import com.ims.eval.service.*;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
@@ -56,6 +57,9 @@ public class EvaluateReportServiceImpl extends ServiceImpl<EvaluateReportMapper,
|
|
|
private CacheContext cache;
|
|
|
|
|
|
@Autowired
|
|
|
+ private IEvaluationPortalService evaluationPortalService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
private IYearOperatingCoefficientService yearOperatingCoefficientService;
|
|
|
|
|
|
|
|
@@ -66,183 +70,8 @@ public class EvaluateReportServiceImpl extends ServiceImpl<EvaluateReportMapper,
|
|
|
//业务阶综合展示
|
|
|
|
|
|
|
|
|
- public boolean generateEvaluateReport1(String organizationEvaluationId, boolean backroll) {
|
|
|
-
|
|
|
-
|
|
|
- //业务ai扮酷
|
|
|
- List<BinSection> sections = CacheContext.bsnList;
|
|
|
-
|
|
|
- EvaluateReport evaluateReport = new EvaluateReport();
|
|
|
- OrganizationEvaluation evaluation = organizationEvaluationService.getById(organizationEvaluationId);
|
|
|
- if (null == evaluation) {
|
|
|
- throw new CustomException("没有此靠考评");
|
|
|
- }
|
|
|
-
|
|
|
- //获取到对应组织考评规则
|
|
|
- String evaluationRuleId = evaluation.getOrganizationEvaluationRuleId();
|
|
|
- if (null == evaluationRuleId || evaluationRuleId.length() <= 0) {
|
|
|
- throw new CustomException("组织考评id为空");
|
|
|
- }
|
|
|
-
|
|
|
- String month = "";
|
|
|
- //获取单位配置规则
|
|
|
- List<String> evaluationRuleIds = Arrays.asList(evaluationRuleId.split(","));
|
|
|
- for (BinSection bi : sections) {
|
|
|
-
|
|
|
- StringBuilder reportName = new StringBuilder();
|
|
|
- if ("NDKP".equals(evaluation.getCheckCycle())) {
|
|
|
- reportName.append("年度-");
|
|
|
- month = "";
|
|
|
- evaluateReport.setMonth("-");
|
|
|
- }
|
|
|
- if ("JDKP".equals(evaluation.getCheckCycle())) {
|
|
|
- reportName.append("季度-");
|
|
|
- evaluateReport.setMonth(evaluation.getMonth());
|
|
|
-
|
|
|
- }
|
|
|
- if ("YDKP".equals(evaluation.getCheckCycle())) {
|
|
|
- reportName.append("月度-");
|
|
|
- month = evaluation.getMonth();
|
|
|
- evaluateReport.setMonth(evaluation.getMonth());
|
|
|
- }
|
|
|
- reportName.append(bi.getSectionName());
|
|
|
- if ("DWKP".equals(evaluation.getOrganizationType())) {
|
|
|
- reportName.append("单位");
|
|
|
- }
|
|
|
- if ("BNMKP".equals(evaluation.getOrganizationType())) {
|
|
|
- reportName.append("部门");
|
|
|
- }
|
|
|
- reportName.append("综合考核评分汇总表");
|
|
|
-
|
|
|
- evaluateReport.setEvaluateReportName(reportName.toString());
|
|
|
- evaluateReport.setOrganizationEvaluationId(evaluation.getId());
|
|
|
- evaluateReport.setBinSection(bi.getId());
|
|
|
- evaluateReport.setBinSectionName(bi.getSectionName());
|
|
|
- evaluateReport.setOrganizationType(evaluation.getOrganizationType());
|
|
|
- evaluateReport.setCheckCycle(evaluation.getCheckCycle());
|
|
|
- evaluateReport.setYear(evaluation.getYear());
|
|
|
-
|
|
|
- evaluateReport.setCreateTime(new Date());
|
|
|
- evaluateReport.setCreateBy("");//人员
|
|
|
-
|
|
|
- List<EvaluateReport> oriReports = list(evaluation.getId(), bi.getId());
|
|
|
- if (oriReports.size() > 0 && !backroll) {
|
|
|
- throw new CustomException("综合考核评分汇总已生成");
|
|
|
- } else {
|
|
|
- for (EvaluateReport r : oriReports) {
|
|
|
- boolean b = super.removeById(r.getId());
|
|
|
- if (!b) {
|
|
|
- throw new CustomException("综合考核评分汇总重算失败");
|
|
|
- }
|
|
|
- List<EvaluateReportInfo> infolist = evaluateReportInfoService.listByReportId(r.getId());
|
|
|
- if (null != infolist && infolist.size() > 0) {
|
|
|
- List<String> infolistIds = infolist.stream().map(EvaluateReportInfo::getId).collect(Collectors.toList());
|
|
|
- b = evaluateReportInfoService.removeByIds(infolistIds);
|
|
|
- if (!b) {
|
|
|
- throw new CustomException("综合考核评分汇总重算失败");
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- boolean b = super.saveOrUpdate(evaluateReport);
|
|
|
-
|
|
|
- if (!b) {
|
|
|
- throw new CustomException("综合考核评分汇总表存储失败");
|
|
|
- }
|
|
|
-
|
|
|
- List<OrganizationEvaluationRule> ruleList = organizationEvaluationRuleService.getOrganizationEvaluationRuleByIds(evaluationRuleIds, bi.getId());
|
|
|
- //各板块明细存储
|
|
|
- List<EvaluateReportInfo> evaluateRuleInfoList = new ArrayList<>();
|
|
|
- for (OrganizationEvaluationRule rule : ruleList) {
|
|
|
-
|
|
|
- StringBuilder remark = new StringBuilder();
|
|
|
- //生产95%基建5%前期0%
|
|
|
- remark.append("生产").append(rule.getScjyWeight() * 100).append("%");
|
|
|
- remark.append("基建").append(rule.getJjWeight() * 100).append("%");
|
|
|
- remark.append("前期").append(rule.getQqWeight() * 100).append("%");
|
|
|
|
|
|
-
|
|
|
- //存储多块牌子数据
|
|
|
- List<MultipleBrand> brands = multipleBrandService.getMultipleBranList2(rule.getOrganizationId(), "0", bi.getId(), evaluation.getCheckCycle(), evaluation.getYear(), month);
|
|
|
-
|
|
|
- Double totalProfit = 0.00;//累加收入
|
|
|
- Double spMultiply = 0.00;//收入
|
|
|
- Double score;//分数
|
|
|
- if (null != brands && brands.size() > 0) {
|
|
|
- for (MultipleBrand mb : brands) {
|
|
|
- //累加收入
|
|
|
- totalProfit = totalProfit + mb.getProfit();
|
|
|
- //累加收入和分数的积
|
|
|
- spMultiply = spMultiply + mb.getProfit() * mb.getScore();
|
|
|
-
|
|
|
- List<MultipleBrand> parentBrands = multipleBrandService.getMultipleBranList2("", mb.getOrganizationId(), bi.getId(), evaluation.getCheckCycle(), evaluation.getYear(), month);
|
|
|
- for (MultipleBrand pb : parentBrands) {
|
|
|
- //累加收入
|
|
|
- totalProfit = totalProfit + pb.getProfit();
|
|
|
- spMultiply = spMultiply + mb.getProfit() * mb.getScore();
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
- score = spMultiply / totalProfit;
|
|
|
- } else {
|
|
|
- List<String> evaluateRuleIds = Arrays.asList(rule.getEvaluateRuleId().split(","));
|
|
|
- List<EvaluateRuleInfoResDTO> evaluateRuleList = evaluateRuleService.getListInIdsInfos(evaluateRuleIds, bi.getId(), "");
|
|
|
- List<String> indicatorIds = evaluateRuleList.stream().map(EvaluateRuleInfoResDTO::getIndicatorId).collect(Collectors.toList());
|
|
|
- List<EvaluationScoreCount> scoreCount = evaluationScoreCountService.getEvaluationScoreCountList(organizationEvaluationId, rule.getId(), indicatorIds);
|
|
|
- score = scoreCount.stream().mapToDouble(EvaluationScoreCount::getScore).sum();
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- EvaluateReportInfo reportInfo = new EvaluateReportInfo();
|
|
|
- reportInfo.setEvaluateReportId(evaluateReport.getId());
|
|
|
- reportInfo.setOrganizationId(rule.getOrganizationId());
|
|
|
- reportInfo.setOrganizationName(rule.getOrganizationName());
|
|
|
-
|
|
|
- List<EvaluationScoreCount> scoreCount = evaluationScoreCountService.getEvaluationScoreCountList(organizationEvaluationId, rule.getId(), null, null);
|
|
|
- score = scoreCount.stream().mapToDouble(EvaluationScoreCount::getScore).sum();
|
|
|
-
|
|
|
- reportInfo.setScore(DoubleUtils.keepPrecision(score, 2));
|
|
|
- reportInfo.setDiscountScore(1.0);
|
|
|
- reportInfo.setRemark(remark.toString());
|
|
|
- evaluateRuleInfoList.add(reportInfo);
|
|
|
-
|
|
|
- //加分项
|
|
|
- EvaluateReportInfo addInfo = new EvaluateReportInfo();
|
|
|
- addInfo.setEvaluateReportId(evaluateReport.getId());
|
|
|
- addInfo.setOrganizationId(rule.getOrganizationId());
|
|
|
- addInfo.setOrganizationName(rule.getOrganizationName());
|
|
|
- addInfo.setScore(DoubleUtils.keepPrecision(score, 2));
|
|
|
- addInfo.setDiscountScore(1.0);
|
|
|
- addInfo.setRemark(remark.toString());
|
|
|
- evaluateRuleInfoList.add(addInfo);
|
|
|
- //减分项
|
|
|
- EvaluateReportInfo subInfo = new EvaluateReportInfo();
|
|
|
- subInfo.setEvaluateReportId(evaluateReport.getId());
|
|
|
- subInfo.setOrganizationId(rule.getOrganizationId());
|
|
|
- subInfo.setOrganizationName(rule.getOrganizationName());
|
|
|
- subInfo.setScore(DoubleUtils.keepPrecision(score, 2));
|
|
|
- subInfo.setDiscountScore(1.0);
|
|
|
- subInfo.setRemark(remark.toString());
|
|
|
- evaluateRuleInfoList.add(subInfo);
|
|
|
-
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- for (EvaluateReportInfo info : evaluateRuleInfoList) {
|
|
|
- b = evaluateReportInfoService.saveOrUpdate(info);
|
|
|
- if (!b) {
|
|
|
- throw new CustomException("综合考核评分汇总明细存储失败");
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- return true;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-// @Transactional
|
|
|
+ @Transactional
|
|
|
@Override
|
|
|
public boolean generateEvaluateReport(String organizationEvaluationId, boolean backroll) {
|
|
|
|
|
@@ -265,7 +94,6 @@ public class EvaluateReportServiceImpl extends ServiceImpl<EvaluateReportMapper,
|
|
|
for (BinSection bi : sections) {
|
|
|
|
|
|
|
|
|
-
|
|
|
EvaluateReport evaluateReport = new EvaluateReport();
|
|
|
StringBuilder reportName = new StringBuilder();
|
|
|
if ("NDKP".equals(evaluation.getCheckCycle())) {
|
|
@@ -277,11 +105,14 @@ public class EvaluateReportServiceImpl extends ServiceImpl<EvaluateReportMapper,
|
|
|
evaluateReport.setMonth("-");
|
|
|
}
|
|
|
if ("JDKP".equals(evaluation.getCheckCycle())) {
|
|
|
- if("FD".equals(bi.getSectionCode()) || "GD".equals(bi.getSectionCode())){
|
|
|
- continue;
|
|
|
- }
|
|
|
reportName.append("季度-");
|
|
|
evaluateReport.setMonth(evaluation.getMonth());
|
|
|
+ if("XNYFG".equals(bi.getSectionCode()) || "ZHZC".equals(bi.getSectionCode())||
|
|
|
+ "GCGS".equals(bi.getSectionCode()) || "TJGS".equals(bi.getSectionCode())||
|
|
|
+ "QQ".equals(bi.getSectionCode()) || "JJ".equals(bi.getSectionCode())||
|
|
|
+ "GD".equals(bi.getSectionCode())){
|
|
|
+ continue;
|
|
|
+ }
|
|
|
|
|
|
}
|
|
|
if ("YDKP".equals(evaluation.getCheckCycle())) {
|
|
@@ -319,9 +150,11 @@ public class EvaluateReportServiceImpl extends ServiceImpl<EvaluateReportMapper,
|
|
|
for(EvaluateReport er : oriReports){
|
|
|
List<EvaluateReportInfo> rlist = evaluateReportInfoService.listByReportId(er.getId());
|
|
|
|
|
|
- boolean rlistb = evaluateReportInfoService.removeByIds(rlist.stream().map(EvaluateReportInfo::getId).collect(Collectors.toList()));
|
|
|
- if (!rlistb) {
|
|
|
- throw new CustomException("综合考核评分汇总计算失败");
|
|
|
+ if(null !=rlist && rlist.size()>0){
|
|
|
+ boolean rlistb = evaluateReportInfoService.removeByIds(rlist.stream().map(EvaluateReportInfo::getId).collect(Collectors.toList()));
|
|
|
+ if (!rlistb) {
|
|
|
+ throw new CustomException("综合考核评分汇总计算失败");
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
boolean oriReportsb = this.removeByIds(oriReports.stream().map(EvaluateReport::getId).collect(Collectors.toList()));
|
|
@@ -391,6 +224,7 @@ public class EvaluateReportServiceImpl extends ServiceImpl<EvaluateReportMapper,
|
|
|
scjyScore = spMultiply / totalProfit;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
EvaluateReportInfo reportInfo = new EvaluateReportInfo();
|
|
|
reportInfo.setEvaluateReportId(evaluateReport.getId());
|
|
|
reportInfo.setOrganizationId(rule.getOrganizationId());
|
|
@@ -506,6 +340,14 @@ public class EvaluateReportServiceImpl extends ServiceImpl<EvaluateReportMapper,
|
|
|
return list;
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public List<EvaluateReportInfoResDTO> list(String organizationEvaluationId, String binSection, String checkCycle, String year, String month) {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
}
|
|
|
|