Browse Source

能力得分计算

master
sunyuchao 3 years ago
parent
commit
8f6fc3de25
  1. 6
      epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/service/evaluationindex/indexcoll/impl/ScreenPyHistoryScoreServiceImpl.java

6
epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/service/evaluationindex/indexcoll/impl/ScreenPyHistoryScoreServiceImpl.java

@ -97,9 +97,9 @@ public class ScreenPyHistoryScoreServiceImpl implements ScreenPyHistoryScoreServ
detailEntity.setCustomerId(formDTO.getCustomerId()); detailEntity.setCustomerId(formDTO.getCustomerId());
detailEntity.setHistoryScoreId(entity.getId()); detailEntity.setHistoryScoreId(entity.getId());
if (null != wcDTO) { if (null != wcDTO) {
BigDecimal nldf = detailEntity.getWghyd().multiply(wcDTO.getWghyd()).add(detailEntity.getWghyd().multiply(wcDTO.getWghyd())) BigDecimal nldf = detailEntity.getWghyd().multiply(wcDTO.getWghyd()).add(detailEntity.getSjff().multiply(wcDTO.getSjff()))
.add(detailEntity.getWghyd().multiply(wcDTO.getWghyd())).add(detailEntity.getWghyd().multiply(wcDTO.getWghyd())) .add(detailEntity.getXlgc().multiply(wcDTO.getXlgc())).add(detailEntity.getRhzt().multiply(wcDTO.getRhzt()))
.add(detailEntity.getWghyd().multiply(wcDTO.getWghyd())).add(detailEntity.getWghyd().multiply(wcDTO.getWghyd())); .add(detailEntity.getLdgz().multiply(wcDTO.getLdgz())).add(detailEntity.getQtgz().multiply(wcDTO.getQtgz()));
detailEntity.setNldf(nldf); detailEntity.setNldf(nldf);
} }
list.add(detailEntity); list.add(detailEntity);

Loading…
Cancel
Save