|
|
@@ -95,7 +95,7 @@ public class ReportMeetDataServiceImpl extends ReportBaseServiceImpl implements
|
|
|
@Override
|
|
|
public IPage<?> getPayableStatisticsDetail(PayableStatisticsDetailParam param, String systemCode) {
|
|
|
log.info("财务数据-应付统计明细. param=[{}], systemCode=[{}]", JSONUtil.toJsonStr(param), systemCode);
|
|
|
- if (param == null || StrUtil.isBlank(param.getYearAndMonthTime())) {
|
|
|
+ if (param == null || StrUtil.isBlank(param.getYearMonth())) {
|
|
|
log.warn("查询年月为空,返回空列表");
|
|
|
return new Page<>(param.getPages(), param.getSize());
|
|
|
}
|
|
|
@@ -138,7 +138,7 @@ public class ReportMeetDataServiceImpl extends ReportBaseServiceImpl implements
|
|
|
@Override
|
|
|
public void exportPayableStatisticsDetail(PayableStatisticsDetailParam param, String systemCode) {
|
|
|
log.info("财务数据-应付统计明细导出Excel. param=[{}], systemCode=[{}]", JSONUtil.toJsonStr(param), systemCode);
|
|
|
- if (param == null || StrUtil.isBlank(param.getYearAndMonthTime())) {
|
|
|
+ if (param == null || StrUtil.isBlank(param.getYearMonth())) {
|
|
|
log.warn("查询年月为空,不导出");
|
|
|
return;
|
|
|
}
|