From 332ab355738bae3245ad9c0b7ed9f833add0d611 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Wed, 20 May 2015 11:31:18 -0400 Subject: [PATCH] Bug 12066 - New renew page in staff client doesn't record branch in statistics Test Plan: 1) Apply this patch 2) Renew an item via circ/renew.pl 3) Note the branch code of your logged in library is set as the branch in the generated statistic line --- circ/renew.pl | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/circ/renew.pl b/circ/renew.pl index 180c881..28301dc 100755 --- a/circ/renew.pl +++ b/circ/renew.pl @@ -83,7 +83,8 @@ if ($barcode) { ); } if ($can_renew) { - my $date_due = AddRenewal( undef, $item->itemnumber() ); + my $branchcode = C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef; + my $date_due = AddRenewal( undef, $item->itemnumber(), $branchcode ); $template->param( date_due => $date_due ); } } -- 1.7.2.5