lyhzzz пре 1 година
родитељ
комит
2383367593

+ 1 - 1
src/main/java/com/fdkankan/manage/service/impl/FeedbackServiceImpl.java

@@ -132,7 +132,7 @@ public class FeedbackServiceImpl extends ServiceImpl<IFeedbackMapper, Feedback>
         List<FeedbackOption> options = feedbackOptionService.list();
 
         List<FeedbackOption> hardwareList = options.stream().filter(e -> e.getTypeId().equals(2)).collect(Collectors.toList());
-        List<FeedbackOption> softwareList = options.stream().filter(e -> e.getTypeId().equals(2)).collect(Collectors.toList());
+        List<FeedbackOption> softwareList = options.stream().filter(e -> e.getTypeId().equals(3)).collect(Collectors.toList());
 
         setScore(hardwareList,map);
         setScore(softwareList,map);