Bug 24026: (bug 22847 follow-up) Display correctly max[onsite]issueqty (not the propa...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / smart-rules.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% USE Branches %]
5 [% USE Categories %]
6 [% USE CirculationRules %]
7 [% SET footerjs = 1 %]
8
9 [% SET branchcode = humanbranch %]
10
11 [% SET categorycodes = ['*'] %]
12 [% FOREACH pc IN patron_categories %]
13     [% categorycodes.push( pc.id ) %]
14 [% END %]
15
16 [% INCLUDE 'doc-head-open.inc' %]
17 <title>Koha &rsaquo; Administration &rsaquo; Circulation and fine rules</title>
18 [% INCLUDE 'doc-head-close.inc' %]
19 </head>
20
21 <body id="admin_smart-rules" class="admin">
22 [% INCLUDE 'header.inc' %]
23 [% INCLUDE 'prefs-admin-search.inc' %]
24
25 <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; Circulation and fine rules</div>
26
27 <div class="main container-fluid">
28     <div class="row">
29         <div class="col-sm-10 col-sm-push-2">
30             <main>
31
32     <h1 class="parameters">
33         [% IF humanbranch %]
34             Defining circulation and fine rules for "[% Branches.GetName( humanbranch ) | html %]"
35         [% ELSE %]
36             Defining circulation and fine rules for all libraries
37         [% END %]
38     </h1>
39     <div class="help">
40         <p>The rules are applied from most specific to less specific, using the first found in this order:</p>
41         <ul>
42             <li>same library, same patron category, same item type</li>
43             <li>same library, same patron category, all item types</li>
44             <li>same library, all patron categories, same item type</li>
45             <li>same library, all patron categories, all item types</li>
46             <li>default (all libraries), same patron category, same item type</li>
47             <li>default (all libraries), same patron category, all item types</li>
48             <li>default (all libraries), all patron categories, same item type</li>
49             <li>default (all libraries), all patron categories, all item types</li>
50         </ul>
51         <p>To modify a rule, create a new one with the same patron category and item type.</p>
52     </div>
53     <div>
54         [% UNLESS restricted_to_own_library %]
55             <form method="get" action="/cgi-bin/koha/admin/smart-rules.pl" id="selectlibrary">
56             Select a library :
57                 <select name="branch" id="branch" style="width:20em;">
58                     <option value="*">Standard rules for all libraries</option>
59                     [% PROCESS options_for_libraries libraries => Branches.all( selected => current_branch, unfiltered => 1 ) %]
60                 </select>
61             </form>
62             [% IF ( definedbranch ) %]
63                 <form action="/cgi-bin/koha/admin/clone-rules.pl" method="post">
64                     <label for="tobranch"><strong>Clone these rules to:</strong></label>
65                     <input type="hidden" name="frombranch" value="[% current_branch | html %]" />
66                     <select name="tobranch" id="tobranch">
67                         [% PROCESS options_for_libraries libraries => Branches.all( unfiltered => 1 ) %]
68                     </select>
69                     <input type="submit" id="clone_rules" value="Clone" />
70                 </form>
71             [% END %]
72         [% END %]
73
74         <form method="post" action="/cgi-bin/koha/admin/smart-rules.pl">
75             <input type="hidden" name="op" value="add" />
76             <input type="hidden" name="branch" value="[% current_branch | html %]"/>
77             <table id="default-circulation-rules">
78             <thead>
79             <tr>
80                 <th>Patron category</th>
81                 <th>Item type</th>
82                 <th>Actions</th>
83                 <th>Note</th>
84                 <th>Current checkouts allowed</th>
85                 <th>Current on-site checkouts allowed</th>
86                 <th>Loan period</th>
87                 <th>Unit</th>
88                 <th>Hard due date</th>
89                 <th>Fine amount</th>
90                 <th>Fine charging interval</th>
91                 <th>When to charge</th>
92                 <th>Fine grace period</th>
93                 <th>Overdue fines cap (amount)</th>
94                 <th>Cap fine at replacement price</th>
95                 <th>Suspension in days (day)</th>
96                 <th>Max. suspension duration (day)</th>
97                 <th>Suspension charging interval</th>
98                 <th>Renewals allowed (count)</th>
99                 <th>Renewal period</th>
100                 <th>No renewal before</th>
101                 <th>Automatic renewal</th>
102                 <th>No automatic renewal after</th>
103                 <th>No automatic renewal after (hard limit)</th>
104                 <th>Holds allowed (total)</th>
105                 <th>Holds allowed (daily)</th>
106                 <th>Holds per record (count)</th>
107                 <th>On shelf holds allowed</th>
108                 <th>Item level holds</th>
109                 <th>Article requests</th>
110                 <th>Rental discount (%)</th>
111                 <th>Actions</th>
112             </tr>
113             </thead>
114             <tbody>
115                                 [% FOREACH rule IN rules %]
116                                         <tr id="row_[% loop.count | html %]">
117                                                         <td>[% IF ( rule.default_humancategorycode ) %]
118                                                                         <em>All</em>
119                                                                 [% ELSE %]
120                                                                         [% rule.humancategorycode | html %]
121                                                                 [% END %]
122                                                         </td>
123                             <td>[% IF rule.default_translated_description %]
124                                                                         <em>All</em>
125                                                                 [% ELSE %]
126                                                                         [% rule.translated_description | html %]
127                                                                 [% END %]
128                                                         </td>
129                                                         <td class="actions">
130                                                           <a href="#" class="editrule btn btn-default btn-xs"><i class="fa fa-pencil"></i> Edit</a>
131                                                           <a class="btn btn-default btn-xs delete" href="/cgi-bin/koha/admin/smart-rules.pl?op=delete&amp;itemtype=[% rule.itemtype | html %]&amp;categorycode=[% rule.categorycode | html %]&amp;branch=[% rule.current_branch | html %]"><i class="fa fa-trash"></i> Delete</a>
132                                                         </td>
133
134                                                         <td>
135                                                             [% IF rule.note %]
136                                                                 <a name="viewnote" data-toggle="popover" title="Note" data-content="[% rule.note | html %]" data-placement="top" data-trigger="hover">View note</a>
137                                                             [% ELSE %]&nbsp;[% END %]
138                                                         </td>
139                             <td>
140                                 [% SET rule_value = CirculationRules.Search( rule.branchcode, rule.categorycode, rule.itemtype, 'maxissueqty' ) %]
141                                 [% IF rule_value || rule_value == "0"  %]
142                                     [% rule_value | html %]
143                                 [% ELSE %]
144                                     <span>Unlimited</span>
145                                 [% END %]
146                             </td>
147                             <td>
148                                 [% SET rule_value = CirculationRules.Search( rule.branchcode, rule.categorycode, rule.itemtype, 'maxonsiteissueqty' ) %]
149                                 [% IF rule_value || rule_value == "0" %]
150                                     [% rule_value | html %]
151                                 [% ELSE %]
152                                     <span>Unlimited</span>
153                                 [% END %]
154                             </td>
155                             <td>[% rule.issuelength | html %]</td>
156                             <td>
157                                 [% IF ( rule.lengthunit == 'days' ) %]
158                                     Days
159                                 [% ELSIF ( rule.lengthunit == 'hours') %]
160                                     Hours
161                                 [% ELSE %]
162                                     Undefined
163                                 [% END %]
164                             </td>
165                             <td>
166                               [% IF ( rule.hardduedate ) %]
167                                 [% IF ( rule.hardduedatebefore ) %]
168                                   before [% rule.hardduedate | html %]
169                                   <input type="hidden" name="hardduedatecomparebackup" value="-1" />
170                                 [% ELSIF ( rule.hardduedateexact ) %]
171                                   on [% rule.hardduedate | html %]
172                                   <input type="hidden" name="hardduedatecomparebackup" value="0" />
173                                 [% ELSIF ( rule.hardduedateafter ) %]
174                                   after [% rule.hardduedate | html %]
175                                   <input type="hidden" name="hardduedatecomparebackup" value="1" />
176                                 [% END %]
177                               [% ELSE %]
178                                 <span>None defined</span>
179                               [% END %]
180                             </td>
181                                                         <td>[% rule.fine | html %]</td>
182                                                         <td>[% rule.chargeperiod | html %]</td>
183                             <td>
184                                 [% IF rule.chargeperiod_charge_at %]
185                                     <span>Start of interval</span>
186                                 [% ELSE %]
187                                     <span>End of interval</span>
188                                 [% END %]
189                             </td>
190                                                         <td>[% rule.firstremind | html %]</td>
191                             <td>[% rule.overduefinescap FILTER format("%.2f") %]</td>
192                             <td>
193                                 [% IF rule.cap_fine_to_replacement_price %]
194                                     <input type="checkbox" checked="checked" disabled="disabled" />
195                                 [% ELSE %]
196                                     <input type="checkbox" disabled="disabled" />
197                                 [% END %]
198                             </td>
199                                                         <td>[% rule.finedays | html %]</td>
200                             <td>[% rule.maxsuspensiondays | html %]</td>
201                             <td>[% rule.suspension_chargeperiod | html %]</td>
202                                                         <td>[% rule.renewalsallowed | html %]</td>
203                             <td>[% rule.renewalperiod | html %]</td>
204                             <td>[% rule.norenewalbefore | html %]</td>
205                             <td>
206                                 [% IF ( rule.auto_renew ) %]
207                                     <span>Yes</span>
208                                 [% ELSE %]
209                                     <span>No</span>
210                                 [% END %]
211                             </td>
212                             <td>[% rule.no_auto_renewal_after | html %]</td>
213                             <td>[% rule.no_auto_renewal_after_hard_limit | html %]</td>
214                                                         <td>[% rule.reservesallowed | html %]</td>
215                             <td>[% IF rule.unlimited_holds_per_day %]
216                                     <span>Unlimited</span>
217                                 [% ELSE %]
218                                     [% rule.holds_per_day | html %]
219                                 [% END %]
220                             </td>
221                             <td>[% rule.holds_per_record | html %]</td>
222                                                         <td>
223                                                             [% IF rule.onshelfholds == 1 %]
224                                                                 <span>Yes</span>
225                                                             [% ELSIF rule.onshelfholds == 2 %]
226                                                                 <span>If all unavailable</span>
227                                                             [% ELSE %]
228                                                                 <span>If any unavailable</span>
229                                                             [% END %]
230                                                         </td>
231                                                         <td>
232                                                             [% IF rule.opacitemholds == 'F'%]
233                                                                 <span>Force</span>
234                                                             [% ELSIF rule.opacitemholds == 'Y'%]
235                                                                 <span>Allow</span>
236                                                             [% ELSE %]
237                                                                 <span>Don't allow</span>
238                                                             [% END %]
239                                                         </td>
240                                                         <td>
241                                                             [% IF rule.article_requests == 'no' %]
242                                                                 <span>No</span>
243                                                             [% ELSIF rule.article_requests == 'yes' %]
244                                                                 <span>Yes</span>
245                                                             [% ELSIF rule.article_requests == 'bib_only' %]
246                                                                 <span>Record only</span>
247                                                             [% ELSIF rule.article_requests == 'item_only' %]
248                                                                 <span>Item only</span>
249                                                             [% END %]
250                                                         </td>
251                                                         <td>[% rule.rentaldiscount | html %]</td>
252                                                         <td class="actions">
253                                                           <a href="#" class="editrule btn btn-default btn-xs"><i class="fa fa-pencil"></i> Edit</a>
254                                                           <a class="btn btn-default btn-xs delete" href="/cgi-bin/koha/admin/smart-rules.pl?op=delete&amp;itemtype=[% rule.itemtype | html %]&amp;categorycode=[% rule.categorycode | html %]&amp;branch=[% rule.current_branch | html %]"><i class="fa fa-trash"></i> Delete</a>
255                                                         </td>
256
257                         </tr>
258                 [% END %]
259                 <tr id="edit_row">
260                     <td>
261                         <select name="categorycode" id="categorycode">
262                             <option value="*">All</option>
263                         [% FOREACH patron_category IN patron_categories%]
264                             <option value="[% patron_category.categorycode | html %]">[% patron_category.description | html %]</option>
265                         [% END %]
266                         </select>
267                     </td>
268                     <td>
269                         <select name="itemtype" id="matrixitemtype" style="width:13em;">
270                             <option value="*">All</option>
271                         [% FOREACH itemtypeloo IN itemtypeloop %]
272                             <option value="[% itemtypeloo.itemtype | html %]">[% itemtypeloo.translated_description | html %]</option>
273                         [% END %]
274                         </select>
275                     </td>
276                     <td class="actions">
277                         <input type="hidden" name="branch" value="[% current_branch | html %]"/>
278                         <button type="submit" class="btn btn-default btn-xs"><i class="fa fa-save"></i> Save</button>
279                         <button name="cancel" class="clear_edit btn btn-default btn-xs"><i class="fa fa-undo"></i> Clear</button>
280                     </td>
281                     <td><input type="text" name="note" id="note" size="15" value="" maxlength="100"></td>
282                     <td><input type="text" name="maxissueqty" id="maxissueqty" size="3" /></td>
283                     <td><input type="text" name="maxonsiteissueqty" id="maxonsiteissueqty" size="3" /></td>
284                     <td><input type="text" name="issuelength" id="issuelength" size="3" /> </td>
285                     <td>
286                       <select name="lengthunit" id="lengthunit">
287                         <option value="days" selected="selected">Days</option>
288                         <option value="hours">Hours</option>
289                       </select>
290                     </td>
291                     <td>
292                         <select name="hardduedatecompare" id="hardduedatecompare">
293                            <option value="-1">Before</option>
294                            <option value="0">Exactly on</option>
295                            <option value="1">After</option>
296                         </select>
297                         <input type="text" size="10" id="hardduedate" name="hardduedate" value="[% hardduedate | html %]" class="datepicker" />
298                         <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
299                     </td>
300                     <td><input type="text" name="fine" id="fine" size="4" /></td>
301                     <td><input type="text" name="chargeperiod" id="chargeperiod" size="2" /></td>
302                     <td>
303                         <select name="chargeperiod_charge_at" id="chargeperiod_charge_at">
304                            <option value="0">End of interval</option>
305                            <option value="1">Start of interval</option>
306                         </select>
307                     </td>
308                     <td><input type="text" name="firstremind" id="firstremind" size="2" /> </td>
309                     <td><input type="text" name="overduefinescap" id="overduefinescap" size="6" /> </td>
310                     <td><input type="checkbox" name="cap_fine_to_replacement_price" id="cap_fine_to_replacement_price" /></td>
311                     <td><input type="text" name="finedays" id="fined" size="3" /> </td>
312                     <td><input type="text" name="maxsuspensiondays" id="maxsuspensiondays" size="3" /> </td>
313                     <td><input type="text" name="suspension_chargeperiod" id="suspension_chargeperiod" size="3" /> </td>
314                     <td><input type="text" name="renewalsallowed" id="renewalsallowed" size="2" /></td>
315                     <td><input type="text" name="renewalperiod" id="renewalperiod" size="3" /></td>
316                     <td><input type="text" name="norenewalbefore" id="norenewalbefore" size="3" /></td>
317                     <td>
318                         <select name="auto_renew" id="auto_renew">
319                             <option value="no" selected>No</option>
320                             <option value="yes">Yes</option>
321                         </select>
322                     </td>
323                     <td><input type="text" name="no_auto_renewal_after" id="no_auto_renewal_after" size="3" /></td>
324                     <td>
325                         <input type="text" size="10" name="no_auto_renewal_after_hard_limit" id="no_auto_renewal_after_hard_limit" value="[% no_auto_renewal_after_hard_limit | html %]" class="datepicker"/>
326                         <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
327                     </td>
328                     <td><input type="text" name="reservesallowed"  id="reservesallowed"  size="2" /></td>
329                     <td><input type="text" name="holds_per_day"    id="holds_per_day"    size="2" /></td>
330                     <td><input type="text" name="holds_per_record" id="holds_per_record" size="2" /></td>
331                     <td>
332                         <select name="onshelfholds" id="onshelfholds">
333                             <option value="1">Yes</option>
334                             <option value="0">If any unavailable</option>
335                             <option value="2">If all unavailable</option>
336                         </select>
337                     </td>
338                     <td>
339                         <select id="opacitemholds" name="opacitemholds">
340                             <option value="N">Don't allow</option>
341                             <option value="Y">Allow</option>
342                             <option value="F">Force</option>
343                         </select>
344                     </td>
345                     <td>
346                         <select id="article_requests" name="article_requests">
347                             <option value="no">No</option>
348                             <option value="yes">Yes</option>
349                             <option value="bib_only">Record only</option>
350                             <option value="item_only">Item only</option>
351                         </select>
352                     </td>
353                     <td><input type="text" name="rentaldiscount" id="rentaldiscount" size="2" /></td>
354                     <td class="actions">
355                         <input type="hidden" name="branch" value="[% current_branch | html %]"/>
356                         <button type="submit" class="btn btn-default btn-xs"><i class="fa fa-save"></i> Save</button>
357                         <button name="cancel" class="clear_edit btn btn-default btn-xs"><i class="fa fa-undo"></i> Clear</button>
358                     </td>
359                 </tr>
360                 <tfoot>
361                     <tr>
362                       <th>Patron category</th>
363                       <th>Item type</th>
364                       <th>&nbsp;</th>
365                       <th>Note</th>
366                       <th>Current checkouts allowed</th>
367                       <th>Current on-site checkouts allowed</th>
368                       <th>Loan period</th>
369                       <th>Unit</th>
370                       <th>Hard due date</th>
371                       <th>Fine amount</th>
372                       <th>Fine charging interval</th>
373                       <th>Charge when?</th>
374                       <th>Fine grace period</th>
375                       <th>Overdue fines cap (amount)</th>
376                       <th>Cap fine at replacement price</th>
377                       <th>Suspension in days (day)</th>
378                       <th>Max. suspension duration (day)</th>
379                       <th>Suspension charging interval</th>
380                       <th>Renewals allowed (count)</th>
381                       <th>Renewal period</th>
382                       <th>No renewal before</th>
383                       <th>Automatic renewal</th>
384                       <th>No automatic renewal after</th>
385                       <th>No automatic renewal after (hard limit)</th>
386                       <th>Holds allowed (total)</th>
387                       <th>Holds allowed (daily)</th>
388                       <th>Holds per record (count)</th>
389                       <th>On shelf holds allowed</th>
390                       <th>Item level holds</th>
391                       <th>Article requests</th>
392                       <th>Rental discount (%)</th>
393                       <th>&nbsp;</th>
394                     </tr>
395                   </tfoot>
396                 </tbody>
397             </table>
398         </form>
399     </div>
400     <div id="defaults-for-this-library" class="container">
401     <h3>Default checkout, hold and return policy[% IF humanbranch %] for [% Branches.GetName( humanbranch ) | html %][% END %]</h3>
402         <p>You can set a default maximum number of checkouts, hold policy and return policy that will be used if none is defined below for a particular item type or category.</p>
403         <form method="post" action="/cgi-bin/koha/admin/smart-rules.pl">
404             <input type="hidden" name="op" value="set-branch-defaults" />
405             <input type="hidden" name="branch" value="[% current_branch | html %]"/>
406             <table>
407                 <tr>
408                     <th>&nbsp;</th>
409                     <th>Total current checkouts allowed</th>
410                     <th>Total current on-site checkouts allowed</th>
411                     <th>Maximum total holds allowed (count)</th>
412                     <th>Hold policy</th>
413                     <th>Hold pickup library match</th>
414                     <th>Return policy</th>
415                     <th>Actions</th>
416                 </tr>
417                 <tr>
418                     <td><em>Defaults[% UNLESS ( default_rules ) %] (not set)[% END %]</em></td>
419                     <td>
420                         [% SET patron_maxissueqty = CirculationRules.Search( current_branch, undef, undef, 'patron_maxissueqty' ) %]
421                         <input type="text" name="patron_maxissueqty" size="3" value="[% patron_maxissueqty | html %]"/>
422                     </td>
423                     <td>
424                         [% SET patron_maxonsiteissueqty = CirculationRules.Search( current_branch, undef, undef, 'patron_maxonsiteissueqty' ) %]
425                         <input type="text" name="patron_maxonsiteissueqty" size="3" value="[% patron_maxonsiteissueqty | html %]"/>
426                     </td>
427                     <td>
428                         [% SET rule_value = CirculationRules.Search( current_branch, undef , undef, 'max_holds' ) %]
429                         <input name="max_holds" size="3" value="[% rule_value | html %]" />
430                     </td>
431                     <td>
432                         <select name="holdallowed">
433                             [% IF ( default_holdallowed_any ) %]
434                             <option value="2" selected="selected">
435                             [% ELSE %]
436                             <option value="2">
437                             [% END %]
438                                 From any library
439                             </option>
440                             [% IF ( default_holdallowed_same ) %]
441                             <option value="1" selected="selected">
442                             [% ELSE %]
443                             <option value="1">
444                             [% END %]
445                                 From home library
446                             </option>
447                             [% IF ( default_holdallowed_none ) %]
448                             <option value="0" selected="selected">
449                             [% ELSE %]
450                             <option value="0">
451                             [% END %]
452                                 No holds allowed
453                             </option>
454                         </select>
455                     </td>
456                     <td>
457                         <select name="hold_fulfillment_policy">
458                             [% IF default_hold_fulfillment_policy == 'any' %]
459                                 <option value="any" selected="selected">
460                                     any library
461                                 </option>
462                             [% ELSE %]
463                                 <option value="any">
464                                     any library
465                                 </option>
466                             [% END %]
467
468                             [% IF default_hold_fulfillment_policy == 'homebranch' %]
469                                 <option value="homebranch" selected="selected">
470                                     item's home library
471                                 </option>
472                             [% ELSE %]
473                                 <option value="homebranch">
474                                     item's home library
475                                 </option>
476                             [% END %]
477
478                             [% IF default_hold_fulfillment_policy == 'holdingbranch' %]
479                                 <option value="holdingbranch" selected="selected">
480                                     item's holding library
481                                 </option>
482                             [% ELSE %]
483                                 <option value="holdingbranch">
484                                     item's holding library
485                                 </option>
486                             [% END %]
487                         </select>
488                     </td>
489                     <td>
490                         <select name="returnbranch">
491                             [% IF ( default_returnbranch == 'homebranch' ) %]
492                             <option value="homebranch" selected="selected">
493                             [% ELSE %]
494                             <option value="homebranch">
495                             [% END %]
496                                 Item returns home
497                             </option>
498                             [% IF ( default_returnbranch == 'holdingbranch' ) %]
499                             <option value="holdingbranch" selected="selected">
500                             [% ELSE %]
501                             <option value="holdingbranch">
502                             [% END %]
503                                 Item returns to issuing library
504                             </option>
505                             [% IF ( default_returnbranch == 'noreturn' ) %]
506                             <option value="noreturn" selected="selected">
507                             [% ELSE %]
508                             <option value="noreturn">
509                             [% END %]
510                                 Item floats
511                             </option>
512                         </select>
513                     </td>
514                     <td class="actions">
515                         <button type="submit" class="btn btn-default btn-xs"><i class="fa fa-save"></i> Save</button>
516                         <a class="btn btn-default btn-xs delete" href="/cgi-bin/koha/admin/smart-rules.pl?op=delete-branch-cat&amp;categorycode=*&amp;branch=[% current_branch | html %]" id="unset"><i class="fa fa-undo"></i> Unset</a>
517                     </td>
518                 </tr>
519             </table>
520         </form>
521     </div>
522     [% IF ( show_branch_cat_rule_form ) %]
523     <div id="holds-policy-by-patron-category" class="container">
524     <h3>[% IF humanbranch %]Checkout, hold policy by patron category for [% Branches.GetName( humanbranch ) | html %][% ELSE %]Default checkout, hold policy by patron category[% END %]</h3>
525         <p>For this library, you can specify the maximum number of loans that
526             a patron of a given category can make, regardless of the item type.
527         </p>
528         <p>If the total amount loanable for a given patron category is left blank,
529            no limit applies, except possibly for a limit you define for a specific item type.
530         </p>
531         <form method="post" action="/cgi-bin/koha/admin/smart-rules.pl">
532             <input type="hidden" name="op" value="add-branch-cat" />
533             <input type="hidden" name="branch" value="[% current_branch | html %]"/>
534             <table>
535                 <tr>
536                     <th>Patron category</th>
537                     <th>Total current checkouts allowed</th>
538                     <th>Total current on-site checkouts allowed</th>
539                     <th>Total holds allowed</th>
540                     <th>&nbsp;</th>
541                 </tr>
542                 [% FOREACH c IN categorycodes %]
543                     [% SET patron_maxissueqty = CirculationRules.Search( branchcode, c, undef, 'patron_maxissueqty' ) %]
544                     [% SET patron_maxonsiteissueqty = CirculationRules.Search( branchcode, c, undef, 'patron_maxonsiteissueqty' ) %]
545                     [% SET max_holds = CirculationRules.Search( branchcode, c, undef, 'max_holds' ) %]
546
547                     [% IF  ( patron_maxissueqty.defined && patron_maxissueqty != '' ) || ( patron_maxonsiteissueqty.defined && patron_maxonsiteissueqty != '' ) || ( max_holds.defined && max_holds != '' ) %]
548                     <tr>
549                         <td>
550                             [% IF c == '*'%]
551                                 <em>Default</em>
552                             [% ELSE %]
553                                 [% Categories.GetName(c) | html %]
554                             [% END %]
555                         </td>
556                         <td>
557                             [% IF patron_maxissueqty.defined && patron_maxissueqty != '' %]
558                                 [% patron_maxissueqty | html %]
559                             [% ELSE %]
560                                 <span>Unlimited</span>
561                             [% END %]
562                         </td>
563                         <td>
564                             [% IF patron_maxonsiteissueqty.defined && patron_maxonsiteissueqty != '' %]
565                                 [% patron_maxonsiteissueqty | html %]
566                             [% ELSE %]
567                                 <span>Unlimited</span>
568                             [% END %]
569                         </td>
570                         <td>
571                             [% IF max_holds.defined && max_holds != '' %]
572                                 [% max_holds | html %]
573                             [% ELSE %]
574                                 <span>Unlimited</span>
575                             [% END %]
576                         </td>
577
578                         <td class="actions">
579                             <a class="btn btn-default btn-xs delete" href="/cgi-bin/koha/admin/smart-rules.pl?op=delete-branch-cat&amp;categorycode=[% c | html %]&amp;branch=[% current_branch | html %]"><i class="fa fa-trash"></i> Delete</a>
580                         </td>
581                     </tr>
582                     [% END %]
583                 [% END %]
584                 <tr>
585                     <td>
586                         <select name="categorycode">
587                         [% FOREACH patron_category IN patron_categories%]
588                             <option value="[% patron_category.categorycode | html %]">[% patron_category.description | html %]</option>
589                         [% END %]
590                         </select>
591                     </td>
592                     <td><input name="patron_maxissueqty" size="3" type="text" /></td>
593                     <td><input name="patron_maxonsiteissueqty" size="3" type="text" /></td>
594                     <td><input name="max_holds" size="3" type="text" /></td>
595                     <td class="actions"><button type="submit" class="btn btn-default btn-xs"><i class="fa fa-plus"></i> Add</td>
596                 </tr>
597             </table>
598         </form>
599     </div>
600     [% END %]
601
602     <div id="refund-lost-item-fee-on-return" class="container">
603   [% IF current_branch == '*' %]
604     <h3>Default lost item fee refund on return policy</h3>
605   [% ELSE %]
606     <h3>Lost item fee refund on return policy for [% Branches.GetName(current_branch) | html %]</h3>
607   [% END %]
608         <p>Specify the default policy for lost item fees on return.
609         </p>
610         <form method="post" action="/cgi-bin/koha/admin/smart-rules.pl">
611             <input type="hidden" name="op" value="mod-refund-lost-item-fee-rule" />
612             <input type="hidden" name="branch" value="[% current_branch | html %]" />
613             <table>
614                 <tr>
615                     <th>Refund lost item fee</th>
616                     <th>&nbsp;</th>
617                 </tr>
618                 <tr>
619                     <td>
620                         <select name="refund">
621                           [#% Default branch %#]
622                           [% IF ( current_branch == '*' ) %]
623                             [% IF ( ( not refundLostItemFeeRule.refund.defined ) || refundLostItemFeeRule.refund ) %]
624                             <option value="1" selected="selected">
625                             [% ELSE %]
626                             <option value="1">
627                             [% END %]
628                                 Yes
629                             </option>
630                             [% IF ( refundLostItemFeeRule.refund.defined && ( not refundLostItemFeeRule.refund ) ) %]
631                             <option value="0" selected="selected">
632                             [% ELSE %]
633                             <option value="0">
634                             [% END %]
635                                 No
636                             </option>
637                           [% ELSE %]
638                           [#% Branch-specific %#]
639                             [% IF ( not refundLostItemFeeRule ) %]
640                                 <option value="*" selected="selected">
641                             [% ELSE %]
642                                 <option value="*">
643                             [% END %]
644                               [% IF defaultRefundRule %]
645                                 Use default (Yes)
646                               [% ELSE %]
647                                 Use default (No)
648                               [% END %]
649                                 </option>
650                             [% IF ( not refundLostItemFeeRule ) %]
651                                 <option value="1">Yes</option>
652                                 <option value="0">No</option>
653                             [% ELSE %]
654                                 [% IF ( refundLostItemFeeRule.refund ) %]
655                                 <option value="1" selected="selected">
656                                 [% ELSE %]
657                                 <option value="1">
658                                 [% END %]
659                                     Yes
660                                 </option>
661                                 [% IF ( not refundLostItemFeeRule.refund ) %]
662                                 <option value="0" selected="selected">
663                                 [% ELSE %]
664                                 <option value="0">
665                                 [% END %]
666                                     No
667                                 </option>
668                             [% END %]
669                           [% END %]
670                         </select>
671                     </td>
672                     <td class="actions">
673                         <button type="submit" class="btn btn-default btn-xs"><i class="fa fa-save"></i> Save</button>
674                     </td>
675                     </td>
676                 </tr>
677             </table>
678         </form>
679     </div>
680
681     <div id="holds-policy-by-item-type" class="container">
682     <h3>[% IF humanbranch %]Holds policy by item type for [% Branches.GetName( humanbranch ) | html %][% ELSE %]Default holds policy by item type[% END %]</h3>
683         <p>
684             For this library, you can edit rules for given itemtypes, regardless
685             of the patron's category.
686         </p>
687         <p>
688             Currently, this means hold policies.
689             The various policies have the following effects:
690         </p>
691         <ul>
692             <li><strong>From any library:</strong> Patrons from any library may put this item on hold. <cite>(default if none is defined)</cite></li>
693             <li><strong>From home library:</strong> Only patrons from the item's home library may put this book on hold.</li>
694             <li><strong>No holds allowed:</strong> No patron may put this book on hold.</li>
695         </ul>
696         <p><strong>Note: </strong>If the system preference 'AllowHoldPolicyOverride' is enabled, these policies can be overridden by your circulation staff.</br />
697             <strong>Important: </strong>The policies are applied based on the ReservesControlBranch system preference which is set to <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=ReservesControlBranch">[% Koha.Preference('ReservesControlBranch') | html %]</a>.
698         </p>
699
700         <form method="post" action="/cgi-bin/koha/admin/smart-rules.pl">
701             <input type="hidden" name="op" value="add-branch-item" />
702             <input type="hidden" name="branch" value="[% current_branch | html %]"/>
703             <table>
704                 <tr>
705                     <th>Item type</th>
706                     <th>Hold policy</th>
707                     <th>Hold pickup library match</th>
708                     <th>Return policy</th>
709                     <th>&nbsp;</th>
710                 </tr>
711                 [% FOREACH branch_item_rule_loo IN branch_item_rule_loop %]
712                     [% UNLESS ( loop.odd ) %]
713                     <tr class="highlight">
714                     [% ELSE %]
715                     <tr>
716                     [% END %]
717                         <td>[% IF ( branch_item_rule_loo.default_translated_description ) %]
718                                 <em>Default</em>
719                             [% ELSE %]
720                                 [% branch_item_rule_loo.translated_description | html %]
721                             [% END %]
722                         </td>
723                         <td>[% IF ( branch_item_rule_loo.holdallowed_any ) %]
724                                 <span>From any library</span>
725                             [% ELSIF ( branch_item_rule_loo.holdallowed_same ) %]
726                                 <span>From home library</span>
727                             [% ELSE %]
728                                 <span>No holds allowed</span>
729                             [% END %]
730                         </td>
731                         <td>[% IF ( branch_item_rule_loo.hold_fulfillment_policy == 'any' ) %]
732                                 <span>any library</span>
733                             [% ELSIF ( branch_item_rule_loo.hold_fulfillment_policy == 'homebranch' ) %]
734                                 <span>item's home library</span>
735                             [% ELSIF ( branch_item_rule_loo.hold_fulfillment_policy == 'holdingbranch' ) %]
736                                 <span>item's holding library</span>
737                             [% END %]
738                         </td>
739                         <td>[% IF ( branch_item_rule_loo.returnbranch == 'homebranch' ) %]
740                                 <span>Item returns home</span>
741                             [% ELSIF ( branch_item_rule_loo.returnbranch == 'holdingbranch' ) %]
742                                 <span>Item returns to issuing branch</span>
743                             [% ELSIF ( branch_item_rule_loo.returnbranch == 'noreturn' ) %]
744                                 <span>Item floats</span>
745                             [% ELSE %]
746                                 <span>Error - unknown option</span>
747                             [% END %]
748                         </td>
749                         <td class="actions">
750                             <a class="btn btn-default btn-xs delete" href="/cgi-bin/koha/admin/smart-rules.pl?op=delete-branch-item&amp;itemtype=[% branch_item_rule_loo.itemtype | html %]&amp;branch=[% current_branch | html %]"><i class="fa fa-trash"></i> Delete</a>
751                         </td>
752                     </tr>
753                 [% END %]
754                 <tr>
755                     <td>
756                         <select name="itemtype">
757                         [% FOREACH itemtypeloo IN itemtypeloop %]
758                             <option value="[% itemtypeloo.itemtype | html %]">[% itemtypeloo.translated_description | html %]</option>
759                         [% END %]
760                         </select>
761                     </td>
762                     <td>
763                         <select name="holdallowed">
764                             <option value="2">From any library</option>
765                             <option value="1">From home library</option>
766                             <option value="0">No holds allowed</option>
767                         </select>
768                     </td>
769                     <td>
770                         <select name="hold_fulfillment_policy">
771                             <option value="any">
772                                 any library
773                             </option>
774
775                             <option value="homebranch">
776                                 item's home library
777                             </option>
778
779                             <option value="holdingbranch">
780                                 item's holding library
781                             </option>
782                         </select>
783                     </td>
784                     <td>
785                         <select name="returnbranch">
786                             <option value="homebranch">Item returns home</option>
787                             <option value="holdingbranch">Item returns to issuing library</option>
788                             <option value="noreturn">Item floats</option>
789                         </select>
790                     </td>
791                     <td class="actions"><button type="submit" class="btn btn-default btn-xs"><i class="fa fa-plus"></i> Add</button></td>
792                 </tr>
793             </table>
794         </form>
795     </div>
796             </main>
797         </div> <!-- /.col-sm-10.col-sm-push-2 -->
798
799         <div class="col-sm-2 col-sm-pull-10">
800             <aside>
801                 [% INCLUDE 'admin-menu.inc' %]
802             </aside>
803         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
804      </div> <!-- /.row -->
805
806 [% MACRO jsinclude BLOCK %]
807     [% Asset.js("js/admin-menu.js") | $raw %]
808     [% INCLUDE 'calendar.inc' %]
809     <script>
810
811         function clear_edit(){
812             var cancel = confirm(_("Are you sure you want to cancel your changes?"));
813             if ( !cancel ) return;
814             $('#default-circulation-rules td').removeClass('highlighted-row');
815             var edit_row = $("#edit_row");
816             $(edit_row).find("input").each(function(){
817                 var type = $(this).attr("type");
818                 if (type != "button" && type != "submit" ) {
819                     $(this).val("");
820                     $(this).prop('disabled', false);
821                 }
822                 if ( type == "checkbox" ) {
823                     $(this).prop('checked', false);
824                 }
825             });
826             $(edit_row).find("select").prop('disabled', false);
827             $(edit_row).find("select option:first").attr("selected", "selected");
828             $(edit_row).find("td:last input[name='clear']").remove();
829         }
830
831         var MSG_CONFIRM_DELETE = _("Are you sure you want to delete this rule? This cannot be undone.");
832
833         $(document).ready(function() {
834             $('[data-toggle="popover"]').popover();
835
836             $(".delete").on("click",function(){
837                 return confirmDelete(MSG_CONFIRM_DELETE);
838             });
839
840             $("#clone_rules").on("click",function(){
841                 var library_dropdown = document.getElementById("branch");
842                 var selected_library = library_dropdown.options[library_dropdown.selectedIndex].value;
843                 var selected_library_text = $("#branch option:selected").text();
844                 var to_library = $("#tobranch option:selected").text();
845                 var MSG_CONFIRM_CLONE;
846                 if (selected_library === "*") {
847                     MSG_CONFIRM_CLONE = _("Are you sure you want to clone this standard rule to %s library? This will override the existing rules in this library.").format(to_library);
848                     return confirmClone(MSG_CONFIRM_CLONE);
849                 } else {
850                     MSG_CONFIRM_CLONE = _("Are you sure you want to clone this circulation and fine rule from %s to %s library? This will override the existing rules in this library.").format(selected_library_text, to_library);
851                     return confirmClone(MSG_CONFIRM_CLONE);
852                 }
853             });
854
855             $('#selectlibrary').find("input:submit").hide();
856             $('#branch').change(function() {
857                     $('#selectlibrary').submit();
858             });
859             $(".editrule").click(function(){
860                 if ( $("#edit_row").find("input[type='text']").filter(function(){return this.value.length > 0 }).length > 0 ) {
861                     var edit = confirm(_("Are you sure you want to edit another rule?"));
862                     if (!edit) return false;
863                 }
864                 $('#default-circulation-rules td').removeClass('highlighted-row');
865                 $(this).parent().parent().find("td").each(function (i) {
866                     $(this).addClass('highlighted-row');
867                     itm = $(this).text();
868                     itm = itm.replace(/^\s*|\s*$/g,'');
869                     var current_column = $("#edit_row td:eq("+i+")");
870                     if ( i == 3 ) {
871                         // specific processing for the Note column
872                         var note = $(this).find("a[name='viewnote']").data("content");
873                         $(current_column).find("input[type='text']").val(note);
874                     } else if ( i == 8 ) {
875                         // specific processing for the Hard due date column
876                         var select_value = $(this).find("input[type='hidden'][name='hardduedatecomparebackup']").val();
877                         var input_value = '';
878                         if (typeof select_value === 'undefined'){
879                             select_value = '-1';
880                         }else {
881                             input_value = itm.split(' ')[1];
882                         }
883                         $(current_column).find("input[type='text']").val(input_value);
884                         $(current_column).find("select").val(select_value);
885                     } else if ( i == 14 ) {
886                         // specific processing for cap_fine_to_replacement_price
887                         var cap_fine_to_replacement_price = $(this).find("input[type='checkbox']");
888                         $('#cap_fine_to_replacement_price').prop('checked', cap_fine_to_replacement_price.is(':checked') );
889                         $('#overduefinescap').prop('disabled', cap_fine_to_replacement_price.is(':checked') );
890                     } else {
891                         $(current_column).find("input[type='text']").val(itm);
892                         // select the corresponding option
893                         $(current_column).find("select option").each(function(){
894                             opt = $(this).text().toLowerCase();
895                             opt = opt.replace(/^\s*|\s*$/g,'');
896                             if ( opt == itm.toLowerCase() ) {
897                                 $(this).attr('selected', 'selected');
898                             }
899                         });
900                         if ( i == 0 || i == 1 ) {
901                             // Disable the 2 first columns, we cannot update them.
902                             var val = $(current_column).find("select option:selected").val();
903                             var name = "categorycode";
904                             if ( i == 1 ) {
905                                 name="itemtype";
906                             }
907                             // Remove potential previous input added
908                             $(current_column).find("input").remove();
909                             $(current_column).append("<input type='hidden' name='"+name+"' value='"+val+"' />");
910                         } else if ( i == 4 || i == 5 || i == 25 ) {
911                             // If the value is not an integer for
912                             //     - "Current checkouts allowed"
913                             //     - "Current on-site checkouts allowed"
914                             //     - "Holds allowed (daily)"
915                             // The value is "Unlimited" (or an equivalent translated string)
916                             // an it should be set to an empty string
917                             if( !((parseFloat(itm) == parseInt(itm)) && !isNaN(itm)) ) {
918                                 $(current_column).find("input[type='text']").val("");
919                             }
920                         }
921                     }
922                 });
923                 $("#default-circulation-rules tr:last td:eq(0) select").prop('disabled', true);
924                 $("#default-circulation-rules tr:last td:eq(1) select").prop('disabled', true);
925                 return false;
926             });
927             $(".clear_edit").on("click",function(e){
928                 e.preventDefault();
929                 clear_edit();
930             });
931         });
932     </script>
933 [% END %]
934 [% INCLUDE 'intranet-bottom.inc' %]