Commit a6f83334 authored by Quxl's avatar Quxl

x

parent 48abd8c4
......@@ -319,7 +319,7 @@ public class ReviewServiceImpl implements ReviewService {
Integer noReviewCount = 0;
for(Fc_review_record record : records) {
Integer review_state = record.getReview_state();
if(review_state == 0) {
if(review_state == 0 || review_state == null) {
noReviewCount ++;
} else {
map.put(review_state, map.get(review_state) == null ? 1 : (map.get(review_state) + 1));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment