[Koha-bugs] [Bug 11065] New: List of imported biblios is too small - increase to a larger number

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Thu Oct 17 00:02:17 CEST 2013


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11065

            Bug ID: 11065
           Summary: List of imported biblios is too small - increase to a
                    larger number
 Change sponsored?: ---
           Product: Koha
           Version: 3.12
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P5 - low
         Component: Tools
          Assignee: gmcharlt at gmail.com
          Reporter: dpk at randomnotes.org
        QA Contact: testopia at bugs.koha-community.org

Usability fix to MARC importing:

When importing biblios using the MARC importing tools, the list of imported
MARC records are display in pages of 25 biblios each.  This means on larger
imports (100s or 1000s of biblios) you have to page through way too many pages
to find import issues.  This process can be facilitated by returning much
larger lists.  We have changed this to 500 entries and its much easier to work
with large imports with this size of returned results.

Steps to reproduce:
1. Create a MARC import file with 1000 unique MARC records
2. Upload the file
3. Import the file to the reservoir.
4. You are now looking at the import results page displayed by
manage-marc-import.pl with 25 results displayed, and a total of 40 pages to
view to see all the import success/failures.

Desired
Reviewing all these pages is tedious.  Less pages will be much better.

Fixing this is a one line change to 
library:/usr/share/koha/intranet/cgi-bin/tools# diff
tools/manage-marc-import.pl*
50c52
< my $results_per_page = $input->param('results_per_page') || 25; 
---
> my $results_per_page = $input->param('results_per_page') || 500;

(This was also the consensus of the Cataloging roundtable at KohaCon2013.  I
volunteered to submit the bug and a formal fix.)

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list