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

(-)a/admin/columns_settings.yml (+2 lines)
Lines 1665-1670 modules: Link Here
1665
              is_hidden: 1
1665
              is_hidden: 1
1666
            -
1666
            -
1667
              columnname: collection
1667
              columnname: collection
1668
            -
1669
              columnname: location
1668
            -
1670
            -
1669
              columnname: document_type
1671
              columnname: document_type
1670
            -
1672
            -
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt (-2 / +8 lines)
Lines 80-85 Link Here
80
                    <th class="hq-holdingbranch">Current library</th>
80
                    <th class="hq-holdingbranch">Current library</th>
81
                    <th class="hq-homebranch">Home library</th>
81
                    <th class="hq-homebranch">Home library</th>
82
                    <th class="hq-collection">Collection</th>
82
                    <th class="hq-collection">Collection</th>
83
                    <th class="hq-location">Shelving location</th>
83
                    <th class="hq-itemtype">Item type</th>
84
                    <th class="hq-itemtype">Item type</th>
84
                    <th class="hq-callnumber">Call number</th>
85
                    <th class="hq-callnumber">Call number</th>
85
                    <th class="hq-copynumber">Copy number</th>
86
                    <th class="hq-copynumber">Copy number</th>
Lines 112-117 Link Here
112
                            <input type="text" placeholder="Collection">
113
                            <input type="text" placeholder="Collection">
113
                        </span>
114
                        </span>
114
                    </td>
115
                    </td>
116
                    <td class="hq-location">
117
                        <span class="filter_column filter_text">
118
                            <input type="text" placeholder="Location">
119
                        </span>
120
                    </td>
115
                    <td class="hq-itemtype">
121
                    <td class="hq-itemtype">
116
                        <span class="filter_column filter_text">
122
                        <span class="filter_column filter_text">
117
                            <input type="text" placeholder="Item type">
123
                            <input type="text" placeholder="Item type">
Lines 192-199 Link Here
192
                        <td class="hq-holdingbranch">[% Branches.GetName( itemsloo.holdingbranch ) | html %]</td>
198
                        <td class="hq-holdingbranch">[% Branches.GetName( itemsloo.holdingbranch ) | html %]</td>
193
                        <td class="hq-homebranch">[% Branches.GetName( itemsloo.item.homebranch ) | html %]</td>
199
                        <td class="hq-homebranch">[% Branches.GetName( itemsloo.item.homebranch ) | html %]</td>
194
                        <td class="hq-collection">[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', authorised_value => itemsloo.item.ccode ) | html %]</td>
200
                        <td class="hq-collection">[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', authorised_value => itemsloo.item.ccode ) | html %]</td>
201
                        <td class="hq-location">[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.location', authorised_value => itemsloo.item.location ) | html %]</td>
195
                        <td class="hq-itemtype">[% ItemTypes.GetDescription( itemsloo.item.effective_itemtype ) | html %]</td>
202
                        <td class="hq-itemtype">[% ItemTypes.GetDescription( itemsloo.item.effective_itemtype ) | html %]</td>
196
                        <td class="hq-callnumber">[% IF ( itemsloo.item.location ) %]<span class="location"><em>[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.location', authorised_value => itemsloo.item.location ) | html %]</em></span> [% END %]<span class="itemcallnumber">[% itemsloo.item.itemcallnumber | html %]</span></td>
203
                        <td class="hq-callnumber"><span class="itemcallnumber">[% itemsloo.item.itemcallnumber | html %]</span></td>
197
                        <td class="hq-copynumber">[% itemsloo.item.copynumber | html %]</td>
204
                        <td class="hq-copynumber">[% itemsloo.item.copynumber | html %]</td>
198
                        <td class="hq-enumchron">[% itemsloo.item.enumchron | html %]</td>
205
                        <td class="hq-enumchron">[% itemsloo.item.enumchron | html %]</td>
199
                        <td class="hq-barcode">
206
                        <td class="hq-barcode">
200
- 

Return to bug 30411