包头bug修改
This commit is contained in:
parent
fa302fa6e4
commit
797124f378
@ -247,6 +247,9 @@ public class MainProjectCompleteDetailServiceImpl extends ServiceImpl<MainProjec
|
||||
}
|
||||
|
||||
private boolean isLessOrEqual(MainProjectCompleteDetailVo o, Integer finalYear, Integer finalMonth, Integer finalWhichWeek) {
|
||||
if (o.getYear() == null || o.getMonth() ==null || finalYear == null || finalMonth == null) {
|
||||
return false;
|
||||
}
|
||||
return NumberUtil.isLessOrEqual(NumberUtil.add(o.getYear() * 1000, o.getMonth() * 10, o.getWhichWeek()), NumberUtil.add(finalYear * 1000, finalMonth * 10, finalWhichWeek));
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user