just adding menus to the top
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / parameters / issuingrules.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha -- System Administration: Issuing Rules<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
2
3 <!-- TMPL_INCLUDE NAME="menus.inc" -->
4 <!-- TMPL_INCLUDE NAME="menu-admin.inc" -->
5
6         <h1>Defining <!-- TMPL_IF NAME="branch" -->issuing rules for <!-- TMPL_VAR NAME="branch" --><!-- TMPL_ELSE -->default issuing rules<!-- /TMPL_IF --></h1>
7         <div class="help">
8                 <h3>HINT for issues</h3>
9                 <p>Each box needs to be filled in with issuelength,maxissues</p>
10                 <p>eq 21,5</span> enables 5 issues for 21 days</p>
11                 
12         <div class="help">
13                 <h3>HINT for fines</h3>
14                 <p>Each box needs to be filled in with fine,time to start charging,charging cycle</p>
15                 <p>eg 1,7,7</span> = 1 [USD,EUR,etc] fine after 7 days, every 7 days</p>
16                 <p>Fines are calculated by the fines2.pl script, located in misc directory.  Ask your administrator to put this script in crontab, after midnight, to have fines calculated every night</p>
17         
18         <div class="help">
19                 <h3>Default values</h3>
20                 <p> If a cell is not filled, the 1st of the following value is searched :</p>
21                 <ul>
22                         <li>same branch and same borrower category, itemtype *</li>
23                         <li>same branch and same itemtype, borrower category *</li>
24                         <li>same itemtype and borrower category, branch *</li>
25                         <li>everywhere</li>
26                         <li>If nothing is set, default is 21,5 (hardcoded)</li>
27                 </ul>
28         
29                 <form method="post" action="/cgi-bin/koha/admin/issuingrules.pl">
30                 <label for="branch">Select a branch :</label>
31                         <select id="branch" name="branch">
32                                 <option value="">Default</option>
33                         <!-- TMPL_LOOP NAME="branchloop" -->
34                                 <option value="<!-- TMPL_VAR NAME="value" -->"<!-- TMPL_IF NAME="selected" --> selected="selected"<!-- /TMPL_IF -->><!-- TMPL_VAR NAME="branchname" --></option><!-- /TMPL_LOOP --></select>
35                         <input type="submit" value="Select" />
36                 </form>
37                 <form method="post" action="/cgi-bin/koha/admin/issuingrules.pl">
38                         <input type="hidden" name="op" value="save" />
39                         
40                         <table>
41                         <caption>Defining issuing rules for <!-- TMPL_VAR NAME="branch" --></caption>
42                         <tr>
43                                 <th>&nbsp;</th><!-- TMPL_LOOP NAME="title" --><th scope="col"><!-- TMPL_VAR NAME="in_title" --><br/>Issue / fine</th><!-- /TMPL_LOOP -->
44                         </tr>
45                         <!-- TMPL_LOOP NAME="row" -->
46                                 <tr>
47                                         <th><!-- TMPL_VAR NAME="categorycode" --></th>
48                                         <!-- TMPL_LOOP NAME="cell" -->
49                                                 <td<!-- TMPL_IF NAME="toggle" --> class="highlight"<!-- /TMPL_IF -->>
50                                                         <input name="<!-- TMPL_VAR NAME="issuingname" -->" value="<!-- TMPL_VAR NAME="issuingvalue" -->" size="6" maxlength="10" /> /
51                                                         <input name="<!-- TMPL_VAR NAME="finesname" -->" value="<!-- TMPL_VAR NAME="finesvalue" -->" size="6" maxlength="10" />
52                                                 </td>
53                                         <!-- /TMPL_LOOP -->
54                                 </tr>
55                         <!-- /TMPL_LOOP -->
56                         </table>
57                         
58                         <input type="submit" value="Save Changes" />
59                 </form>
60
61 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->