Bug 26149: Remove jquery.checkboxes plugin from problem reports page
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / problem-reports.tt
blobce6c906335f88ad4bf9ae28f9892ca7a93a000ba
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% USE KohaDates %]
5 [% SET footerjs = 1 %]
6 [% INCLUDE 'doc-head-open.inc' %]
7 <title>Koha &rsaquo; Administration &rsaquo; OPAC problem reports</title>
8 [% INCLUDE 'doc-head-close.inc' %]
9 </head>
11 <body id="tools_problem-reports" class="tools">
13 [% INCLUDE 'header.inc' %]
14 [% INCLUDE 'prefs-admin-search.inc' %]
15 <div id="breadcrumbs">
16     <a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo;
17     <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo;
18     OPAC problem reports
19 </div>
21 <div class="main container-fluid">
22     <div class="row">
23         <div class="col-sm-10 col-sm-push-2">
24             <main>
26             <h1>OPAC problem reports</h1>
28             <div class="dialog alert" id="error" style="display:none;"></div>
30             [% IF ( selected_count ) %]
31                 <div class="dialog message">
32                     [% IF ( action == 'viewed' ) %]
33                         <span>[% selected_count | html %] problem report(s) marked as viewed.</span>
34                     [% ELSIF ( action == 'closed' ) %]
35                         <span>[% selected_count | html %] problem report(s) marked as closed.</span>
36                     [% ELSIF ( action == 'new' ) %]
37                         <span>[% selected_count | html %] problem report(s) marked as new.</span>
38                     [% ELSE %]
39                         <span>Failed to change the status of [% selected_count | html %] problem report(s).</span>
40                     [% END %]
41                 </div>
42             [% END %]
44             [% IF ( problem_reports.count ) %]
45                 <form id="mark_selected" method="post" action="/cgi-bin/koha/tools/problem-reports.pl">
46                     <div id="toolbar" class="btn-toolbar">
47                         <button type="submit" class="btn btn-default markviewed" name="mark_selected-viewed" value="viewed" disabled="disabled"><i class="fa fa-eye"></i> Mark viewed</button>
48                         <button type="submit" class="btn btn-default markclosed" name="mark_selected-closed" value="closed" disabled="disabled"><i class="fa fa-times-circle"></i> Mark closed</button>
49                         <button type="submit" class="btn btn-default marknew" name="mark_selected-new" value="new" disabled="disabled"><i class="fa fa-star"></i> Mark new</button>
50                     </div>
52                     <fieldset class="action" style="cursor:pointer;">
53                         <a class="SelectAll"><i class="fa fa-check"></i> Select all</a>
54                         | <a class="ClearAll"><i class="fa fa-remove"></i> Clear all</a>
55                         | <a class="HideViewed"><i class="fa fa-minus-square"></i> Hide viewed</a>
56                         | <a class="HideClosed"><i class="fa fa-minus-square"></i> Hide closed</a>
57                         | <a class="HideNew"><i class="fa fa-minus-square"></i> Hide new</a>
58                         | <a class="ShowAll"><i class="fa fa-bars"></i> Show all</a>
59                     </fieldset>
61                     <table id="problemreportstable">
62                         <thead>
63                             <tr>
64                                 <th class="NoSort">&nbsp;</th>
65                                 <th class="anti-the">Message</th>
66                                 <th>Problem page</th>
67                                 <th>Sent to</th>
68                                 <th class="title-string">Created on</th>
69                                 <th>Set by</th>
70                                 <th>Status</th>
71                                 <th class="NoSort">Actions</th>
72                             </tr>
73                         </thead>
74                         <tbody>
75                             [% FOREACH report IN problem_reports %]
76                                 <tr>
77                                     <td><input type="checkbox" name="report_ids" value="[% report.reportid | html %]"></td>
78                                     <td>
79                                         <b>[% report.title | html %]</b><br>
80                                         [% report.content | html %]
81                                     </td>
82                                     <td><a href="[% OPACBaseURL | url %][% report.problempage | url %]">[% OPACBaseURL | url %][% report.problempage | html %]</a></td>
83                                     <td>[% report.recipient | html %]</td>
84                                     <td><span title="[% report.created_on | html %]">[% report.created_on | $KohaDates with_hours => 1 %]</span></td>
85                                     <td>[% INCLUDE 'patron-title.inc' patron => report.patron hide_patron_infos_if_needed=1 %]</td>
86                                     <td class="status[% report.status | html %]" name="status"><span id="status_[% report.reportid | html %]">[% report.status | html %]</span></td>
87                                     <td class="actions">
88                                         [% IF ( report.status == 'New' ) %]
89                                             <button name="viewed" data-report_id="[% report.reportid | html %]" class="viewed btn btn-default btn-xs"><i class="fa fa-eye"></i> Mark viewed</button> <button name="closed" data-report_id="[% report.reportid | html %]" class="closed btn btn-default btn-xs"><i class="fa fa-times-circle"></i> Mark closed</button> <button name="new" disabled="disabled" data-report_id="[% report.reportid | html %]" class="new btn btn-default btn-xs"><i class="fa fa-star"></i> Mark new</button>
90                                         [% ELSIF ( report.status == 'Viewed' ) %]
91                                             <button name="viewed" disabled="disabled" data-report_id="[% report.reportid | html %]" class="viewed btn btn-default btn-xs"><i class="fa fa-eye"></i> Mark viewed</button> <button name="closed" data-report_id="[% report.reportid | html %]" class="closed btn btn-default btn-xs"><i class="fa fa-times-circle"></i> Mark closed</button> <button name="new" data-report_id="[% report.reportid | html %]" class="new btn btn-default btn-xs"><i class="fa fa-star"></i> Mark new</button>
92                                         [% ELSE %]
93                                             <button name="viewed" data-report_id="[% report.reportid | html %]" class="viewed btn btn-default btn-xs"><i class="fa fa-eye"></i> Mark viewed</button> <button name="closed" disabled="disabled" data-report_id="[% report.reportid | html %]" class="closed btn btn-default btn-xs"><i class="fa fa-times-circle"></i> Mark closed</button> <button name="new" data-report_id="[% report.reportid | html %]" class="new btn btn-default btn-xs"><i class="fa fa-star"></i> Mark new</button>
94                                         [% END %]
95                                     </td>
96                                 </tr>
97                             [% END %]
98                         </tbody>
99                     </table>
101                 </form>
103             [% ELSE %]
104                 <div class="dialog message">There are currently no problem reports.</div>
105             [% END %] <!-- problem reports -->
107             </main>
108         </div> <!-- /.col-sm-10.col-sm-push-2 -->
110         <div class="col-sm-2 col-sm-pull-10">
111             <aside>
112                 [% INCLUDE 'tools-menu.inc' %]
113             </aside>
114         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
116     </div> <!-- /.row -->
118 [% MACRO jsinclude BLOCK %]
119     [% INCLUDE 'calendar.inc' %]
120     [% INCLUDE 'datatables.inc' %]
121     <script>
122         $(document).ready(function(){
123             $("#problemreportstable").dataTable($.extend(true, {}, dataTablesDefaults, {
124                 "order": [[ 1, "asc" ]],
125                 "aoColumnDefs": [
126                     { "orderable": false, "searchable": false, 'targets': [ 'NoSort' ] },
127                     { "type": "title-string", "targets" : [ "title-string" ] },
128                     { "type": "anti-the", "targets": [ "anti-the" ] }
129                 ],
130                 "pagingType": "full"
131             }));
133             $(".SelectAll").on("click", function(){
134                 $("input[name='report_ids'][type='checkbox']").prop("checked", true);
135                 $(".markviewed").prop("disabled", false);
136                 $(".markclosed").prop("disabled", false);
137                 $(".marknew").prop("disabled", false);
138             });
140             $(".ClearAll").on("click", function(){
141                 $("input[name='report_ids'][type='checkbox']").prop("checked", false);
142                 $(".markviewed").prop("disabled", true);
143                 $(".markclosed").prop("disabled", true);
144                 $(".marknew").prop("disabled", true);
145             });
149             $(".HideViewed").on("click", function(){
150                 $(".statusViewed").parent().hide();
151             });
153             $(".HideClosed").on("click", function(){
154                 $(".statusClosed").parent().hide();
155             });
157             $(".HideNew").on("click", function(){
158                 $(".statusNew").parent().hide();
159             });
161             $(".ShowAll").on("click", function(){
162                 $("tr").show();
163             });
165             $("#error").hide();
167             $("#problemreportstable").on("change", "input[type='checkbox']", function(){
168                 if ( $("input[type='checkbox']").is(":checked") ) {
169                     $(".markviewed").prop("disabled", false);
170                     $(".markclosed").prop("disabled", false);
171                     $(".marknew").prop("disabled", false);
172                 } else {
173                     $(".markviewed").prop("disabled", true);
174                     $(".markclosed").prop("disabled", true);
175                     $(".marknew").prop("disabled", true);
176                 }
177             });
179             $("#problemreportstable").on("click", "button.viewed, button.closed, button.new", function(event){
180                 event.preventDefault(); // prevent form submission
181                 var $action = $(this).attr("name");
182                 var $report_id = $(this).data('report_id');
183                 var ajaxData = {
184                     'action': $action,
185                     'report_id': $report_id,
186                 };
188                 $.ajax({
189                     url: '/cgi-bin/koha/svc/problem_reports/',
190                     type: 'POST',
191                     dataType: 'json',
192                     data: ajaxData,
193                 })
195                 .done(function(data){
196                     if (data.status == 'success'){
197                         if ( $action == 'viewed' ){
198                             $("#status_" + $report_id).text(_("Viewed"));
199                             $(event.target).parent().siblings("[name='status']").removeClass().addClass("statusViewed");
200                             $(event.target).siblings(".closed").prop("disabled", false);
201                             $(event.target).siblings(".new").prop("disabled", false);
202                             $(event.target).prop("disabled", true);
203                         } else if ( $action == 'new' ){
204                             $("#status_" + $report_id).text(_("New"));
205                             $(event.target).parent().siblings("[name='status']").removeClass().addClass("statusNew");
206                             $(event.target).siblings(".closed").prop("disabled", false);
207                             $(event.target).siblings(".viewed").prop("disabled", false);
208                             $(event.target).prop("disabled", true);
209                         } else {
210                             $("#status_" + $report_id).text(_("Closed"));
211                             $(event.target).parent().siblings("[name='status']").removeClass().addClass("statusClosed");
212                             $(event.target).siblings(".viewed").prop("disabled", false);
213                             $(event.target).siblings(".new").prop("disabled", false);
214                             $(event.target).prop("disabled", true);
215                         }
216                     } else {
217                         $("#error").text(_("Unable to change status of problem report."));
218                         $("#error").show();
219                     }
220                 })
221                 .error(function(data){
222                     $("#error").text(_("Unable to change status of problem report."));
223                     $("#error").show();
224                 });
225             });
226         });
227     </script>
228 [% END %]
230 [% INCLUDE 'intranet-bottom.inc' %]