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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/transfer_reasons.inc (+15 lines)
Line 0 Link Here
1
[%- BLOCK transfer_reason -%]
2
    [%- SWITCH transfer.reason -%]
3
        [%- CASE 'Manual'                    -%]Manual
4
        [%- CASE 'StockrotationAdvance'      -%]Stock rotation advance
5
        [%- CASE 'StockrotationRepatriation' -%]Stock rotation repatriation
6
        [%- CASE 'ReturnToHome'              -%]Automatic return to home
7
        [%- CASE 'ReturnToHolding'           -%]Automatic return to holding
8
        [%- CASE 'RotatingCollection'        -%]Rotating collection
9
        [%- CASE 'Reserve'                   -%]Hold
10
        [%- CASE 'LostReserve'               -%]Hold lost
11
        [%- CASE 'CancelReserve'             -%]Hold cancelled
12
        [%- CASE                             -%][% transfer.reason | html %]
13
    [%- END -%]
14
[%- END -%]
15
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/transfers_to_send.tt (-2 / +2 lines)
Lines 4-9 Link Here
4
[% USE KohaDates %]
4
[% USE KohaDates %]
5
[% USE Branches %]
5
[% USE Branches %]
6
[% SET footerjs = 1 %]
6
[% SET footerjs = 1 %]
7
[% PROCESS 'transfer_reasons.inc' %]
7
[% INCLUDE 'doc-head-open.inc' %]
8
[% INCLUDE 'doc-head-open.inc' %]
8
<title>Koha &rsaquo; Circulation &rsaquo; Transfers to send</title>
9
<title>Koha &rsaquo; Circulation &rsaquo; Transfers to send</title>
9
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
Lines 57-63 Link Here
57
                                                    [% IF ( transfer.item.effective_itemtype ) %] (<b>[% transfer.item.effective_itemtype | html %]</b>)[% END %]
58
                                                    [% IF ( transfer.item.effective_itemtype ) %] (<b>[% transfer.item.effective_itemtype | html %]</b>)[% END %]
58
                                                    <br />Barcode: [% transfer.item.barcode | html %]
59
                                                    <br />Barcode: [% transfer.item.barcode | html %]
59
                                                </td>
60
                                                </td>
60
                                                <td><p>[% transfer.reason | html %]</p></td>
61
                                                <td><p>[% PROCESS transfer_reason transfer=transfer %]</p></td>
61
                                                <td>[% IF transfer.item.onloan %]Due [% transfer.item.onloan | $KohaDates %][% ELSE %]On shelf[% END %]</td>
62
                                                <td>[% IF transfer.item.onloan %]Due [% transfer.item.onloan | $KohaDates %][% ELSE %]On shelf[% END %]</td>
62
                                                <td>[% Branches.GetName( transfer.item.homebranch ) | html %]</td>
63
                                                <td>[% Branches.GetName( transfer.item.homebranch ) | html %]</td>
63
                                                <td>[% transfer.item.itemcallnumber | html %]</td>
64
                                                <td>[% transfer.item.itemcallnumber | html %]</td>
64
- 

Return to bug 22569