Bug 22015: Move DataTables CSS to global include
[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 [% USE Price %]
9 [% SET footerjs = 1 %]
10 [% INCLUDE 'doc-head-open.inc' %]
11 <title>Koha &rsaquo; Reports &rsaquo; Lost items</title>
12 [% INCLUDE 'doc-head-close.inc' %]
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 class="main container-fluid">
22     <div class="row">
23         <div class="col-sm-10 col-sm-push-2">
24             <main>
25
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 | uri %]" 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 | uri %]" 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 | $Price %]</td>
112                         <td>[% item.replacementprice | $Price %]</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             </main>
178         </div> <!-- /.col-sm-10.col-sm-push-2 -->
179
180         <div class="col-sm-2 col-sm-pull-10">
181             <aside>
182                 [% INCLUDE 'reports-menu.inc' %]
183             </aside>
184         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
185      </div> <!-- /.row -->
186
187 [% MACRO jsinclude BLOCK %]
188     [% INCLUDE 'datatables.inc' %]
189     [% Asset.js("lib/jquery/plugins/jquery.dataTables.columnFilter.js") | $raw %]
190     [% INCLUDE 'columns_settings.inc' %]
191     [% Asset.js("js/table_filters.js") | $raw %]
192     [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %]
193     <script type='text/javascript'>
194         $(document).ready(function() {
195             var columns_settings = [% ColumnsSettings.GetColumns( 'reports', 'lostitems', 'lostitems-table', 'json' ) | $raw %];
196             var lostitems_table = KohaTable("lostitems-table", {
197                 "dom": 'B<"clearfix">t',
198                 "aaSorting": [],
199                 "aoColumnDefs": [
200                     { "bSortable": false, "bSearchable": false, 'aTargets': [ 'NoSort' ] },
201                     { "sType": "title-string", "aTargets" : [ "title-string" ] }
202                 ],
203                 'bAutoWidth': false,
204                 "bPaginate": false,
205             }, columns_settings, 'with_filters');
206
207             function itemSelectionBuildExportLink() {
208                 var itemnumbers = new Array();
209                 $("input[name='itemnumber'][type='checkbox']:checked").each(function() {
210                     itemnumbers.push($(this).val());
211                 });
212                 if (itemnumbers.length > 0) {
213                     var csv_profile_id = $("#csv_profile_id  option:selected").val();
214                     var url = '/cgi-bin/koha/reports/itemslost.pl?op=export&csv_profile_id='+csv_profile_id;
215                     url += '&itemnumber=' + itemnumbers.join('&itemnumber=');
216                     $('a.itemselection_action_export').attr('href', url);
217                 } else {
218                     return false;
219                 }
220                 return true;
221             }
222
223             function itemSelectionBuildActionLinks() {
224                 var export_link_ok = itemSelectionBuildExportLink();
225                 if (export_link_ok) {
226                     $('.itemselection_actions').show();
227                 } else {
228                     $('.itemselection_actions').hide();
229                 }
230             }
231
232             itemSelectionBuildActionLinks();
233
234             $("input[name='itemnumber'][type='checkbox']").change(function() {
235                 itemSelectionBuildActionLinks();
236             });
237             $("#csv_profile_id").change(function() {
238                 itemSelectionBuildActionLinks();
239             });
240
241             $(".SelectAll").on("click",function(e){
242                 e.preventDefault();
243                 $("#lostitems-table").checkCheckboxes();
244                 itemSelectionBuildActionLinks();
245             });
246
247             $(".ClearAll").on("click",function(e){
248                 e.preventDefault();
249                 $("#lostitems-table").unCheckCheckboxes();
250                 itemSelectionBuildActionLinks();
251             });
252         });
253     </script>
254 [% END %]
255
256 [% INCLUDE 'intranet-bottom.inc' %]