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

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

Return to bug 25883