|
@ -37,6 +37,7 @@ import java.util.stream.Collectors; |
|
|
public class BirBaseActivityServiceImpl extends ServiceImpl<BirBaseActivityMapper,BirBaseActivity> implements BirBaseActivityService { |
|
|
public class BirBaseActivityServiceImpl extends ServiceImpl<BirBaseActivityMapper,BirBaseActivity> implements BirBaseActivityService { |
|
|
|
|
|
|
|
|
private final TbsCostApplyMapper costApplyMapper; |
|
|
private final TbsCostApplyMapper costApplyMapper; |
|
|
|
|
|
private final TbsActivityMapper tbsActivityMapper; |
|
|
|
|
|
|
|
|
@Override |
|
|
@Override |
|
|
public void buildReport(int year, int month) { |
|
|
public void buildReport(int year, int month) { |
|
@ -62,6 +63,10 @@ public class BirBaseActivityServiceImpl extends ServiceImpl<BirBaseActivityMappe |
|
|
costApplyLqw.in(TbsCostApply::getId,costIds); |
|
|
costApplyLqw.in(TbsCostApply::getId,costIds); |
|
|
List<TbsCostApply> costApplyList = costApplyMapper.selectList(costApplyLqw); |
|
|
List<TbsCostApply> costApplyList = costApplyMapper.selectList(costApplyLqw); |
|
|
|
|
|
|
|
|
|
|
|
LambdaQueryWrapper<TbsActivity> activityLqw = new LambdaQueryWrapper<>(); |
|
|
|
|
|
activityLqw.in(TbsActivity::getId,ids); |
|
|
|
|
|
activityList = tbsActivityMapper.selectList(activityLqw); |
|
|
|
|
|
|
|
|
List<BirBaseActivity> birBaseActivities = new ArrayList<>(); |
|
|
List<BirBaseActivity> birBaseActivities = new ArrayList<>(); |
|
|
for (TbsActivity activity : activityList) { |
|
|
for (TbsActivity activity : activityList) { |
|
|
|
|
|
|
|
|