|
@@ -510,6 +510,9 @@ public class CwProjectReportService extends ServiceImpl<CwProjectReportMapper, C
|
|
|
return new Page<>();
|
|
|
}
|
|
|
}
|
|
|
+ if (ArrayUtil.isNotEmpty(projectReportData.getCreateDates())) {
|
|
|
+ queryWrapper.between("a.create_time", projectReportData.getCreateDates()[0], projectReportData.getCreateDates()[1]);
|
|
|
+ }
|
|
|
String isBmzr = "0";
|
|
|
StringBuilder officeIds = new StringBuilder();
|
|
|
UserDTO userDTO = SpringUtil.getBean ( IUserApi.class ).getByToken(TokenProvider.getCurrentToken ( ));
|