Bug 13618: Add html filters to all the variables
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / reports / itemslost.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE AuthorisedValues %]
4 [% USE Branches %]
5 [% USE ColumnsSettings %]
6 [% USE KohaDates %]
7 [% USE ItemTypes %]
8 [% SET footerjs = 1 %]
9 [% INCLUDE 'doc-head-open.inc' %]
10 <title>Koha &rsaquo; Reports &rsaquo; Lost items</title>
11 [% INCLUDE 'doc-head-close.inc' %]
12 [% Asset.css("css/datatables.css") | $raw %]
13 </head>
14
15 <body id="rep_itemslost" class="rep">
16 [% INCLUDE 'header.inc' %]
17 [% INCLUDE 'cat-search.inc' %]
18
19 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a>[% IF ( get_items ) %] &rsaquo; <a href="/cgi-bin/koha/reports/itemslost.pl">Lost items</a> &rsaquo; Results[% ELSE %] &rsaquo; Lost items[% END %]</div>
20
21 <div id="doc3" class="yui-t2">
22    
23    <div id="bd">
24         <div id="yui-main">
25         <div class="yui-b">
26
27 <h1>Lost items</h1>
28
29 [% IF ( get_items ) %]
30
31 <div class="results">
32     [% IF items.count%]
33         [% items.count | html %] lost items found
34     [% ELSE %]
35         No lost items found
36     [% END %]
37 </div>
38
39     [% IF items.count %]
40         [% IF csv_profiles.count %]
41             <div class="lostitems-table_table_controls">
42                 | <a href="#" class="SelectAll"><i class="fa fa-check"></i> Select all</a> |
43                 <a href="#" class="ClearAll"><i class="fa fa-remove"></i> Clear all</a>
44                 <span class="itemselection_actions">
45                     | Actions:
46                     <a class="itemselection_action_export"><i class="fa fa-download"></i> Export selected items</a>
47                     Using the following CSV profile:
48                     <select name="csv_profile_id" id="csv_profile_id">
49                         [% FOREACH csv_profile IN csv_profiles %]
50                             <option value="[% csv_profile.export_format_id | html %]">
51                                 [% csv_profile.profile | html %]
52                             </option>
53                         [% END %]
54                     </select>
55                 </span>
56             </div>
57         [% ELSE %]
58             <div class="dialog message">
59                 [% IF ( CAN_user_tools_manage_csv_profiles ) %]
60                     To enable the export of selected items, <a href="/cgi-bin/koha/tools/csv-profiles.pl">create a CSV profile</a> of the type "SQL" with usage option "Export lost items in report."
61                 [% ELSE %]
62                     To enable the export of selected items, your administrator must create a CSV profile of the type "SQL" with usage option "Export lost items in report."
63                 [% END %]
64             </div>
65             <div class="lostitems-table_table_controls">
66             </div>
67         [% END %]
68
69         <table id="lostitems-table">
70             <thead>
71                 <tr>
72                     [% IF csv_profiles.count %]
73                         <th class="NoSort"></th>
74                     [% END %]
75                     <th>Title</th>
76                     <th>Author</th>
77                     <th>Lost status</th>
78                     <th class="title-string">Lost on</th>
79                     <th>Barcode</th>
80                     <th>Call number</th>
81                     <th class="title-string">Date last seen</th>
82                     <th>Price</th>
83                     <th>Rep.price</th>
84                     <th>Library</th>
85                     <th>Item type</th>
86                     <th>Current location</th>
87                     <th>Location</th>
88                     <th>Not for loan status</th>
89                     <th>Notes</th>
90                 </tr>
91             </thead>
92             <tbody>
93                 [% FOREACH item IN items %]
94                     <tr>
95                         [% IF csv_profiles.count %]
96                             <td style="text-align:center;vertical-align:middle">
97                                 <input type="checkbox" value="[% item.itemnumber | html %]" name="itemnumber" />
98                             </td>
99                         [% END %]
100                         <td>
101                             <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% item.biblionumber | html %]" title="[% item.itemnotes | html %]">[% item.biblio.title | html %]</a>
102                         </td>
103                         <td>[% item.biblio.author | html %]</td>
104                         <td>[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.itemlost', authorised_value => item.itemlost ) | html %]
105                         <td><span title="[% item.itemlost_on | html %]">[% item.itemlost_on | $KohaDates %]</span></td>
106                         <td>
107                             <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% item.biblionumber | html %]" title="[% item.itemnotes | html %]">[% item.barcode | html %]</a>
108                         </td>
109                         <td>[% item.itemcallnumber | html %]</td>
110                         <td><span title="[% item.datelastseen | html %]">[% item.datelastseen | $KohaDates %]</span></td>
111                         <td>[% item.price | html %]</td>
112                         <td>[% item.replacementprice | html %]</td>
113                         <td>[% Branches.GetName(item.homebranch) | html %]</td>
114                         <td>[% ItemTypes.GetDescription(item.effective_itemtype) | html %]</td>
115                         <td>[% Branches.GetName(item.holdingbranch) | html %]</td>
116                         <td>[% AuthorisedValues.GetByCode( 'LOC', item.location ) | html %]</td>
117                         <td>[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.notforloan', authorised_value => item.notforloan ) | html %]
118                         <td>[% item.itemnotes | html %]</td>
119                     </tr>
120                 [% END %]
121             </tbody>
122         </table>
123     [% END %]
124         [% ELSE %]
125         
126         <form name="f" action="/cgi-bin/koha/reports/itemslost.pl" method="post">
127     <fieldset class="rows">
128         <ol>
129
130         <li><label for="barcodefilter">Barcode: </label><input type="text" name="barcodefilter" id="barcodefilter" size="6" /></li>
131         <li><label for="branchfilter">Library: </label><select name="branchfilter" id="branchfilter">
132                 <option value="">All</option>
133                 [% PROCESS options_for_libraries libraries => Branches.all() %]
134             </select></li>
135     <li><label for="itemtypesfilter">Item type: </label><select name="itemtypesfilter" id="itemtypesfilter">
136                 <option value="">All</option>
137                 [% FOREACH itemtype IN itemtypes %]
138                     <option value="[% itemtype.itemtype | html %]">[% itemtype.translated_description | html %]</option>
139                 [% END %]
140             </select></li>
141
142     <li>
143         <label for="loststatusfilter">Lost status: </label>
144         <select name="loststatusfilter" id="loststatusfilter">
145             <option value="">All</option>
146             [% FOREACH l IN AuthorisedValues.GetDescriptionsByKohaField( kohafield => 'items.itemlost') %]
147                 [% IF l.authorised_value == lostfilter %]
148                     <option value="[% l.authorised_value | html %]" selected="selected">[% l.lib | html %]</option>
149                 [% ELSE %]
150                     <option value="[% l.authorised_value | html %]">[% l.lib | html %]</option>
151                 [% END %]
152             [% END %]
153         </select>
154     </li>
155
156     <li>
157         <label for="notforloanfilter">Not for loan: </label>
158         <select name="notforloanfilter" id="notforloanfilter">
159             <option value="">All</option>
160             [% FOREACH n IN AuthorisedValues.GetDescriptionsByKohaField( kohafield => 'items.notforloan') %]
161                 [% IF n.authorised_value == notforloanfilter %]
162                     <option value="[% n.authorised_value | html %]" selected="selected">[% n.lib | html %]</option>
163                 [% ELSE %]
164                     <option value="[% n.authorised_value | html %]">[% n.lib | html %]</option>
165                 [% END %]
166             [% END %]
167         </select>
168     </li>
169
170 </ol></fieldset>
171 <fieldset class="action">    <input type="submit" value="Submit" />
172     <input type="hidden" name="get_items" value="1" /></fieldset>
173 </form>
174         
175         [% END %]
176
177 </div>
178 </div>
179 <div class="yui-b">
180 [% INCLUDE 'reports-menu.inc' %]
181 </div>
182 </div>
183
184 [% MACRO jsinclude BLOCK %]
185     [% INCLUDE 'datatables.inc' %]
186     [% Asset.js("lib/jquery/plugins/jquery.dataTables.columnFilter.js") | $raw %]
187     [% INCLUDE 'columns_settings.inc' %]
188     [% Asset.js("js/table_filters.js") | $raw %]
189     [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %]
190     <script type='text/javascript'>
191         $(document).ready(function() {
192             var columns_settings = [% ColumnsSettings.GetColumns( 'reports', 'lostitems', 'lostitems-table', 'json' ).raw %];
193             var lostitems_table = KohaTable("lostitems-table", {
194                 "dom": 'B<"clearfix">t',
195                 "aaSorting": [],
196                 "aoColumnDefs": [
197                     { "bSortable": false, "bSearchable": false, 'aTargets': [ 'NoSort' ] },
198                     { "sType": "title-string", "aTargets" : [ "title-string" ] }
199                 ],
200                 'bAutoWidth': false,
201                 "bPaginate": false,
202             }, columns_settings, 'with_filters');
203
204             function itemSelectionBuildExportLink() {
205                 var itemnumbers = new Array();
206                 $("input[name='itemnumber'][type='checkbox']:checked").each(function() {
207                     itemnumbers.push($(this).val());
208                 });
209                 if (itemnumbers.length > 0) {
210                     var csv_profile_id = $("#csv_profile_id  option:selected").val();
211                     var url = '/cgi-bin/koha/reports/itemslost.pl?op=export&csv_profile_id='+csv_profile_id;
212                     url += '&itemnumber=' + itemnumbers.join('&itemnumber=');
213                     $('a.itemselection_action_export').attr('href', url);
214                 } else {
215                     return false;
216                 }
217                 return true;
218             }
219
220             function itemSelectionBuildActionLinks() {
221                 var export_link_ok = itemSelectionBuildExportLink();
222                 if (export_link_ok) {
223                     $('.itemselection_actions').show();
224                 } else {
225                     $('.itemselection_actions').hide();
226                 }
227             }
228
229             itemSelectionBuildActionLinks();
230
231             $("input[name='itemnumber'][type='checkbox']").change(function() {
232                 itemSelectionBuildActionLinks();
233             });
234             $("#csv_profile_id").change(function() {
235                 itemSelectionBuildActionLinks();
236             });
237
238             $(".SelectAll").on("click",function(e){
239                 e.preventDefault();
240                 $("#lostitems-table").checkCheckboxes();
241                 itemSelectionBuildActionLinks();
242             });
243
244             $(".ClearAll").on("click",function(e){
245                 e.preventDefault();
246                 $("#lostitems-table").unCheckCheckboxes();
247                 itemSelectionBuildActionLinks();
248             });
249         });
250     </script>
251 [% END %]
252
253 [% INCLUDE 'intranet-bottom.inc' %]