Bug 33021: Show an alert when adding a reserved item to an item bundle
[koha-ffzg.git] / koha-tmpl / intranet-tmpl / prog / en / modules / catalogue / detail.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% USE KohaDates %]
5 [% USE KohaPlugins %]
6 [% USE AuthorisedValues %]
7 [% USE Branches %]
8 [% USE Biblio %]
9 [% USE Price %]
10 [% USE TablesSettings %]
11 [% PROCESS 'i18n.inc' %]
12
13 [% IF Koha.Preference('AmazonAssocTag') %]
14     [% AmazonAssocTag = '?tag=' _ Koha.Preference('AmazonAssocTag') %]
15 [% ELSE %]
16     [% AmazonAssocTag = '' %]
17 [% END %]
18
19 [% ShowCourseReserves = 0 | html %]
20 [% IF UseCourseReserves %]
21     [% FOREACH item IN itemloop %]
22        [% IF item.course_reserves %]
23            [% FOREACH r IN item.course_reserves %]
24                [% IF r.course.enabled == 'yes' %]
25                    [% ShowCourseReserves = 1 | html %]
26                [% END %]
27            [% END %]
28         [% END %]
29     [% END %]
30 [% END %]
31
32 [% SET plugins_intranet_catalog_biblio_tabs = KohaPlugins.get_plugins_intranet_catalog_biblio_tab({ biblio => biblio, biblio_id => biblionumber }) %]
33
34 [% SET footerjs = 1 %]
35 [% INCLUDE 'doc-head-open.inc' %]
36 <title>
37   [% IF ( unknownbiblionumber ) %]
38     Unknown record
39   [% ELSE %]
40     Details for [% INCLUDE 'biblio-title-head.inc' %]
41   [% END %] &rsaquo; Catalog &rsaquo; Koha
42 </title>
43 [% INCLUDE 'doc-head-close.inc' %]
44 [% Asset.css("lib/Chocolat/css/chocolat.css") | $raw %]
45 </head>
46
47 <body id="catalog_detail" class="catalog">
48
49 [% WRAPPER 'header.inc' %]
50     [% INCLUDE 'cat-search.inc' %]
51 [% END %]
52
53 [% WRAPPER 'sub-header.inc' %]
54 <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
55     <ol>
56         <li>
57             <a href="/cgi-bin/koha/mainpage.pl">Home</a>
58         </li>
59         <li>
60             <a href="/cgi-bin/koha/catalogue/search.pl">Catalog</a>
61         </li>
62
63         [% IF ( unknownbiblionumber ) %]
64             <li>
65                 <a href="#" aria-current="page">
66                     Unknown record
67                 </a>
68             </li>
69         [% ELSE %]
70             <li>
71                 [% INCLUDE 'biblio-title.inc' link = 1 %]
72             </li>
73             <li>
74                 <a href="#" aria-current="page">
75                     Details
76                 </a>
77             </li>
78         [% END %]
79     </ol>
80 </nav>
81 [% END %]
82
83 <div class="main container-fluid">
84     <div class="row">
85         <div class="col-sm-10 col-sm-push-2">
86             <main>
87                 <div class="row">
88
89 [% IF ( unknownbiblionumber ) %]
90   <div class="dialog message">The record you requested does not exist ([% biblionumber | html %]).</div>
91 [% ELSE %]
92
93 [% IntranetCoce    = Koha.Preference('IntranetCoce') %]
94 [% CoceProviders   = Koha.Preference('CoceProviders') %]
95 [% CoceHost        = Koha.Preference('CoceHost') %]
96 [% SyndeticsCovers = Koha.Preference('SyndeticsEnabled') && Koha.Preference('SyndeticsCoverImages') %]
97
98 [% INCLUDE 'cat-toolbar.inc' %]
99     [% IF decoding_error %]
100         <div>
101            <span class="biberror">
102             There is an error with this bibliographic record, the view may be degraded.</span>
103             <span class="error"><br/> Error: [% decoding_error | html %]</span>
104         </div>
105     [% END %]
106     [% IF analytics_error %]
107         <div>
108            <span class="analytics_error">
109             There was an error searching for analytic records, please see the logs for details.</span>
110         </div>
111     [% END %]
112     [% IF ( ocoins ) %]
113         <!-- COinS / OpenURL -->
114         <span class="Z3988" title="[% ocoins | html %]"></span>
115     [% END %]
116
117     [% IF ( AmazonCoverImages  || LocalCoverImages || IntranetCoce || ( SyndeticsCovers ) || (Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL')) ) %]
118         <div id="catalogue_detail_biblio" class="col-xs-9">
119     [% ELSE %]
120         <div id="catalogue_detail_biblio" class="col-xs-12">
121     [% END %]
122         <div class="page-section">
123
124         [% XSLTBloc | $raw %]
125
126         [% IF shelves.count %]
127             <span class="results_summary"><span class="label">Lists that include this title: </span>
128             [% FOREACH s IN shelves %]
129                 <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=view&amp;shelfnumber=[% s.shelfnumber | uri %]">[% s.shelfname | html %]</a>
130                 [% IF ( loop.last ) %][% ELSE %]|[% END %]
131             [% END %]
132             </span>
133         [% END %]
134         [% IF ( TagsEnabled &&  TagsShowOnDetail &&  TagLoop ) %]
135                 <span class="results_summary"><span class="label">Tags:</span>
136                     [% FOREACH TagLoo IN TagLoop %]
137                         [% IF ( CAN_user_tools_moderate_tags ) %]
138                         <a href="/cgi-bin/koha/tags/list.pl?tag=[% TagLoo.term |uri %]">[% TagLoo.term | html %]</a>
139                         [% ELSE %]
140                         [% TagLoo.term | html %]
141                         [% END %]
142                         <span class="weight">([% TagLoo.weight_total | html %])</span>[% IF ( loop.last ) %][% ELSE %], [% END %]
143                     [% END %]
144                     </span>
145         [% END %]
146         <span id="catalogue_detail_marc_preview" class="results_summary"><span class="label">MARC preview:</span> <a href="/cgi-bin/koha/catalogue/showmarc.pl?id=[% biblionumber | uri %]&amp;viewas=html" title="MARC" class="previewMARC">Show</a></span>
147         [% IF !item_level_itypes ||  Koha.Preference("BiblioItemtypeInfo") %]
148            <span class="results_summary itemtype"><span class="label">Itemtype:</span>
149           [% IF ( !noItemTypeImages && imageurl ) %]
150               <img src="[% imageurl | html %]" alt="" />
151           [% END %]
152           [% IF ( description ) %]
153               <span class="itypetext">[% description | html %]</span>
154           [% ELSE %]
155               <span class="itypetext">[% itemtype | html %]</span>
156           [% END %]
157           </span>
158         [% END %]
159
160         [% IF ( holdcount ) %]
161             <span class="results_summary">
162                 <span class="label">Holds:</span>
163                 <span class="number_box">
164                     [% IF CAN_user_reserveforothers_place_holds %]
165                         <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% biblionumber | uri %]">[% holdcount | html %]</a>
166                     [% ELSE %]
167                         <span>[% holdcount | html %]</span>
168                     [% END %]
169                 </span>
170             </span>
171         [% END %]
172
173         [% IF illrequests.count %]
174             <span class="results_summary">
175                 <span class="label">ILL requests:</span>
176                 [% IF CAN_user_ill %]
177                     [% FOREACH ill IN illrequests %]
178                         <a href="/cgi-bin/koha/ill/ill-requests.pl?method=illview&illrequest_id=[% ill.illrequest_id | uri %]">Request [% ill.illrequest_id | html %]</a>[% IF ! loop.last %], [% END %]
179                     [% END %]
180                 [% ELSE %]
181                     [% FOREACH ill IN illrequests %]
182                         <span>Request [% ill.illrequest_id | html %]</span>[% IF ! loop.last %], [% END %]
183                     [% END %]
184                 [% END %]
185             </span>
186         [% END %]
187
188         [% IF ( article_requests_count = Biblio.ArticleRequestsActiveCount( biblionumber ) ) %]
189             <span class="results_summary">
190                 <span class="label">Article requests:</span>
191                 <span class="number_box">
192                     <a href="/cgi-bin/koha/circ/request-article.pl?biblionumber=[% biblionumber | uri %]">[% article_requests_count | html %]</a>
193                 </span>
194             </span>
195         [% END %]
196
197         [% IF course_reserves %]
198             <span class="results_summary"><span class="label">Courses that have reserved this title: </span>
199             [% FOREACH c IN course_reserves %]
200                 <a href="/cgi-bin/koha/course_reserves/course-details.pl?course_id=[% c.course_id | uri %]">[% c.course.course_name | html %]</a>
201                 [% IF ( loop.last ) %][% ELSE %]|[% END %]
202             [% END %]
203             </span>
204         [% END %]
205         </div> [%# .page-section %]
206
207         [% IF ( AmazonCoverImages  || LocalCoverImages || IntranetCoce || ( SyndeticsCovers ) || (Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL')) ) %]
208         </div>
209             <div class="col-xs-3 bookcoverimg">
210                 <div id="biblio-cover-slider" class="cover-slider">
211                     [% IF ( LocalCoverImages ) %]
212                         [% IF localimages.count %]
213                             [% FOREACH image IN localimages %]
214                                 <div class="cover-image local-coverimg">
215                                     <a href="/cgi-bin/koha/catalogue/image.pl?imagenumber=[% image.imagenumber | uri %]" title="Local cover image">
216                                         <img src="/cgi-bin/koha/catalogue/image.pl?thumbnail=1&amp;imagenumber=[% image.imagenumber | uri %]" alt="Local cover image" data-link="/cgi-bin/koha/catalogue/imageviewer.pl?biblionumber=[% biblionumber | uri %]&amp;imagenumber=[% image.imagenumber | uri %]" />
217                                     </a>
218                                     <div class="hint">Local cover image</div>
219                                 </div>
220                             [% END %]
221                         [% END %]
222                     [% END %]
223
224                     [% IF ( AmazonCoverImages && normalized_isbn) %]
225                         <div class="cover-image" id="amazon-bookcoverimg">
226                             <a href="https://images-na.ssl-images-amazon.com/images/P/[% normalized_isbn | uri %].01.LZZZZZZZ.jpg" title="Amazon cover image">
227                                 <img src="https://images-na.ssl-images-amazon.com/images/P/[% normalized_isbn | uri %].01.MZZZZZZZ.jpg" alt="Amazon cover image" data-link="http://www.amazon[% AmazonTld | uri %]/gp/reader/[% normalized_isbn | uri %][% AmazonAssocTag | uri %]#reader-link"/>
228                             </a>
229                             <div class="hint">Image from Amazon.com</div>
230                         </div>
231                     [% END %]
232
233                     [% IF ( IntranetCoce && CoceProviders && normalized_isbn ) %]
234                         [% coce_id = normalized_ean || normalized_isbn %]
235                         <div class="cover-image coce-coverimg">
236                             [% IF ( coce_id ) %]
237                                 <a title="Image from Coce" class="[% coce_id | html %]" id="coce-thumbnail-preview"></a>
238                             [% ELSE %]
239                                 <span class="no-image">No cover image available</span>
240                             [% END %]
241                             <div class="hint">Image from Coce</div>
242                         </div>
243                     [% END %]
244
245                     [% IF ( SyndeticsCovers ) %]
246                         [% IF ( content_identifier_exists ) %]
247                         <div class="cover-image" id="syndetics-bookcoverimg">
248                             <a href="https://secure.syndetics.com/index.aspx?isbn=[% normalized_isbn | url %]/LC.GIF&amp;client=[% Koha.Preference('SyndeticsClientCode') | url %]&amp;type=xw10&amp;upc=[% normalized_upc | url %]&amp;oclc=[% normalized_oclc | url %]" title="Syndetics cover image">
249                                 <img src="https://secure.syndetics.com/index.aspx?isbn=[% normalized_isbn | url %]/[% Koha.Preference('SyndeticsCoverImageSize') | url %].GIF&amp;client=[% Koha.Preference('SyndeticsClientCode') | url %]&amp;type=xw10&amp;upc=[% normalized_upc | url %]&amp;oclc=[% normalized_oclc | url %]" alt="" class="thumbnail" />
250                             </a>
251                             <div class="hint">Image from Syndetics</div>
252                         </div>
253                             [% ELSE %]
254                                 <span class="no-image">No cover image available</span>
255                             [% END %]
256                     [% END %]
257
258                     [% IF Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL') %]
259                         [% SET custom_cover_image_url = biblio.custom_cover_image_url %]
260                         [% IF custom_cover_image_url %]
261                             <div class="cover-image" id="custom-coverimg">
262                                 <a class="custom_cover_image" href="[% custom_cover_image_url | url %]" title="Custom cover image">
263                                     <img id="custom-img" alt="Custom cover image" src="[% custom_cover_image_url | url %]" />
264                                 </a>
265                                 <div class="hint">Custom cover image</div>
266                             </div>
267                         [% END %]
268                     [% END %]
269                 </div> <!-- /.cover-slider -->
270             </div> <!-- /.bookcoverimg.col-xs-3 -->
271         [% ELSE %]
272         </div> <!-- /.col-xs-* -->
273         [% END # /IF ( AmazonCoverImages, etc ) %]
274 </div>
275
276 <div id="bibliodetails" class="toptabs">
277
278 <ul class="nav nav-tabs" role="tablist">
279     [% IF (SeparateHoldings) %]
280         <li role="presentation">
281             <a href="#holdings" aria-controls="holdings" role="tab" data-toggle="tab">[% Branches.GetLoggedInBranchname | html %] holdings ([% itemloop.size() || 0 | html %])</a>
282         </li>
283         <li role="presentation">
284             <a href="#otherholdings"  aria-controls="otherholdings" role="tab" data-toggle="tab">Other holdings ([% otheritemloop.size() || 0 | html %])</a>
285         </li>
286     [% ELSE %]
287         <li role="presentation">
288             <a href="#holdings" aria-controls="holdings" role="tab" data-toggle="tab">Holdings ([% itemloop.size() || 0 | html %])</a>
289         </li>
290     [% END %]
291     [% IF Koha.Preference('EnableItemGroups') %]
292         <li role="presentation">
293             <a href="#item_groups" aria-controls="item_groups" role="tab" data-toggle="tab">Item groups</a>
294         </li>
295     [% END %]
296 [% IF ( MARCNOTES || notes ) %]<li role="presentation"><a href="#description" aria-controls="description" role="tab" data-toggle="tab">Descriptions ([% ( MARCNOTES.size || 1 ) | html %])</a></li>[% END %]
297 [% IF ComponentParts && ComponentParts.size %]<li id="components_tab" role="presentation"><a href="#components"  aria-controls="components" role="tab" data-toggle="tab">Components ([% ComponentParts.size | html %])</a></li>[% END %]
298 [% IF ( subscriptionsnumber ) %]<li role="presentation"><a href="#subscriptions"  aria-controls="subscriptions" role="tab" data-toggle="tab">Subscriptions</a></li>[% END %]
299 [% IF Koha.Preference('AcquisitionDetails') %]<li role="presentation"><a href="#acq_details"  aria-controls="acq_details" role="tab" data-toggle="tab">Acquisition details</a></li>[% END %]
300 [% IF suggestions.count %]<li role="presentation"><a href="#suggestion_details"  aria-controls="suggestion_details" role="tab" data-toggle="tab">Suggestion details</a></li>[% END %]
301 [% IF ( FRBRizeEditions ) %][% IF ( XISBNS ) %]<li role="presentation"><a href="#editions"  aria-controls="editions" role="tab" data-toggle="tab">Editions</a></li>[% END %][% END %]
302 [% IF ( ( Koha.Preference('CatalogConcerns') || Koha.Preference('OpacCatalogConcerns') ) && CAN_user_editcatalogue_edit_catalogue ) %]<li role="presentation"><a href="#concerns" aria-controls="concerns" role="tab" data-toggle="tab">Concerns ([% biblio.tickets.count | html %])</a></li>[% END %]
303 [% IF ( LocalCoverImages ) %]
304     <li role="presentation">
305         <a href="#images"  aria-controls="images" role="tab" data-toggle="tab">Images ([% localimages.count || 0 | html %])</a>
306     </li>
307 [% END %]
308 [% IF HTML5MediaEnabled && HTML5MediaSets.size %]
309     <li id="media_tab" role="presentation"><a href="#html5media"  aria-controls="html5media" role="tab" data-toggle="tab">Play media</a></li>
310 [% END %]
311 [% IF ( Koha.Preference('NovelistSelectStaffEnabled') && Koha.Preference('NovelistSelectStaffProfile') && Koha.Preference('NovelistSelectStaffView') == 'tab' ) %]
312     <li class="NovelistSelect" style="display:none;" role="presentation"><a href="#NovelistSelect"  aria-controls="NovelistSelect" role="tab" data-toggle="tab">NoveList Select</a></li>
313 [% END %]
314 [% FOREACH plugins_intranet_catalog_biblio_tab IN plugins_intranet_catalog_biblio_tabs %]
315     <li role="presentation"><a href="#[% plugins_intranet_catalog_biblio_tab.id | uri %]"  aria-controls="[% plugins_intranet_catalog_biblio_tab.id | uri %]" role="tab" data-toggle="tab">[% plugins_intranet_catalog_biblio_tab.title | html %]</a></li>
316 [% END %]
317 </ul>
318
319 <div class="tab-content">
320 [% items_table_block_iter = 0 %]
321 [% BLOCK items_table %]
322     [% items_table_block_iter = items_table_block_iter + 1 %]
323     <div class="[% tab | html %]_table_table_controls">
324         [% IF (StaffDetailItemSelection) %]
325             | <a href="#" class="SelectAll" data-tab="[% tab | html %]"><i class="fa fa-check"></i> Select all</a> |
326             <a href="#" class="ClearAll" data-tab="[% tab | html %]"><i class="fa fa-remove"></i> Clear all</a>
327             <span class="itemselection_actions">
328               | Actions:
329               [% IF CAN_user_tools_items_batchdel %]
330                 <a class="itemselection_action_delete"><i class="fa fa-trash"></i> Delete selected items</a>
331               [% END %]
332               [% IF CAN_user_tools_items_batchmod %]
333                 <a class="itemselection_action_modify"><i class="fa fa-pencil"></i> Modify selected items</a>
334               [% END %]
335               [% IF CAN_user_editcatalogue_manage_item_groups && biblio.item_groups.count %]
336                 <a class="itemselection_action_item_group_set" href="#"><i class="fa fa-book"></i> Add/move to item group</a>
337                 <a class="itemselection_action_item_group_unset" href="#"><i class="fa fa-unlink"></i> Remove from item group</a>
338               [% END %]
339             </span>
340         [% END %]
341     </div>
342     <table class="items_table" id="[% tab | html %]_table">
343         <thead>
344             <tr>
345                 [% IF (StaffDetailItemSelection) %]<th id="[% tab | html %]_checkbox" data-colname="[% tab | html %]_checkbox" class="NoSort"></th>[% END %]
346                 [% IF Koha.Preference('LocalCoverImages') && ( tab == 'holdings' && itemloop_has_images || tab == 'otherholdings' && otheritemloop_has_images ) %]
347                     <th id="[% tab | html %]_cover_image" data-colname="[% tab | html %]_cover_image">Cover image</th>
348                 [% END %]
349                 [% IF ( item_level_itypes ) %]<th id="[% tab | html %]_itype" data-colname="[% tab | html %]_itype">Item type</th>[% END %]
350                 <th id="[% tab | html %]_holdingbranch" data-colname="[% tab | html %]_holdingbranch">Current library</th>
351                 <th id="[% tab | html %]_homebranch" data-colname="[% tab | html %]_homebranch">Home library</th>
352                 [% IF ( itemdata_ccode ) %]<th id="[% tab | html %]_ccode" data-colname="[% tab | html %]_ccode">Collection</th>[% END %]
353                 [% IF Koha.Preference('EnableItemGroups') %]
354                     <th id="[% tab | html %]_item_group" data-colname="[% tab | html %]_item_group">Item group</th>
355                 [% END %]
356                 <th id="[% tab | html %]_itemcallnumber" data-colname="[% tab | html %]_itemcallnumber">Call number</th>
357                 [% IF volinfo %]
358                     <th id="[% tab | html %]_enumchron" data-colname="[% tab | html %]_enumchron">Serial enumeration / chronology</th>
359                 [% END %]
360                 <th id="[% tab | html %]_status" data-colname="[% tab | html %]_status">Status</th>
361                 <th id="[% tab | html %]_lastseen" data-colname="[% tab | html %]_lastseen">Last seen</th>
362                 <th id="[% tab | html %]_issues" data-colname="[% tab | html %]_issues">Checkouts</th>
363                 <th id="[% tab | html %]_renewals" data-colname="[% tab | html %]_renewals">Renewals</th>
364                 <th id="[% tab | html %]_dateaccessioned" data-colname="[% tab | html %]_dateaccessioned">Date accessioned</th>
365                 <th id="[% tab | html %]_datelastborrowed" data-colname="[% tab | html %]_datelastborrowed">Date last borrowed</th>
366                 <th id="[% tab | html %]_barcode" data-colname="[% tab | html %]_barcode">Barcode</th>
367                 [% IF ( itemdata_uri ) %]<th id="[% tab | html %]_uri" data-colname="[% tab | html %]_uri">URL</th>[% END %]
368                 [% IF ( itemdata_copynumber ) %]<th id="[% tab | html %]_copynumber" data-colname="[% tab | html %]_copynumber">Copy number</th>[% END %]
369                 [% IF ( itemdata_stocknumber ) %]<th id="[% tab | html %]_stocknumber" data-colname="[% tab | html %]_stocknumber">Inventory number</th>[% END %]
370                 [% IF materials %]<th id="[% tab | html %]_materials" data-colname="[% tab | html %]_materials">Materials specified</th>[% END %]
371                 [% IF ( itemdata_itemnotes ) %]<th id="[% tab | html %]_itemnotes" data-colname="[% tab | html %]_itemnotes">Public notes</th>[% END %]
372                 [% IF ( itemdata_nonpublicnotes ) %]<th id="[% tab | html %]_itemnotes_nonpublic" data-colname="[% tab | html %]_itemnotes_nonpublic">Non-public notes</th>[% END %]
373                 [% IF ( hostrecords ) %]<th id="[% tab | html %]_hostrecord" data-colname="[% tab | html %]_hostrecord">Host records</th>[% END %]
374                 [% IF ( analyze ) %]<th id="[% tab | html %]_usedin" data-colname="[% tab | html %]_usedin">Used in</th><th></th>[% END %]
375                 [% IF ( ShowCourseReserves ) %]<th id="[% tab | html %]_course_reserves" data-colname="[% tab | html %]_course_reserves">Course reserves</th>[% END %]
376                 [% IF ( SpineLabelShowPrintOnBibDetails ) %]<th id="[% tab | html %]_spinelabel" data-colname="[% tab | html %]_spinelabel" class="NoSort">Spine label</th>[% END %]
377                 [% IF ( CAN_user_editcatalogue_edit_items ) %]<th id="[% tab | html %]_actions" data-colname="[% tab | html %]_actions"class="NoSort noExport">&nbsp;</th>[% END %]
378             </tr>
379         </thead>
380         <tbody>
381             [% FOREACH item IN items %]
382                 <tr id="item_[% item.itemnumber | html %]" data-itemnumber="[% item.itemnumber | html %]" data-duedate="[% item.datedue | html %]">
383                 [% IF (StaffDetailItemSelection) %]
384                     <td style="text-align:center;vertical-align:middle">
385                         [% IF item.can_be_edited %]
386                             <input type="checkbox" value="[% item.itemnumber | html %]" name="itemnumber" />
387                         [% END %]
388                     </td>
389                 [% END %]
390                     [% IF Koha.Preference('LocalCoverImages') && ( tab == 'holdings' && itemloop_has_images || tab == 'otherholdings' && otheritemloop_has_images ) %]
391                         <td class="cover">
392                             <div class="bookcoverimg">
393                                 <div class="cover-slider">
394                                     [% FOREACH image IN item.cover_images %]
395                                         <div class="cover-image local-coverimg">
396                                             <a href="/cgi-bin/koha/catalogue/image.pl?itemnumber=[% image.itemnumber | uri %]&amp;imagenumber=[% image.imagenumber | uri %]" title="Local cover image">
397                                                 <img src="/cgi-bin/koha/catalogue/image.pl?thumbnail=1&amp;imagenumber=[% image.imagenumber | uri %]" alt="Local cover image" data-link="/cgi-bin/koha/catalogue/imageviewer.pl?itemnumber=[% item.itemnumber | uri %]&amp;imagenumber=[% image.imagenumber | uri %]" />
398                                             </a>
399                                         </div>
400                                     [% END %]
401                                 </div>
402                             </div>
403                         </td>
404                     [% END %]
405
406                     [% IF ( item_level_itypes ) %]
407                         <td class="itype">
408                             [% SET itemtype = item.itemtype %]
409                             [% IF !noItemTypeImages && itemtype.image_location('intranet') %]
410                                 <img src="[% itemtype.image_location('intranet') | html %]" alt="[% itemtype.translated_description | html %]" title="[% itemtype.translated_description | html %]" />
411                             [% END %]
412                             <span class="itypedesc itypetext">[% itemtype.translated_description | html %]</span>
413                         </td>
414                     [% END %]
415                     <td class="location">[% UNLESS ( singlebranchmode ) %][% Branches.GetName( item.holdingbranch ) | html %] [% END %]</td>
416                     <td class="homebranch">
417                         <span class="homebranchdesc">[% Branches.GetName(item.homebranch) | html %]</span>
418                         <span class="shelvingloc">
419 <!--
420 If permanent location is defined, show description or code and display current location in parentheses. If not, display current location.
421 Note that permanent location is a code, and location may be an authval.
422 -->
423                             [% IF item.permanent_location %]
424                                 [% SET permloc_authval = AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.location', authorised_value => item.permanent_location ) %]
425                                 [% permloc_authval | html %]
426                                 [% IF item.location AND item.location != permloc_authval AND item.location != item.permanent_location %]
427                                     ([% item.location | html %])
428                                 [% END %]
429                             [% ELSE %]
430                                 [% item.location | html %]
431                             [% END %]
432                         </span>
433                     </td>
434                     [% IF ( itemdata_ccode ) %]<td>[% item.ccode | html %]</td>[% END %]
435                     [% IF Koha.Preference('EnableItemGroups') %]<td class="item_group">[% item.object.item_group.description | html %]</td>[% END %]
436                     <td class="itemcallnumber">[% IF ( item.itemcallnumber ) %] [% item.itemcallnumber | html %][% END %]</td>
437                     [% IF ( volinfo ) %]
438                         [% SET serial = item.itemserial.serial %]
439                         [% IF itemdata_publisheddate #If there is at least one published date, use it for sorting %]
440                             <td class="enumchron" data-order="[% serial.publisheddate | html %]">
441                         [% ELSE %]
442                             <td class="enumchron">
443                         [% END %]
444                             [% IF ( itemdata_enumchron ) %]
445                                 [% IF item.enumchron && serial.serialseq %]
446                                     <span class="enum">[% item.enumchron | html %]</span>
447                                     [% IF ( item.serialseq && item.enumchron != serial.serialseq ) %]
448                                         <span class="sep"> -- </span>
449                                         <span class="serialseq">[% serial.serialseq | html %]</span>
450                                     [% END %]
451                                 [% ELSIF item.enumchron %]
452                                     <span class="enum">[% item.enumchron | html %]</span>
453                                 [% ELSIF item.serialseq %]
454                                     <span class="serialseq">[% serial.serialseq | html %]</span>
455                                 [% END %]
456                                 [% IF serial.publisheddate %]
457                                     <span class="pubdate">([% serial.publisheddate | $KohaDates %])</span>
458                                 [% END %]
459                             [% END %]
460                             </span>
461                         </td>
462                     [% END %]
463                     <td class="status">
464
465                         [% IF item.checkout %]
466                           [% IF item.checkout.onsite_checkout %]
467                             <span>Currently in local use
468                           [% ELSE %]
469                             <span class="datedue">Checked out
470                           [% END %]
471                                 [% UNLESS ( item.not_same_branch) %]
472                                   [% IF item.checkout.onsite_checkout %]
473                                     by
474                                   [% ELSE %]
475                                     to
476                                   [% END %]
477                                   [% INCLUDE 'patron-title.inc' patron=item.checkout.patron hide_patron_infos_if_needed=1 %]
478                                 [% END %]
479                                 : due [% item.checkout.date_due | $KohaDates as_due_date => 1 %]
480                             </span>
481                         [% ELSIF ( item.transfer ) %]
482                             [% IF (item.transfer.datesent) %]
483                                 <span class="intransit">In transit from [% Branches.GetName( item.transfer.frombranch ) | html %] to [% Branches.GetName( item.transfer.tobranch ) | html %] since [% item.transfer.datesent | $KohaDates %]</span>
484                             [% ELSE %]
485                                 <span class="transitrequested">Transit pending from [% Branches.GetName( item.transfer.frombranch ) | html %] to [% Branches.GetName( item.transfer.tobranch ) | html %] since [% item.transfer.daterequested | $KohaDates %]</span>
486
487                             [% END %]
488                         [% END %]
489
490                         [% IF ( item.itemlost ) %]
491                             [% IF itemlostloop %]
492                                 [% FOREACH itemlostloo IN itemlostloop %]
493                                     [% IF itemlostloo.authorised_value == item.itemlost %]
494                                         <span class="lost">[% itemlostloo.lib | html %]</span>
495                                     [% END %]
496                                 [% END %]
497                             [% ELSE %]
498                                 <span class="lost">Unavailable (lost or missing)</span>
499                             [% END %]
500                         [% END %]
501
502                         [% IF ( item.withdrawn ) %]
503                             [% IF itemwithdrawnloop %]
504                                 [% FOREACH itemwithdrawnloo IN itemwithdrawnloop %]
505                                     [% IF itemwithdrawnloo.authorised_value == item.withdrawn %]
506                                         <span class="wdn">[% itemwithdrawnloo.lib | html %]</span>
507                                     [% END %]
508                                 [% END %]
509                             [% ELSE %]
510                                 <span class="wdn">Withdrawn</span>
511                             [% END %]
512                         [% END %]
513
514                         [% IF ( item.damaged ) %]
515                             [% IF itemdamagedloop %]
516                                 [% FOREACH itemdamagedloo IN itemdamagedloop %]
517                                     [% IF itemdamagedloo.authorised_value == item.damaged %]
518                                         <span class="dmg">[% itemdamagedloo.lib | html %]</span>
519                                     [% END %]
520                                 [% END %]
521                             [% ELSE %]
522                                 <span class="dmg">Damaged</span>
523                             [% END %]
524                         [% END %]
525
526                         [% IF ( item.notforloan || item.itemtype.notforloan ) %]
527                             <span class="notforloan">Not for loan
528                             [% SET not_for_loan_description = AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.notforloan', authorised_value => item.notforloan ) %]
529                             [% IF not_for_loan_description %]
530                                 <span class="reason">([% not_for_loan_description | html %])</span>
531                             [% END %]
532                             </span>
533                         [% END %]
534
535                         [% SET hold = item.first_hold %]
536                         [% IF hold %]
537                             [% IF hold.waitingdate %]
538                                 <span class="waitingat">Waiting at [% Branches.GetName( hold.branchcode ) | html %][% IF ( hold.desk_id ) %], [% hold.desk.desk_name | html %][% END %] since [% hold.waitingdate | $KohaDates %].</span>
539                                 [% IF canreservefromotherbranches AND ( hold.waitingdate OR hold.priority == 1 ) %]
540                                     <span class="heldfor">Hold for:</span>
541                                     [% INCLUDE 'patron-title.inc' patron=hold.borrower hide_patron_infos_if_needed=1 %]
542                                 [% END %]
543                             [% ELSE %]
544                                 <span class="holdonitem">There is an item level hold on this item (priority = [% hold.priority | html %]).</span>
545                             [% END %]
546                         [% END %]
547
548                         [% SET recall = item.recall %]
549                         [% IF recall %]
550                             [% IF recall.waiting_date %]
551                                 <span>Waiting at [% Branches.GetName( recall.pickup_library_id ) | html %] since [% recall.waiting_date | $KohaDates %]</span>
552                             [% ELSE %]
553                                 [% patron_link = BLOCK %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% recall.patron_id | uri %]">[% recall.patron.firstname | html %] [% recall.patron.surname | html %] ([% recall.patron.cardnumber | html %])</a>[% END %]
554                                 <span>recalled by [% patron_link| $raw %] on [% recall.created_date | $KohaDates %]</span>
555                             [% END %]
556                         [% END %]
557
558                         [% UNLESS ( item.notforloan || item.itemtype.notforloan || item.onloan || item.itemlost || item.withdrawn || item.damaged || item.transfer || hold || ( Koha.Preference('UseRecalls') && recall ) ) %]
559                             <span>Available</span>
560                         [% END %]
561
562                         [% IF ( item.restricted ) %]
563                             <span class="restricted">([% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.restricted', authorised_value => item.restricted ) | html %])</span>
564                         [% END %]
565
566                         [% IF ( item.bundle_host ) %]
567                             <span class="bundled">In bundle: [% INCLUDE 'biblio-title.inc' biblio = item.bundle_host.biblio link = 1 %]</span>
568                         [% END %]
569
570                     </td>
571                     <td class="datelastseen" data-order="[% item.datelastseen | html %]">[% item.datelastseen | $KohaDates %]</td>
572                     <td class="issues" data-order="[% item.issues || 0 | html %]">[% item.issues || 0 | html %]</td>
573                     <td class="renewals" data-order="[% item.renewals || 0 | html %]">[% item.renewals || 0 | html %]</td>
574                     <td class="dateaccessioned" data-order="[% item.dateaccessioned | html %]">[% item.dateaccessioned | $KohaDates %]</td>
575                     <td class="datelastborrowed" data-order="[% item.datelastborrowed | html %]">[% item.datelastborrowed | $KohaDates %]</td>
576                     <td><a href="/cgi-bin/koha/catalogue/moredetail.pl?itemnumber=[% item.itemnumber | uri %]&amp;biblionumber=[% item.biblionumber | uri %]&amp;bi=[% item.biblioitemnumber | uri %]#item[% item.itemnumber | uri %]">[% item.barcode | html %]</a></td>
577                     [% IF ( itemdata_uri ) %]
578                         [% IF item.uri.split(' \| ').size > 1 %]
579                             <td class="uri">
580                                 [% FOREACH uri IN item.uri.split(' \| ') %]<a href="[% uri | url %]">[% uri | html %]</a><br>[% END %]
581                             </td>
582                         [% ELSE %]
583                             <td class="uri">
584                                 [% IF item.uri %]
585                                     <a href="[% item.uri | url %]">[% IF Koha.Preference('URLLinkText') %][% Koha.Preference('URLLinkText') | html %][% ELSE %]Link to resource[% END %]</a>
586                                 [% END %]
587                             </td>
588                         [% END %]
589                     [% END %]
590                     [% IF ( itemdata_copynumber ) %]
591                         <td class="copynumber">[% item.copynumber | html %]</td>
592                     [% END %]
593                     [% IF ( itemdata_stocknumber ) %]
594                         <td class="stocknumber">[% item.stocknumber | html %]</td>
595                     [% END %]
596                     [% IF materials %]
597                         <td class="materials"> [% item.materials | html %] </td>
598                     [% END %]
599                     [% IF ( itemdata_itemnotes ) %]
600                         <td><div class="itemnotes">[% item.itemnotes | $raw %]</div></td>
601                     [% END %]
602                     [% IF itemdata_nonpublicnotes %]
603                         <td class="nonpublicnote">[% item.itemnotes_nonpublic | html %]</td>
604                     [% END %]
605                     [% IF ( hostrecords ) %]
606                         <td>[% IF ( item.hostbiblionumber) %]<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% item.hostbiblionumber | uri %]" >[% item.hosttitle | html %]</a>[% END %]</td>
607                     [% END %]
608                     [% IF ( analyze ) %]
609                         <td>
610                             [% IF ( item.countanalytics ) %]
611                                 <a href="/cgi-bin/koha/catalogue/search.pl?idx=hi&amp;q=[% item.itemnumber | uri %]">[% item.countanalytics | html %] analytics</a>
612                             [% END %]
613                         </td>
614                     [% END %]
615                     [% IF ( analyze ) %]
616                         <td><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?hostbiblionumber=[% item.biblionumber | uri %]&amp;hostitemnumber=[% item.itemnumber | uri %]">Create analytics</a></td>
617                     [% END %]
618
619                 [% IF ShowCourseReserves %]
620                     <td>
621                         [% IF item.course_reserves %]
622                             [% FOREACH r IN item.course_reserves %]
623                                 [% IF r.course.enabled == 'yes' %]
624                                     <p>
625                                       <a href="/cgi-bin/koha/course_reserves/course-details.pl?course_id=[% r.course.course_id | uri %]">
626                                          [% r.course.course_name | html %]
627                                          <!--[% IF r.course.course_number %] [% r.course.course_number | html %] [% END %]-->
628                                          [% IF r.course.section %] [% r.course.section | html %] [% END %]
629                                          [% IF r.course.term %] [% AuthorisedValues.GetByCode( 'TERM', r.course.term ) | html %] [% END %]
630                                       </a>
631                                    </p>
632                                [% END %]
633                            [% END %]
634                        [% END %]
635                     </td>
636                 [% END %]
637
638                 [% IF ( SpineLabelShowPrintOnBibDetails ) %]
639                     <td><a class="btn btn-default btn-xs print-label" href="/cgi-bin/koha/labels/spinelabel-print.pl?barcode=[% item.barcode | uri %]"><i class="fa fa-print"></i> Print label</a></td>
640                 [% END %]
641
642                 [% IF CAN_user_editcatalogue_edit_items %]
643                     <td class="actions">
644                         [% IF item.can_be_edited %]
645                             [% IF Koha.Preference('LocalCoverImages') OR Koha.Preference('OPACLocalCoverImages') %]
646                                 <div class="btn-group">
647                                     <a  class="btn btn-default btn-xs" href="/cgi-bin/koha/cataloguing/additem.pl?op=edititem&biblionumber=[% item.biblionumber | html %]&itemnumber=[% item.itemnumber | html %]#edititem"><i class="fa fa-pencil"></i> Edit</a><a class="btn btn-default btn-xs dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></a>
648                                     <ul class="dropdown-menu pull-right">
649                                         <li><a href="/cgi-bin/koha/tools/upload-cover-image.pl?itemnumber=[% item.itemnumber | uri %]&amp;filetype=image"><i class="fa fa-upload"></i> Upload image</a></li>
650                                     </ul>
651                                 </div>
652                             [% ELSE %]
653                                 <a class="btn btn-default btn-xs" href="/cgi-bin/koha/cataloguing/additem.pl?op=edititem&biblionumber=[% item.biblionumber | html %]&itemnumber=[% item.itemnumber | html %]#edititem"><i class="fa fa-pencil"></i> Edit</a>
654                             [% END %]
655                         [% END %]
656                         [% IF bundlesEnabled %]
657                             <button class="btn btn-default btn-xs details-control"><i class="fa fa-folder"></i> Manage bundle ([% item.bundled | html %]|[% item.bundled_lost | html %])</button>
658                         [% END %]
659                     </td>
660                 [% END %]
661                 </tr>
662             [% END %]
663         </tbody>
664     </table>
665
666 [% END %][%# end of block items_table %]
667
668 [% IF Koha.Preference('EnableItemGroups') %]
669     <div role="tabpanel" class="tab-pane" id="item_groups">
670         [% IF CAN_user_editcatalogue_manage_item_groups %]
671             <div class="item_groups_table_table_controls">
672                 <a href="#" class="item-group-create btn btn-default btn-xs"><i class="fa fa-plus"></i> New item group</a>
673             </div>
674         [% END %]
675         <table class="items-group-table" id="items-group-table">
676             <thead>
677                 <tr>
678                     <td>Display order</td>
679                     <td>Description</td>
680                     <td>&nbsp;</td>
681                 </tr>
682             </thead>
683         </table>
684     </div>
685 [% END %]
686
687
688 <div role="tabpanel" class="tab-pane" id="holdings">
689
690 [% IF ( Koha.Preference('NovelistSelectStaffEnabled') && Koha.Preference('NovelistSelectStaffProfile') && Koha.Preference('NovelistSelectStaffView') == 'above' ) %]
691     <span class="results_summary NovelistSelect" style="display:none;">
692         <span class="label">Novelist Select: </span>
693         <div data-novelist-novelistselect=[% normalized_isbn | html %]></div>
694     </span>
695 [% END %]
696
697 [% IF ( count ) %]
698     [% IF ( showncount ) %]
699         [% PROCESS items_table tab="holdings" items=itemloop %]
700         [% END %]
701                 [% IF ( hiddencount ) %]
702                    <p><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber | uri %]&amp;showallitems=1">Show all items ([% hiddencount | html %] hidden)</a>
703                 [% END %]               
704                 [% IF ( debug_display ) %]
705                 <br /><br />
706                 <table>
707                         <tr><td>itemdata_enumchron</td><td>[% itemdata_enumchron | html %]</td></tr>
708                         <tr><td>itemdata_copynumber</td><td>[% itemdata_copynumber | html %]</td></tr>
709                         <tr><td>serial</td><td>[% serial | html %]</td></tr>
710                 </table>
711                 [% END %]
712 [% ELSE %]
713     [% IF ( ALTERNATEHOLDINGS ) %]
714     [% FOREACH ALTERNATEHOLDING IN ALTERNATEHOLDINGS %]
715         <div id="alternateholdings"><span class="holdings_label">Holdings:</span> [% ALTERNATEHOLDING.holding | html %]</div>
716     [% END %]
717     [% ELSE %]
718     <div id="noitems">No physical items for this record</div>
719     [% END %]
720 [% END %]
721
722 [% IF ( Koha.Preference('NovelistSelectStaffEnabled') && Koha.Preference('NovelistSelectStaffProfile') && Koha.Preference('NovelistSelectStaffView') == 'below' ) %]
723     <span class="results_summary NovelistSelect" style="display:none;">
724         <span class="label">Novelist Select: </span>
725         <div data-novelist-novelistselect=[% normalized_isbn | html %]></div>
726     </span>
727 [% END %]
728     </div>
729
730 [% IF (SeparateHoldings) %]
731     <div role="tabpanel" class="tab-pane" id="otherholdings">
732         [% IF (otheritemloop.size) %]
733             [% PROCESS items_table tab="otherholdings" items=otheritemloop %]
734         [% ELSE %]
735             <span class="nootheritems">No other items.</span>
736         [% END %]
737     </div>
738 [% END %]
739
740 [% IF ( MARCNOTES ) %]
741
742 <div role="tabpanel" class="tab-pane" id="description">
743 <div class="content_set">
744
745     [% FOREACH MARCNOTE IN MARCNOTES %]
746         <p>
747         [% IF MARCNOTE.marcnote.match('^https?://\S+$') %]
748             <a href="[% MARCNOTE.marcnote | url %]">[% MARCNOTE.marcnote | html %]</a>
749         [% ELSE %]
750             [% MARCNOTE.marcnote | html | html_line_break %]
751         [% END %]
752         </p>
753 [% END %]
754 </div>
755 </div>
756
757 [% END %]
758
759 [% IF ComponentParts && ComponentParts.size %]
760 <div role="tabpanel" class="tab-pane" id="components">
761     <div class="content_set">
762         <table>
763             [% FOR PART IN ComponentParts %]
764             <tr>
765                 <td>
766                     [% PART | $raw %]
767                 </td>
768             </tr>
769             [% END %]
770         </table>
771         [% IF ComponentParts.size == Koha.Preference('MaxComponentRecords')%]
772         <p>Only [% ComponentParts.size | html %] results are shown: <a href="/cgi-bin/koha/catalogue/search.pl?q=[% ComponentPartsQuery | url %]"/>show all component parts</a></p>
773         [% END %]
774     </div> <!-- /.content_set -->
775 </div> <!-- /#components -->
776
777 [% END %]
778
779 [% IF ( subscriptionsnumber ) %]
780 <div role="tabpanel" class="tab-pane" id="subscriptions">
781 <div id="catalogue_detail_subscriptions">
782     <h2>This is a serial subscription</h2>
783     <p> (There are [% subscriptionsnumber | html %] subscriptions associated with this title).</p> 
784     [% FOREACH subscription IN subscriptions %]
785             [% IF subscription.branchcode %]
786                 <h3>At library: [% Branches.GetName(subscription.branchcode) || subscription.branchcode | html %]</h3>
787             [% END %]
788             [% IF ( subscription.closed ) %]<p>This subscription is closed.</p>[% END %]
789             [% IF ( subscription.location ) %]<p class="subscription_location">Location: [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.location', authorised_value => subscription.location ) | html %]</p>[% END %]
790             [% IF ( subscription.callnumber ) %]<p>Callnumber: [% subscription.callnumber | html %] </p>[% END %]
791             [% IF ( subscription.subscriptionnotes ) %]<p>[% subscription.subscriptionnotes | html | html_line_break %] </p>[% END %]
792             [% IF ( subscription.missinglist ) %]<p>Missing issues: [% subscription.missinglist | html %] </p>[% END %]
793             [% IF ( subscription.librariannote ) %]<p>([% subscription.librariannote | html %])</p>[% END %]
794             [% IF ( subscription.latestserials ) %]
795             <p> The [% subscription.staffdisplaycount | html %] latest issues related to this subscription:</p>
796             <table>
797                 <tr>
798                     <th>Issue #</th>
799                     <th>Date arrived</th>
800                     <th>Date published</th>
801                     <th>Status</th>
802                     <th>Note</th>
803                 </tr>
804             [% FOREACH latestserial IN subscription.latestserials %]
805                 <tr>
806                     <td>[% latestserial.serialseq | html %]</td>
807                     <td data-order="[% latestserial.planneddate | html %]">[% latestserial.planneddate | $KohaDates %]</td>
808                     <td data-order="[% latestserial.publisheddate | html %]">[% latestserial.publisheddate | $KohaDates %]</td>
809                     <td>
810                       [% IF ( latestserial.status1 ) %]<span>Expected</span>[% END %]
811                       [% IF ( latestserial.status2 ) %]<span>Arrived</span>[% END %]
812                       [% IF ( latestserial.status3 ) %]<span>Late</span>[% END %]
813                       [% IF ( latestserial.status4 ) %]<span>Missing</span>[% END %]
814                       [% IF ( latestserial.status41 ) %]<span>Missing (never received)</span>[% END %]
815                       [% IF ( latestserial.status42 ) %]<span>Missing (sold out)</span>[% END %]
816                       [% IF ( latestserial.status43 ) %]<span>Missing (damaged)</span>[% END %]
817                       [% IF ( latestserial.status44 ) %]<span>Missing (lost)</span>[% END %]
818                       [% IF ( latestserial.status5 ) %]<span>Not issued</span>[% END %]
819                       [% IF ( latestserial.status6 ) %]<span>Delete</span>[% END %]
820                       [% IF ( latestserial.status7 ) %]<span>Claimed</span>[% END %]
821                       [% IF ( latestserial.status8 ) %]<span>Stopped</span>[% END %]
822                     </td>
823                     <td>[% latestserial.notes | html %]</td>
824                 </tr>
825             [% END %]
826             </table>
827             [% END %]
828             <a href="/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=[% subscription.subscriptionid | uri %]">Subscription details</a>
829     [% END %]
830 </div>
831 </div>
832 [% END %]
833
834 [% IF Koha.Preference('AcquisitionDetails') %]
835 <div role="tabpanel" class="tab-pane" id="acq_details">
836   [% IF orders.count %]
837     <table id="orders">
838       <thead>
839         <tr>
840           <th>Vendor</th>
841           <th>Invoice</th>
842           <th>Basket group</th>
843           <th>Basket</th>
844           <th>Order number</th>
845           <th>Creation date</th>
846           <th>Receive date</th>
847           <th>Status</th>
848           <th>Quantity</th>
849           <th title="Estimated cost tax incl. while pending, actual cost tax incl. once received">Price</th>
850           <th>Internal note</th>
851           <th>Subscription</th>
852           <th>Subscription call number</th>
853         </tr>
854       </thead>
855       <tbody>
856       [% FOR order IN orders %]
857         [% SET basket = order.basket %]
858         [% SET vendor = basket.bookseller %]
859           <tr>
860             <td>
861                 <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% vendor.id | uri %]" title="Vendor detail page">[% vendor.name | html %]</a>
862             </td>
863             <td>
864             [% IF order.invoiceid %]
865                 [% IF CAN_user_acquisition %]
866                     <a href="/cgi-bin/koha/acqui/invoice.pl?invoiceid=[% order.invoiceid | uri %]"
867                        title="Invoice detail page">
868                        [% order.invoice.invoicenumber | html %]</a>
869                 [% ELSE %]
870                     [% order.invoice.invoicenumber | html %]
871                 [% END %]
872             [% END %]
873             </td>
874             <td>
875             [% IF basket.basketgroupid %]
876                 [% SET basket_group = basket.basket_group %]
877                 [% IF CAN_user_acquisition_group_manage %]
878                     <a href="/cgi-bin/koha/acqui/basketgroup.pl?op=add&booksellerid=[% vendor.id | uri %]&basketgroupid=[% basket_group.id | uri %]">[% basket_group.name | html%] ([% basket_group.id | html %])</a>
879                 [% ELSE %]
880                     [% basket_group.name | html %] ([% basket_group.id | html %])
881                 [% END %]
882             [% END %]
883             </td>
884             <td>[% IF CAN_user_acquisition_order_manage %]
885                 <a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basket.basketno | uri %]">[% basket.basketname | html %] ([% basket.basketno | html %])</a>
886             [% ELSE %]
887                 [% basket.basketname | html %] ([% basket.basketno | html %])
888             [% END %]</td>
889             <td>[% order.ordernumber | html %]</td>
890             <td data-order="[% basket.creationdate | uri %]">[% basket.creationdate | $KohaDates%]</td>
891             <td data-order="[% order.datereceived | uri %]">[% order.datereceived | $KohaDates%]</td>
892             <td>
893               [% SWITCH order.orderstatus %]
894                 [% CASE 'new' %]<span>New</span>
895                 [% CASE 'ordered' %]<span>Ordered</span>
896                 [% CASE 'partial' %]<span>Partial</span>
897                 [% CASE 'complete' %]<span>Complete</span>
898                 [% CASE 'cancelled' %]<span>Cancelled</span>
899               [% END %]
900             </td>
901             <td>[% order.quantity | html %]</td>
902             <td>[% IF ( order.unitprice_tax_included > 0 ) %][% order.unitprice_tax_included | $Price %][% ELSE %][% order.ecost_tax_included | $Price %][% END %]
903             <td>[% order.order_internalnote | html %]</td>
904             <td>
905                 [% IF order.subscriptionid %]
906                     <a href="/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=[% order.subscriptionid | uri %]">[% order.subscriptionid | html %]</a>
907                 [% END %]
908             </td>
909             <td>
910                 [% IF order.subscriptionid %]
911                     [% order.subscription.callnumber | html %]
912                 [% END %]
913             </td>
914           </tr>
915       [% END %]
916       </tbody>
917     </table>
918   [% ELSE %]
919     <span class="noorder">There is no order for this bibliographic record.</span>
920   [% END %]
921 </div>
922 [% END %]
923
924 [% IF suggestions.count %]
925     <div role="tabpanel" class="tab-pane" id="suggestion_details">
926         [% IF nb_archived_suggestions > 0 %]
927             <p>[% tnpx('pluralization', 'There is one archived suggestion.', 'There are {count} archived suggestions.', nb_archived_suggestions, { count = nb_archived_suggestions }) | $raw  %]
928         [% END %]
929         <table id="suggestions" class="sorted">
930             <thead>
931                 <tr>
932                     <th class="NoSort">&nbsp;</th>
933                     <th class="anti-the">Suggestion</th>
934                     <th>Suggested by - on</th>
935                     <th>Managed by - on</th>
936                     <th>Last modification by - on</th>
937                     <th>Library</th>
938                     <th>Fund</th>
939                     <th>Status</th>
940                 </tr>
941             </thead>
942             <tbody>
943             [% FOREACH suggestion IN suggestions %]
944                 <tr>
945                     <td>[% suggestion.suggestionid | html %]</td>
946                     <td>
947                         <a href="/cgi-bin/koha/suggestion/suggestion.pl?suggestionid=[% suggestion.suggestionid | uri %]&amp;op=show" title="suggestion" >
948                             [% suggestion.title | html %][% IF ( suggestion.author ) %], by [% suggestion.author | html %][% END %]</a>
949                         <br />
950                         [% IF ( suggestion.copyrightdate ) %]&copy; [% suggestion.copyrightdate | html %] [% END %]
951                         [% IF ( suggestion.volumedesc ) %]; Volume:<em>[% suggestion.volumedesc | html %]</em> [% END %]
952                         [% IF ( suggestion.isbn ) %]; ISBN:<em>[% suggestion.isbn | html %]</em> [% END %][% IF ( suggestion.publishercode ) %]; Published by [% suggestion.publishercode | html %] [% END %][% IF ( suggestion.publicationyear ) %] in <em>[% suggestion.publicationyear | html %]</em> [% END %][% IF ( suggestion.place ) %] in <em>[% suggestion.place | html %]</em> [% END %][% IF ( suggestion.collectiontitle ) %]; [% suggestion.collectiontitle | html %] [% END %][% IF ( suggestion.itemtype ) %]; [% AuthorisedValues.GetByCode( 'SUGGEST_FORMAT', suggestion.itemtype, 0 ) | html %] [% END %]<br />[% IF ( suggestion.note ) %]<div class="suggestion_note"><i class="fa fa-comment"></i> [% suggestion.note | html %]</div>[% END %]
953                     </td>
954                     <td>
955                         <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% suggestion.suggestedby | uri %]">[% INCLUDE 'patron-title.inc' patron => suggestion.suggester %]</a>
956                         [% IF suggestion.suggesteddate %] - [% suggestion.suggesteddate | $KohaDates %][% END %]
957                     </td>
958                     <td>
959                         <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% suggestion.managedby | uri %]">[% INCLUDE 'patron-title.inc' patron => suggestion.manager %]</a>
960                         [% IF suggestion.manageddate %] - [% suggestion.manageddate | $KohaDates %][% END %]
961                     </td>
962                     <td>
963                         <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% suggestion.lastmodificationby | uri %]">[% INCLUDE 'patron-title.inc' patron => suggestion.last_modifier %]</a>
964                         [% IF suggestion.lastmodificationdate %] - [% suggestion.lastmodificationdate | $KohaDates %][% END %]
965                     </td>
966                     <td>
967                         [% Branches.GetName( suggestion.branchcode ) | html %]
968                     </td>
969                     <td>
970                         [% suggestion.fund.budget_name | html %]
971                     </td>
972                     <td>
973                         [% IF    suggestion.STATUS == 'ASKED'     %]<span>Pending</span>
974                         [% ELSIF suggestion.STATUS == 'ACCEPTED'  %]<span>Accepted</span>
975                         [% ELSIF suggestion.STATUS == 'ORDERED'   %]<span>Ordered</span>
976                         [% ELSIF suggestion.STATUS == 'REJECTED'  %]<span>Rejected</span>
977                         [% ELSIF suggestion.STATUS == 'CHECKED'   %]<span>Checked</span>
978                         [% ELSIF suggestion.STATUS == 'AVAILABLE' %]<span>Available</span>
979                         [% ELSIF AuthorisedValues.GetByCode( 'SUGGEST_STATUS', suggestion.STATUS ) %]
980                             [% AuthorisedValues.GetByCode( 'SUGGEST_STATUS', suggestion.STATUS ) | html %]
981                         [% ELSE %]<span>Status unknown</span>
982                         [% END %]
983                         [% IF suggestion.reason %]
984                             <br />([% suggestion.reason | html %])
985                         [% END %]
986                     </td>
987                 </tr>
988                 [% END %]
989             </tbody>
990         </table>
991     </div>
992 [% END %]
993
994 [% IF ( FRBRizeEditions ) %][% IF ( XISBNS ) %]
995 <div role="tabpanel" class="tab-pane" id="editions"><h4>Editions</h4>
996 <table>
997 [% FOREACH XISBN IN XISBNS %]<tr>[% IF ( AmazonCoverImages ) %]<td><a href="http://www.amazon.com/gp/reader/[% XISBN.normalized_isbn | uri %][% AmazonAssocTag | uri %]#reader-link"><img src="https://images-na.ssl-images-amazon.com/images/P/[% XISBN.normalized_isbn | html %].01._AA75_PU_PU-5_.jpg" /></a></td>[% END %]
998 [% IF ( !item_level_itypes || Koha.Preference('BiblioItemtypeInfo') ) %]<td>[% IF ( noItemTypeImages ) %]<span class="itypetext">[% XISBN.description | html %]</span>[% ELSE %]<img src="[% XISBN.imageurl | html %]" alt="[% XISBN.description | html %]" title="[% XISBN.description | html %]">[% END %]</td>[% END %]
999 <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% XISBN.biblionumber | uri %]">[% XISBN.title | html %]</a> <span>by</span> [% XISBN.author | html %] &copy;[% XISBN.copyrightdate | html %]
1000   [% IF ( XISBN.publishercode ) %]
1001 [% XISBN.publishercode | html %] [% IF ( XISBN.place ) %]([% XISBN.place | html %])[% END %] [% IF ( XISBN.publicationyear ) %], [% XISBN.publicationyear | html %][% END %] [% IF ( XISBN.editionstatement ) %][% XISBN.editionstatement | html %][% END %] [% IF ( XISBN.editionresponsibility ) %][% XISBN.editionresponsibility | html %][% END %]
1002     [% END %]
1003                 [% IF ( XISBN.pages ) %] [% END %][% XISBN.pages | html %] [% IF ( XISBN.illus ) %][% XISBN.illus | html %][% END %]
1004                 [% IF ( XISBN.size ) %], [% END %][% XISBN.size | html %]
1005 </td>
1006
1007 [% END %]
1008 </table></div>[% END %]
1009 [% END %]
1010
1011 [% IF ( ( Koha.Preference('CatalogConcerns') || Koha.Preference('OpacCatalogConcerns') ) && CAN_user_editcatalogue_edit_catalogue ) %]
1012 <div role="tabpanel" class="tab-pane" id="concerns">
1013     <fieldset class="action" style="cursor:pointer;">
1014         <a id="hideResolved"><i class="fa fa-minus-square"></i> Hide resolved</a>
1015         | <a id="showAll"><i class="fa fa-bars"></i> Show all</a>
1016     </fieldset>
1017
1018     <table id="table_concerns" width="100%">
1019         <thead>
1020             <tr>
1021                 <th>Reported</th>
1022                 <th>Details</th>
1023                 <th>Status</th>
1024                 <th data-class-name="actions noExport">Actions</th>
1025             </tr>
1026         </thead>
1027     </table>
1028 </div>
1029 [% END %]
1030
1031 [% IF ( LocalCoverImages ) %]
1032     <div role="tabpanel" class="tab-pane" id="images">
1033         [% IF localimages.count %]
1034             <p>Click on an image to view it in the image viewer</p>
1035             <ul class="thumbnails">
1036                 [% FOREACH image IN localimages %]
1037                     [% IF image %]
1038                         <li id="imagenumber-[% image.imagenumber | html %]" class="thumbnail">
1039                             <a href="/cgi-bin/koha/catalogue/imageviewer.pl?biblionumber=[% biblionumber | uri %]&amp;imagenumber=[% image.imagenumber | uri %]">
1040                                 <img src="/cgi-bin/koha/catalogue/image.pl?thumbnail=1&amp;imagenumber=[% image.imagenumber | uri %]" />
1041                             </a>
1042                             [% IF CAN_user_tools_upload_local_cover_images %]
1043                                 <a href="#" class="remove"><i class="fa fa-trash"></i> Delete image</a>
1044                             [% END %]
1045                         </li>
1046                     [% END %]
1047                 [% END %]
1048             </ul>
1049         [% ELSE # - No image passed JavaScript takes care %]
1050             <span class="noimagesuploaded">No images have been uploaded for this bibliographic record yet.</span>
1051         [% END %]
1052         [% IF ( CAN_user_tools_upload_local_cover_images ) %]
1053             <p>Upload an image file: <a class="btn btn-default btn-xs" href="/cgi-bin/koha/tools/upload-cover-image.pl?biblionumber=[% biblionumber | uri %]&amp;filetype=image"><i class="fa fa-upload" aria-hidden="true"></i> Upload</a>
1054             </p>
1055         [% END %]
1056     </div>
1057 [% END %]
1058
1059 [% IF ( HTML5MediaEnabled ) %]
1060 <div role="tabpanel" class="tab-pane" id="html5media">
1061           [% FOREACH HTML5MediaSet IN HTML5MediaSets %]
1062             <p>
1063                 [% IF HTML5MediaSet.is_youtube %]
1064                     <iframe id="player" width="640" height="360" src="[% HTML5MediaSet.srcblock | url %]"></iframe>
1065                 [% ELSE %]
1066                   <[% HTML5MediaParent | html %] controls preload=none>
1067                     <[% HTML5MediaSet.child | html %] src="[% HTML5MediaSet.srcblock | url %]"[% HTML5MediaSet.typeblock | html %] />
1068                     [[% HTML5MediaParent | html %] tag not supported by your browser.]
1069                   </[% HTML5MediaParent | html %]>
1070                 [% END %]
1071             </p>
1072           [% END %]
1073 </div>
1074 [% END %]
1075
1076
1077 [% IF ( Koha.Preference('NovelistSelectStaffEnabled') && Koha.Preference('NovelistSelectStaffProfile') && Koha.Preference('NovelistSelectStaffView') == 'tab' ) %]
1078     <div role="tabpanel" class="tab-pane" id="NovelistSelect" class="novelistSelect">
1079         <div data-novelist-novelistselect=[% normalized_isbn | html %]></div>
1080     </div>
1081 [% END %]
1082
1083 [% FOREACH plugins_intranet_catalog_biblio_tab IN plugins_intranet_catalog_biblio_tabs %]
1084     <div role="tabpanel" class="tab-pane" id="[% plugins_intranet_catalog_biblio_tab.id | html %]">
1085         [% plugins_intranet_catalog_biblio_tab.content | $raw %]
1086     </div>
1087 [% END %]
1088
1089 </div><!-- /tab-content -->
1090 </div><!-- /bibliodetails -->
1091
1092 <div id="export" style="margin-top: 1em;">
1093 <form method="get" action="/cgi-bin/koha/catalogue/export.pl">
1094 <table>  <tr>
1095       <th>Save record</th>   </tr>
1096     <tr><td> Select download format:    <select name="format">
1097         <option value="mods">MODS (XML)</option>
1098         <option data-toggle="modal" data-target="#exportModal_">Dublin Core</option>
1099         <option value="marcxml">MARCXML</option>
1100         <option value="marc8">MARC (non-Unicode/MARC-8)</option>
1101         <option value="utf8">MARC (Unicode/UTF-8)</option>    </select>
1102         <input type="submit" name="save" class="btn btn-primary" value="Download record" /></td>
1103   </tr>
1104   <tr><td>
1105     <input type="hidden" name="op" value="export" /><input type="hidden" name="bib" value="[% biblionumber | html %]" />
1106   </td></tr>
1107 </table>
1108 </form>
1109 </div>
1110
1111 <div id="marcPreview" class="modal" tabindex="-1" role="dialog" aria-labelledby="marcPreviewLabel" aria-hidden="true">
1112     <div class="modal-dialog modal-lg">
1113     <div class="modal-content">
1114     <div class="modal-header">
1115         <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
1116         <h3 id="marcPreviewLabel">MARC preview</h3>
1117     </div>
1118     <div class="modal-body">
1119         <div id="loading"> <img src="[% interface | html %]/[% theme | html %]/img/spinner-small.gif" alt="" /> Loading </div>
1120     </div>
1121     <div class="modal-footer">
1122         <button class="btn btn-default" data-dismiss="modal" aria-hidden="true">Close</button>
1123     </div>
1124     </div>
1125     </div>
1126 </div>
1127
1128             </main>
1129         </div> <!-- /.col-sm-10.col-sm-push-2 -->
1130
1131         <div class="col-sm-2 col-sm-pull-10">
1132             <aside>
1133                 [% INCLUDE 'biblio-view-menu.inc' %]
1134             </aside>
1135         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
1136      </div> <!-- /.row -->
1137
1138 [% END %]
1139
1140 <div class="modal fade" id="modal-item-group-create" tabindex="-1" role="dialog" aria-labelledby="modal-item-group-create-label">
1141     <div class="modal-dialog">
1142         <div class="modal-content">
1143             <div class="modal-header">
1144                 <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
1145                 <h3 id="modal-item-group-create-label"><i class="fa fa-plus"></i> Create a new item group</h3>
1146             </div>
1147             <form id="modal-item-group-create-form" class="validated">
1148                 <div class="modal-body">
1149                     <fieldset>
1150                         <p>
1151                             <label for="item_group_description" class="required">Name: </label>
1152                             <input name="description" id="modal-item-group-create-form-description" type="text" size="30" required="required" class="required" />
1153                             <span class="required">Required</span>
1154                         </p>
1155                         <p>
1156                             <label for="item_group_display_order" class="required">Display order: </label>
1157                             <input name="display_order" id="modal-item-group-create-form-display_order" value="0" size="5" required="required" class="required" />
1158                             <span class="required">Required</span>
1159                             <br/>
1160                             <span class="hint">Numbers only, item groups will be displayed in counting order</span>
1161                         </p>
1162                     </fieldset>
1163                 </div>
1164                 <div class="modal-footer">
1165                     <button id="modal-item-group-create-submit" class="btn btn-default"><i class="fa fa-plus"></i> Submit</button>
1166                     <button class="btn btn-link" data-dismiss="modal" aria-hidden="true">Cancel</button>
1167                 </div>
1168             </form>
1169         </div>
1170     </div>
1171 </div>
1172
1173 <div class="modal fade" id="modal-item-group-edit" tabindex="-1" role="dialog" aria-labelledby="modal-item-group-edit-label">
1174     <div class="modal-dialog">
1175         <div class="modal-content">
1176             <div class="modal-header">
1177                 <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
1178                 <h3 id="modal-item-group-edit-label"><i class='fa fa-edit'></i> Edit item group</h3>
1179             </div>
1180             <form id="modal-item-group-edit-form" class="validated">
1181                 <div class="modal-body">
1182                     <fieldset>
1183                         <p>
1184                             <label for="item_group_description" class="required">Name: </label>
1185                             <input name="description" id="modal-item-group-edit-form-description" type="text" size="30" required="required" class="required" />
1186                             <span class="required">Required</span>
1187                         </p>
1188                         <p>
1189                             <label for="item_group_display_order" class="required">Sort order: </label>
1190                             <input name="display_order" id="modal-item-group-edit-form-display_order" size="5" />
1191                             <span class="hint">Numbers only, item groups will be displayed in counting order</span>
1192                         </p>
1193                     </fieldset>
1194                 </div>
1195                 <div class="modal-footer">
1196                     <button id="modal-item-group-edit-submit" class="btn btn-default"><i class='fa fa-edit'></i> Submit</button>
1197                     <button class="btn btn-link" data-dismiss="modal" aria-hidden="true">Cancel</button>
1198                 </div>
1199             </form>
1200         </div>
1201     </div>
1202 </div>
1203
1204 <div class="modal fade" id="modal-item-group-delete" tabindex="-1" role="dialog" aria-labelledby="modal-item-group-delete-label">
1205     <div class="modal-dialog">
1206         <div class="modal-content">
1207             <div class="modal-header">
1208                 <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
1209                 <h3 id="modal-item-group-delete-label"><i class='fa fa-trash'></i> Delete item group</h3>
1210             </div>
1211             <div class="modal-body">
1212                 Are you sure you want to delete this item group?
1213             </div>
1214             <div class="modal-footer">
1215                 <button id="modal-item-group-delete-submit" class="btn btn-danger"><i class='fa fa-trash'></i> Delete</button>
1216                 <button class="btn btn-link" data-dismiss="modal" aria-hidden="true">Cancel</button>
1217             </div>
1218         </div>
1219     </div>
1220 </div>
1221
1222 <div class="modal fade" id="modal-item-group-set" tabindex="-1" role="dialog" aria-labelledby="modal-item-group-set-label">
1223     <div class="modal-dialog">
1224         <div class="modal-content">
1225             <div class="modal-header">
1226                 <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
1227                 <h3 id="modal-item-group-set-label"><i class='fa fa-book'></i> Set item group for items</h3>
1228             </div>
1229             <form id="modal-item-group-set-form" class="validated">
1230                 <div class="modal-body">
1231                     <fieldset>
1232                         <p>
1233                             <label for="item_group" class="required">Item group: </label>
1234                             <select name="item_group" id="item-group-add-form-select">
1235                                 [% FOREACH ig IN biblio.item_groups %]
1236                                     <option value="[% ig.id | html %]">[% ig.description | html %]</option>
1237                                 [% END %]
1238                             </select>
1239                             <span class="required">Required</span>
1240                         </p>
1241                     </fieldset>
1242                 </div>
1243                 <div class="modal-footer">
1244                     <button id="modal-item-group-set-submit" class="btn btn-default"><i class='fa fa-book'></i> Set item group</button>
1245                     <button class="btn btn-link" data-dismiss="modal" aria-hidden="true">Cancel</button>
1246                 </div>
1247             </form>
1248         </div>
1249     </div>
1250 </div>
1251
1252 <div class="modal fade" id="modal-item-group-unset" tabindex="-1" role="dialog" aria-labelledby="modal-item-group-unset-label">
1253     <div class="modal-dialog">
1254         <div class="modal-content">
1255             <div class="modal-header">
1256                 <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
1257                 <h3 id="modal-item-group-unset-label"><i class='fa fa-unlink'></i> Remove item from item group</h3>
1258             </div>
1259             <div class="modal-body">
1260                 Are you sure you want to remove these item(s) from their item group(s)?
1261             </div>
1262             <div class="modal-footer">
1263                 <button id="modal-item-group-unset-submit" class="btn btn-danger"><i class='fa fa-unlink'></i> Remove</button>
1264                 <button class="btn btn-link" data-dismiss="modal" aria-hidden="true">Cancel</button>
1265             </div>
1266         </div>
1267     </div>
1268 </div>
1269
1270     [% IF bundlesEnabled %]
1271     <div class="modal" id="addToBundleModal" tabindex="-1" role="dialog" aria-labelledby="addToBundleLabel">
1272         <form id="addToBundleForm" action="">
1273             <div class="modal-dialog" role="document">
1274                 <div class="modal-content">
1275                     <div class="modal-header">
1276                         <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
1277                         <h3 id="addToBundleLabel">Add to bundle</h3>
1278                     </div>
1279                     <div class="modal-body">
1280                         <div id="addResult"></div>
1281                         <fieldset class="rows">
1282                             <ol>
1283                                 <li>
1284                                     <label class="required" for="external_id">Item barcode: </label>
1285                                     <input type="text" id="external_id" name="external_id" required="required">
1286                                     <span class="required">Required</span>
1287                                 </li>
1288                             </ol>
1289                         </fieldset>
1290                     </div>
1291                     <div class="modal-footer">
1292                         <button type="submit" class="btn btn-default">Submit</button>
1293                         <button class="btn btn-default" data-dismiss="modal" aria-hidden="true">Close</button>
1294                     </div>
1295                 </div>
1296             </div>
1297         </form>
1298     </div>
1299
1300     <div class="modal" id="removeFromBundleModal" tabindex="-1" role="dialog" aria-labelledby="removeFromBundleLabel">
1301         <form id="removeFromBundleForm" action="">
1302             <div class="modal-dialog" role="document">
1303                 <div class="modal-content">
1304                     <div class="modal-header">
1305                         <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
1306                         <h3 id="removeFromBundleLabel">Remove from bundle</h3>
1307                     </div>
1308                     <div class="modal-body">
1309                         <div id="removeResult"></div>
1310                         <fieldset class="rows">
1311                             <ol>
1312                                 <li>
1313                                     <label class="required" for="external_id">Item barcode: </label>
1314                                     <input type="text" id="rm_external_id" name="external_id" required="required">
1315                                     <span class="required">Required</span>
1316                                 </li>
1317                             </ol>
1318                         </fieldset>
1319                     </div>
1320                     <div class="modal-footer">
1321                         <button type="submit" class="btn btn-default">Submit</button>
1322                         <button class="btn btn-default" data-dismiss="modal" aria-hidden="true">Close</button>
1323                     </div>
1324                 </div>
1325             </div>
1326         </form>
1327     </div>
1328     [% END %]
1329
1330     [% IF ( Koha.Preference('CatalogConcerns') ) %]
1331     [% INCLUDE 'modals/add_catalog_concern.inc' %]
1332     [% END %]
1333
1334     [% IF ( ( Koha.Preference('CatalogConcerns') || Koha.Preference('OpacCatalogConcerns') ) && CAN_user_editcatalogue_edit_catalogue ) %]
1335     [% INCLUDE 'modals/display_ticket.inc' %]
1336     [% END %]
1337
1338 [% MACRO jsinclude BLOCK %]
1339     [% INCLUDE 'catalog-strings.inc' %]
1340     [% Asset.js("js/catalog.js") | $raw %]
1341     [% Asset.js("js/recalls.js") | $raw %]
1342     [% Asset.js("js/coce.js") | $raw %]
1343     [% Asset.js("lib/Chocolat/js/chocolat.js") | $raw %]
1344     [% IF ( Koha.Preference('CatalogConcerns') ) %]
1345         <script>
1346             /* Set a variable needed by add_catalog_concern.js */
1347             var logged_in_user_borrowernumber = "[% logged_in_user.borrowernumber | html %]";
1348         </script>
1349         [% Asset.js("js/modals/add_catalog_concern.js") | $raw %]
1350      [% END %]
1351      [% IF ( ( Koha.Preference('CatalogConcerns') || Koha.Preference('OpacCatalogConcerns') ) && CAN_user_editcatalogue_edit_catalogue ) %]
1352          <script>
1353             $(document).ready(function() {
1354                 var table_settings = [% TablesSettings.GetTableSettings( 'cataloguing', 'concerns', 'table_concerns', 'json' ) | $raw %];
1355
1356                 var filtered = false;
1357                 let additional_filters = {
1358                     resolved_date: function(){
1359                         if ( filtered ) {
1360                             return { "=": null };
1361                         } else {
1362                             return;
1363                         }
1364                     },
1365                     biblio_id: [% biblionumber | uri %]
1366                 };
1367
1368                 var tickets_url = '/api/v1/tickets';
1369                 var tickets = $("#table_concerns").kohaTable({
1370                     "ajax": {
1371                         "url": tickets_url
1372                     },
1373                     "embed": [
1374                         "reporter",
1375                         "resolver",
1376                         "updates+count",
1377                     ],
1378                     'emptyTable': '<div class="dialog message">' + _("Congratulations, there are no catalog concerns.") + '</div>',
1379                     "columnDefs": [ {
1380                         "targets": [0,1,2],
1381                         "render": function (data, type, row, meta) {
1382                             if ( type == 'display' ) {
1383                                 if ( data != null ) {
1384                                     return data.escapeHtml();
1385                                 }
1386                                 else {
1387                                     return "";
1388                                 }
1389                             }
1390                             return data;
1391                         }
1392                     } ],
1393                     "columns": [
1394                         {
1395                             "data": "reported_date:reporter.firstname",
1396                             "render": function(data, type, row, meta) {
1397                                 let reported = '<span class="date clearfix">' + $datetime(row.reported_date) + '</span>';
1398                                 reported += '<span class="reporter clearfix">' + $patron_to_html(row.reporter, {
1399                                     display_cardnumber: false,
1400                                     url: true
1401                                 }) + '</span>';
1402                                 return reported;
1403                             },
1404                             "searchable": true,
1405                             "orderable": true
1406                         },
1407                         {
1408                             "data": "title:body",
1409                             "render": function(data, type, row, meta) {
1410                                 let resolved = ( row.resolved_date ) ? true : false;
1411                                 let result = '<a role="button" href="#" data-toggle="modal" data-target="#ticketDetailsModal" data-concern="' + encodeURIComponent(row.ticket_id) + '" data-resolved="' + resolved + '">' + row.title + '</a>';
1412                                 if (row.updates_count) {
1413                                     result += '<span class="pull-right"><a role="button" href="#" data-toggle="modal" data-target="#ticketDetailsModal" data-concern="' + encodeURIComponent(row.ticket_id) + '"><i class="fa fa-comment" aria-hidden="true"></i> ' + row.updates_count + '</a></span>';
1414                                 }
1415                                 result += '<div id="detail_' + row.ticket_id + '" class="hidden">' + row.body + '</div>';
1416                                 return result;
1417                             },
1418                             "searchable": true,
1419                             "orderable": true
1420                         },
1421                         {
1422                             "data": "resolved_date",
1423                             "render": function(data, type, row, meta) {
1424                                 let result = '';
1425                                 if (row.resolved_date) {
1426                                     result += _("Resolved by:") + ' <span>' + $patron_to_html(row.resolver, {
1427                                         display_cardnumber: false,
1428                                         url: true
1429                                     }) + '</span>';
1430                                     result += '<span class="clearfix">' + $datetime(row.resolved_date) + '</span>';
1431                                 } else {
1432                                     result += _("Open");
1433                                 }
1434                                 return result;
1435                             },
1436                             "searchable": true,
1437                             "orderable": true
1438                         },
1439                         {
1440                             "data": function(row, type, val, meta) {
1441                                 let resolved = ( row.resolved_date ) ? true : false;
1442                                 let result = '<a class="btn btn-default btn-xs" role="button" href="#" data-toggle="modal" data-target="#ticketDetailsModal" data-concern="' + encodeURIComponent(row.ticket_id) + '" data-resolved="' + resolved + '"><i class="fa fa-eye" aria-hidden="true"></i> ' + _("Details") + '</a>';
1443                                 return result;
1444                             },
1445                             "searchable": false,
1446                             "orderable": false
1447                         },
1448                     ]
1449                 }, table_settings, 0, additional_filters);
1450
1451                 $('#hideResolved').on("click", function() {
1452                     filtered = true;
1453                     tickets.DataTable().draw();
1454                 });
1455
1456                 $('#showAll').on("click", function() {
1457                     filtered = false;
1458                     tickets.DataTable().draw();
1459                 });
1460             });
1461         </script>
1462         [% Asset.js("js/modals/display_ticket.js") | $raw %]
1463     [% END %]
1464     <script>
1465         var interface = "[% interface | html %]";
1466         var theme = "[% theme | html %]";
1467         // http://www.oreillynet.com/pub/a/javascript/2003/10/21/amazonhacks.html
1468         function verify_cover_images() {
1469             // Loop over each container in the template which contains covers
1470             $(".cover-slider").each(function(){
1471                 var lightbox_descriptions = [];
1472                 var first_shown = 0;
1473                 $(this).find(".cover-image").each( function( index ){
1474                 var div = $(this);
1475                 // Find the image in the container
1476                 var img = div.find("img")[0];
1477                 if( $(img).length > 0 ){
1478                     var description = "";
1479                         // All slides start hidden. If this is the first one, show it.
1480                         if( first_shown == 0 ){
1481                             div.show();
1482                             first_shown = 1;
1483                         }
1484                         // Check if Amazon image is present
1485                         if ( div.attr("id") == "amazon-bookcoverimg"  ) {
1486                             w = img.width;
1487                             h = img.height;
1488                             if ((w == 1) || (h == 1)) {
1489                                 // Amazon returned single-pixel placeholder
1490                                 // Remove the container
1491                                 div.remove();
1492                             } else {
1493                                 lightbox_descriptions.push(_("Amazon cover image (<a href='%s'>see the original image</a>)").format($(img).data('link')));
1494                             }
1495                         } else if( div.attr("id") == "custom-coverimg" ){
1496                             if ( (img.complete != null) && (!img.complete) || img.naturalHeight == 0 ) {
1497                                 // No image was loaded via the CustomCoverImages system preference
1498                                 // Remove the container
1499                                 div.remove();
1500                             } else {
1501                                 lightbox_descriptions.push("Custom cover image");
1502                             }
1503                         } else if ( div.attr("id") == "syndetics-bookcoverimg" ){
1504                                 lightbox_descriptions.push(_("Syndetics cover image (<a href='%s'>see the original image</a>)").format($(img).data('link')));
1505                         }
1506                         else if( div.hasClass("coce-coverimg" ) ){
1507                             // Identify which service's image is being loaded by Coce
1508                             var coce_description;
1509                             if( $(img).attr("src").indexOf('amazon.com') >= 0 ){
1510                                 coce_description = ("Coce image from Amazon.com");
1511                             } else if( $(img).attr("src").indexOf('google.com') >= 0 ){
1512                                 coce_description = _("Coce image from Google Books");
1513                             } else if( $(img).attr("src").indexOf('openlibrary.org') >= 0 ){
1514                                 coce_description = _("Coce image from Open Library");
1515                             }
1516                             div.find(".hint").html(coce_description);
1517                             lightbox_descriptions.push(coce_description);
1518                         } else if ( div.attr("class") == "cover-image local-coverimg" ) {
1519                             lightbox_descriptions.push(_("Local cover image (<a href='%s'>edit</a>)").format($(img).data('link')));
1520                         } else {
1521                             lightbox_descriptions.push(_("Cover image source unknown"));
1522                         }
1523                     }
1524                 });
1525
1526                 // Lightbox for cover images
1527                 Chocolat(this.querySelectorAll('.cover-image a'), {
1528                     description: function(){
1529                         return lightbox_descriptions[this.settings.currentImageIndex];
1530                     }
1531                 });
1532
1533             });
1534
1535             $(".cover-slider").each(function(){
1536                 var coverSlide = this;
1537                 var coverImages = $(this).find(".cover-image");
1538                 if( coverImages.length > 1 ){
1539                     coverImages.each(function( index ){
1540                         // If more that one image is present, add a navigation link
1541                         // for activating the slide
1542                         var covernav = $("<a href=\"#\" data-num=\"" + index + "\" class=\"cover-nav\"></a>");
1543                         if( index == 0 ){
1544                             // Set the first navigation link as active
1545                             $(covernav).addClass("nav-active");
1546                         }
1547                         $(covernav).html("<i class=\"fa fa-circle\"></i>");
1548                         $(coverSlide).append( covernav );
1549                     });
1550                 }
1551
1552                 if( $(coverSlide).attr('id') == 'biblio-cover-slider' // Hide if not visible, but only for the biblio images. Images for items are only local cover images
1553                     && $(coverSlide).find(".cover-image:visible").length < 1 ){
1554                     $(coverSlide).remove();
1555                 } else {
1556                     $(coverSlide).addClass("cover-slides");
1557                     var img = $(coverSlide).find(".cover-image:visible").find("img")[0];
1558                     if( $(img).length > 0 && img.complete && img.naturalHeight > 0 ){
1559                         $(".cover-slides").css({"background-image":"none"});
1560                     }
1561                 }
1562             });
1563
1564             $("#editions img").each(function(i){
1565                 if ( this.src.indexOf('amazon.com') >= 0 ) {
1566                     w = this.width;
1567                     h = this.height;
1568                     if ((w == 1) || (h == 1)) {
1569                         this.src = 'https://images-na.ssl-images-amazon.com/images/G/01/x-site/icons/no-img-sm.gif';
1570                     } else if ( (this.complete != null) && (!this.complete) || this.naturalHeight == 0 ) {
1571                         this.src = 'https://images-na.ssl-images-amazon.com/images/G/01/x-site/icons/no-img-sm.gif';
1572                     }
1573                 }
1574             });
1575         }
1576
1577         function removeLocalImage(imagenumber) {
1578             var thumbnail = $("#imagenumber-" + imagenumber );
1579             var copy = thumbnail.html();
1580             thumbnail.find("img").css("opacity", ".2");
1581             thumbnail.find("a.remove").html("<img style='display:inline-block' src='" + interface + "/" + theme + "/img/spinner-small.gif' alt='' />");
1582             $.ajax({
1583                 url: "/cgi-bin/koha/svc/cover_images?action=delete&imagenumber=" + imagenumber,
1584                 success: function(data) {
1585                     $(data).each( function(i) {
1586                         if ( this.deleted == 1 ) {
1587                             thumbnail.remove();
1588                         } else {
1589                             thumbnail.html( copy );
1590                             alert(_("An error occurred on deleting this image"));
1591                         }
1592                         if ( $('ul.thumbnails > li').length == 0 ) {
1593                             showNoImageMessage();
1594                         }
1595                     });
1596                 },
1597                 error: function(data) {
1598                     thumbnail.html( copy );
1599                     alert(_("An error occurred on deleting this image"));
1600                 }
1601             });
1602         }
1603
1604         function showNoImageMessage() {
1605             var no_images_msg = _("No images have been uploaded for this bibliographic record yet.");
1606             no_images_msg = '<p>' + no_images_msg + '</p>';
1607             [% IF ( CAN_user_tools_upload_local_cover_images ) %]
1608                 var please_upload = _("Upload an image file: %sUpload%s").format("<a class='btn btn-default btn-xs' href='/cgi-bin/koha/tools/upload-cover-image.pl?biblionumber=" + biblionumber + "&amp;filetype=image'><i class='fa fa-upload' aria-hidden='true'></i> ","</a>");
1609                 no_images_msg += "<p id='upload_image'>" + please_upload + '</p>';
1610             [% END %]
1611             $('#images').html(no_images_msg);
1612         }
1613
1614         [% IF StaffDetailItemSelection %]
1615             function itemSelectionBuildDeleteLink(div) {
1616                 var itemnumbers = new Array();
1617                 $("input[name='itemnumber'][type='checkbox']:checked", div).each(function() {
1618                     itemnumbers.push($(this).val());
1619                 });
1620                 if (itemnumbers.length > 0) {
1621                     var url = '/cgi-bin/koha/tools/batchMod.pl?op=show&del=1';
1622                     url += '&itemnumber=' + itemnumbers.join('&itemnumber=');
1623                     url += '&biblionumber=[% biblionumber | uri %]';
1624                     url += '&src=CATALOGUING';
1625                     $('a.itemselection_action_delete').attr('href', url);
1626                 } else {
1627                     return false;
1628                 }
1629                 return true
1630             }
1631
1632             function itemSelectionBuildModifyLink(div) {
1633                 var itemnumbers = new Array();
1634                 $("input[name='itemnumber'][type='checkbox']:checked", div).each(function() {
1635                     itemnumbers.push($(this).val());
1636                 });
1637                 if (itemnumbers.length > 0) {
1638                     var url = '/cgi-bin/koha/tools/batchMod.pl?op=show';
1639                     url += '&itemnumber=' + itemnumbers.join('&itemnumber=');
1640                     url += '&biblionumber=[% biblionumber | uri %]';
1641                     url += '&src=CATALOGUING';
1642                     $('a.itemselection_action_modify').attr('href', url);
1643                 } else {
1644                     return false;
1645                 }
1646                 return true;
1647             }
1648
1649             function itemSelectionBuildActionLinks(tab) {
1650                 var div = $("#" + tab);
1651                 var delete_link_ok = itemSelectionBuildDeleteLink(div);
1652                 var modify_link_ok = itemSelectionBuildModifyLink(div);
1653                 if (modify_link_ok || delete_link_ok) {
1654                     $('.itemselection_actions', div).show();
1655                 } else {
1656                     $('.itemselection_actions', div).hide();
1657                 }
1658             }
1659
1660             $(document).ready(function() {
1661                 $('table.items_table').each(function() {
1662                     var div = $(this).parent().attr("id");
1663                     itemSelectionBuildActionLinks(div);
1664                 });
1665
1666                 $("input[name='itemnumber'][type='checkbox']").change(function() {
1667                     var div = $(this).parents('table').parent().parent().attr("id");
1668                     itemSelectionBuildActionLinks(div);
1669                 });
1670
1671                 $(".SelectAll").on("click",function(e){
1672                     e.preventDefault();
1673                     var tab = $(this).data("tab");
1674                     $("input[name='itemnumber'][type='checkbox']", $("#"+tab)).prop('checked', true);
1675                     itemSelectionBuildActionLinks(tab);
1676                 });
1677
1678                 $(".ClearAll").on("click",function(e){
1679                     e.preventDefault();
1680                     var tab = $(this).data("tab");
1681                     $("input[name='itemnumber'][type='checkbox']", $("#"+tab)).prop('checked', false);
1682                     itemSelectionBuildActionLinks(tab);
1683                 });
1684             });
1685         [% END %]
1686
1687         $(document).ready(function() {
1688             // Pick details tab to display by default
1689             [% IF count == 0 %]
1690                 [% IF ( Koha.Preference('HTML5MediaEnabled') == 'staff' or Koha.Preference('HTML5MediaEnabled') == 'both' ) && HTML5MediaSets.size %]
1691                     $(".nav-tabs a[href='#html5media']").tab("show");
1692                 [% ELSIF ComponentParts && ComponentParts.size %]
1693                     $(".nav-tabs a[href='#components']").tab("show");
1694                 [% ELSE %]
1695                     $(".nav-tabs a[href='#holdings']").tab("show");
1696                 [% END %]
1697             [% ELSE %]
1698                 $(".nav-tabs a[href='#holdings']").tab("show");
1699             [% END %]
1700             $('#search-form').focus();
1701             $('.thumbnails > li > .remove').click(function() {
1702                 var result = confirm(_("Are you sure you want to delete this cover image?"));
1703
1704                 if ( result == true ) {
1705                     var imagenumber = $(this).parent().attr('id').split('-')[1];
1706                     removeLocalImage(imagenumber);
1707                 }
1708
1709                 return false;
1710             });
1711             [% IF ( IntranetCoce && CoceProviders ) %]
1712                 KOHA.coce.getURL('[% CoceHost | html %]', '[% CoceProviders | html %]');
1713             [% END %]
1714
1715             $("body").on("click",".previewMARC", function(e){
1716                 e.preventDefault();
1717                 var page = $(this).attr("href");
1718                 $("#marcPreview .modal-body").load(page + " table");
1719                 $('#marcPreview').modal({show:true});
1720             });
1721             $("#marcPreview").on("hidden.bs.modal", function(){
1722                 $("#marcPreview .modal-body").html("<div id=\"loading\"><img src=\"[% interface | html %]/[% theme | html %]/img/spinner-small.gif\" alt=\"\" /> "+_("Loading")+"</div>");
1723             });
1724             [% IF ( Koha.Preference('NovelistSelectStaffEnabled') && Koha.Preference('NovelistSelectStaffProfile') && ( normalized_isbn || normalized_upc ) ) %]
1725                 novSelect.loadContentForQuery({
1726                     ClientIdentifier : '[% IF normalized_isbn %][% normalized_isbn | html %][% ELSE %][% normalized_upc | html %][% END %]',
1727                     ISBN : '[% IF normalized_isbn %][% normalized_isbn | html %][% ELSE %][% normalized_upc | html %][% END %]',
1728                     version : '2.1'
1729                 },
1730                 '[% Koha.Preference('NovelistSelectStaffProfile') | html %]',
1731                 '[% Koha.Preference('NovelistSelectPassword') | html %]',
1732                 function(d){
1733                     if ( d.length > 0 ){ //If no content
1734                         $(".NovelistSelect").show();
1735                     }
1736                  });
1737              [% END %]
1738              $(".print-label").on("click", function(e){
1739                 e.preventDefault();
1740                 link = $(this).attr("href");
1741                 openWindow(link,"Print spine label",400,400);
1742              });
1743              $(".cover-slider").on("click",".cover-nav", function(e){
1744                  e.preventDefault();
1745                 var cover_slider = $(this).parent();
1746                 // Adding click handler for cover image navigation links
1747                 var num = $(this).data("num");
1748                 $(cover_slider).find(".cover-nav").removeClass("nav-active");
1749                 $(this).addClass("nav-active");
1750                 $(cover_slider).find(".cover-image").hide();
1751                 $(cover_slider).find(".cover-image").eq( num ).show();
1752              });
1753         });
1754
1755
1756         [% IF ( IntranetCoce && CoceProviders ) %]
1757             let counter_wait = 0;
1758             function wait_for_images(cb){
1759
1760                 var loaded = 1;
1761                 counter_wait++;
1762
1763                 if ( loaded ) {
1764                     loaded = KOHA.coce.done;
1765                 }
1766
1767                 if (!loaded && counter_wait < 50) {// Do not wait more than 5 seconds
1768                     window.setTimeout(function(){wait_for_images(cb);}, 100);
1769                 } else {
1770                     if (counter_wait >= 50 ) {
1771                         console.log("Could not retrieve the images")
1772                     }
1773                     cb();
1774                 }
1775             }
1776
1777             $(window).load(function() {
1778                 wait_for_images(verify_cover_images);
1779             });
1780         [% ELSE %]
1781             $(window).load(function() {
1782                 verify_cover_images();
1783             });
1784         [% END %]
1785     </script>
1786     [% IF ( Koha.Preference('NovelistSelectStaffEnabled') && Koha.Preference('NovelistSelectStaffProfile') && ( normalized_isbn || normalized_upc ) ) %]
1787         <script src="https://imageserver.ebscohost.com/novelistselect/ns2init.js"></script>
1788     [% END %]
1789     [% INCLUDE 'datatables.inc' %]
1790     [% Asset.js("lib/jquery/plugins/jquery.dataTables.columnFilter.js") | $raw %]
1791     [% INCLUDE 'columns_settings.inc' %]
1792     [% INCLUDE 'js-date-format.inc' %]
1793     [% INCLUDE 'js-patron-format.inc' %]
1794     [% INCLUDE 'js-biblio-format.inc' %]
1795     [% Asset.js("js/browser.js") | $raw %]
1796     [% Asset.js("js/table_filters.js") | $raw %]
1797     <script>
1798         var browser;
1799         browser = KOHA.browser('[% searchid | html %]', parseInt(biblionumber, 10));
1800         browser.show();
1801
1802         [% IF bundlesEnabled %]
1803         var bundle_settings = [% TablesSettings.GetTableSettings('catalogue', 'detail','bundle_tables','json') | $raw %];
1804         var bundle_lost_value = [% Koha.Preference('BundleLostValue') | html %];
1805         [% END %]
1806         $(document).ready(function() {
1807
1808             [% IF bundlesEnabled %] // Bundle handling
1809             function createChild ( row, itemnumber, duedate ) {
1810
1811                 // Toolbar
1812                 var bundle_toolbar = $('<div id="toolbar" class="btn-toolbar"></div>');
1813                 bundle_toolbar.append('<a class="btn btn-default" data-toggle="modal" data-target="#addToBundleModal" data-item="' + itemnumber + '"><i class="fa fa-plus"></i> ' + _("Add to bundle") + '</a>');
1814                 bundle_toolbar.append('<a class="btn btn-default" data-toggle="modal" data-target="#removeFromBundleModal" data-item="' + itemnumber + '"><i class="fa fa-minus"></i> ' + _("Remove from bundle") + '</a>');
1815
1816                 // Disable management if there's a duedate
1817                 if(duedate) {
1818                     bundle_toolbar.children('.btn').addClass("disabled");
1819                 }
1820
1821                 // This is the table we'll convert into a DataTable
1822                 var bundles_table = $('<table class="display tbundle" data-itemnumber="'+itemnumber+'" id="bundle_table_'+itemnumber+'" width="100%"/>');
1823
1824                 // Display it the child row
1825                 row.child( bundle_toolbar.add(bundles_table), 'bundle' ).show();
1826
1827                 // Initialise as a DataTable
1828                 var bundle_table_url = "/api/v1/items/" + itemnumber + "/bundled_items?";
1829                 var bundle_table = bundles_table.kohaTable({
1830                     "ajax": {
1831                         "url": bundle_table_url
1832                     },
1833                     "embed": [
1834                         "biblio",
1835                         "return_claim.patron"
1836                     ],
1837                     "order": [[ 1, "asc" ]],
1838                     "columnDefs": [ {
1839                         "targets": [0,1,2,3],
1840                         "render": function (data, type, row, meta) {
1841                             if ( data && type == 'display' ) {
1842                                 return data.escapeHtml();
1843                             }
1844                             return data;
1845                         }
1846                     } ],
1847                     "columns": [
1848                         {
1849                             "data": "biblio.title:biblio.subtitle:biblio.medium",
1850                             "title": _("Title"),
1851                             "searchable": true,
1852                             "orderable": true,
1853                             "render": function(data, type, row, meta) {
1854                                 return $biblio_to_html(row.biblio, { link: 1 });
1855                             }
1856                         },
1857                         {
1858                             "data": "biblio.author",
1859                             "title": _("Author"),
1860                             "searchable": true,
1861                             "orderable": true,
1862                         },
1863                         {
1864                             "data": "callnumber",
1865                             "title": _("Callnumber"),
1866                             "searchable": true,
1867                             "orderable": true,
1868                         },
1869                         {
1870                             "data": "external_id",
1871                             "title": _("Barcode"),
1872                             "searchable": true,
1873                             "orderable": true,
1874                         },
1875                         {
1876                             "data": "lost_status:last_seen_date:return_claim.patron",
1877                             "title": _("Status"),
1878                             "searchable": false,
1879                             "orderable": true,
1880                             "render": function(data, type, row, meta) {
1881                                 if ( row.lost_status == bundle_lost_value ) {
1882                                     let out = '<span class="lost">' + _("Last seen") + ': ' + $date(row.last_seen_date) + '</span>';
1883                                     if ( row.return_claim ) {
1884                                         out = out + '<span class="claims_return">' + _("Claims returned by") + ': ' + $patron_to_html( row.return_claim.patron, { display_cardnumber: false, url: true } ) + '</span>';
1885                                     }
1886                                     return out;
1887                                 }
1888                                 else if ( row.lost_status !== 0 ) {
1889                                     return '<span class="lost">' + _("Lost") + ': ' + row.lost_status + '</span>';
1890                                 }
1891                                 return '<span class="available">' + _("Present") + '</span>';
1892                             }
1893                         },
1894                         {
1895                             "data": function( row, type, val, meta ) {
1896                                 var result;
1897                                 if (duedate) {
1898                                     result = '<button class="btn btn-default btn-xs remove disabled" role="button" data-itemnumber="'+row.item_id+'"><i class="fa fa-minus" aria-hidden="true"></i> '+_("Remove")+'</button>\n';
1899                                 } else {
1900                                     result = '<button class="btn btn-default btn-xs remove" role="button" data-itemnumber="'+row.item_id+'"><i class="fa fa-minus" aria-hidden="true"></i> '+_("Remove")+'</button>\n';
1901                                 }
1902                                 return result;
1903                             },
1904                             "title": _("Actions"),
1905                             "searchable": false,
1906                             "orderable": false,
1907                             "class": "noExport"
1908                         }
1909                     ]
1910                 }, bundle_settings, 1);
1911                 $(".tbundle").on("click", ".remove:not(.disabled)", function(){
1912                     var bundle_table = $(this).closest('table');
1913                     var host_itemnumber = bundle_table.data('itemnumber');
1914                     var component_itemnumber = $(this).data('itemnumber');
1915                     var unlink_item_url = "/api/v1/items/" + host_itemnumber + "/bundled_items/" + component_itemnumber;
1916                     $.ajax({
1917                         type: "DELETE",
1918                         url: unlink_item_url,
1919                         success: function(){
1920                             bundle_table.DataTable({ 'retrieve': true }).draw(false);
1921                         }
1922                     });
1923                 });
1924
1925                 return;
1926             }
1927
1928             var bundle_changed;
1929             var bundle_form_active;
1930             $("#addToBundleModal").on("shown.bs.modal", function(e){
1931                 var button = $(e.relatedTarget);
1932                 var item_id = button.data('item');
1933                 $("#addResult").replaceWith('<div id="addResult"></div>');
1934                 $("#addToBundleForm").attr('action', '/api/v1/items/' + item_id + '/bundled_items');
1935                 $("#external_id").focus();
1936                 bundle_changed = 0;
1937                 bundle_form_active = item_id;
1938             });
1939
1940             function addToBundle (url, data) {
1941                   /* Send the data using post with external_id */
1942                   var posting = $.post({
1943                       url: url,
1944                       data: JSON.stringify(data),
1945                       contentType: "application/json; charset=utf-8",
1946                       dataType: "json"
1947                   });
1948
1949                   const barcode = data.external_id;
1950
1951                   /* Report the results */
1952                   posting.done(function(data) {
1953                       $('#addResult').replaceWith('<div id="addResult" class="alert alert-success">'+_("Success: Added '%s'").format(barcode)+'</div>');
1954                       $('#external_id').val('').focus();
1955                       bundle_changed = 1;
1956                   });
1957                   posting.fail(function(data) {
1958                       if ( data.status === 409 ) {
1959                           var response = data.responseJSON;
1960                           if ( response.error_code === 'already_bundled' ) {
1961                               $('#addResult').replaceWith('<div id="addResult" class="alert alert-warning">'+_("Warning: Item '%s' already attached").format(barcode)+'</div>');
1962                           } else if (response.error_code === 'checked_out') {
1963                               const button = $('<button type="button">')
1964                                 .addClass('btn btn-xs')
1965                                 .text(__('Check in and add to bundle'))
1966                                 .on('click', function () {
1967                                     addToBundle(url, { external_id: barcode, force_checkin: true });
1968                                 });
1969                               $('#addResult')
1970                                 .empty()
1971                                 .attr('class', 'alert alert-warning')
1972                                 .append(__x('Warning: Item {barcode} is checked out', { barcode }))
1973                                 .append(' ', button);
1974                           } else if (response.error_code === 'failed_checkin') {
1975                               $('#addResult')
1976                                 .empty()
1977                                 .attr('class', 'alert alert-danger')
1978                                 .append(__x('Failure: Item {barcode} cannot be checked in', { barcode }))
1979                           } else if (response.error_code === 'reserved') {
1980                               const button = $('<button type="button">')
1981                                 .addClass('btn btn-xs')
1982                                 .text(__('Ignore holds and add to bundle'))
1983                                 .on('click', function () {
1984                                     addToBundle(url, { external_id: barcode, ignore_holds: true });
1985                                 });
1986                               $('#addResult')
1987                                 .empty()
1988                                 .attr('class', 'alert alert-warning')
1989                                 .append(__x('Warning: Item {barcode} is reserved', { barcode }))
1990                                 .append(' ', button);
1991                           } else {
1992                               $('#addResult').replaceWith('<div id="addResult" class="alert alert-danger">'+_("Failure: Item '%s' belongs to another bundle").format(barcode)+'</div>');
1993                           }
1994                       } else if ( data.status === 404 ) {
1995                           $('#addResult').replaceWith('<div id="addResult" class="alert alert-danger">'+_("Failure: Item '%s' not found").format(barcode)+'</div>');
1996                       } else if ( data.status === 400 ) {
1997                           var response = data.responseJSON;
1998                           if ( response.error_code === "failed_nesting" ) {
1999                               $('#addResult').replaceWith('<div id="addResult" class="alert alert-danger">'+_("Failure: Item '%s' is a bundle and bundles cannot be nested").format(barcode)+'</div>');
2000                           } else {
2001                               $('#addResult').replaceWith('<div id="addResult" class="alert alert-danger">'+_("Failure: Check the logs for details")+'</div>');
2002                           }
2003                       } else {
2004                           $('#addResult').replaceWith('<div id="addResult" class="alert alert-danger">'+_("Failure: Check the logs for details")+'</div>');
2005                       }
2006                       $('#external_id').val('').focus();
2007                   });
2008             }
2009
2010             $("#addToBundleForm").submit(function(event) {
2011                   /* stop form from submitting normally */
2012                   event.preventDefault();
2013
2014                   const url = this.action;
2015                   const data = { external_id: this.elements.external_id.value };
2016
2017                   addToBundle(url, data);
2018             });
2019
2020             $("#addToBundleModal").on("hidden.bs.modal", function(e){
2021                 if ( bundle_changed ) {
2022                     $('#bundle_table_'+bundle_form_active).DataTable({ 'retrieve': true }).ajax.reload();
2023                 }
2024                 bundle_form_active = 0;
2025                 bundle_changed = 0;
2026             });
2027
2028             $("#removeFromBundleModal").on("shown.bs.modal", function(e){
2029                 var button = $(e.relatedTarget);
2030                 var item_id = button.data('item');
2031                 $("#removeResult").replaceWith('<div id="removeResult"></div>');
2032                 $("#removeFromBundleForm").attr('action', '/api/v1/items/' + item_id + '/bundled_items/');
2033                 $("#rm_external_id").focus();
2034                 bundle_changed = 0;
2035                 bundle_form_active = item_id;
2036             });
2037
2038             $("#removeFromBundleForm").submit(function(event) {
2039
2040                 /* stop form from submitting normally */
2041                 event.preventDefault();
2042
2043                 /* get the action attribute from the <form action=""> element */
2044                 var $form = $(this),
2045                 url = $form.attr('action');
2046
2047                 var barcode = $('#rm_external_id').val();
2048
2049                 /* Fetch itemnumber using rm_external_id */
2050                 var itemReq = $.get('/api/v1/items', { q: JSON.stringify({
2051                     external_id: barcode
2052                 }) }, null, "json");
2053
2054                 var itemnumber;
2055                 itemReq.done(function(data) {
2056                     if (data.length === 1) {
2057                         itemnumber = data[0].item_id;
2058
2059                         /* Remove link using fetch itemnumber */
2060                         var deleteReq = $.ajax( url + itemnumber, {
2061                             type : 'DELETE'
2062                         });
2063
2064                         /* Report the results */
2065                         deleteReq.done(function(data) {
2066                             var barcode = $('#rm_external_id').val();
2067                             $('#removeResult').replaceWith('<div id="removeResult" class="alert alert-success">'+_("Success: Removed '%s'").format(barcode)+'</div>');
2068                             $('#rm_external_id').val('').focus();
2069                             bundle_changed = 1;
2070                         });
2071                         deleteReq.fail(function(data) {
2072                             var barcode = $('#rm_external_id').val();
2073                             if ( data.status === 409 ) {
2074                                 var response = data.responseJSON;
2075                                 if ( response.key === "PRIMARY" ) {
2076                                     $('#removeResult').replaceWith('<div id="removeResult" class="alert alert-warning">'+_("Warning: Item '%s' already attached").format(barcode)+'</div>');
2077                                 } else {
2078                                     $('#removeResult').replaceWith('<div id="removeResult" class="alert alert-danger">'+_("Failure: Item '%s' belongs to another bundle").format(barcode)+'</div>');
2079                                 }
2080                             } else if ( data.status === 404 ) {
2081                                 $('#addResult').replaceWith('<div id="addResult" class="alert alert-danger">'+_("Failure: Item '%s' not found").format(barcode)+'</div>');
2082                             } else {
2083                                 $('#removeResult').replaceWith('<div id="removeResult" class="alert alert-danger">'+_("Failure: Check the logs for details")+'</div>');
2084                             }
2085                             $('#rm_external_id').val('').focus();
2086                         });
2087                     } else {
2088                         $('#removeResult').replaceWith('<div id="removeResult" class="alert alert-danger">'+_("Failed: Barcode matched more than one item '%s'").format(barcode)+'</div>');
2089                     }
2090                 });
2091                 itemReq.fail(function(data) {
2092                      $('#removeResult').replaceWith('<div id="removeResult" class="alert alert-danger">'+_("Failed: Item not found '%s'").format(barcode)+'</div>');
2093                     $('#rm_external_id').val('').focus();
2094
2095                 });
2096             });
2097
2098             $("#removeFromBundleModal").on("hidden.bs.modal", function(e){
2099                 if ( bundle_changed ) {
2100                     $('#bundle_table_'+bundle_form_active).DataTable({ 'retrieve': true }).ajax.reload();
2101                 }
2102                 bundle_form_active = 0;
2103                 bundle_changed = 0;
2104             });
2105             // End bundle handling
2106             [% END %]
2107
2108             var table_names = [ 'holdings_table', 'otherholdings_table' ];
2109             var table_settings = [ [% TablesSettings.GetTableSettings('catalogue', 'detail','holdings_table','json') | $raw %], [% TablesSettings.GetTableSettings('catalogue', 'detail','otherholdings_table','json')  | $raw %] ];
2110             var has_images = [ "[% itemloop_has_images | html %]", "[% otheritemloop_has_images | html %]" ];
2111             table_names.forEach( function( table_name, index ) {
2112                 if ( !has_images[index] ) {
2113                     table_settings[index].columns.splice(1,1);
2114                 }
2115                 var dt_parameters = {
2116                     'sDom': 't',
2117                     'bPaginate': false,
2118                     'bAutoWidth': false,
2119                     "bKohaColumnsUseNames": true,
2120                     "sDom": 'C<"top pager"ilpfB><"#filter_c">tr<"bottom pager"ip>',
2121                 };
2122                 var table = KohaTable( table_name, dt_parameters, table_settings[index], 'with_filters' );
2123
2124                 [% IF bundlesEnabled %]
2125                 // Add event listener for opening and closing bundle details
2126                 $('#' + table_name + ' tbody').on('click', 'button.details-control', function () {
2127                     var button = $(this);
2128                     var tr = button.closest('tr');
2129                     var dTable = button.closest('table').DataTable({ 'retrieve': true });
2130
2131                     var itemnumber = tr.data('itemnumber');
2132                     var duedate = tr.data('duedate');
2133                     var row = dTable.row( tr );
2134
2135                     if ( row.child.isShown() ) {
2136                         // This row is already open - close it
2137                         row.child.hide();
2138                         tr.removeClass('shown');
2139                         button.removeClass('active');
2140                     }
2141                     else {
2142                         // Open this row
2143                         createChild(row, itemnumber, duedate);
2144                         tr.addClass('shown');
2145                         button.addClass('active');
2146                     }
2147                 } );
2148                 [% END %]
2149             });
2150
2151             [% IF Koha.Preference('AcquisitionDetails') %]
2152                 var table_settings = [% TablesSettings.GetTableSettings('catalogue', 'detail', 'acquisitiondetails-table', 'json') | $raw %];
2153                 var acquisitiondetails_table = KohaTable("orders", {
2154                     "sDom": 'C<"top pager"ilpfB><"#filter_c">tr<"bottom pager"ip>',
2155                     'bPaginate': false,
2156                     'bAutoWidth': false,
2157                     "aaSorting": [[ 4, "desc" ]],
2158                 }, table_settings);
2159             [% END %]
2160
2161             [% IF suggestions.count %]
2162                 $(".sorted").dataTable($.extend(true, {}, dataTablesDefaults, {
2163                     "aoColumnDefs": [
2164                         { "bSortable": false, "bSearchable": false, 'aTargets': [ 'NoSort' ] },
2165                         { "sType": "anti-the", "aTargets" : [ "anti-the" ] }
2166                     ],
2167                     "sPaginationType": "full"
2168                 }));
2169             [% END %]
2170
2171         });
2172
2173         [% IF found1 && Koha.Preference('RetainCatalogSearchTerms') %]
2174             $(document).ready(function() {
2175                 var search_index = localStorage.getItem("cat_search_pulldown_selection");
2176                 var search_value = localStorage.getItem("searchbox_value");
2177                 if ( search_index ){ $('#cat-search-block select.advsearch').val(search_index)};
2178                 if ( search_value ){ $('#cat-search-block #search-form').val(search_value)};
2179             });
2180         [% END %]
2181
2182         [% IF Koha.Preference('EnableItemGroups') %]
2183             // Load item groups table
2184             var itemGroupsTable = KohaTable("items-group-table", {
2185                 "bAutoWidth": false,
2186                 'sDom': '<"top pager"ilp>t<"bottom pager"ip>r',
2187                 "aoColumns": [
2188                     {
2189                         "mDataProp": function( oObj ) {
2190                             return oObj.display_order;
2191                         },
2192                     },
2193                     {
2194                         "mDataProp": function( oObj ) {
2195                             return oObj.description;
2196                         },
2197                     },
2198                     {
2199                         "mDataProp": function( oObj ) {
2200                             [% IF CAN_user_editcatalogue_manage_item_groups %]
2201                                 return `<button class='item-group-edit btn btn-default btn-xs' data-item-group-id='${oObj.item_group_id}'>
2202                                     <i class='fa fa-edit'></i> ${_("Edit")}
2203                                 </button>`
2204                                 + '&nbsp'
2205                                 + `<button class='item-group-delete btn btn-default btn-xs' data-item-group-id='${oObj.item_group_id}'>
2206                                     <i class='fa fa-trash'></i> ${('Delete')}
2207                                 </button>`;
2208                             [% ELSE %]
2209                                 return "";
2210                             [% END %]
2211                         },
2212                     },
2213                 ],
2214                 "bPaginate": false,
2215                 "bProcessing": true,
2216                 "bServerSide": false,
2217                 "sAjaxSource": `/api/v1/biblios/${biblionumber}/item_groups?_per_page=-1`,
2218                 "sAjaxDataProp": "",
2219                 "fnServerData": function ( sSource, aoData, fnCallback ) {
2220                     $.getJSON( sSource, aoData, function (json) {
2221                         fnCallback(json)
2222                     } );
2223                 },
2224             });
2225
2226             // Create new item groups
2227             $('.item-group-create').on('click', function(){
2228                 $('#modal-item-group-create-form-description').val("");
2229                 $('#modal-item-group-create-submit').removeAttr('disabled');
2230                 $('#modal-item-group-create').modal('show');
2231             });
2232
2233             $("#modal-item-group-create-form").validate({
2234                 submitHandler: function(form) {
2235                     $.ajax({
2236                         url: `/api/v1/biblios/${biblionumber}/item_groups`,
2237                         headers: { "x-koha-embed": "items" },
2238                         success: function(item_groups){
2239                             $('#modal-item-group-create-submit').attr('disabled', 'disabled');
2240
2241                             var settings = {
2242                               "url": `/api/v1/biblios/${biblionumber}/item_groups`,
2243                               "method": "POST",
2244                               "headers": {
2245                                 "Content-Type": "application/json"
2246                               },
2247                               "data": JSON.stringify(
2248                                   {
2249                                       "description": $("#modal-item-group-create-form-description").val(),
2250                                       "display_order": $("#modal-item-group-create-form-display_order").val(),
2251                                   }
2252                               ),
2253                             };
2254
2255                             $.ajax(settings)
2256                             .done(function (response) {
2257                                 $('#item-group-add-form-select').append($('<option>', {
2258                                     value: response.item_group_id,
2259                                     text: response.description
2260                                 }));
2261
2262                                 $('#modal-item-group-create').modal('hide');
2263                                 if ( item_groups.length == 0 ) {
2264                                     // This bib has no previous item groups, reload the page
2265                                     window.location.replace(`/cgi-bin/koha/catalogue/detail.pl?biblionumber=${biblionumber}`);
2266                                 } else {
2267                                     // Has other item groups, just reload the table
2268                                     itemGroupsTable.api().ajax.reload();
2269                                 }
2270                             })
2271                             .fail(function(err) {
2272                                 var message = err.responseJSON.error;
2273                                 alert(message);
2274                             });
2275                         }
2276                     });
2277                 }
2278             });
2279
2280             $('#modal-item-group-create').on('shown.bs.modal', function () {
2281                 $('#modal-item-group-create-form-description').focus();
2282             })
2283
2284             // Edit existing item groups
2285             $('body').on( 'click', '.item-group-edit', function(){
2286                 const item_group_id = $(this).data('item-group-id');
2287                 const url = `/api/v1/biblios/${biblionumber}/item_groups/${item_group_id}`;
2288                 $.get( url, function( data ) {
2289                     $('#modal-item-group-edit-form-description').val( data.description );
2290                     $('#modal-item-group-edit-form-display_order').val( data.display_order );
2291                     $('#modal-item-group-edit-submit').data('item-group-id', item_group_id );
2292                     $('#modal-item-group-edit-submit').removeAttr('disabled');
2293                     $('#modal-item-group-edit').modal('show');
2294                 });
2295             });
2296
2297             $("#modal-item-group-edit-form").validate({
2298                 submitHandler: function(form) {
2299                     $('#modal-item-group-edit-submit').attr('disabled', 'disabled');
2300
2301                     const item_group_id = $('#modal-item-group-edit-submit').data('item-group-id');
2302                     const url = `/api/v1/biblios/${biblionumber}/item_groups/${item_group_id}`;
2303
2304                     var settings = {
2305                       "url": url,
2306                       "method": "PUT",
2307                       "headers": {
2308                         "Content-Type": "application/json"
2309                       },
2310                       "data": JSON.stringify(
2311                           {
2312                               "description": $("#modal-item-group-edit-form-description").val(),
2313                               "display_order": $("#modal-item-group-edit-form-display_order").val(),
2314                           }
2315                       ),
2316                     };
2317
2318                     $.ajax(settings)
2319                     .done(function (response) {
2320                         $('#modal-item-group-edit').modal('hide');
2321                         itemGroupsTable.api().ajax.reload();
2322                     })
2323                     .fail(function(err) {
2324                         var message = err.responseJSON.error;
2325                         alert(message);
2326                     });
2327                 }
2328             });
2329
2330             $('#modal-item-group-edit').on('shown.bs.modal', function () {
2331                 $('#modal-item-group-edit-form-description').focus();
2332             })
2333
2334             // Delete existing item groups
2335             $('body').on( 'click', '.item-group-delete', function(){
2336                 const item_group_id = $(this).data('item-group-id');
2337                 $('#modal-item-group-delete-submit').data('item-group-id', item_group_id );
2338                 $('#modal-item-group-delete-submit').removeAttr('disabled');
2339                 $('#modal-item-group-delete').modal('show');
2340             });
2341             $("#modal-item-group-delete-submit").on('click', function(){
2342                 $('#modal-item-group-delete-submit').attr('disabled', 'disabled');
2343                 const item_group_id = $("#modal-item-group-delete-submit").data('item-group-id');
2344
2345                 $.ajax({
2346                     url: `/api/v1/biblios/${biblionumber}/item_groups/${item_group_id}`,
2347                     headers: { "x-koha-embed": "items" },
2348                     success: function(item_group_data){
2349                         $.ajax({
2350                           "url": `/api/v1/biblios/${biblionumber}/item_groups/${item_group_id}`,
2351                           "method": "DELETE",
2352                         })
2353                         .done(function (response) {
2354                             $('#modal-item-group-delete').modal('hide');
2355                             $(`#item-group-add-form-select option[value='${item_group_id}']`).remove();
2356                             if ( item_group_data.items === null ) {
2357                                 // No items for this item group, we can just refresh the table
2358                                 itemGroupsTable.api().ajax.reload();
2359                             } else {
2360                                 // This item group had items attached to it, we need to reload the page
2361                                 window.location.replace(`/cgi-bin/koha/catalogue/detail.pl?biblionumber=${biblionumber}`);
2362                             }
2363                         })
2364                         .fail(function(err) {
2365                             var message = err.responseJSON.error;
2366                             alert(message);
2367                         });
2368                     }
2369                 });
2370             });
2371
2372             // Add item(s) to a item group
2373             $('.itemselection_action_item_group_set').on('click', function(){
2374                 $('#modal-item-group-set').modal('show');
2375             });
2376
2377             $("#modal-item-group-set-form").validate({
2378                 submitHandler: function(form) {
2379                     $('#modal-item-group-set-submit').attr('disabled', 'disabled');
2380
2381                     const item_group_id = $('#item-group-add-form-select').val();
2382
2383                     let itemnumbers = new Array();
2384                     $("input[name='itemnumber'][type='checkbox']:checked").each(function() {
2385                         const itemnumber = $(this).val();
2386                         itemnumbers.push( itemnumber );
2387                     });
2388                     if (itemnumbers.length > 0) {
2389                         let url = '/cgi-bin/koha/catalogue/detail.pl?op=set_item_group';
2390                         url += '&itemnumber=' + itemnumbers.join('&itemnumber=');
2391                         url += '&biblionumber=[% biblionumber | uri %]';
2392                         url += `&item_group_id=${item_group_id}`;
2393
2394                         window.location.replace(url);
2395                     }
2396
2397                     $('#modal-item-group-set').modal('hide');
2398                 }
2399             });
2400
2401             // Remove item(s) from an item group
2402             $('.itemselection_action_item_group_unset').on('click', function(){
2403                 $('#modal-item-group-unset').modal('show');
2404             });
2405
2406             $("#modal-item-group-unset-submit").on('click', function(){
2407                 $('#modal-item-group-unset-submit').attr('disabled', 'disabled');
2408
2409                 let itemnumbers = new Array();
2410                 $("input[name='itemnumber'][type='checkbox']:checked").each(function() {
2411                     const itemnumber = $(this).val();
2412                     itemnumbers.push( itemnumber );
2413                 });
2414                 if (itemnumbers.length > 0) {
2415                     let url = '/cgi-bin/koha/catalogue/detail.pl?op=unset_item_group';
2416                     url += '&itemnumber=' + itemnumbers.join('&itemnumber=');
2417                     url += '&biblionumber=[% biblionumber | uri %]';
2418
2419                     window.location.replace(url);
2420                 }
2421
2422                 $('#modal-item-group-unset').modal('hide');
2423
2424             });
2425         [% END %]
2426     </script>
2427 [% END %]
2428 [% INCLUDE 'intranet-bottom.inc' %]