|
@@ -557,6 +557,12 @@ public class PerformanceServiceImpl2 extends ServiceImpl<PerformanceMapper, Perf
|
|
|
// continue;
|
|
|
//}
|
|
|
|
|
|
+ //判断是否是北京的部门负责的项目,如果不是的话跳出
|
|
|
+ String orgCode = userEfficientVideoMapMapper.getOrgCodeByProjectId(projectDTO.getProjectId());
|
|
|
+ if (!orgCode.startsWith("A01")) {
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+
|
|
|
BigDecimal quarterCost = userEfficientVideoMapMapper.getProjectQuarterCostById(startTime, endTime, projectDTO.getProjectId());
|
|
|
List<UserDto2> planeList = userEfficientVideoMapMapper.getPlaneByProjectId(projectDTO.getProjectId());
|
|
|
//此项目当中平面数量
|
|
@@ -879,6 +885,12 @@ public class PerformanceServiceImpl2 extends ServiceImpl<PerformanceMapper, Perf
|
|
|
|
|
|
//循环project
|
|
|
for (ProjectDTO projectDTO : projectDTOS) {
|
|
|
+ //判断是否是北京的部门负责的项目,如果不是的话跳出
|
|
|
+ String orgCode = userEfficientVideoMapMapper.getOrgCodeByProjectId(projectDTO.getProjectId());
|
|
|
+ if (!orgCode.startsWith("A01")) {
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+
|
|
|
BigDecimal quarterCost = userEfficientVideoMapMapper.getProjectQuarterCostById(startTime, endTime, projectDTO.getProjectId());
|
|
|
List<UserDto2> planeList = userEfficientVideoMapMapper.getPlaneByProjectId(projectDTO.getProjectId());
|
|
|
//此项目当中平面数量
|