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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchtransfers.tt (-1 / +1 lines)
Lines 127-133 Link Here
127
                                          [% IF ( Koha.Preference('BranchTransferLimitsType') == 'itemtype' ) %]
127
                                          [% IF ( Koha.Preference('BranchTransferLimitsType') == 'itemtype' ) %]
128
                                              <li>Item type: <strong>[% ItemTypes.GetDescription( errmsgloo.code ) | html %]</strong></li>
128
                                              <li>Item type: <strong>[% ItemTypes.GetDescription( errmsgloo.code ) | html %]</strong></li>
129
                                          [% ELSE %]
129
                                          [% ELSE %]
130
                                              <li>Collection: <strong>[% AuthorisedValues.GetByCode( 'CCODE', errmsgloo.code ) | html %]</strong></li>
130
                                          <li>Collection: <strong>[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', errmsgloo.code ) | html %]</strong></li>
131
                                          [% END %]
131
                                          [% END %]
132
                                          <li>Originating library: <strong>[% Branches.GetName( errmsgloo.fbr ) | html %]</strong></li>
132
                                          <li>Originating library: <strong>[% Branches.GetName( errmsgloo.fbr ) | html %]</strong></li>
133
                                          <li>Destination library: <strong>[% Branches.GetName( errmsgloo.tbr ) | html %]</strong></li>
133
                                          <li>Destination library: <strong>[% Branches.GetName( errmsgloo.tbr ) | html %]</strong></li>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/course-details.tt (-6 / +5 lines)
Lines 125-144 Link Here
125
                            <td>
125
                            <td>
126
                                 [% IF cr.course_item.ccode_enabled %]
126
                                 [% IF cr.course_item.ccode_enabled %]
127
                                     [% IF cr.course_item.enabled == 'yes' %]
127
                                     [% IF cr.course_item.enabled == 'yes' %]
128
                                        <strong>[% AuthorisedValues.GetByCode( 'CCODE', cr.item.ccode ) | html %]</strong>
128
                                     <strong>[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', authorized_value => cr.item.ccode ) | html %]</strong>
129
                                        [% IF cr.item.ccode %]
129
                                        [% IF cr.item.ccode %]
130
                                            ([% AuthorisedValues.GetByCode( 'CCODE', cr.course_item.ccode_storage ) | html %])
130
                                            ([% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', cr.course_item.ccode_storage ) | html %])
131
                                        [% END %]
131
                                        [% END %]
132
                                     [% ELSE %]
132
                                     [% ELSE %]
133
                                        [% AuthorisedValues.GetByCode( 'CCODE', cr.course_item.ccode ) | html %]
133
                                        [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', cr.course_item.ccode ) | html %]
134
                                        [% IF cr.item.ccode %]
134
                                        [% IF cr.item.ccode %]
135
                                            (<strong>[% AuthorisedValues.GetByCode( 'CCODE', cr.item.ccode ) | html %]</strong>)
135
                                            (<strong>[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', cr.item.ccode ) | html %]</strong>)
136
                                        [% END %]
136
                                        [% END %]
137
                                     [% END %]
137
                                     [% END %]
138
                                 [% ELSE %]
138
                                 [% ELSE %]
139
                                     <em>Unchanged</em>
139
                                     <em>Unchanged</em>
140
                                     [% IF cr.item.ccode %]
140
                                     [% IF cr.item.ccode %]
141
                                         ([% AuthorisedValues.GetByCode( 'CCODE', cr.item.ccode ) | html %])
141
                                         ([% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', cr.item.ccode ) | html %])
142
                                     [% END %]
142
                                     [% END %]
143
                                 [% END %]
143
                                 [% END %]
144
                            </td>
144
                            </td>
145
- 

Return to bug 26323