From 30444849807ba6c2afedf4c3f51d6c844cc9c0af Mon Sep 17 00:00:00 2001 From: Rogan Hamby Date: Tue, 5 May 2020 15:17:01 -0400 Subject: [PATCH] add some new koha reports --- kmig.d/xml/stock_reports.xml | 26 +++++++++++++++++++++++++- 1 files changed, 25 insertions(+), 1 deletions(-) diff --git a/kmig.d/xml/stock_reports.xml b/kmig.d/xml/stock_reports.xml index d7edb71..e390d2e 100644 --- a/kmig.d/xml/stock_reports.xml +++ b/kmig.d/xml/stock_reports.xml @@ -1,5 +1,13 @@ - + + + total_borrowers + borrowers + 0 + Total Borrowers + Count + SELECT COUNT(*) FROM borrowers + borrower_counts @@ -45,6 +53,14 @@ + total_items_count + items + Total Items Count + Count + SELECT COUNT(*) FROM items; + + + items_by_type_ccode_branch items Items by Item Type and Collection Code By Branch @@ -69,6 +85,14 @@ + total_circs + circs + Migrated Circulations + Count + SELECT COUNT(*) FROM issues + + + circs_by_due_date circs Migrated Circulations with Due Dates -- 1.7.2.5