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