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