From 33d96f7c632830ae8a0c0cc57e612e86cd12301a Mon Sep 17 00:00:00 2001 From: David Nind Date: Sat, 1 Feb 2025 02:07:28 +0000 Subject: [PATCH] Bug 36027: (follow-up) Update help text and error message This updates the help text and the error message when --check* and --skip* options are used in the same command. Signed-off-by: David Nind --- .../search_for_data_inconsistencies.pl | 56 +++++++++++-------- 1 file changed, 34 insertions(+), 22 deletions(-) diff --git a/misc/maintenance/search_for_data_inconsistencies.pl b/misc/maintenance/search_for_data_inconsistencies.pl index e9c385201a..bf3ca54f61 100755 --- a/misc/maintenance/search_for_data_inconsistencies.pl +++ b/misc/maintenance/search_for_data_inconsistencies.pl @@ -112,7 +112,7 @@ sub set_skip_options { # if a least one skip option is provided, print a warning my $has_skip_option = grep { $options{$_} == 1 } grep { /^skip-/ } keys %options; if ($has_skip_option) { - print("Warning : skip options are ignored when check options are provided\n"); + print("Warning: The --skip-* option(s) were ignored. Only the --check-* options in the command were run.\n"); } # Set all skip options to 0 @@ -727,40 +727,52 @@ sub new_hint { =head1 SYNOPSIS -search_for_data_inconsistencies.pl [options] + search_for_data_inconsistencies.pl [options] =head2 DESCRIPTION -Catch data inconsistencies in Koha database: - - * Items with undefined homebranch and/or holdingbranch - * Authorities with undefined authtypecodes/authority types - * Item types: - * if item types are defined at item level (item-level_itypes=specific item), - then items.itype must be set else biblioitems.itemtype must be set - * Item types defined in items or biblioitems must be defined in the itemtypes table + Identify data inconsistencies in the Koha database. Checks for: + * Items without a home or holding library + * Authority records with an invalid authority type + * Records and items without an item type, or an invalid item type: + - if item types are defined at an item level + (item-level_itypes=specific item), then items.itype must + be set else biblioitems.itemtype must be set + - Item types defined in items or biblioitems must be defined + in the item types table + * Invalid values in framework fields using authorized values * Bibliographic records without a title * Invalid MARCXML in bibliographic records - * Patrons with invalid category types due to lower and upper age limits + * Patrons with an invalid patron category type because of lower + and upper age limits * Relationships that form guarantor loops -* Any date fields in the database (timestamp, datetime, date) set to 0000-00-00 + * Any date fields in the database (timestamp, datetime, date) + set to 0000-00-00 =head2 OPTIONS - --check-branch Check for items without home or holding library - --check-auth Check for authority records with invalid authority type - --check-status Check for bibliographic records and items without an item type or with an invalid item type - --check-framework Check for invalid values in fields where the framework limits to an authorized value category + --check-branch Check for items without a home or holding library + --check-auth Check for authority records with an invalid authority type + --check-status Check for bibliographic records and items without + an item type or with an invalid item type + --check-framework Check for invalid values in fields where the framework + limits the values to an authorized value category --check-title Check for bibliographic records without a title - --check-age Check for patrons with invalid age for category + --check-age Check for patrons with an invalid age for the patron + category --check-loop Check for relationships that form guarantor loops --check-all Run all checks without specifying any other option - --skip-branch Skip checking for items without home or holding library - --skip-auth Skip checking for authority records with invalid authority type - --skip-status Skip checking for bibliographic records and items without an item type or with an invalid item type - --skip-framework Skip checking for invalid values in fields where the framework limits to an authorized value category + --skip-branch Skip checking for items without a home or holding + library + --skip-auth Skip checking for authority records with an invalid + authority type + --skip-status Skip checking for bibliographic records and items without + an item type or with an invalid item type + --skip-framework Skip checking for invalid values in fields where the + framework limits the values to an authorized value category --skip-title Skip checking for bibliographic records without a title - --skip-age Skip checking for patrons with invalid age for category + --skip-age Skip checking for patrons with an invalid age for the + patron category --skip-loop Skip checking for relationships that form guarantor loops --help Print usage information -- 2.39.5