[Koha-bugs] [Bug 28011] Add CLI script to update bibs from linked authority records

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Thu May 6 09:40:17 CEST 2021


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28011

--- Comment #3 from David Cook <dcook at prosentient.com.au> ---
Actually, I'd say it's probably better to just be inefficient than have a
custom implementation. 

The simplest version is just to compile a list of unique authority IDs and then
run the following:

my $record = GetAuthority($authid);
merge({ mergefrom => $authid, MARCfrom => $record, mergeto => $authid, MARCto
=> $record });

It will be inefficient but it will be a CLI script which can just run as long
as it needs to.

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.


More information about the Koha-bugs mailing list