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