[Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters issuingrules.tmpl,NONE,1.1

Paul POULAIN tipaul at users.sourceforge.net
Thu May 6 16:52:50 CEST 2004


Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/parameters
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11907/koha-tmpl/intranet-tmpl/default/en/parameters

Added Files:
	issuingrules.tmpl 
Log Message:
issuingrules : the new script to manage issuing rules (issuing number & length by branch / itemtype / borrower type)

--- NEW FILE ---
<!-- TMPL_INCLUDE NAME="parameters-top.inc" -->
<div id="mainbloc">
	<h1 class="parameters">Defining issuing rule for <!-- TMPL_VAR name="branch" --></h1>
	<div id="bloc25">
		<h2 class="parameters">HINT for issues</h2>
		<p>Each box needs to be filled in with issuelength,maxissues</p>
		<p>eq 21,5 enables 5 issues for 21 days</p>
		<h2 class="parameters">HINT for fines</h2>
		<p>Each box needs to be filled in with fine,time to start charging,charging cycle</p>
		<p>eg 1,7,7 = 1USD,EUR,etc fine, after 7 days, every 7 days</p>
		<p>Note : fines are calculated by the fines2.pl script, located in misc directory. </p>
		<p>Ask your administrator to put this script in crontab, after midnight, to have fines calculated every night</p>
	</div>
	<div id="bloc25">
		<h2 class="parameters">Default values</h2>
		<p> If a cell is not filled, the 1st of the following value is searched :</p>
		<ul>
			<li>same branch and same borrower category, itemtype *</li>
			<li>same branch and same itemtype, borrower category *</li>
			<li>same itemtype and borrower category, branch *</li>
			<li>everywhere</li>
			<li>If nothing is set, default is 21,5 (hardcoded)</li>
		</li>
	</div>
	<div id="bloc100">
		<form method="post">
			<select name="branch">
				<option value="">Default</option>
			<!-- TMPL_LOOP name="branchloop" -->
				<option value="<!-- TMPL_VAR name="value" -->" <!-- TMPL_IF name="selected" -->selected<!-- /TMPL_IF -->><!-- TMPL_VAR name="branchname" --></option>
			<!-- /TMPL_LOOP -->
			</select>
			<input type="submit" value="Select" class="button parameters">
		</form>
		<form method="post">
			<input type="hidden" name="op" value="save">
			<table>
			<tr>
				<th>&nbsp;</th><!-- TMPL_LOOP name="title" --><th><!-- TMPL_VAR name="in_title" --><br/>Issue / fine</th><!-- /TMPL_LOOP -->
			</tr>
			<!-- TMPL_LOOP name="row" -->
				<tr align="center">
					<th>
						<!-- TMPL_VAR name="categorycode" -->
					</th>
					<!-- TMPL_LOOP name="cell" -->
						<td bgcolor="<!-- TMPL_VAR name="toggle" -->">
							<input name="<!-- TMPL_VAR name="issuingname" -->" value="<!-- TMPL_VAR name="issuingvalue" -->" size=6 maxlength=10> /
							<input name="<!-- TMPL_VAR name="finesname" -->" value="<!-- TMPL_VAR name="finesvalue" -->" size=6 maxlength=10>
						</td>
					<!-- /TMPL_LOOP -->
				</tr>
			<!-- /TMPL_LOOP -->
			</table>
			<input type=submit value="Save" class="button parameters">
		</form>
	</div>
</div>
<!-- TMPL_INCLUDE NAME="parameters-bottom.inc" -->





More information about the Koha-cvs mailing list