[Koha-devel] [Bug 380] KohaDB-MARC mappings

bugzilla-daemon at wilbur.katipo.co.nz bugzilla-daemon at wilbur.katipo.co.nz
Thu Apr 24 12:04:08 CEST 2003


http://bugs.koha.org/cgi-bin/bugzilla/show_bug.cgi?id=380





------- Additional Comments From vhuhtala at paju.oulu.fi  2003-04-25 07:02 -------
Yes. To get them from pull down list you have to add marc_subfied_structure.pl 
ADD_FORM

###additionalauthors
my $sth2=$dbh->prepare("SHOW COLUMNS from additionalauthors");
$sth2->execute;
while ((my $field) = $sth2->fetchrow_array) {
push @kohafields, "additionalauthors.".$field;
}
###bibliosubject
my $sth2=$dbh->prepare("SHOW COLUMNS from bibliosubject");
$sth2->execute;
while ((my $field) = $sth2->fetchrow_array) {
push @kohafields, "bibliosubject.".$field;
}
###bibliosubtitle
my $sth2=$dbh->prepare("SHOW COLUMNS from bibliosubtitle");
$sth2->execute;
while ((my $field) = $sth2->fetchrow_array) {
push @kohafields, "bibliosubtitle.".$field;
}
###biblioanalysis
my $sth2=$dbh->prepare("SHOW COLUMNS from biblioanalysis");
$sth2->execute;
while ((my $field) = $sth2->fetchrow_array) {
push @kohafields, "biblioanalysis.".$field;
}

and add ,'additionalauthors','bibliosubject','bibliosubtitle','biblioanalysis'
to the list botom of koha2marclinks.pl

But it still doesn't work.



------- You are receiving this mail because: -------
You are the QA contact for the bug, or are watching the QA contact.




More information about the Koha-devel mailing list