Bugzilla – Attachment 57803 Details for
Bug 13726
Koha::Acquisition::Bookseller should use Koha::Object
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 13726: Fix for serials/acqui-search-result.pl
Bug-13726-Fix-for-serialsacqui-search-resultpl.patch (text/plain), 1.26 KB, created by
Jonathan Druart
on 2016-11-29 09:17:24 UTC
(
hide
)
Description:
Bug 13726: Fix for serials/acqui-search-result.pl
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2016-11-29 09:17:24 UTC
Size:
1.26 KB
patch
obsolete
>From 9480fd573a39bd50bc978743474d13c7ba94e4e6 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Tue, 29 Nov 2016 09:16:55 +0000 >Subject: [PATCH] Bug 13726: Fix for serials/acqui-search-result.pl > >--- > serials/acqui-search-result.pl | 9 ++++----- > 1 file changed, 4 insertions(+), 5 deletions(-) > >diff --git a/serials/acqui-search-result.pl b/serials/acqui-search-result.pl >index 595b6ed..c159d29 100755 >--- a/serials/acqui-search-result.pl >+++ b/serials/acqui-search-result.pl >@@ -63,13 +63,12 @@ my ($template, $loggedinuser, $cookie) > > my $supplier=$query->param('supplier'); > my @suppliers = Koha::Acquisition::Booksellers->search({ name => $supplier }); >-#my $count = scalar @suppliers; > > #build result page > my $loop_suppliers = []; > for my $s (@suppliers) { > my $orders = SearchOrders({ >- booksellerid => $s->{'id'}, >+ booksellerid => $s->id, > pending => 1 > }); > >@@ -85,9 +84,9 @@ for my $s (@suppliers) { > } > push @{$loop_suppliers}, { > loop_basket => $loop_basket, >- aqbooksellerid => $s->{'id'}, >- name => $s->{'name'}, >- active => $s->{'active'}, >+ aqbooksellerid => $s->id, >+ name => $s->name, >+ active => $s->active, > }; > } > >-- >2.1.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 13726
:
35992
|
36977
|
57253
|
57263
|
57714
|
57785
|
57792
|
57803
|
57804
|
57805
|
58473
|
58474
|
58475