X-Git-Url: http://git.equinoxoli.org/?p=migration-tools.git;a=blobdiff_plain;f=kmig.d%2Fbin%2Fmig-bibstats;fp=kmig.d%2Fbin%2Fmig-bibstats;h=5c2d64fa2316ab78dfcf3c4e5d5d369dafdd063a;hp=c115dd69a1b8c00385188778bdfd616c1952f8bb;hb=1c34bf90d84654c13aada670537b1f59d88a9f48;hpb=500acbdf4f526f07aa147b854409fc3ed272d23b diff --git a/kmig.d/bin/mig-bibstats b/kmig.d/bin/mig-bibstats index c115dd6..5c2d64f 100755 --- a/kmig.d/bin/mig-bibstats +++ b/kmig.d/bin/mig-bibstats @@ -96,7 +96,7 @@ my @ilses = ( ['Polaris','852','p'], ['TLC','949','g'], ['Koha','952','p'], - ['Sympony','999','i'], + ['Symphony','999','i'], ['Destiny','852','p'] ); @@ -241,7 +241,10 @@ print " $author_sub0 245 fields have a subfield 0\n"; print "\n===== Holdings Analysis\n"; foreach my $key (keys %holding_counts) { my $c = $holding_counts{$key}; - if (((100/$i)*$c) >= $holding_threshold) { print " $key $holding_counts{$key} holdings in $i bibs with $barcode_counts{$key} unique barcodes\n"; } + if (((100/$i)*$c) >= $holding_threshold) { + if ($key ne 'Symphony') { print " $key - $holding_counts{$key} holdings in $i bibs with $barcode_counts{$key} unique barcodes\n"; } + else { print " $key - $holding_counts{$key} holdings in $i bibs with $barcode_counts{$key} unique barcodes - 999 FIELDS MUST BE MOVED WITH kmig move999s\n"; } + } } print "\n===== URI values are domains and filtered to only show those with more than $uri_threshold\n";