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

(-)a/admin/columns_settings.yml (+2 lines)
Lines 1455-1460 modules: Link Here
1455
              columnname: homelibrary
1455
              columnname: homelibrary
1456
            -
1456
            -
1457
              columnname: transferlibrary
1457
              columnname: transferlibrary
1458
            -
1459
              columnname: transferreason
1458
            -
1460
            -
1459
              columnname: location
1461
              columnname: location
1460
            -
1462
            -
(-)a/circ/returns.pl (+1 lines)
Lines 802-807 foreach ( sort { $a <=> $b } keys %returneditems ) { Link Here
802
        $ri{homebranch}          = $item->homebranch;
802
        $ri{homebranch}          = $item->homebranch;
803
        $ri{transferbranch}      = $item->get_transfer ? $item->get_transfer->tobranch : '';
803
        $ri{transferbranch}      = $item->get_transfer ? $item->get_transfer->tobranch : '';
804
        $ri{damaged}             = $item->damaged;
804
        $ri{damaged}             = $item->damaged;
805
        $ri{transferreason}      = $item->get_transfer ? $item->get_transfer->reason : '';
805
806
806
        $ri{location} = $item->location;
807
        $ri{location} = $item->location;
807
        my $shelfcode = $ri{'location'};
808
        my $shelfcode = $ri{'location'};
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-1 / +15 lines)
Lines 1206-1211 Link Here
1206
                                            <th class="ci-barcode">Barcode</th>
1206
                                            <th class="ci-barcode">Barcode</th>
1207
                                            <th class="ci-homelibrary">Home library</th>
1207
                                            <th class="ci-homelibrary">Home library</th>
1208
                                            <th class="ci-transferlibrary">Transfer to</th>
1208
                                            <th class="ci-transferlibrary">Transfer to</th>
1209
                                            <th class="ci-transferreason">Transfer reason</th>
1209
                                            <th class="ci-shelvinglocation">Shelving location</th>
1210
                                            <th class="ci-shelvinglocation">Shelving location</th>
1210
                                            <th class="ci-callnumber">Call number</th>
1211
                                            <th class="ci-callnumber">Call number</th>
1211
                                            <th class="ci-dateaccessioned">Date acquired</th>
1212
                                            <th class="ci-dateaccessioned">Date acquired</th>
Lines 1255-1260 Link Here
1255
                                            <td class="ci-transferlibrary">
1256
                                            <td class="ci-transferlibrary">
1256
                                                [% Branches.GetName( riloo.transferbranch ) | html %]
1257
                                                [% Branches.GetName( riloo.transferbranch ) | html %]
1257
                                            </td>
1258
                                            </td>
1259
                                            <td class="ci-transferreason">
1260
                                                 [%- SWITCH riloo.transferreason -%]
1261
                                                     [%- CASE 'Manual' -%]<span>Manual</span>
1262
                                                     [%- CASE 'StockrotationAdvance' -%]<span>Stock rotation advance</span>
1263
                                                     [%- CASE 'StockrotationRepatriation' -%]<span>Stock rotation repatriation</span>
1264
                                                     [%- CASE 'ReturnToHome' -%]<span>Return to home library</span>
1265
                                                     [%- CASE 'ReturnToHolding' -%]<span>Return to holding library</span>
1266
                                                     [%- CASE 'RotatingCollection' -%]<span>Rotating collection</span>
1267
                                                     [%- CASE 'Reserve' -%]<span>Hold</span>
1268
                                                     [%- CASE 'LostReserve' -%]<span>Lost hold</span>
1269
                                                     [%- CASE 'CancelReserve' -%]<span>Cancelled hold</span>
1270
                                                     [%- CASE 'TransferCancellation' -%]<span>Transfer was cancelled whilst in transit</span>
1271
                                                 [%- END -%]
1272
                                            </td>
1258
                                            <td class="ci-shelvinglocation">
1273
                                            <td class="ci-shelvinglocation">
1259
                                                <span class="shelvingloc">[% riloo.location | html %]</span>
1274
                                                <span class="shelvingloc">[% riloo.location | html %]</span>
1260
                                            </td>
1275
                                            </td>
1261
- 

Return to bug 34547