https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20002
Jonathan Druart <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] | |ommunity.org --- Comment #5 from Jonathan Druart <[email protected]> --- It looks like you have an item that have an item type not defined in your system. To know the item types that are not defined in Koha, you can execute the following query: If item-level_itypes is "specific item" select distinct(itype) from items left join itemtypes on itype=itemtype where itemtype is null; If item-level_itypes is "biblio record" select distinct(bi.itemtype) from biblioitems bi left join itemtypes it on bi.itemtype=it.itemtype where bi.itemtype is null; -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
