View | Details | Raw Unified | Return to bug 25883
Collapse All | Expand All

(-)a/circ/returns.pl (-1 / +1 lines)
Lines 608-614 foreach ( sort { $a <=> $b } keys %returneditems ) { Link Here
608
        $ri{itemnumber}          = $item->itemnumber;
608
        $ri{itemnumber}          = $item->itemnumber;
609
        $ri{barcode}             = $bar_code;
609
        $ri{barcode}             = $bar_code;
610
        $ri{homebranch}          = $item->homebranch;
610
        $ri{homebranch}          = $item->homebranch;
611
        $ri{holdingbranch}       = $item->holdingbranch;
611
        $ri{transferbranch}      = $item->get_transfer ? $item->get_transfer->tobranch : '';
612
        $ri{damaged}             = $item->damaged;
612
        $ri{damaged}             = $item->damaged;
613
613
614
        $ri{location} = $item->location;
614
        $ri{location} = $item->location;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-4 / +3 lines)
Lines 868-874 Link Here
868
                                        <th class="ci-author">Author</th>
868
                                        <th class="ci-author">Author</th>
869
                                        <th class="ci-barcode">Barcode</th>
869
                                        <th class="ci-barcode">Barcode</th>
870
                                        <th class="ci-homelibrary">Home library</th>
870
                                        <th class="ci-homelibrary">Home library</th>
871
                                        <th class="ci-holdinglibrary">Holding library</th>
871
                                        <th class="ci-transferlibrary">Transfer to</th>
872
                                        <th class="ci-shelvinglocation">Shelving location</th>
872
                                        <th class="ci-shelvinglocation">Shelving location</th>
873
                                        <th class="ci-callnumber">Call number</th>
873
                                        <th class="ci-callnumber">Call number</th>
874
                                        <th class="ci-dateaccessioned">Date acquired</th>
874
                                        <th class="ci-dateaccessioned">Date acquired</th>
Lines 915-922 Link Here
915
                                        <td class="ci-homelibrary">
915
                                        <td class="ci-homelibrary">
916
                                            [% Branches.GetName( riloo.homebranch ) | html %]
916
                                            [% Branches.GetName( riloo.homebranch ) | html %]
917
                                        </td>
917
                                        </td>
918
                                        <td class="ci-holdinglibrary">
918
                                        <td class="ci-transferlibrary">
919
                                            [% Branches.GetName( riloo.holdingbranch ) | html %]
919
                                            [% Branches.GetName( riloo.transferbranch ) | html %]
920
                                        </td>
920
                                        </td>
921
                                        <td class="ci-shelvinglocation">
921
                                        <td class="ci-shelvinglocation">
922
                                            <span class="shelvingloc">[% riloo.location | html %]</span>
922
                                            <span class="shelvingloc">[% riloo.location | html %]</span>
923
- 

Return to bug 25883