merging 2.2 branch with head. Sorry for not making it before, many many commits done...
[koha.git] / koha-tmpl / intranet-tmpl / default / en / parameters / issuingrules.tmpl
1 <!-- TMPL_INCLUDE NAME="parameters-top.inc" -->
2 <div id="mainbloc">
3         <h1 class="parameters">Defining issuing rule for <!-- TMPL_VAR NAME="branch" --></h1>
4         <div id="bloc25">
5                 <h2 class="parameters">HINT for issues</h2>
6                 <p>Each box needs to be filled with issuelength, maxissues</p>
7                 <p> - eg: 21,5 enables 21 day loan with 5 issues</p>
8                 <h2 class="parameters">HINT for fines</h2>
9                 <p>Each box needs to be filled in with fine,time to start charging,charging cycle</p>
10                 <p>eg 1,7,7 = 1USD,EUR,etc fine, after 7 days, every 7 days</p>
11                 <p>Note : fines are calculated by the fines2.pl script, located in misc directory. </p>
12                 <p>Ask your administrator to put this script in crontab, after midnight, to have fines calculated every night</p>
13         </div>
14         <div id="bloc25">
15                 <h2 class="parameters">Default values</h2>
16                 <p> If a cell is not filled, the 1st of the following value is searched :</p>
17                 <ul>
18                         <li>same branch and same borrower category, itemtype *</li>
19                         <li>same branch and same itemtype, borrower category *</li>
20                         <li>same itemtype and borrower category, branch *</li>
21                         <li>everywhere</li>
22                         <li>If nothing is set, default is 21,5 (hardcoded)</li>
23                 </li>
24         </div>
25         <div id="bloc100">
26                 <form method="post">
27                 Select a branch :
28                         <select name="branch">
29                                 <option value="">Default</option>
30                         <!-- TMPL_LOOP NAME="branchloop" -->
31                                 <option value="<!-- TMPL_VAR NAME="value" -->" <!-- TMPL_IF NAME="selected" -->selected<!-- /TMPL_IF -->><!-- TMPL_VAR NAME="branchname" --></option>
32                         <!-- /TMPL_LOOP -->
33                         </select>
34                         <input type="submit" value="Select" class="button parameters">
35                 </form>
36                 <form method="post">
37                         <input type="hidden" name="op" value="save">
38                         <table>
39                         <tr>
40                                 <th>&nbsp;</th><!-- TMPL_LOOP NAME="title" --><th><!-- TMPL_VAR NAME="in_title" --><br/>Issue / fine</th><!-- /TMPL_LOOP -->
41                         </tr>
42                         <!-- TMPL_LOOP NAME="row" -->
43                                 <tr align="center">
44                                         <th>
45                                                 <!-- TMPL_VAR NAME="categorycode" -->
46                                         </th>
47                                         <!-- TMPL_LOOP NAME="cell" -->
48                                                 <td<!-- TMPL_IF NAME="toggle" --> class="hilighted"<!-- /TMPL_IF -->>
49                                                         <input name="<!-- TMPL_VAR NAME="issuingname" -->" value="<!-- TMPL_VAR NAME="issuingvalue" -->" size="6" maxlength="10"> /
50                                                         <input name="<!-- TMPL_VAR NAME="finesname" -->" value="<!-- TMPL_VAR NAME="finesvalue" -->" size="6" maxlength="10">
51                                                 </td>
52                                         <!-- /TMPL_LOOP -->
53                                 </tr>
54                         <!-- /TMPL_LOOP -->
55                         </table>
56                         <input type="submit" value="Save" class="button parameters">
57                 </form>
58         </div>
59 </div>
60 <!-- TMPL_INCLUDE NAME="parameters-bottom.inc" -->