[Bug 8153] New: Bulk serial receive
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8153 Priority: P5 - low Change sponsored?: --- Bug ID: 8153 Assignee: colin.campbell@ptfs-europe.com Summary: Bulk serial receive Severity: enhancement Classification: Unclassified OS: All Reporter: shinoy.m@osslabs.biz Hardware: All Status: NEW Version: master Component: Serials Product: Koha -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8153 --- Comment #1 from shinoy m <shinoy.m@osslabs.biz> --- Created attachment 9809 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=9809&action=edit Bulk serial receive Add an option "Bulk receive" in serials home page for receiving the serials in bulk. -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8153 shinoy m <shinoy.m@osslabs.biz> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8153 Chris Cormack <chris@bigballofwax.co.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA CC| |chris@bigballofwax.co.nz --- Comment #2 from Chris Cormack <chris@bigballofwax.co.nz> --- I like the idea, however +#if it is bulk receive +if($op eq 'all') +{ +my $sth = $dbh->prepare('select subscriptionid from subscription'); +$sth->execute; +my $row; +while ($row = $sth->fetchrow_array()) { +push (@subscriptionids,$row); +} +}else { +@subscriptionids = $query->param('subscriptionid'); +} in serials-edit.pl has a few problems. 1/ We shouldn't have sql in .pl files 2/ The indentation fails the coding guidelines 3/ This will get all expired subscriptions, ie, it just gets all, that may be thousands for a big library I haven't tested much further. What this patch does, also that is not advertised is it changes the layout of the serials receive page also. -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8153 Jared Camins-Esakov <jcamins@cpbibliography.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |RESOLVED Resolution|--- |DUPLICATE --- Comment #3 from Jared Camins-Esakov <jcamins@cpbibliography.com> --- I believe this is bug duplicates functionality provided by bug 7913. *** This bug has been marked as a duplicate of bug 7913 *** -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org