Bug 18316: Change search field weight field to decimal
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / itemtypes.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% USE AuthorisedValues %]
5 [% USE Price %]
6 [% SET footerjs = 1 %]
7 [% INCLUDE 'doc-head-open.inc' %]
8 <title>Koha &rsaquo; Administration &rsaquo; Item types [% IF op == 'add_form' %]&rsaquo;
9   [% IF ( itemtype ) %]
10 Modify item type '[% itemtype.itemtype | html %]'
11   [% ELSE %]
12 Add item type
13   [% END %]
14 [% END %]
15 [% IF op == 'delete_confirm' %]&rsaquo;
16   [% IF ( total ) %]
17 Cannot delete item type '[% itemtype.itemtype | html %]'
18   [% ELSE %]
19 Delete item type '[% itemtype.itemtype | html %]'?
20   [% END %]
21 [% END %]
22 [% IF op == 'delete_confirmed' %]&rsaquo;
23 Data deleted
24 [% END %]
25 </title>
26 [% INCLUDE 'doc-head-close.inc' %]
27 [% Asset.css("css/datatables.css") | $raw %]
28 <style>
29         fieldset.rows div.toptabs li { clear:none;margin-right:.5em;padding-bottom:0;width:auto; }
30   fieldset.rows div.toptabs .ui-tabs-nav li.ui-tabs-active {background-color : #F4F8F9; }
31         fieldset.rows .ui-tabs-panel { margin-right : 10px; margin-left : 10px;margin-bottom:10px;}
32   fieldset.rows .ui-tabs-nav { margin-left : 10px; }
33 </style>
34 </head>
35
36 <body id="admin_itemtypes" class="admin">
37 [% INCLUDE 'header.inc' %]
38 [% INCLUDE 'prefs-admin-search.inc' %]
39
40 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> &rsaquo; [% IF op == 'add_form' %]
41   [% IF itemtype %]
42 <a href="/cgi-bin/koha/admin/itemtypes.pl">Item types</a> &rsaquo; Modify item type '[% itemtype.itemtype | html %]'
43   [% ELSE %]
44 <a href="/cgi-bin/koha/admin/itemtypes.pl">Item types</a> &rsaquo; Add item type
45   [% END %]
46 [% END %]
47 [% IF op == 'delete_confirm' %]
48   [% IF total %]
49 <a href="/cgi-bin/koha/admin/itemtypes.pl">Item types</a> &rsaquo; Cannot delete item type '[% itemtype.itemtype | html %]'
50   [% ELSE %]
51 <a href="/cgi-bin/koha/admin/itemtypes.pl">Item types</a> &rsaquo; Delete item type '[% itemtype.itemtype | html %]'?
52   [% END %]
53 [% END %]
54 [% IF op == 'delete_confirmed' %]
55 <a href="/cgi-bin/koha/admin/itemtypes.pl">Item types</a> &rsaquo;Data deleted
56 [% END %]
57 [% IF op == 'list' %]
58 Item types administration
59 [% END %]</div>
60
61 <div class="main container-fluid">
62     <div class="row">
63         <div class="col-sm-10 col-sm-push-2">
64             <main>
65
66 [% IF op == 'list' %]<div id="toolbar" class="btn-toolbar">
67     <a class="btn btn-default btn-sm" id="newitemtype" href="/cgi-bin/koha/admin/itemtypes.pl?op=add_form"><i class="fa fa-plus"></i> New item type</a>
68 </div>[% END %]
69
70 [% FOREACH m IN messages %]
71     <div class="dialog [% m.type | html %]">
72         [% SWITCH m.code %]
73         [% CASE 'error_on_update' %]
74             An error occurred when updating this item type. Perhaps the value already exists.
75         [% CASE 'error_on_insert' %]
76             An error occurred when inserting this item type. Perhaps the value already exists.
77         [% CASE 'error_on_delete' %]
78             An error occurred when deleting this item type. Check the logs.
79         [% CASE 'success_on_update' %]
80             Item type updated successfully.
81         [% CASE 'success_on_insert' %]
82             Item type inserted successfully.
83         [% CASE 'success_on_delete' %]
84             Item type deleted successfully.
85         [% CASE 'already_exists' %]
86             This item type already exists.
87         [% CASE 'cannot_be_deleted' %]
88             Cannot delete this item type. <p><strong>This record is in use</strong>. Deletion is not possible.</p>
89         [% CASE %]
90             [% m.code | html %]
91         [% END %]
92     </div>
93 [% END %]
94
95
96 [% IF op == 'add_form' %]
97     [% IF itemtype %]
98         <h3>Modify item type</h3>
99     [% ELSE %]
100         <h3>Add item type</h3>
101     [% END %]
102     <form action="/cgi-bin/koha/admin/itemtypes.pl" name="Aform" method="post" id="itemtypeentry">
103         <input type="hidden" name="op" value="add_validate" />
104         <fieldset class="rows">
105             <ol>
106                 [% IF itemtype %]
107                     <li>
108                         <input type="hidden" name="is_a_modif" value="1" />
109                         <span class="label">Item type: </span> <input type="hidden" name="itemtype" value="[% itemtype.itemtype | html %]" />
110                         [% itemtype.itemtype | html %]
111                     </li>
112                 [% ELSE %]
113                     <li>
114                         <label for="itemtype" class="required">Item type: </label>
115                         <input type="text" id="itemtype" name="itemtype" size="10" maxlength="10" required="required" /> <span class="required">Required</span>
116                     </li>
117                 [% END %]
118                 <li>
119                     <label for="description" class="required">Description: </label>
120                     <input type="text" id="description" name="description" size="48" value="[% itemtype.description | html %]" required="required" /> <span class="required">Required</span>
121                     [% IF can_be_translated %]
122                         <a href="/cgi-bin/koha/admin/localization.pl?entity=itemtypes&code=[% itemtype.itemtype | uri %]" title="Translate item type [% itemtype.itemtype | html %]" rel="gb_page_center[600,500]"><i class="fa fa-pencil"></i> Translate into other languages</a>
123                     [% END %]
124                 </li>
125                 <li>
126                     <span class="label">Search category</span>
127                     <select id="searchcategory" name="searchcategory">
128                     <option value="">None</option>
129                         [% FOREACH cat IN searchcategory %]
130                             [% IF cat.authorised_value == itemtype.searchcategory %]
131                                 <option value="[% cat.authorised_value | html %]" selected="selected">
132                                     [% cat.lib | html %]
133                                 </option>
134                             [% ELSE %]
135                                 <option value="[% cat.authorised_value | html %]" >
136                                     [% cat.lib | html %]
137                                 </option>
138                             [% END %]
139                         [% END %]
140                     </select>
141                     (Options are defined as the authorized values for the ITEMTYPECAT category)
142                 </li>
143                 [% IF Koha.Preference('noItemTypeImages') %]
144                     <li>
145                         <span class="label">Image: </span>Item type images are disabled. To enable them, turn off the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&amp;searchfield=noItemTypeImages">noItemTypeImages system preference</a>
146                     </li>
147                 [% END %]
148             </ol>
149             [% UNLESS Koha.Preference('noItemTypeImages') %]
150                 <div id="icons" class="toptabs" style="clear:both">
151                     <h5 style="margin-left:10px;">Choose an icon:</h5>
152                     <ul>
153                         <li><a href="#none">None</a></li>
154                         [% FOREACH imageset IN imagesets %]
155                             [% IF ( imageset.imagesetactive ) %]
156                                 <li class="ui-tabs-active">
157                             [% ELSE %]
158                                 <li>
159                             [% END %]
160                             <a href="#[% imageset.imagesetname | uri %]">[% imageset.imagesetname | html %]</a>
161                             </li>
162                         [% END %]
163                         [% IF itemtype.image_location('intranet').match('^http') %]<li class="ui-tabs-active">[% ELSE %]<li>[% END %]<a href="#remote">Remote image</a></li>
164                     </ul>
165                     <div id="none">
166                         <ul>
167                             <li><label for="noimage">No image: </label><input type="radio" name="image" id="noimage" value="removeImage" /></li>
168                         </ul>
169                         <br class="clear" />
170                     </div>
171
172                     [% FOREACH imageset IN imagesets %]
173                         <div id="[% imageset.imagesetname | html %]">
174                             <ul>
175                                 [% FOREACH image IN imageset.images %]
176                                     <li style="float: none; display: inline-block; clear : none; width: auto;">
177                                         <label>
178                                             [% IF image.StaffImageUrl %]
179                                                 <img src="[% image.StaffImageUrl | html %]" alt="[% image.StaffImageUrl | html %]" title="[% image.StaffImageUrl | html %]" />
180                                             [% END %]
181                                             [% IF image.checked %]
182                                                 <input type="radio" name="image" value="[% image.KohaImage | html %]" checked="checked" />
183                                             [% ELSIF image.KohaImage %] <!-- to delete the radio button if there is no image after -->
184                                                 <input type="radio" name="image" value="[% image.KohaImage | html %]" />
185                                             [% END %]
186                                         </label>
187                                     </li>
188                                 [% END %]
189                             </ul>
190                             <br class="clear" />
191                         </div>
192                     [% END %]
193
194                     <div id="remote">
195                         <ul>
196                             <li>
197                                 <label for="remote_image_check"> Remote image:</label>
198                                 [% IF itemtype.imageurl %]
199                                     <input type="radio" id="remote_image_check" name="image" value="remoteImage" checked="checked" />
200                                 [% ELSE %]
201                                     <input type="radio" id="remote_image_check" name="image" value="remoteImage" />
202                                 [% END %]
203                                 <input type="text" name="remoteImage" size="48" maxlength="200" value="[% itemtype.imageurl | html %]" onmousedown="document.getElementById('remote_image_check').checked = true;" />
204                                 [% IF itemtype.imageurl %]
205                                     <img src="[% itemtype.imageurl | html %]" alt="" />
206                                 [% END %]
207                             </li>
208                         </ul>
209                         <br class="clear" />
210                     </div>
211                 </div>
212             [% END %]
213             <ol class="oladditemtype">
214                 <li>
215                     <label for="hideinopac">Hide in OPAC: </label>
216                     [% IF ( itemtype.hideinopac ) %]
217                         <input type="checkbox" id="hideinopac" name="hideinopac" checked="checked" value="1" />
218                     [% ELSE %]
219                         <input type="checkbox" id="hideinopac" name="hideinopac" value="1" />
220                     [% END %]
221                     (if checked, items of this type will be hidden as filters in OPAC's advanced search)
222                 </li>
223                 <li>
224                     <label for="notforloan">Not for loan: </label>
225                         [% IF itemtype.notforloan %]
226                             <input type="checkbox" id="notforloan" name="notforloan" checked="checked" value="1" />
227                         [% ELSE %]
228                             <input type="checkbox" id="notforloan" name="notforloan" value="1" />
229                         [% END %]
230                       (if checked, no item of this type can be issued. If not checked, every item of this type can be issued unless notforloan is set for a specific item)
231                 </li>
232                 <li>
233                     <label for="rentalcharge">Rental charge: </label>
234                     <input type="text" id="rentalcharge" name="rentalcharge" size="10" value="[% itemtype.rentalcharge | html %]" />
235                 </li>
236                 <li>
237                     <label for="defaultreplacecost">Default replacement cost: </label>
238                     <input type="text" id="defaultreplacecost" name="defaultreplacecost" size="10" value="[% itemtype.defaultreplacecost | html %]" />
239                 </li>
240                 <li>
241                     <label for="processfee">Processing fee (when lost): </label>
242                     <input type="text" id="processfee" name="processfee" size="10" value="[% itemtype.processfee | html %]" />
243                 </li>
244                 <li>
245                     <label for="checkinmsg">Checkin message: </label>
246                     <textarea id="checkinmsg" name="checkinmsg" cols="55" rows="5">[% itemtype.checkinmsg | html %]</textarea>
247                 </li>
248                 <li>
249                     <label for="checkinmsgtype">Checkin message type: </label>
250                     <select type="text" id="checkinmsgtype" name="checkinmsgtype">
251                         [% IF itemtype.checkinmsgtype == 'message' %]
252                             <option value="message" selected="selected">Message</option>
253                         [% ELSE %]
254                             <option value="message">Message</option>
255                         [% END %]
256                         [% IF itemtype.checkinmsgtype == 'alert' %]
257                             <option value="alert" selected="selected">Alert</option>
258                         [% ELSE %]
259                             <option value="alert">Alert</option>
260                         [% END %]
261                     </select>
262                 </li>
263                 <li>
264                     <label for="sip_media_type">SIP media type: </label>
265                     <select id="sip_media_type" name="sip_media_type">
266                         <option value=""></option>
267                         [% FOREACH a IN AuthorisedValues.Get('SIP_MEDIA_TYPE') %]
268                             [% IF a.authorised_value == itemtype.sip_media_type %]
269                                 <option value="[% a.authorised_value | html %]" selected="selected">[% a.lib | html %]</option>
270                             [% ELSE %]
271                                 <option value="[% a.authorised_value | html %]">[% a.lib | html %]</option>
272                             [% END %]
273                         [% END %]
274                     </select>
275                 </li>
276                 <li>
277                     <label for="summary">Summary: </label>
278                    <textarea id="summary" name="summary" cols="55" rows="5">[% itemtype.summary | html %]</textarea>
279                     <p>Enter a summary that will overwrite the default one in search results lists. Example, for a website itemtype : </p>
280                     <p><b>&lt;a href="[856u]"&gt;open site&lt;/a&gt;</b> will show the link just below the title</p>
281                 </li>
282             </ol>
283         </fieldset>
284
285         <fieldset class="action">
286             <input type="submit" value="Save changes" />
287             <a href="/cgi-bin/koha/admin/itemtypes.pl" class="cancel">Cancel</a>
288         </fieldset>
289     </form>
290 [% END %]
291
292 [% IF op == 'delete_confirm' %]
293     <div class="dialog alert">
294         <h3>Delete item type '[% itemtype.itemtype | html %]'?</h3>
295         <table>
296             <tr>
297                 <th scope="row">Item type</th>
298                 <td>[% itemtype.itemtype | html %]</td>
299             </tr>
300             <tr><th scope="row">Description</th><td>[% itemtype.translated_description | html %]</td></tr>
301             [% UNLESS Koha.Preference('noItemTypeImages') %]
302                 <tr>
303                     <th scope="row">Image</th>
304                     <td>
305                         [% SET image_location = itemtype.image_location('intranet') %]
306                         [% IF image_location %]<img src="[% image_location | html %]" alt="" />[% END %]
307                     </td>
308                 </tr>
309             [% END %]
310             <tr><th scope="row">Rental charge</th><td>[% itemtype.rentalcharge | $Price %]</td></tr>
311         </table>
312         <form action="/cgi-bin/koha/admin/itemtypes.pl" method="post">
313             <input type="hidden" name="op" value="delete_confirmed" /><input type="hidden" name="itemtype" value="[% itemtype.itemtype | html %]" />
314             <button type="submit" class="approve"><i class="fa fa-fw fa-check"></i> Yes, delete this item type</button>
315         </form>
316         <form action="/cgi-bin/koha/admin/itemtypes.pl" method="post">
317             <button type="submit" class="deny"><i class="fa fa-fw fa-remove"></i> No, do not delete</button>
318         </form>
319     </div>
320 [% END %]
321
322 [% IF op == 'list' %]
323     <h2>Item types administration</h2>
324     [% IF itemtypes %]
325         <table id="table_item_type">
326           <thead>
327             [% UNLESS Koha.Preference('noItemTypeImages') %]<th>Image</th>[% END %]
328             <th>Code</th>
329             <th>Description</th>
330             <th>Search category</th>
331             <th>Not for loan</th>
332             <th>Hide in OPAC</th>
333             <th>Charge</th>
334             <th>Default replacement cost</th>
335             <th>Processing fee (when lost)</th>
336             <th>Checkin message</th>
337             <th>Actions</th>
338           </thead>
339           [% FOREACH itemtype IN itemtypes %]
340             <tr>
341                 [% UNLESS Koha.Preference('noItemTypeImages') %]
342                     <td>
343                         [% SET image_location = itemtype.image_location('intranet') %]
344                         [% IF image_location %]<img src="[% image_location | html %]" alt="" />[% ELSE %]&nbsp;[% END %]
345                     </td>
346                 [% END %]
347             <td>
348               <a href="/cgi-bin/koha/admin/itemtypes.pl?op=add_form&amp;itemtype=[% itemtype.itemtype | uri %]">
349                 [% itemtype.itemtype | html %]
350               </a>
351             </td>
352             <td>
353                 [% IF itemtype.translated_descriptions.size %]
354                     [% itemtype.description | html %] (default)<br/>
355                     [% FOR description IN itemtype.translated_descriptions %]
356                         [% IF description.translation == itemtype.translated_description %]
357                             <b>[% description.translation | html %]</b>
358                         [% ELSE %]
359                             [% description.translation | html %] ([% description.lang | html %])
360                         [% END %]
361                         <br/>
362                     [% END %]
363                 [% ELSE %]
364                     [% itemtype.description | html %]
365                 [% END %]
366             </td>
367             <td>[% itemtype.searchcategory | html %]</td>
368             <td>[% IF ( itemtype.notforloan ) %]Yes[% ELSE %]&nbsp;[% END %]</td>
369             <td>[% IF ( itemtype.hideinopac ) %]Yes[% ELSE %]&nbsp;[% END %]</td>
370             <td>
371             [% UNLESS ( itemtype.notforloan ) %]
372               [% itemtype.rentalcharge | $Price %]
373             [% END %]
374             </td>
375             <td>[% itemtype.defaultreplacecost | $Price %]</td>
376             <td>[% itemtype.processfee | $Price %]</td>
377             <td>[% itemtype.checkinmsg | html_line_break | $raw %]</td>
378             <td class="actions">
379               <a href="/cgi-bin/koha/admin/itemtypes.pl?op=add_form&amp;itemtype=[% itemtype.itemtype | uri %]" class="btn btn-default btn-xs"><i class="fa fa-pencil"></i> Edit</a>
380               <a href="/cgi-bin/koha/admin/itemtypes.pl?op=delete_confirm&amp;itemtype=[% itemtype.itemtype | uri %]" class="btn btn-default btn-xs"><i class="fa fa-trash"></i> Delete</a>
381             </td>
382           </tr>
383           [% END %]
384         </table>
385     [% ELSE %]
386         <div class="dialog message">There are no itemtypes defined</div>
387     [% END %]
388 [% END %]
389
390             </main>
391         </div> <!-- /.col-sm-10.col-sm-push-2 -->
392
393         <div class="col-sm-2 col-sm-pull-10">
394             <aside>
395                 [% INCLUDE 'admin-menu.inc' %]
396             </aside>
397         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
398      </div> <!-- /.row -->
399
400 [% MACRO jsinclude BLOCK %]
401     [% Asset.js("js/admin-menu.js") | $raw %]
402     [% INCLUDE 'greybox.inc' %]
403     [% INCLUDE 'datatables.inc' %]
404     <script>
405          $(document).ready(function() {
406             $('#icons').tabs();
407             $("#table_item_type").dataTable($.extend(true, {}, dataTablesDefaults, {
408                 "aoColumnDefs": [
409                     { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
410                 ],
411                 "aaSorting": [[ 2, "asc" ]],
412                 "iDisplayLength": 10,
413                 "sPaginationType": "four_button"
414             }));
415             $( "#itemtypeentry" ).validate({
416                 rules: {
417                     itemtype: { required: true },
418                     description: { required: true },
419                     rentalcharge: { number: true }
420                 }
421             });
422             $("#itemtype").on("blur",function(){
423                 toUC(this);
424             });
425          });
426     </script>
427 [% END %]
428
429 [% INCLUDE 'intranet-bottom.inc' %]