Koha allows you to manage the Items/Books through authorized value. Following are the steps to manage the library collection via authorized values.
1. Add Authorized Values for collection
Go to Koha Administration ➤ Authorized Values and click on CCODE
Click the New authorized value and add the codes of the new collection one by one e.g. Reference, Gifted books, Textbooks, fiction, Non-fiction, Audio Visual, etc.
2. Add Authorized Values for Department
Go to Koha Administration ➤ Authorized Values and click on LOC
Click the New authorized value and add the new Department codes one by one e.g. Civil Engineering, Mechanical Engineering, Information Technology, Computer Science Engineering, etc.
3. Add collection and Department to record
Add or edit the records and select the collection code and Department from (Shelving location) in the drop-down list that matches the record and add items to the catalog.
Generate Department wise report
select v.lib as Department, count(i.itemnumber) as items
from authorised_values v
left join items i ON (i.location=v.authorised_value)
where v.category='LOC'
group by v.id
from authorised_values v
left join items i ON (i.location=v.authorised_value)
where v.category='LOC'
group by v.id
0 Comments