@@ -, +, @@ returns --- circ/returns.pl | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) --- a/circ/returns.pl +++ a/circ/returns.pl @@ -618,7 +618,7 @@ foreach ( sort { $a <=> $b } keys %returneditems ) { $ri{itemnumber} = $item->itemnumber; $ri{barcode} = $bar_code; $ri{homebranch} = $item->homebranch; - $ri{holdingbranch} = $item->holdingbranch; + $ri{transferbranch} = $item->get_transfer ? $item->get_transfer->tobranch : ''; $ri{damaged} = $item->damaged; $ri{location} = $item->location; --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt @@ -869,7 +869,7 @@ Author Barcode Home library - Holding library + Transfer to Shelving location Call number Date acquired @@ -916,8 +916,8 @@ [% Branches.GetName( riloo.homebranch ) | html %] - - [% Branches.GetName( riloo.holdingbranch ) | html %] + + [% Branches.GetName( riloo.transferbranch ) | html %] [% riloo.location | html %] --