Line 0
Link Here
|
|
|
1 |
[% USE raw %] |
2 |
[% USE Asset %] |
3 |
[% SET footerjs = 1 %] |
4 |
[% USE Branches %] |
5 |
[% USE Categories %] |
6 |
[% USE KohaDates %] |
7 |
[% USE ItemTypes %] |
8 |
[% PROCESS 'html_helpers.inc' %] |
9 |
|
10 |
[% INCLUDE 'doc-head-open.inc' %] |
11 |
<title>Koha › Tools › Batch extend due dates</title> |
12 |
[% INCLUDE 'doc-head-close.inc' %] |
13 |
[% Asset.css("css/humanmsg.css") | $raw %] |
14 |
</head> |
15 |
|
16 |
<body id="tools_batch_extend_due_dates" class="tools"> |
17 |
[% INCLUDE 'header.inc' %] |
18 |
[% INCLUDE 'cat-search.inc' %] |
19 |
|
20 |
<div id="breadcrumbs"> |
21 |
<a href="/cgi-bin/koha/mainpage.pl">Home</a> › |
22 |
<a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> › |
23 |
<a href="/cgi-bin/koha/tools/batch_extend_due_dates.pl">Batch extend due dates</a> |
24 |
</div> |
25 |
|
26 |
<div class="main container-fluid"> |
27 |
<div class="row"> |
28 |
<div class="col-sm-10 col-sm-push-2"> |
29 |
<main> |
30 |
|
31 |
<h1>Batch extend due dates</h1> |
32 |
|
33 |
[% IF ( messages ) %] |
34 |
<div class="dialog message"> |
35 |
|
36 |
[% FOREACH message IN messages %] |
37 |
[% IF message.type == 'success' %] |
38 |
<div><i class="fa fa-check success"></i> |
39 |
[% ELSIF message.type == 'warning' %] |
40 |
<div><i class="fa fa-warning warn"></i> |
41 |
[% ELSIF message.type == 'error' %] |
42 |
<div><i class="fa fa-exclamation error"></i> |
43 |
[% END %] |
44 |
[% IF message.error %] |
45 |
(The error was: [% message.error | html %]. See the Koha logfile for more information). |
46 |
[% END %] |
47 |
</div> |
48 |
[% END %] |
49 |
|
50 |
</div> <!-- .dialog.message --> |
51 |
[% END %] |
52 |
|
53 |
[% IF view == 'form' %] |
54 |
<form method="post" enctype="multipart/form-data" action="/cgi-bin/koha/tools/batch_extend_due_dates.pl" id="extend_due_dates_form"> |
55 |
<fieldset class="rows"> |
56 |
<legend>Checkout criteria:</legend> |
57 |
<ol> |
58 |
<li> |
59 |
<label for="categorycodes">Patrons' categories: </label> |
60 |
[% SET categories = Categories.all() %] |
61 |
<select id="categorycodes" name="categorycodes" multiple="multiple"> |
62 |
[% FOREACH cat IN categories %] |
63 |
<option value="[% cat.categorycode | html %]">[% cat.description | html %]</option> |
64 |
[% END %] |
65 |
</select> |
66 |
</li> |
67 |
|
68 |
<li> |
69 |
<label for="branchcodes">Libraries: </label> |
70 |
<select name="branchcodes" id="branchcodes" multiple="multiple"> |
71 |
[% PROCESS options_for_libraries libraries => Branches.all() %] |
72 |
</select> |
73 |
</li> |
74 |
|
75 |
<li> |
76 |
<label for="from_due_date">Due date from: </label> |
77 |
<input type="text" size="10" id="from" name="from_due_date" class="datepickerfrom" /> |
78 |
</li> |
79 |
|
80 |
<li> |
81 |
<label for="to_due_date">Due date to:</label> |
82 |
<input type="text" size="10" id="to" name="to_due_date" class="datepickerto" /> |
83 |
</li> |
84 |
</ol> |
85 |
</fieldset> |
86 |
<fieldset class="rows"> |
87 |
<legend>New due date:</legend> |
88 |
<ol> |
89 |
<li> |
90 |
<label for="new_hard_due_date">Hard due date: </label> |
91 |
<input type="text" size="10" id="new_hard_due_date" name="new_hard_due_date" class="datepicker" /> |
92 |
</li> |
93 |
|
94 |
<li> |
95 |
<label for="due_date_days">Or add number of days:</label> |
96 |
<input type="text" size="10" id="due_date_days" name="due_date_days"/> |
97 |
</li> |
98 |
</ol> |
99 |
</fieldset> |
100 |
<fieldset class="action"> |
101 |
<input type="hidden" name="op" value="list" /> |
102 |
<input type="submit" value="Continue" class="button" /> |
103 |
<a class="cancel" href="/cgi-bin/koha/tools/tools-home.pl">Cancel</a> |
104 |
</fieldset> |
105 |
</form> <!-- /#extend_due_dates_form --> |
106 |
[% ELSIF view == 'list' %] |
107 |
[% IF checkouts.count %] |
108 |
<form action="/cgi-bin/koha/tools/batch_extend_due_dates.pl" method="post" id="process"> |
109 |
<div id="toolbar"> |
110 |
<a id="selectall" href="#"><i class="fa fa-check"></i> Select all</a> |
111 |
| <a id="clearall" href="#"><i class="fa fa-remove"></i> Clear all</a> |
112 |
</div> |
113 |
<table id="checkouts"> |
114 |
<thead> |
115 |
<tr> |
116 |
<th> </th> |
117 |
<th>Due date</th> |
118 |
<th>Title</th> |
119 |
<th>Item type</th> |
120 |
<th>Home library</th> |
121 |
<th>Checked out on</th> |
122 |
<th>Checked out from</th> |
123 |
<th>New due date</th> |
124 |
</tr> |
125 |
</thead> |
126 |
<tbody> |
127 |
[% FOR checkout IN checkouts %] |
128 |
<tr> |
129 |
<td><input type="checkbox" name="issue_id" value="[% checkout.issue_id | html %]" /></td> |
130 |
<td>[% checkout.date_due | $KohaDates as_due_date => 1 %]</td> |
131 |
<td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% checkout.item.biblio.biblionumber | uri %]">[% checkout.item.biblio.title | html %]</a></td> |
132 |
<td>[% ItemTypes.GetDescription( checkout.item.effective_itemtype ) | html %]</td> |
133 |
<td>[% checkout.item.home_branch.branchname | html %]</td> |
134 |
<td>[% checkout.issuedate | $KohaDates %]</td> |
135 |
<td>[% Branches.GetName( checkout.branchcode ) | html %]</td> |
136 |
<td> |
137 |
[% IF new_hard_due_date %] |
138 |
[% new_hard_due_date | $KohaDates %] |
139 |
[% ELSE %] |
140 |
[% new_due_dates.shift | $KohaDates %] |
141 |
[% END %] |
142 |
</td> |
143 |
</tr> |
144 |
[% END %] |
145 |
</tbody> |
146 |
</table> <!-- /#checkouts --> |
147 |
<div class="note"><i class="fa fa-exclamation"></i> Reminder: this action will modify all selected checkouts!</div> |
148 |
<fieldset class="action"> |
149 |
<input type="hidden" name="op" value="modify" /> |
150 |
<input type="hidden" name="new_hard_due_date" value="[% new_hard_due_date | $KohaDates %]" /> |
151 |
<input type="hidden" name="due_date_days" value="[% due_date_days | html %]" /> |
152 |
<input type="submit" value="Modify selected checkouts" class="button" /> |
153 |
<a class="cancel" href="/cgi-bin/koha/tools/batch_extend_due_dates.pl">Cancel</a> |
154 |
</fieldset> |
155 |
</form> <!-- /#process --> |
156 |
[% ELSE %] |
157 |
<div class="dialog message"> |
158 |
No checkouts for the selected filters. |
159 |
</div> |
160 |
[% END %] |
161 |
[% ELSIF view == 'report' %] |
162 |
<div class="dialog message"> |
163 |
Due dates have been modified! |
164 |
</div> |
165 |
|
166 |
<table id="checkouts_result"> |
167 |
<thead> |
168 |
<tr> |
169 |
<th>Due date</th> |
170 |
<th>Title</th> |
171 |
<th>Item type</th> |
172 |
<th>Home library</th> |
173 |
<th>Checked out on</th> |
174 |
<th>Checked out from</th> |
175 |
</tr> |
176 |
</thead> |
177 |
<tbody> |
178 |
[% FOR checkout IN checkouts %] |
179 |
<tr> |
180 |
<td>[% checkout.date_due | $KohaDates as_due_date => 1 %]</td> |
181 |
<td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% checkout.item.biblio.biblionumber | uri %]">[% checkout.item.biblio.title | html %]</a></td> |
182 |
<td>[% ItemTypes.GetDescription( checkout.item.effective_itemtype ) | html %]</td> |
183 |
<td>[% checkout.item.home_branch.branchname | html %]</td> |
184 |
<td>[% checkout.issuedate | $KohaDates %]</td> |
185 |
<td>[% Branches.GetName( checkout.branchcode ) | html %]</td> |
186 |
</tr> |
187 |
[% END %] |
188 |
</tbody> |
189 |
</table> <!-- /#checkouts_result --> |
190 |
[% END %] |
191 |
</main> |
192 |
</div> <!-- /.col-sm-10.col-sm-push-2 --> |
193 |
|
194 |
<div class="col-sm-2 col-sm-pull-10"> |
195 |
<aside> |
196 |
[% INCLUDE 'tools-menu.inc' %] |
197 |
</aside> |
198 |
</div> <!-- /.col-sm-2.col-sm-pull-10 --> |
199 |
</div> <!-- /.row --> |
200 |
|
201 |
[% MACRO jsinclude BLOCK %] |
202 |
[% Asset.js("js/tools-menu.js") | $raw %] |
203 |
[% INCLUDE 'calendar.inc' %] |
204 |
[% INCLUDE 'datatables.inc' %] |
205 |
[% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %] |
206 |
[% Asset.js("lib/jquery/plugins/humanmsg.js") | $raw %] |
207 |
<script> |
208 |
$(document).ready(function() { |
209 |
|
210 |
$("#selectall").click(function(e) { |
211 |
e.preventDefault(); |
212 |
$("#checkouts").checkCheckboxes(); |
213 |
}); |
214 |
$("#clearall").click(function(e) { |
215 |
e.preventDefault(); |
216 |
$("#checkouts").unCheckCheckboxes(); |
217 |
}); |
218 |
$("#selectall").click(); |
219 |
|
220 |
$("table#checkouts").dataTable($.extend(true, {}, dataTablesDefaults, { |
221 |
"aoColumnDefs": [ |
222 |
{ "aTargets": [0, 3], "bSortable": false, "bSearchable": false }, |
223 |
{ "aTargets": [1], "sType": "num-html" } |
224 |
], |
225 |
"sDom": 't', |
226 |
"aaSorting": [], |
227 |
"bPaginate": false |
228 |
})); |
229 |
|
230 |
$("table#checkouts_result").dataTable($.extend(true, {}, dataTablesDefaults, { |
231 |
"aoColumnDefs": [ |
232 |
{ "aTargets": [0, 3], "bSortable": false, "bSearchable": false }, |
233 |
{ "aTargets": [1], "sType": "num-html" } |
234 |
], |
235 |
"sDom": 't', |
236 |
"aaSorting": [], |
237 |
"bPaginate": false |
238 |
})); |
239 |
|
240 |
$("#extend_due_dates_form").on('submit', function(e) { |
241 |
var new_hard_due_date = $("#new_hard_due_date").val(); |
242 |
var due_date_days = $("#due_date_days").val(); |
243 |
if (new_hard_due_date && due_date_days ) { |
244 |
e.preventDefault(); |
245 |
alert(_("You must fill only one of the two due date options")); |
246 |
return false; |
247 |
} else if ( !new_hard_due_date && !due_date_days ) { |
248 |
e.preventDefault(); |
249 |
alert(_("You must fill at least one of the two due date options")); |
250 |
return false; |
251 |
} |
252 |
|
253 |
return true; |
254 |
}); |
255 |
|
256 |
$("#process").on('submit', function(e) { |
257 |
if ($("input[type=checkbox][name='issue_id']:checked").length == 0) { |
258 |
e.preventDefault(); |
259 |
alert(_("Please select at least one checkout to process")); |
260 |
return false; |
261 |
} |
262 |
return true; |
263 |
}); |
264 |
|
265 |
}); |
266 |
</script> |
267 |
[% END %] |
268 |
|
269 |
[% INCLUDE 'intranet-bottom.inc' %] |