|
|
@@ -383,7 +383,9 @@ public class InvAccountIncoiceServiceImpl extends ServiceImpl<InvAccountIncoiceM
|
|
|
}
|
|
|
});
|
|
|
|
|
|
- matchBusinessQuality(invAccountIncoices);
|
|
|
+ if (!StringUtils.isNullOrEmpty(invAccountIncoices) && invAccountIncoices.size() > 0) {
|
|
|
+ matchBusinessQuality(invAccountIncoices);
|
|
|
+ }
|
|
|
|
|
|
File folder = new File(uploadFilePath);
|
|
|
if (folder.exists()) {
|
|
|
@@ -459,7 +461,9 @@ public class InvAccountIncoiceServiceImpl extends ServiceImpl<InvAccountIncoiceM
|
|
|
lambdaQuery.orderByDesc(InvAccountIncoice::getInvoiceTime);
|
|
|
|
|
|
Page<InvAccountIncoice> invAccountIncoicePage = page(page, lambdaQuery);
|
|
|
- invAccountIncoicePage.setRecords(matchBusinessQuality(invAccountIncoicePage.getRecords()));
|
|
|
+ if (!StringUtils.isNullOrEmpty(invAccountIncoicePage.getRecords()) && invAccountIncoicePage.getRecords().size() > 0) {
|
|
|
+ invAccountIncoicePage.setRecords(matchBusinessQuality(invAccountIncoicePage.getRecords()));
|
|
|
+ }
|
|
|
/**
|
|
|
* 合计
|
|
|
*/
|