fixed word error that resulted from copy and paste
[migration-tools.git] / mig-xml / evergreen_staged_report.xml
index 26ee65b..1a75e3e 100644 (file)
         <iteration>0</iteration>
         <heading>Collision List</heading>
         <query>SELECT ac.barcode FROM asset_copy_legacy ac WHERE ac.barcode ~* 'collision' ORDER BY 1 LIMIT 20</query>
-        <note>This is a shortlist of patron barcode collisions that maxes out at 20.  If there are more collisions we will need to run a custom report.</note>
+        <note>This is a shortlist of copy barcode collisions that maxes out at 20.  If there are more collisions we will need to run a custom report.</note>
     </report>
 
     <report>
@@ -646,7 +646,7 @@ id = ac_sc.owner GROUP BY 2,3 ORDER BY 2,3</query>
         <tag>bibs</tag>
         <iteration>1</iteration>
         <heading>Count</heading>
-        <query>SELECT COUNT(eg) FROM bib_id_map</query>
+        <query>SELECT COUNT(id) FROM biblio_record_entry_stage WHERE x_migrate = TRUE</query>
     </report>
 
     <report>
@@ -655,7 +655,7 @@ id = ac_sc.owner GROUP BY 2,3 ORDER BY 2,3</query>
         <tag>bibs</tag>
         <iteration>0</iteration>
         <heading>Count</heading>
-        <query>SELECT COUNT(eg) FROM bib_id_map where eg::INTEGER NOT IN (SELECT DISTINCT record FROM asset_call_number)</query>
+        <query>SELECT COUNT(id) FROM biblio_record_entry where id NOT IN (SELECT DISTINCT record FROM asset_call_number)</query>
     </report>
 
     <report>
@@ -1040,9 +1040,9 @@ id = ac_sc.owner GROUP BY 2,3 ORDER BY 2,3</query>
         <tag>dedupe</tag>
         <iteration>0</iteration>
         <report_title>Scoring and Bib Record Groups</report_title>
-        <heading>Count.Bib REcord Groups</heading>
+        <heading>Count.Bib Record Groups</heading>
         <query>SELECT COUNT(id), 'Total Bibs Being Evaluated' FROM biblio.record_entry WHERE deleted IS FALSE AND id IN (SELECT eg::BIGINT FROM bib_id_map)
-          UNION ALL SELECT (COUNT(DISTINCT incoming_bib), 'Incoming Bibs With Matches Found' FROM bib_matches
+          UNION ALL SELECT (COUNT(DISTINCT incoming_bib)), 'Incoming Bibs With Matches Found' FROM bib_matches
           UNION ALL SELECT (COUNT(bre.id) - (SELECT COUNT(DISTINCT incoming_bib) FROM bib_matches)), 'Incoming Bibs With No Match' 
                 FROM biblio.record_entry bre WHERE bre.deleted IS FALSE AND bre.id IN (SELECT eg::BIGINT FROM bib_id_map)
           UNION ALL SELECT COUNT(DISTINCT incoming_bib), 'Incoming Bibs Being Merged into Incumbent' FROM bib_matches WHERE incumbent_bib_score &gt;= incoming_bib_score
@@ -1083,5 +1083,38 @@ id = ac_sc.owner GROUP BY 2,3 ORDER BY 2,3</query>
         </query>
     </report>
 
+    <!-- NOTICES REPORTS -->
+
+    <report>
+        <name>notices_overview</name>
+        <tag>notices</tag>
+        <iteration>0</iteration>
+        <report_title>Overview of Notices for Migration</report_title>
+        <heading>ID.Active.Owner.Name.Delay.Validator.Reactor</heading>
+        <query>SELECT ed.id, ed.active, aou.shortname, LEFT(ed.name,25) || '...', ed.delay, ed.validator, ed.reactor 
+            FROM action_trigger.event_definition ed 
+            JOIN actor.org_unit aou ON aou.id = ed.owner 
+            WHERE ed.owner IN (SELECT DISTINCT home_ou FROM actor_usr)
+            OR ed.owner IN (SELECT DISTINCT parent_ou FROM actor.org_unit WHERE id in (SELECT DISTINCT home_ou FROM actor_usr));
+        </query>
+    </report>
+
+    <report>
+        <name>notices_count</name>
+        <tag>notices</tag>
+        <iteration>0</iteration>
+        <report_title>Count of Notices Run with State</report_title>
+        <heading>Count of Notices.State.ID.Owner.Name</heading>
+        <query>SELECT COUNT(ate.id), ate.state, ed.id, aou.shortname, LEFT(ed.name,25) || '...' 
+            FROM action_trigger.event_definition ed 
+            JOIN actor.org_unit aou ON aou.id = ed.owner 
+            JOIN action_trigger.event ate ON ate.event_def = ed.id 
+            WHERE ed.owner IN (SELECT DISTINCT home_ou FROM actor_usr)
+            OR ed.owner IN (SELECT DISTINCT parent_ou FROM actor.org_unit WHERE id in (SELECT DISTINCT home_ou FROM actor_usr))
+            GROUP BY 2,3,4;
+        </query>
+    </report>
+
+
 </reports_file>