Bugzilla – Attachment 56118 Details for
Bug 17420
record export fails when itemtype on biblio
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 17420 - record export fails when itemtype on biblio
Bug-17420---record-export-fails-when-itemtype-on-b.patch (text/plain), 1.64 KB, created by
Fridolin Somers
on 2016-10-10 14:54:43 UTC
(
hide
)
Description:
Bug 17420 - record export fails when itemtype on biblio
Filename:
MIME Type:
Creator:
Fridolin Somers
Created:
2016-10-10 14:54:43 UTC
Size:
1.64 KB
patch
obsolete
>From b8d7c3c8b6c609a442e9ff98704d9fcf8dc0d335 Mon Sep 17 00:00:00 2001 >From: Fridolin Somers <fridolin.somers@biblibre.com> >Date: Mon, 10 Oct 2016 16:46:04 +0200 >Subject: [PATCH] Bug 17420 - record export fails when itemtype on biblio > >In Tools, Export data, you can export with a filter on item type. >When item type is on biblio record, you get the error : >export.pl: DBIx::Class::ResultSet::next(): Unknown column 'biblioitems.itemtype' in 'where clause' at /home/koha/src/Koha/Objects.pm line 150 > >Looks like its because this code use to be a SQL Select and is now a DBIx call : > C4::Context->preference('item-level_itypes') > ? ( 'items.itype' => $itemtype ) > : ( 'me.itemtype' => $itemtype ) > >This patch corrects by using "me.itemtype" > >Test plan : >- Use syspref item-level_itypes = biblio record >- Go to Tools > Export data : /cgi-bin/koha/tools/export.pl >- Select an item type >- Click on "Export biblio records" >=> Without patch you get an error 500 >=> With patch you get a correct export file >--- > tools/export.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/tools/export.pl b/tools/export.pl >index c585d90..03792c3 100755 >--- a/tools/export.pl >+++ b/tools/export.pl >@@ -139,7 +139,7 @@ if ( $op eq "export" ) { > ? > C4::Context->preference('item-level_itypes') > ? ( 'items.itype' => $itemtype ) >- : ( 'biblioitems.itemtype' => $itemtype ) >+ : ( 'me.itemtype' => $itemtype ) > : () > ), > >-- >2.7.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 17420
:
56117
|
56118
|
57269
|
57405
|
57406
|
57442
|
57443