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

(-)a/admin/columns_settings.yml (+2 lines)
Lines 1447-1452 modules: Link Here
1447
              columnname: homelibrary
1447
              columnname: homelibrary
1448
            -
1448
            -
1449
              columnname: transferlibrary
1449
              columnname: transferlibrary
1450
            -
1451
              columnname: transferreason
1450
            -
1452
            -
1451
              columnname: location
1453
              columnname: location
1452
            -
1454
            -
(-)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 1204-1209 Link Here
1204
                                            <th class="ci-barcode">Barcode</th>
1204
                                            <th class="ci-barcode">Barcode</th>
1205
                                            <th class="ci-homelibrary">Home library</th>
1205
                                            <th class="ci-homelibrary">Home library</th>
1206
                                            <th class="ci-transferlibrary">Transfer to</th>
1206
                                            <th class="ci-transferlibrary">Transfer to</th>
1207
                                            <th class="ci-transferreason">Transfer reason</th>
1207
                                            <th class="ci-shelvinglocation">Shelving location</th>
1208
                                            <th class="ci-shelvinglocation">Shelving location</th>
1208
                                            <th class="ci-callnumber">Call number</th>
1209
                                            <th class="ci-callnumber">Call number</th>
1209
                                            <th class="ci-dateaccessioned">Date acquired</th>
1210
                                            <th class="ci-dateaccessioned">Date acquired</th>
Lines 1253-1258 Link Here
1253
                                            <td class="ci-transferlibrary">
1254
                                            <td class="ci-transferlibrary">
1254
                                                [% Branches.GetName( riloo.transferbranch ) | html %]
1255
                                                [% Branches.GetName( riloo.transferbranch ) | html %]
1255
                                            </td>
1256
                                            </td>
1257
                                            <td class="ci-transferreason">
1258
                                                 [%- SWITCH riloo.transferreason -%]
1259
                                                     [%- CASE 'Manual' -%]<span>Manual</span>
1260
                                                     [%- CASE 'StockrotationAdvance' -%]<span>Stock rotation advance</span>
1261
                                                     [%- CASE 'StockrotationRepatriation' -%]<span>Stock rotation repatriation</span>
1262
                                                     [%- CASE 'ReturnToHome' -%]<span>Return to home library</span>
1263
                                                     [%- CASE 'ReturnToHolding' -%]<span>Return to holding library</span>
1264
                                                     [%- CASE 'RotatingCollection' -%]<span>Rotating collection</span>
1265
                                                     [%- CASE 'Reserve' -%]<span>Hold</span>
1266
                                                     [%- CASE 'LostReserve' -%]<span>Lost hold</span>
1267
                                                     [%- CASE 'CancelReserve' -%]<span>Cancelled hold</span>
1268
                                                     [%- CASE 'TransferCancellation' -%]<span>Transfer was cancelled whilst in transit</span>
1269
                                                 [%- END -%]
1270
                                            </td>
1256
                                            <td class="ci-shelvinglocation">
1271
                                            <td class="ci-shelvinglocation">
1257
                                                <span class="shelvingloc">[% riloo.location | html %]</span>
1272
                                                <span class="shelvingloc">[% riloo.location | html %]</span>
1258
                                            </td>
1273
                                            </td>
1259
- 

Return to bug 34547