|
|
|
@ -171,7 +171,7 @@ public class KpiGridEntityServiceImpl extends BaseServiceImpl<KpiGridEntityDao, |
|
|
|
@Override |
|
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
|
public void update(KpiGridEntityDTO dto) { |
|
|
|
DecimalFormat df = new DecimalFormat("#.0"); |
|
|
|
DecimalFormat df = new DecimalFormat("#.##"); |
|
|
|
// 计算总分
|
|
|
|
String stationEstablishmentBorder = dto.getStationEstablishmentBorder(); |
|
|
|
String stationEstablishmentLayout = dto.getStationEstablishmentLayout(); |
|
|
|
@ -256,7 +256,7 @@ public class KpiGridEntityServiceImpl extends BaseServiceImpl<KpiGridEntityDao, |
|
|
|
*/ |
|
|
|
@Override |
|
|
|
public Result importManualScoreExcel(MultipartFile file) { |
|
|
|
DecimalFormat df = new DecimalFormat("#.0"); |
|
|
|
DecimalFormat df = new DecimalFormat("#.##"); |
|
|
|
File f = StreamUtils.conversionFile(file); |
|
|
|
try { |
|
|
|
//判断上传文件类型
|
|
|
|
|