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