|
@@ -468,4 +468,15 @@ public class BizCollectionController extends BaseController {
|
|
|
List<BizAccount> list = accountService.getList(bizAccount);
|
|
|
return getDataTable(list);
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation("收款统计报表")
|
|
|
+ @PostMapping("/statistics")
|
|
|
+// @PreAuthorize("@ss.hasPermi('business:collection:statistics')")
|
|
|
+ public TableDataInfo statistics(@RequestBody BizCollection collection) throws NoSuchFieldException, IllegalAccessException {
|
|
|
+ setTenantId(collection);
|
|
|
+ startPage();
|
|
|
+ List<?> list = collectionService.statistics(collection);
|
|
|
+ return getDataTable(list);
|
|
|
+ }
|
|
|
+
|
|
|
}
|