Link fixed information field 000_6 to 942c?
Is there a way to have Koha automatically set the item type in 942c based on the information found from the fixed information field 000_6 when importing records? -- View this message in context: http://www.nabble.com/Link-fixed-information-field-000_6-to-942c--tp17776371... Sent from the Koha - Discuss mailing list archive at Nabble.com.
Hi PasiK, On Wed, Jun 11, 2008 at 8:29 AM, PasiK <pasi.korkalo@oululainen.com> wrote:
Is there a way to have Koha automatically set the item type in 942c based on the information found from the fixed information field 000_6 when importing records?
This could be done by writing a plugin (in the value_builder directory) and linking it in your framework. Hope that's helpful. Cheers, -- Joshua Ferraro SUPPORT FOR OPEN-SOURCE SOFTWARE CEO migration, training, maintenance, support LibLime Featuring Koha Open-Source ILS jmf@liblime.com |Full Demos at http://liblime.com/koha |1(888)KohaILS
Is there a way to have Koha automatically set the item type in 942c based on the information found from the fixed information field 000_6 when importing records?
Not directly in Koha for the time being. Staged MARC records (in Koha tools) has to be improved in this area. A hook procedure could be associated to a batch import doing specific biblio records modifications: -creating 942$c field, -creating item tags 952 or 995. For now, you can do that easily with a Perl script and MARC::Record module: * loop on ISO2709 file for example * read 000_6 code * from this code fix a Koha Item Type code * add a 942$c $new_record->append_fields(MARC::Field->new( "942", '', '', c => $typedoc )); -- Frédéric
participants (3)
-
Frederic Demians -
Joshua Ferraro -
PasiK