Few general Koha questions
Hello all, Busy configuring a new Koha installation and I'm just going to list a bunch of questions I have. I am struggling a bit with the manual and I haven't had any luck searching the archives. Pick a topic! 1. When patron self-registration is enabled, there are a number of necessary fields I can't get to show up, namely, userid, password, and cardnumber (The project I am working on requires people to fill out their own card number - they will be unique.) These fields are however accessible from the same patron template when an account is created on the staff side by superlibrarian. Any thoughts? 2. Is there any way, after having imported a batch of records, to auto-generate an item for each record in the batch? I do not have time to search, by name, for each record in a 5000+ item library and create an item for it. 3. Following on question 2, is there any way to force the staff interface to just display every record in the catalog so that if I do have to add each item manually I can at least do it faster? Cheers. Thanks for your help. Andrew -- View this message in context: http://koha.1045719.n5.nabble.com/Few-general-Koha-questions-tp5863627.html Sent from the Koha-general mailing list archive at Nabble.com.
I can help on #3 -- you can write a custom SQL report through the reports module that returns all bibs and then has a column that has a link directly to the item editor... This should work -- it will return all records that don't have items attached and include a direct link to the add item editor that opens in a new tab; every time you rerun the report, any record that has an item attached will not be returned. SELECT biblio.biblionumber, CONCAT('<a href=\"/cgi-bin/koha/cataloguing/ additem.pl?biblionumber=',biblio.biblionumber,'\" target="_blank">'"add item"'</a>') as "add item" FROM biblio LEFT JOIN items USING(biblionumber) WHERE items.itemnumber IS NULL LIMIT 5000 By the way, that 5000 limit number can be whatever you want it to be -- the default screen return is 20 rows, although there's dropdown options to set it up to 1000 rows returned at a time. Good luck. On Wed, Dec 2, 2015 at 1:20 PM Aparrish <cspsyntech@gmail.com> wrote:
Hello all,
Busy configuring a new Koha installation and I'm just going to list a bunch of questions I have. I am struggling a bit with the manual and I haven't had any luck searching the archives. Pick a topic!
1. When patron self-registration is enabled, there are a number of necessary fields I can't get to show up, namely, userid, password, and cardnumber (The project I am working on requires people to fill out their own card number - they will be unique.) These fields are however accessible from the same patron template when an account is created on the staff side by superlibrarian. Any thoughts?
2. Is there any way, after having imported a batch of records, to auto-generate an item for each record in the batch? I do not have time to search, by name, for each record in a 5000+ item library and create an item for it.
3. Following on question 2, is there any way to force the staff interface to just display every record in the catalog so that if I do have to add each item manually I can at least do it faster?
Cheers. Thanks for your help. Andrew
-- View this message in context: http://koha.1045719.n5.nabble.com/Few-general-Koha-questions-tp5863627.html Sent from the Koha-general mailing list archive at Nabble.com. _______________________________________________ Koha mailing list http://koha-community.org Koha@lists.katipo.co.nz https://lists.katipo.co.nz/mailman/listinfo/koha
-- Heather Braum NExpress Coordinator Resource Sharing Librarian Northeast Kansas Library System hbraum@nekls.org "The illiterate of the 21st century will not be those who cannot read and write, but those who cannot learn, unlearn, and relearn." ~Alvin Toffler, *Rethinking the Future*
Hello all,
Busy configuring a new Koha installation and I'm just going to list a bunch of questions I have. I am struggling a bit with the manual and I haven't had any luck searching the archives. Pick a topic! Hi Andrew, this is not good practice. Its better to submit one question
On 03/12/15 06:20, Aparrish wrote: per email, with a descriptive subject line. Answers to the list are there to help everyone, not just the particular person who asked the question on this particular occasion. When a bunch of issues are addressed in one email, its impossible later (sometimes months or years) to find the answers in the archive. Anyway, I hope you get useful answers to your questions. Cheers, Bob Birchall Calyx
1. When patron self-registration is enabled, there are a number of necessary fields I can't get to show up, namely, userid, password, and cardnumber (The project I am working on requires people to fill out their own card number - they will be unique.) These fields are however accessible from the same patron template when an account is created on the staff side by superlibrarian. Any thoughts?
2. Is there any way, after having imported a batch of records, to auto-generate an item for each record in the batch? I do not have time to search, by name, for each record in a 5000+ item library and create an item for it.
3. Following on question 2, is there any way to force the staff interface to just display every record in the catalog so that if I do have to add each item manually I can at least do it faster?
Cheers. Thanks for your help. Andrew
-- View this message in context: http://koha.1045719.n5.nabble.com/Few-general-Koha-questions-tp5863627.html Sent from the Koha-general mailing list archive at Nabble.com. _______________________________________________ Koha mailing list http://koha-community.org Koha@lists.katipo.co.nz https://lists.katipo.co.nz/mailman/listinfo/koha
-- Bob Birchall Director Calyx Group Pty Limited Mob: 0414 796 988 Email: bob@calyx.net.au Web: www.calyx.net.au This email and any attachments are proprietary and confidential and are intended solely for the use of the individual to whom it is addressed. If you have received this email in error, please let us know immediately by reply email and delete it from your system. You may not use, disseminate, distribute or copy this message nor disclose its contents to anyone. Calyx Group Pty Limited – P.O. Box 6041 North Sydney NSW 2059 – ABN 25 083 195 804 Participating in the Koha Open ILS project: http://koha-community.org
participants (3)
-
Aparrish -
Bob Birchall -
Heather Braum (NEKLS)