[Koha-bugs] [Bug 20002] Can't call method "description" on an undefined value at /usr/share/koha/intranet/cgi-bin/members/summary-print.pl line 107.

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Mon Feb 5 12:49:28 CET 2018


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20002

Jonathan Druart <jonathan.druart at bugs.koha-community.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jonathan.druart at bugs.koha-c
                   |                            |ommunity.org

--- Comment #5 from Jonathan Druart <jonathan.druart at bugs.koha-community.org> ---
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.


More information about the Koha-bugs mailing list