#!/usr/bin/perl # # TODO # # Add info on biblioitems and items already entered as you enter new ones # use CGI; use strict; use C4::Output; my $input = new CGI; my $error = $input->param('error'); print $input->header; print startpage(); print startmenu('acquisitions'); &searchscreen(); print endmenu(); print endpage(); sub searchscreen { print << "EOF"; Adding new items to the Library Inventory

EOF if ($error eq "notfound") { print << "EOF"; No items found

EOF } # if print << "EOF";
To add a new item, scan or type the ISBN number:
ISBN:
Keyword:


Tools for importing MARC records into Koha


Add New Website

Keyword:

Help
Koha stores data in three sections

Biblio

The first section records bibliographic data such as title, author and copyright for a particular work.

Group

The second records bibliographic data for a particular publication of that work, such as ISBN number, physical description, publisher information, etc

Item

The third section holds specific item information, such as the bar code number

EOF } # sub searchscreen