Bug 18930: Move lost item refund rules to circulation_rules table
[koha-equinox.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / smart-rules.tt
index 98abee2..17ee8ce 100644 (file)
+[% USE raw %]
+[% USE Asset %]
+[% USE Koha %]
+[% USE Branches %]
+[% USE Categories %]
+[% USE CirculationRules %]
+[% SET footerjs = 1 %]
+
+[% SET branchcode = humanbranch %]
+
+[% SET categorycodes = ['*'] %]
+[% FOREACH pc IN patron_categories %]
+    [% categorycodes.push( pc.id ) %]
+[% END %]
+
 [% INCLUDE 'doc-head-open.inc' %]
 <title>Koha &rsaquo; Administration &rsaquo; Circulation and fine rules</title>
 [% INCLUDE 'doc-head-close.inc' %]
-[% INCLUDE 'calendar.inc' %]
-<script type="text/javascript">
-//<![CDATA[
-
-function clear_edit(){
-    var cancel = confirm(_("Are you sure you want to cancel your changes?"));
-    if ( !cancel ) return;
-    $('#default-circulation-rules td').removeClass('highlighted-row');
-    var edit_row = $("#edit_row");
-    $(edit_row).find("input").each(function(){
-        var type = $(this).attr("type");
-        if (type != "button" && type != "submit" ) {
-            $(this).val("");
-            $(this).removeAttr("disabled");
-        }
-    });
-    $(edit_row).find("select").removeAttr("disabled");
-    $(edit_row).find("select option:first").attr("selected", "selected");
-    $(edit_row).find("td:last input[name='clear']").remove();
-}
-
-$(document).ready(function() {
-        $('#selectlibrary').find("input:submit").hide();
-        $('#branch').change(function() {
-                $('#selectlibrary').submit();
-        });
-        $(".editrule").click(function(){
-            if ( $(edit_row).find("input[type='text'][value!='']").length > 0 ) {
-                var edit = confirm(_("Are you sure you want to edit another rule?"));
-                if (!edit) return false;
-            }
-            $('#default-circulation-rules td').removeClass('highlighted-row');
-            $(this).parent().parent().find("td").each(function (i) {
-                $(this).addClass('highlighted-row');
-                itm = $(this).text();
-                itm = itm.replace(/^\s*|\s*$/g,'');
-                var current_column = $("#edit_row td:eq("+i+")");
-                if ( i != 6 ) {
-                    $(current_column).find("input[type='text']").val(itm);
-                    // select the corresponding option
-                    $(current_column).find("select option").each(function(){
-                        opt = $(this).text().toLowerCase();
-                        opt = opt.replace(/^\s*|\s*$/g,'');
-                        if ( opt == itm.toLowerCase() ) {
-                            $(this).attr('selected', 'selected');
-                        }
-                    });
-                    if ( i == 0 || i == 1 ) {
-                        // Disable the 2 first columns, we cannot update them.
-                        var val = $(current_column).find("select option:selected").val();
-                        var name = "categorycode";
-                        if ( i == 1 ) {
-                            name="itemtype";
-                        }
-                        // Remove potential previous input added
-                        $(current_column).find("input").remove();
-                        $(current_column).append("<input type='hidden' name='"+name+"' value='"+val+"' />");
-                    } else if ( i == 2 || i == 3 ) {
-                        // If the value is not an integer for "Current checkouts allowed" or "Current on-site checkouts allowed"
-                        // The value is "Unlimited" (or an equivalent translated string)
-                        // an it should be set to an empty string
-                        if( !((parseFloat(itm) == parseInt(itm)) && !isNaN(itm)) ) {
-                            $(current_column).find("input[type='text']").val("");
-                        }
-                    }
-                } else {
-                    // specific processing for the Hard due date column
-                    var select_value = $(this).find("input[type='hidden'][name='hardduedatecomparebackup']").val();
-                    var input_value = '';
-                    if (typeof select_value === 'undefined'){
-                        select_value = '-1';
-                    }else {
-                        input_value = itm.split(' ')[1];
-                    }
-                    $(current_column).find("input[type='text']").val(input_value);
-                    $(current_column).find("select").val(select_value);
-                }
-            });
-            $("#default-circulation-rules tr:last td:eq(0) select").attr('disabled', 'disabled');
-            $("#default-circulation-rules tr:last td:eq(1) select").attr('disabled', 'disabled');
-            return false;
-        });
-});
-//]]>
-</script>
 </head>
+
 <body id="admin_smart-rules" class="admin">
 [% INCLUDE 'header.inc' %]
-[% INCLUDE 'cat-search.inc' %]
+[% INCLUDE 'prefs-admin-search.inc' %]
 
 <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>
 
-<div id="doc3" class="yui-t1">
+<div class="main container-fluid">
+    <div class="row">
+        <div class="col-sm-10 col-sm-push-2">
+            <main>
 
-<div id="bd">
-    <div id="yui-main">
-    <div class="yui-b">
     <h1 class="parameters">
-        [% IF ( humanbranch ) %]
-            Defining circulation and fine rules for "[% humanbranch %]"
+        [% IF humanbranch %]
+            Defining circulation and fine rules for "[% Branches.GetName( humanbranch ) | html %]"
         [% ELSE %]
             Defining circulation and fine rules for all libraries
         [% END %]
@@ -108,39 +39,48 @@ $(document).ready(function() {
     <div class="help">
         <p>The rules are applied from most specific to less specific, using the first found in this order:</p>
         <ul>
-            <li>same library, same patron type, same item type</li>
-            <li>same library, same patron type, all item types</li>
-            <li>same library, all patron types, same item type</li>
-            <li>same library, all patron types, all item types</li>
-            <li>default (all libraries), same patron type, same item type</li>
-            <li>default (all libraries), same patron type, all item types</li>
-            <li>default (all libraries), all patron types, same item type</li>
-            <li>default (all libraries), all patron types, all item types</li>
+            <li>same library, same patron category, same item type</li>
+            <li>same library, same patron category, all item types</li>
+            <li>same library, all patron categories, same item type</li>
+            <li>same library, all patron categories, all item types</li>
+            <li>default (all libraries), same patron category, same item type</li>
+            <li>default (all libraries), same patron category, all item types</li>
+            <li>default (all libraries), all patron categories, same item type</li>
+            <li>default (all libraries), all patron categories, all item types</li>
         </ul>
-        <p>To modify a rule, create a new one with the same patron type and item type.</p>
+        <p>To modify a rule, create a new one with the same patron category and item type.</p>
     </div>
     <div>
-        <form method="get" action="/cgi-bin/koha/admin/smart-rules.pl" id="selectlibrary">
-        Select a library :
-            <select name="branch" id="branch" style="width:20em;">
-                <option value="*">All libraries</option>
-            [% FOREACH branchloo IN branchloop %]
-                               [% IF ( branchloo.selected ) %]<option value="[% branchloo.value %]" selected="selected">[% branchloo.branchname %]</option>[% ELSE %]<option value="[% branchloo.value %]">[% branchloo.branchname %]</option>[% END %]
+        [% UNLESS restricted_to_own_library %]
+            <form method="get" action="/cgi-bin/koha/admin/smart-rules.pl" id="selectlibrary">
+            Select a library :
+                <select name="branch" id="branch" style="width:20em;">
+                    <option value="*">Standard rules for all libraries</option>
+                    [% PROCESS options_for_libraries libraries => Branches.all( selected => current_branch, unfiltered => 1 ) %]
+                </select>
+            </form>
+            [% IF ( definedbranch ) %]
+                <form action="/cgi-bin/koha/admin/clone-rules.pl" method="post">
+                    <label for="tobranch"><strong>Clone these rules to:</strong></label>
+                    <input type="hidden" name="frombranch" value="[% current_branch | html %]" />
+                    <select name="tobranch" id="tobranch">
+                        [% PROCESS options_for_libraries libraries => Branches.all( unfiltered => 1 ) %]
+                    </select>
+                    <input type="submit" id="clone_rules" value="Clone" />
+                </form>
             [% END %]
-            </select>
-        </form>
-[% IF ( definedbranch ) %]<form action="/cgi-bin/koha/admin/clone-rules.pl" method="post"><label 
-for="tobranch"><strong>Clone these rules to:</strong></label> <input type="hidden" name="frombranch" value="[% current_branch %]" />
-            <select name="tobranch" id="tobranch">[% FOREACH branchloo IN branchloop %]<option value="[% branchloo.value %]">[% branchloo.branchname %]</option>[% END %]</select> <input type="submit" value="Clone" /></form>[% END %]
+        [% END %]
 
         <form method="post" action="/cgi-bin/koha/admin/smart-rules.pl">
             <input type="hidden" name="op" value="add" />
-            <input type="hidden" name="branch" value="[% current_branch %]"/>
+            <input type="hidden" name="branch" value="[% current_branch | html %]"/>
             <table id="default-circulation-rules">
             <thead>
             <tr>
                 <th>Patron category</th>
                 <th>Item type</th>
+                <th>Actions</th>
+                <th>Note</th>
                 <th>Current checkouts allowed</th>
                 <th>Current on-site checkouts allowed</th>
                 <th>Loan period</th>
@@ -148,100 +88,174 @@ for="tobranch"><strong>Clone these rules to:</strong></label> <input type="hidde
                 <th>Hard due date</th>
                 <th>Fine amount</th>
                 <th>Fine charging interval</th>
+                <th>When to charge</th>
                 <th>Fine grace period</th>
                 <th>Overdue fines cap (amount)</th>
+                <th>Cap fine at replacement price</th>
                 <th>Suspension in days (day)</th>
                 <th>Max. suspension duration (day)</th>
+                <th>Suspension charging interval</th>
                 <th>Renewals allowed (count)</th>
                 <th>Renewal period</th>
                 <th>No renewal before</th>
                 <th>Automatic renewal</th>
-                <th>Holds allowed (count)</th>
+                <th>No automatic renewal after</th>
+                <th>No automatic renewal after (hard limit)</th>
+                <th>Holds allowed (total)</th>
+                <th>Holds allowed (daily)</th>
+                <th>Holds per record (count)</th>
                 <th>On shelf holds allowed</th>
                 <th>Item level holds</th>
+                <th>Article requests</th>
                 <th>Rental discount (%)</th>
-                <th colspan="2">&nbsp;</th>
+                <th>Actions</th>
             </tr>
             </thead>
             <tbody>
                                [% FOREACH rule IN rules %]
-                                       <tr id="row_[% loop.count %]">
+                                       <tr id="row_[% loop.count | html %]">
                                                        <td>[% IF ( rule.default_humancategorycode ) %]
                                                                        <em>All</em>
                                                                [% ELSE %]
-                                                                       [% rule.humancategorycode %]
+                                                                       [% rule.humancategorycode | html %]
                                                                [% END %]
                                                        </td>
-                                                       <td>[% IF ( rule.default_humanitemtype ) %]
+                            <td>[% IF rule.default_translated_description %]
                                                                        <em>All</em>
                                                                [% ELSE %]
-                                                                       [% rule.humanitemtype %]
-                                                               [% END %]
-                                                       </td>
-                                                       <td>[% IF ( rule.unlimited_maxissueqty ) %]
-                                                                       Unlimited
-                                                               [% ELSE %]
-                                                                       [% rule.maxissueqty %]
+                                                                       [% rule.translated_description | html %]
                                                                [% END %]
                                                        </td>
-                            <td>[% IF rule.unlimited_maxonsiteissueqty %]
-                                    Unlimited
+                                                        <td class="actions">
+                                                          <a href="#" class="editrule btn btn-default btn-xs"><i class="fa fa-pencil"></i> Edit</a>
+                                                          <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>
+                                                        </td>
+
+                                                        <td>
+                                                            [% IF rule.note %]
+                                                                <a name="viewnote" data-toggle="popover" title="Note" data-content="[% rule.note | html %]" data-placement="top" data-trigger="hover">View note</a>
+                                                            [% ELSE %]&nbsp;[% END %]
+                                                        </td>
+                            <td>
+                                [% SET rule_value = CirculationRules.Get( rule.branchcode, rule.categorycode, rule.itemtype, 'maxissueqty' ) %]
+                                [% IF rule_value || rule_value == "0"  %]
+                                    [% rule_value | html %]
                                 [% ELSE %]
-                                    [% rule.maxonsiteissueqty %]
+                                    <span>Unlimited</span>
                                 [% END %]
                             </td>
-                                                       <td>[% rule.issuelength %]</td>
-                                                       <td>
-                                                           [% rule.lengthunit %]
-                                                       </td>
+                            <td>
+                                [% SET rule_value = CirculationRules.Get( rule.branchcode, rule.categorycode, rule.itemtype, 'maxonsiteissueqty' ) %]
+                                [% IF rule_value || rule_value == "0" %]
+                                    [% rule_value | html %]
+                                [% ELSE %]
+                                    <span>Unlimited</span>
+                                [% END %]
+                            </td>
+                            <td>[% rule.issuelength | html %]</td>
+                            <td>
+                                [% rule.lengthunit | html %]
+                            </td>
                             <td>
                               [% IF ( rule.hardduedate ) %]
                                 [% IF ( rule.hardduedatebefore ) %]
-                                  before [% rule.hardduedate %]
+                                  before [% rule.hardduedate | html %]
                                   <input type="hidden" name="hardduedatecomparebackup" value="-1" />
                                 [% ELSIF ( rule.hardduedateexact ) %]
-                                  on [% rule.hardduedate %]
+                                  on [% rule.hardduedate | html %]
                                   <input type="hidden" name="hardduedatecomparebackup" value="0" />
                                 [% ELSIF ( rule.hardduedateafter ) %]
-                                  after [% rule.hardduedate %]
+                                  after [% rule.hardduedate | html %]
                                   <input type="hidden" name="hardduedatecomparebackup" value="1" />
                                 [% END %]
                               [% ELSE %]
-                                None defined
+                                <span>None defined</span>
                               [% END %]
                             </td>
-                                                       <td>[% rule.fine %]</td>
-                                                       <td>[% rule.chargeperiod %]</td>
-                                                       <td>[% rule.firstremind %]</td>
+                                                       <td>[% rule.fine | html %]</td>
+                                                       <td>[% rule.chargeperiod | html %]</td>
+                            <td>
+                                [% IF rule.chargeperiod_charge_at %]
+                                    <span>Start of interval</span>
+                                [% ELSE %]
+                                    <span>End of interval</span>
+                                [% END %]
+                            </td>
+                                                       <td>[% rule.firstremind | html %]</td>
                             <td>[% rule.overduefinescap FILTER format("%.2f") %]</td>
-                                                       <td>[% rule.finedays %]</td>
-                            <td>[% rule.maxsuspensiondays %]</td>
-                                                       <td>[% rule.renewalsallowed %]</td>
-                            <td>[% rule.renewalperiod %]</td>
-                            <td>[% rule.norenewalbefore %]</td>
+                            <td>
+                                [% IF rule.cap_fine_to_replacement_price %]
+                                    <input type="checkbox" checked="checked" disabled="disabled" />
+                                [% ELSE %]
+                                    <input type="checkbox" disabled="disabled" />
+                                [% END %]
+                            </td>
+                                                       <td>[% rule.finedays | html %]</td>
+                            <td>[% rule.maxsuspensiondays | html %]</td>
+                            <td>[% rule.suspension_chargeperiod | html %]</td>
+                                                       <td>[% rule.renewalsallowed | html %]</td>
+                            <td>[% rule.renewalperiod | html %]</td>
+                            <td>[% rule.norenewalbefore | html %]</td>
                             <td>
                                 [% IF ( rule.auto_renew ) %]
-                                Yes
+                                    <span>Yes</span>
                                 [% ELSE %]
-                                No
+                                    <span>No</span>
                                 [% END %]
                             </td>
-                                                       <td>[% rule.reservesallowed %]</td>
-                                                        <td>[% IF rule.onshelfholds %]Yes[% ELSE %]No[% END %]</td>
-                                                        <td>[% IF rule.opacitemholds == 'F'%]Force[% ELSIF rule.opacitemholds == 'Y'%]Allow[% ELSE %]Don't allow[% END %]</td>
-                                                       <td>[% rule.rentaldiscount %]</td>
-                            <td><a href="#" class="editrule">Edit</a></td>
-                                                       <td>
-                                                               <a class="button" href="/cgi-bin/koha/admin/smart-rules.pl?op=delete&amp;itemtype=[% rule.itemtype %]&amp;categorycode=[% rule.categorycode %]&amp;branch=[% rule.current_branch %]">Delete</a>
-                                                       </td>
+                            <td>[% rule.no_auto_renewal_after | html %]</td>
+                            <td>[% rule.no_auto_renewal_after_hard_limit | html %]</td>
+                                                       <td>[% rule.reservesallowed | html %]</td>
+                            <td>[% IF rule.unlimited_holds_per_day %]
+                                    <span>Unlimited</span>
+                                [% ELSE %]
+                                    [% rule.holds_per_day | html %]
+                                [% END %]
+                            </td>
+                            <td>[% rule.holds_per_record | html %]</td>
+                                                        <td>
+                                                            [% IF rule.onshelfholds == 1 %]
+                                                                <span>Yes</span>
+                                                            [% ELSIF rule.onshelfholds == 2 %]
+                                                                <span>If all unavailable</span>
+                                                            [% ELSE %]
+                                                                <span>If any unavailable</span>
+                                                            [% END %]
+                                                        </td>
+                                                        <td>
+                                                            [% IF rule.opacitemholds == 'F'%]
+                                                                <span>Force</span>
+                                                            [% ELSIF rule.opacitemholds == 'Y'%]
+                                                                <span>Allow</span>
+                                                            [% ELSE %]
+                                                                <span>Don't allow</span>
+                                                            [% END %]
+                                                        </td>
+                                                        <td>
+                                                            [% IF rule.article_requests == 'no' %]
+                                                                <span>No</span>
+                                                            [% ELSIF rule.article_requests == 'yes' %]
+                                                                <span>Yes</span>
+                                                            [% ELSIF rule.article_requests == 'bib_only' %]
+                                                                <span>Record only</span>
+                                                            [% ELSIF rule.article_requests == 'item_only' %]
+                                                                <span>Item only</span>
+                                                            [% END %]
+                                                        </td>
+                                                        <td>[% rule.rentaldiscount | html %]</td>
+                                                        <td class="actions">
+                                                          <a href="#" class="editrule btn btn-default btn-xs"><i class="fa fa-pencil"></i> Edit</a>
+                                                          <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>
+                                                        </td>
+
                        </tr>
                [% END %]
                 <tr id="edit_row">
                     <td>
                         <select name="categorycode" id="categorycode">
                             <option value="*">All</option>
-                        [% FOREACH categoryloo IN categoryloop %]
-                            <option value="[% categoryloo.categorycode %]">[% categoryloo.description %]</option>
+                        [% FOREACH patron_category IN patron_categories%]
+                            <option value="[% patron_category.categorycode | html %]">[% patron_category.description | html %]</option>
                         [% END %]
                         </select>
                     </td>
@@ -249,10 +263,16 @@ for="tobranch"><strong>Clone these rules to:</strong></label> <input type="hidde
                         <select name="itemtype" id="matrixitemtype" style="width:13em;">
                             <option value="*">All</option>
                         [% FOREACH itemtypeloo IN itemtypeloop %]
-                            <option value="[% itemtypeloo.itemtype %]">[% itemtypeloo.description %]</option>
+                            <option value="[% itemtypeloo.itemtype | html %]">[% itemtypeloo.translated_description | html %]</option>
                         [% END %]
                         </select>
                     </td>
+                    <td class="actions">
+                        <input type="hidden" name="branch" value="[% current_branch | html %]"/>
+                        <button type="submit" class="btn btn-default btn-xs"><i class="fa fa-save"></i> Save</button>
+                        <button name="cancel" class="clear_edit btn btn-default btn-xs"><i class="fa fa-undo"></i> Clear</button>
+                    </td>
+                    <td><input type="text" name="note" id="note" size="15" value="" maxlength="100"></td>
                     <td><input type="text" name="maxissueqty" id="maxissueqty" size="3" /></td>
                     <td><input type="text" name="maxonsiteissueqty" id="maxonsiteissueqty" size="3" /></td>
                     <td><input type="text" name="issuelength" id="issuelength" size="3" /> </td>
@@ -268,15 +288,23 @@ for="tobranch"><strong>Clone these rules to:</strong></label> <input type="hidde
                            <option value="0">Exactly on</option>
                            <option value="1">After</option>
                         </select>
-                        <input type="text" size="10" id="hardduedate" name="hardduedate" value="[% hardduedate %]" class="datepicker" />
+                        <input type="text" size="10" id="hardduedate" name="hardduedate" value="[% hardduedate | html %]" class="datepicker" />
                         <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
                     </td>
                     <td><input type="text" name="fine" id="fine" size="4" /></td>
                     <td><input type="text" name="chargeperiod" id="chargeperiod" size="2" /></td>
+                    <td>
+                        <select name="chargeperiod_charge_at" id="chargeperiod_charge_at">
+                           <option value="0">End of interval</option>
+                           <option value="1">Start of interval</option>
+                        </select>
+                    </td>
                     <td><input type="text" name="firstremind" id="firstremind" size="2" /> </td>
                     <td><input type="text" name="overduefinescap" id="overduefinescap" size="6" /> </td>
+                    <td><input type="checkbox" name="cap_fine_to_replacement_price" id="cap_fine_to_replacement_price" /></td>
                     <td><input type="text" name="finedays" id="fined" size="3" /> </td>
                     <td><input type="text" name="maxsuspensiondays" id="maxsuspensiondays" size="3" /> </td>
+                    <td><input type="text" name="suspension_chargeperiod" id="suspension_chargeperiod" size="3" /> </td>
                     <td><input type="text" name="renewalsallowed" id="renewalsallowed" size="2" /></td>
                     <td><input type="text" name="renewalperiod" id="renewalperiod" size="3" /></td>
                     <td><input type="text" name="norenewalbefore" id="norenewalbefore" size="3" /></td>
@@ -286,11 +314,19 @@ for="tobranch"><strong>Clone these rules to:</strong></label> <input type="hidde
                             <option value="yes">Yes</option>
                         </select>
                     </td>
-                    <td><input type="text" name="reservesallowed" id="reservesallowed" size="2" /></td>
+                    <td><input type="text" name="no_auto_renewal_after" id="no_auto_renewal_after" size="3" /></td>
+                    <td>
+                        <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"/>
+                        <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
+                    </td>
+                    <td><input type="text" name="reservesallowed"  id="reservesallowed"  size="2" /></td>
+                    <td><input type="text" name="holds_per_day"    id="holds_per_day"    size="2" /></td>
+                    <td><input type="text" name="holds_per_record" id="holds_per_record" size="2" /></td>
                     <td>
                         <select name="onshelfholds" id="onshelfholds">
-                            <option value="0" selected>No</option>
                             <option value="1">Yes</option>
+                            <option value="0">If any unavailable</option>
+                            <option value="2">If all unavailable</option>
                         </select>
                     </td>
                     <td>
@@ -300,17 +336,27 @@ for="tobranch"><strong>Clone these rules to:</strong></label> <input type="hidde
                             <option value="F">Force</option>
                         </select>
                     </td>
+                    <td>
+                        <select id="article_requests" name="article_requests">
+                            <option value="no">No</option>
+                            <option value="yes">Yes</option>
+                            <option value="bib_only">Record only</option>
+                            <option value="item_only">Item only</option>
+                        </select>
+                    </td>
                     <td><input type="text" name="rentaldiscount" id="rentaldiscount" size="2" /></td>
-                    <td colspan="2">
-                        <input type="hidden" name="branch" value="[% current_branch %]"/>
-                        <input type="submit" value="Save" class="submit" />
-                        <input type="button" name="cancel" value="Clear" onclick="clear_edit();return false;" />
+                    <td class="actions">
+                        <input type="hidden" name="branch" value="[% current_branch | html %]"/>
+                        <button type="submit" class="btn btn-default btn-xs"><i class="fa fa-save"></i> Save</button>
+                        <button name="cancel" class="clear_edit btn btn-default btn-xs"><i class="fa fa-undo"></i> Clear</button>
                     </td>
                 </tr>
                 <tfoot>
                     <tr>
                       <th>Patron category</th>
                       <th>Item type</th>
+                      <th>&nbsp;</th>
+                      <th>Note</th>
                       <th>Current checkouts allowed</th>
                       <th>Current on-site checkouts allowed</th>
                       <th>Loan period</th>
@@ -318,19 +364,27 @@ for="tobranch"><strong>Clone these rules to:</strong></label> <input type="hidde
                       <th>Hard due date</th>
                       <th>Fine amount</th>
                       <th>Fine charging interval</th>
+                      <th>Charge when?</th>
                       <th>Fine grace period</th>
                       <th>Overdue fines cap (amount)</th>
+                      <th>Cap fine at replacement price</th>
                       <th>Suspension in days (day)</th>
                       <th>Max. suspension duration (day)</th>
+                      <th>Suspension charging interval</th>
                       <th>Renewals allowed (count)</th>
                       <th>Renewal period</th>
                       <th>No renewal before</th>
                       <th>Automatic renewal</th>
-                      <th>Holds allowed (count)</th>
+                      <th>No automatic renewal after</th>
+                      <th>No automatic renewal after (hard limit)</th>
+                      <th>Holds allowed (total)</th>
+                      <th>Holds allowed (daily)</th>
+                      <th>Holds per record (count)</th>
                       <th>On shelf holds allowed</th>
                       <th>Item level holds</th>
+                      <th>Article requests</th>
                       <th>Rental discount (%)</th>
-                      <th colspan="2">&nbsp;</th>
+                      <th>&nbsp;</th>
                     </tr>
                   </tfoot>
                 </tbody>
@@ -338,67 +392,130 @@ for="tobranch"><strong>Clone these rules to:</strong></label> <input type="hidde
         </form>
     </div>
     <div id="defaults-for-this-library" class="container">
-    <h3>Default checkout, hold and return policy[% IF ( humanbranch ) %] for [% humanbranch %][% END %]</h3>
+    <h3>Default checkout, hold and return policy[% IF humanbranch %] for [% Branches.GetName( humanbranch ) | html %][% END %]</h3>
         <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>
         <form method="post" action="/cgi-bin/koha/admin/smart-rules.pl">
             <input type="hidden" name="op" value="set-branch-defaults" />
-            <input type="hidden" name="branch" value="[% current_branch %]"/>
+            <input type="hidden" name="branch" value="[% current_branch | html %]"/>
             <table>
                 <tr>
                     <th>&nbsp;</th>
                     <th>Total current checkouts allowed</th>
                     <th>Total current on-site checkouts allowed</th>
+                    <th>Maximum total holds allowed (count)</th>
                     <th>Hold policy</th>
+                    <th>Hold pickup library match</th>
                     <th>Return policy</th>
-                    <th>&nbsp;</th>
-                    <th>&nbsp;</th>
+                    <th>Actions</th>
                 </tr>
                 <tr>
-                    <td><em>Defaults[% UNLESS ( default_rules ) %] (not set)[% END %]</em></td>
-                    <td><input type="text" name="maxissueqty" size="3" value="[% default_maxissueqty %]"/></td>
-                    <td><input type="text" name="maxonsiteissueqty" size="3" value="[% default_maxonsiteissueqty %]"/></td>
+                    <td><em>Defaults</em></td>
+                    <td>
+                        [% SET patron_maxissueqty = CirculationRules.Search( current_branch, undef, undef, 'patron_maxissueqty' ) %]
+                        <input type="text" name="patron_maxissueqty" size="3" value="[% patron_maxissueqty | html %]"/>
+                    </td>
+                    <td>
+                        [% SET patron_maxonsiteissueqty = CirculationRules.Search( current_branch, undef, undef, 'patron_maxonsiteissueqty' ) %]
+                        <input type="text" name="patron_maxonsiteissueqty" size="3" value="[% patron_maxonsiteissueqty | html %]"/>
+                    </td>
+                    <td>
+                        [% SET rule_value = CirculationRules.Search( current_branch, undef , undef, 'max_holds' ) %]
+                        <input name="max_holds" size="3" value="[% rule_value | html %]" />
+                    </td>
                     <td>
                         <select name="holdallowed">
-                            [% IF ( default_holdallowed_any ) %]
-                            <option value="2" selected="selected">
+                            [% SET holdallowed = CirculationRules.Search( current_branch, undef, undef, 'holdallowed' ) %]
+                            <option value="">
+                                Not set
+                            </option>
+
+                            [% IF holdallowed == 2 %]
+                                <option value="2" selected="selected">
                             [% ELSE %]
-                            <option value="2">
+                                <option value="2">
                             [% END %]
                                 From any library
                             </option>
-                            [% IF ( default_holdallowed_same ) %]
-                            <option value="1" selected="selected">
+
+                            [% IF holdallowed == 1 %]
+                                <option value="1" selected="selected">
                             [% ELSE %]
-                            <option value="1">
+                                <option value="1">
                             [% END %]
                                 From home library
                             </option>
-                            [% IF ( default_holdallowed_none ) %]
-                            <option value="0" selected="selected">
+
+                            [% IF holdallowed == 0 %]
+                                <option value="0" selected="selected">
                             [% ELSE %]
-                            <option value="0">
+                                <option value="0">
                             [% END %]
                                 No holds allowed
                             </option>
                         </select>
                     </td>
                     <td>
+                        <select name="hold_fulfillment_policy">
+                            [% SET hold_fulfillment_policy = CirculationRules.Search( current_branch, undef, undef, 'hold_fulfillment_policy' ) %]
+
+                            <option value="">
+                                Not set
+                            </option>
+
+                            [% IF hold_fulfillment_policy == 'any' %]
+                                <option value="any" selected="selected">
+                                    any library
+                                </option>
+                            [% ELSE %]
+                                <option value="any">
+                                    any library
+                                </option>
+                            [% END %]
+
+                            [% IF hold_fulfillment_policy == 'homebranch' %]
+                                <option value="homebranch" selected="selected">
+                                    item's home library
+                                </option>
+                            [% ELSE %]
+                                <option value="homebranch">
+                                    item's home library
+                                </option>
+                            [% END %]
+
+                            [% IF hold_fulfillment_policy == 'holdingbranch' %]
+                                <option value="holdingbranch" selected="selected">
+                                    item's holding library
+                                </option>
+                            [% ELSE %]
+                                <option value="holdingbranch">
+                                    item's holding library
+                                </option>
+                            [% END %]
+                        </select>
+                    </td>
+                    <td>
                         <select name="returnbranch">
-                            [% IF ( default_returnbranch == 'homebranch' ) %]
+                            [% SET returnbranch = CirculationRules.Search( current_branch, undef, undef, 'returnbranch' ) %]
+
+                            <option value="">
+                                Not set
+                            </option>
+
+                            [% IF returnbranch == 'homebranch' %]
                             <option value="homebranch" selected="selected">
                             [% ELSE %]
                             <option value="homebranch">
                             [% END %]
                                 Item returns home
                             </option>
-                            [% IF ( default_returnbranch == 'holdingbranch' ) %]
+                            [% IF returnbranch == 'holdingbranch' %]
                             <option value="holdingbranch" selected="selected">
                             [% ELSE %]
                             <option value="holdingbranch">
                             [% END %]
                                 Item returns to issuing library
                             </option>
-                            [% IF ( default_returnbranch == 'noreturn' ) %]
+                            [% IF returnbranch == 'noreturn' %]
                             <option value="noreturn" selected="selected">
                             [% ELSE %]
                             <option value="noreturn">
@@ -407,9 +524,9 @@ for="tobranch"><strong>Clone these rules to:</strong></label> <input type="hidde
                             </option>
                         </select>
                     </td>
-                    <td><input type="submit" value="Save" class="submit" /></td>
-                    <td>
-                        <a class="button" href="/cgi-bin/koha/admin/smart-rules.pl?op=delete-branch-cat&amp;categorycode=*&amp;branch=[% current_branch %]">Unset</a>
+                    <td class="actions">
+                        <button type="submit" class="btn btn-default btn-xs"><i class="fa fa-save"></i> Save</button>
+                        <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>
                     </td>
                 </tr>
             </table>
@@ -417,7 +534,7 @@ for="tobranch"><strong>Clone these rules to:</strong></label> <input type="hidde
     </div>
     [% IF ( show_branch_cat_rule_form ) %]
     <div id="holds-policy-by-patron-category" class="container">
-    <h3>[% IF humanbranch %]Checkout limit by patron category for [% humanbranch %][% ELSE %]Default checkout limit by patron category[% END %]</h3>
+    <h3>[% IF humanbranch %]Checkout, hold policy by patron category for [% Branches.GetName( humanbranch ) | html %][% ELSE %]Default checkout, hold policy by patron category[% END %]</h3>
         <p>For this library, you can specify the maximum number of loans that
             a patron of a given category can make, regardless of the item type.
         </p>
@@ -426,62 +543,156 @@ for="tobranch"><strong>Clone these rules to:</strong></label> <input type="hidde
         </p>
         <form method="post" action="/cgi-bin/koha/admin/smart-rules.pl">
             <input type="hidden" name="op" value="add-branch-cat" />
-            <input type="hidden" name="branch" value="[% current_branch %]"/>
+            <input type="hidden" name="branch" value="[% current_branch | html %]"/>
             <table>
                 <tr>
                     <th>Patron category</th>
                     <th>Total current checkouts allowed</th>
                     <th>Total current on-site checkouts allowed</th>
+                    <th>Total holds allowed</th>
                     <th>&nbsp;</th>
                 </tr>
-                [% FOREACH branch_cat_rule_loo IN branch_cat_rule_loop %]
-                    [% UNLESS ( loop.odd ) %]
-                    <tr class="highlight">
-                    [% ELSE %]
+                [% FOREACH c IN categorycodes %]
+                    [% SET patron_maxissueqty = CirculationRules.Search( branchcode, c, undef, 'patron_maxissueqty' ) %]
+                    [% SET patron_maxonsiteissueqty = CirculationRules.Search( branchcode, c, undef, 'patron_maxonsiteissueqty' ) %]
+                    [% SET max_holds = CirculationRules.Search( branchcode, c, undef, 'max_holds' ) %]
+
+                    [% IF  ( patron_maxissueqty.defined && patron_maxissueqty != '' ) || ( patron_maxonsiteissueqty.defined && patron_maxonsiteissueqty != '' ) || ( max_holds.defined && max_holds != '' ) %]
                     <tr>
-                    [% END %]
-                        <td>[% IF ( branch_cat_rule_loo.default_humancategorycode ) %]
+                        <td>
+                            [% IF c == '*'%]
                                 <em>Default</em>
                             [% ELSE %]
-                                [% branch_cat_rule_loo.humancategorycode %]
+                                [% Categories.GetName(c) | html %]
                             [% END %]
                         </td>
-                        <td>[% IF ( branch_cat_rule_loo.unlimited_maxissueqty ) %]
-                                Unlimited
+                        <td>
+                            [% IF patron_maxissueqty.defined && patron_maxissueqty != '' %]
+                                [% patron_maxissueqty | html %]
                             [% ELSE %]
-                                [% branch_cat_rule_loo.maxissueqty %]
+                                <span>Unlimited</span>
                             [% END %]
                         </td>
-                        <td>[% IF ( branch_cat_rule_loo.unlimited_maxonsiteissueqty ) %]
-                                Unlimited
+                        <td>
+                            [% IF patron_maxonsiteissueqty.defined && patron_maxonsiteissueqty != '' %]
+                                [% patron_maxonsiteissueqty | html %]
                             [% ELSE %]
-                                [% branch_cat_rule_loo.maxonsiteissueqty %]
+                                <span>Unlimited</span>
                             [% END %]
                         </td>
-
                         <td>
-                            <a class="button" href="/cgi-bin/koha/admin/smart-rules.pl?op=delete-branch-cat&amp;categorycode=[% branch_cat_rule_loo.categorycode %]&amp;branch=[% current_branch %]">Delete</a>
+                            [% IF max_holds.defined && max_holds != '' %]
+                                [% max_holds | html %]
+                            [% ELSE %]
+                                <span>Unlimited</span>
+                            [% END %]
+                        </td>
+
+                        <td class="actions">
+                            <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>
                         </td>
                     </tr>
+                    [% END %]
                 [% END %]
                 <tr>
                     <td>
                         <select name="categorycode">
-                        [% FOREACH categoryloo IN categoryloop %]
-                            <option value="[% categoryloo.categorycode %]">[% categoryloo.description %]</option>
+                        [% FOREACH patron_category IN patron_categories%]
+                            <option value="[% patron_category.categorycode | html %]">[% patron_category.description | html %]</option>
                         [% END %]
                         </select>
                     </td>
-                    <td><input name="maxissueqty" size="3" /></td>
-                    <td><input name="maxonsiteissueqty" size="3" /></td>
-                    <td><input type="submit" value="Add" class="submit" /></td>
+                    <td><input name="patron_maxissueqty" size="3" type="text" /></td>
+                    <td><input name="patron_maxonsiteissueqty" size="3" type="text" /></td>
+                    <td><input name="max_holds" size="3" type="text" /></td>
+                    <td class="actions"><button type="submit" class="btn btn-default btn-xs"><i class="fa fa-plus"></i> Add</td>
                 </tr>
             </table>
         </form>
     </div>
     [% END %]
+
+    <div id="refund-lost-item-fee-on-return" class="container">
+  [% IF current_branch == '*' %]
+    <h3>Default lost item fee refund on return policy</h3>
+  [% ELSE %]
+    <h3>Lost item fee refund on return policy for [% Branches.GetName(current_branch) | html %]</h3>
+  [% END %]
+        <p>Specify the default policy for lost item fees on return.
+        </p>
+        <form method="post" action="/cgi-bin/koha/admin/smart-rules.pl">
+            <input type="hidden" name="op" value="mod-refund-lost-item-fee-rule" />
+            <input type="hidden" name="branch" value="[% current_branch | html %]" />
+            <table>
+                <tr>
+                    <th>Refund lost item fee</th>
+                    <th>&nbsp;</th>
+                </tr>
+                <tr>
+                    <td>
+                        <select name="refund">
+                          [#% Default branch %#]
+                          [% IF ( current_branch == '*' ) %]
+                            [% IF ( refundLostItemFeeRule.rule_value ) %]
+                            <option value="1" selected="selected">
+                            [% ELSE %]
+                            <option value="1">
+                            [% END %]
+                                Yes
+                            </option>
+                            [% IF ( not refundLostItemFeeRule.rule_value ) %]
+                            <option value="0" selected="selected">
+                            [% ELSE %]
+                            <option value="0">
+                            [% END %]
+                                No
+                            </option>
+                          [% ELSE %]
+                          [#% Branch-specific %#]
+                            [% IF ( not refundLostItemFeeRule ) %]
+                                <option value="*" selected="selected">
+                            [% ELSE %]
+                                <option value="*">
+                            [% END %]
+                              [% IF defaultRefundRule %]
+                                Use default (Yes)
+                              [% ELSE %]
+                                Use default (No)
+                              [% END %]
+                                </option>
+                            [% IF ( not refundLostItemFeeRule ) %]
+                                <option value="1">Yes</option>
+                                <option value="0">No</option>
+                            [% ELSE %]
+                                [% IF ( refundLostItemFeeRule.rule_value ) %]
+                                <option value="1" selected="selected">
+                                [% ELSE %]
+                                <option value="1">
+                                [% END %]
+                                    Yes
+                                </option>
+                                [% IF ( not refundLostItemFeeRule.rule_value ) %]
+                                <option value="0" selected="selected">
+                                [% ELSE %]
+                                <option value="0">
+                                [% END %]
+                                    No
+                                </option>
+                            [% END %]
+                          [% END %]
+                        </select>
+                    </td>
+                    <td class="actions">
+                        <button type="submit" class="btn btn-default btn-xs"><i class="fa fa-save"></i> Save</button>
+                    </td>
+                    </td>
+                </tr>
+            </table>
+        </form>
+    </div>
+
     <div id="holds-policy-by-item-type" class="container">
-    <h3>[% IF humanbranch %]Holds policy by item type for [% humanbranch %][% ELSE %]Default holds policy by item type[% END %]</h3>
+    <h3>[% IF humanbranch %]Holds policy by item type for [% Branches.GetName( humanbranch ) | html %][% ELSE %]Default holds policy by item type[% END %]</h3>
         <p>
             For this library, you can edit rules for given itemtypes, regardless
             of the patron's category.
@@ -495,63 +706,69 @@ for="tobranch"><strong>Clone these rules to:</strong></label> <input type="hidde
             <li><strong>From home library:</strong> Only patrons from the item's home library may put this book on hold.</li>
             <li><strong>No holds allowed:</strong> No patron may put this book on hold.</li>
         </ul>
-        <p>
-            Note that if the system preference
-            <code>AllowHoldPolicyOverride</code> is enabled, these policies can
-            be overridden by your circulation staff. Also, these policies are
-            based on the patron's home library, <em>not</em> the library where the hold is being placed..
+        <p><strong>Note: </strong>If the system preference 'AllowHoldPolicyOverride' is enabled, these policies can be overridden by your circulation staff.</br />
+            <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>.
         </p>
 
         <form method="post" action="/cgi-bin/koha/admin/smart-rules.pl">
             <input type="hidden" name="op" value="add-branch-item" />
-            <input type="hidden" name="branch" value="[% current_branch %]"/>
+            <input type="hidden" name="branch" value="[% current_branch | html %]"/>
             <table>
                 <tr>
                     <th>Item type</th>
                     <th>Hold policy</th>
+                    <th>Hold pickup library match</th>
                     <th>Return policy</th>
                     <th>&nbsp;</th>
                 </tr>
-                [% FOREACH branch_item_rule_loo IN branch_item_rule_loop %]
-                    [% UNLESS ( loop.odd ) %]
-                    <tr class="highlight">
-                    [% ELSE %]
-                    <tr>
+                [% FOREACH i IN itemtypeloop %]
+                    [% SET holdallowed = CirculationRules.Search( branchcode, undef, i.itemtype, 'holdallowed' ) %]
+                    [% SET hold_fulfillment_policy = CirculationRules.Search( branchcode, undef, i.itemtype, 'hold_fulfillment_policy' ) %]
+                    [% SET returnbranch = CirculationRules.Search( branchcode, undef, i.itemtype, 'returnbranch' ) %]
+
+                    [% IF holdallowed || hold_fulfillment_policy || returnbranch %]
+                        <tr>
+                            <td>
+                                [% i.translated_description | html %]
+                            </td>
+                            <td>
+                                [% IF holdallowed == 2 %]
+                                    <span>From any library</span>
+                                [% ELSIF holdallowed == 1 %]
+                                    <span>From home library</span>
+                                [% ELSE %]
+                                    <span>No holds allowed</span>
+                                [% END %]
+                            </td>
+                            <td>
+                                [% IF hold_fulfillment_policy == 'any' %]
+                                    <span>any library</span>
+                                [% ELSIF hold_fulfillment_policy == 'homebranch' %]
+                                    <span>item's home library</span>
+                                [% ELSIF hold_fulfillment_policy == 'holdingbranch' %]
+                                    <span>item's holding library</span>
+                                [% END %]
+                            </td>
+                            <td>
+                                [% IF returnbranch == 'homebranch' %]
+                                    <span>Item returns home</span>
+                                [% ELSIF returnbranch == 'holdingbranch' %]
+                                    <span>Item returns to issuing branch</span>
+                                [% ELSIF returnbranch == 'noreturn' %]
+                                    <span>Item floats</span>
+                                [% END %]
+                            </td>
+                            <td class="actions">
+                                <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>
+                            </td>
+                        </tr>
                     [% END %]
-                        <td>[% IF ( branch_item_rule_loo.default_humanitemtype ) %]
-                                <em>Default</em>
-                            [% ELSE %]
-                                [% branch_item_rule_loo.humanitemtype %]
-                            [% END %]
-                        </td>
-                        <td>[% IF ( branch_item_rule_loo.holdallowed_any ) %]
-                                From any library
-                            [% ELSIF ( branch_item_rule_loo.holdallowed_same ) %]
-                                From home library
-                            [% ELSE %]
-                                No holds allowed
-                            [% END %]
-                        </td>
-                        <td>[% IF ( branch_item_rule_loo.returnbranch == 'homebranch' ) %]
-                                Item returns home
-                            [% ELSIF ( branch_item_rule_loo.returnbranch == 'holdingbranch' ) %]
-                                Item returns to issuing branch
-                            [% ELSIF ( branch_item_rule_loo.returnbranch == 'noreturn' ) %]
-                                Item floats
-                            [% ELSE %]
-                                Error - unknown option
-                            [% END %]
-                        </td>
-                        <td>
-                            <a class="button" href="/cgi-bin/koha/admin/smart-rules.pl?op=delete-branch-item&amp;itemtype=[% branch_item_rule_loo.itemtype %]&amp;branch=[% current_branch %]">Delete</a>
-                        </td>
-                    </tr>
                 [% END %]
                 <tr>
                     <td>
                         <select name="itemtype">
                         [% FOREACH itemtypeloo IN itemtypeloop %]
-                            <option value="[% itemtypeloo.itemtype %]">[% itemtypeloo.description %]</option>
+                            <option value="[% itemtypeloo.itemtype | html %]">[% itemtypeloo.translated_description | html %]</option>
                         [% END %]
                         </select>
                     </td>
@@ -563,22 +780,168 @@ for="tobranch"><strong>Clone these rules to:</strong></label> <input type="hidde
                         </select>
                     </td>
                     <td>
+                        <select name="hold_fulfillment_policy">
+                            <option value="any">
+                                any library
+                            </option>
+
+                            <option value="homebranch">
+                                item's home library
+                            </option>
+
+                            <option value="holdingbranch">
+                                item's holding library
+                            </option>
+                        </select>
+                    </td>
+                    <td>
                         <select name="returnbranch">
                             <option value="homebranch">Item returns home</option>
                             <option value="holdingbranch">Item returns to issuing library</option>
                             <option value="noreturn">Item floats</option>
                         </select>
                     </td>
-                    <td><input type="submit" value="Add" class="submit" /></td>
+                    <td class="actions"><button type="submit" class="btn btn-default btn-xs"><i class="fa fa-plus"></i> Add</button></td>
                 </tr>
             </table>
         </form>
     </div>
-</div>
+            </main>
+        </div> <!-- /.col-sm-10.col-sm-push-2 -->
+
+        <div class="col-sm-2 col-sm-pull-10">
+            <aside>
+                [% INCLUDE 'admin-menu.inc' %]
+            </aside>
+        </div> <!-- /.col-sm-2.col-sm-pull-10 -->
+     </div> <!-- /.row -->
+
+[% MACRO jsinclude BLOCK %]
+    [% Asset.js("js/admin-menu.js") | $raw %]
+    [% INCLUDE 'calendar.inc' %]
+    <script>
+
+        function clear_edit(){
+            var cancel = confirm(_("Are you sure you want to cancel your changes?"));
+            if ( !cancel ) return;
+            $('#default-circulation-rules td').removeClass('highlighted-row');
+            var edit_row = $("#edit_row");
+            $(edit_row).find("input").each(function(){
+                var type = $(this).attr("type");
+                if (type != "button" && type != "submit" ) {
+                    $(this).val("");
+                    $(this).prop('disabled', false);
+                }
+                if ( type == "checkbox" ) {
+                    $(this).prop('checked', false);
+                }
+            });
+            $(edit_row).find("select").prop('disabled', false);
+            $(edit_row).find("select option:first").attr("selected", "selected");
+            $(edit_row).find("td:last input[name='clear']").remove();
+        }
+
+        var MSG_CONFIRM_DELETE = _("Are you sure you want to delete this rule? This cannot be undone.");
+
+        $(document).ready(function() {
+            $('[data-toggle="popover"]').popover();
+
+            $(".delete").on("click",function(){
+                return confirmDelete(MSG_CONFIRM_DELETE);
+            });
 
-</div>
-<div class="yui-b">
-[% INCLUDE 'admin-menu.inc' %]
-</div>
-</div>
+            $("#clone_rules").on("click",function(){
+                var library_dropdown = document.getElementById("branch");
+                var selected_library = library_dropdown.options[library_dropdown.selectedIndex].value;
+                var selected_library_text = $("#branch option:selected").text();
+                var to_library = $("#tobranch option:selected").text();
+                var MSG_CONFIRM_CLONE;
+                if (selected_library === "*") {
+                    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);
+                    return confirmClone(MSG_CONFIRM_CLONE);
+                } else {
+                    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);
+                    return confirmClone(MSG_CONFIRM_CLONE);
+                }
+            });
+
+            $('#selectlibrary').find("input:submit").hide();
+            $('#branch').change(function() {
+                    $('#selectlibrary').submit();
+            });
+            $(".editrule").click(function(){
+                if ( $("#edit_row").find("input[type='text']").filter(function(){return this.value.length > 0 }).length > 0 ) {
+                    var edit = confirm(_("Are you sure you want to edit another rule?"));
+                    if (!edit) return false;
+                }
+                $('#default-circulation-rules td').removeClass('highlighted-row');
+                $(this).parent().parent().find("td").each(function (i) {
+                    $(this).addClass('highlighted-row');
+                    itm = $(this).text();
+                    itm = itm.replace(/^\s*|\s*$/g,'');
+                    var current_column = $("#edit_row td:eq("+i+")");
+                    if ( i == 3 ) {
+                        // specific processing for the Note column
+                        var note = $(this).find("a[name='viewnote']").data("content");
+                        $(current_column).find("input[type='text']").val(note);
+                    } else if ( i == 8 ) {
+                        // specific processing for the Hard due date column
+                        var select_value = $(this).find("input[type='hidden'][name='hardduedatecomparebackup']").val();
+                        var input_value = '';
+                        if (typeof select_value === 'undefined'){
+                            select_value = '-1';
+                        }else {
+                            input_value = itm.split(' ')[1];
+                        }
+                        $(current_column).find("input[type='text']").val(input_value);
+                        $(current_column).find("select").val(select_value);
+                    } else if ( i == 14 ) {
+                        // specific processing for cap_fine_to_replacement_price
+                        var cap_fine_to_replacement_price = $(this).find("input[type='checkbox']");
+                        $('#cap_fine_to_replacement_price').prop('checked', cap_fine_to_replacement_price.is(':checked') );
+                        $('#overduefinescap').prop('disabled', cap_fine_to_replacement_price.is(':checked') );
+                    } else {
+                        $(current_column).find("input[type='text']").val(itm);
+                        // select the corresponding option
+                        $(current_column).find("select option").each(function(){
+                            opt = $(this).text().toLowerCase();
+                            opt = opt.replace(/^\s*|\s*$/g,'');
+                            if ( opt == itm.toLowerCase() ) {
+                                $(this).attr('selected', 'selected');
+                            }
+                        });
+                        if ( i == 0 || i == 1 ) {
+                            // Disable the 2 first columns, we cannot update them.
+                            var val = $(current_column).find("select option:selected").val();
+                            var name = "categorycode";
+                            if ( i == 1 ) {
+                                name="itemtype";
+                            }
+                            // Remove potential previous input added
+                            $(current_column).find("input").remove();
+                            $(current_column).append("<input type='hidden' name='"+name+"' value='"+val+"' />");
+                        } else if ( i == 4 || i == 5 || i == 25 ) {
+                            // If the value is not an integer for
+                            //     - "Current checkouts allowed"
+                            //     - "Current on-site checkouts allowed"
+                            //     - "Holds allowed (daily)"
+                            // The value is "Unlimited" (or an equivalent translated string)
+                            // an it should be set to an empty string
+                            if( !((parseFloat(itm) == parseInt(itm)) && !isNaN(itm)) ) {
+                                $(current_column).find("input[type='text']").val("");
+                            }
+                        }
+                    }
+                });
+                $("#default-circulation-rules tr:last td:eq(0) select").prop('disabled', true);
+                $("#default-circulation-rules tr:last td:eq(1) select").prop('disabled', true);
+                return false;
+            });
+            $(".clear_edit").on("click",function(e){
+                e.preventDefault();
+                clear_edit();
+            });
+        });
+    </script>
+[% END %]
 [% INCLUDE 'intranet-bottom.inc' %]