8d726bf96c
Signed-off-by: Chris Cormack <crc@liblime.com> Signed-off-by: Joshua Ferraro <jmf@liblime.com>
273 lines
7.7 KiB
Cheetah
273 lines
7.7 KiB
Cheetah
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
|
|
<title>Koha › Administration › Funds and Budgets</title>
|
|
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
|
|
<!-- TMPL_IF name="add_form" -->
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
|
|
function isNotNull(f,noalert) {
|
|
if (f.value.length ==0) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
function toUC(f) {
|
|
var x=f.value.toUpperCase();
|
|
f.value=x;
|
|
return true;
|
|
}
|
|
|
|
function isNum(v,maybenull) {
|
|
var n = new Number(v.value);
|
|
if (isNaN(n)) {
|
|
return false;
|
|
}
|
|
if (maybenull==0 && v.value=="") {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
function isDate(f) {
|
|
var t = Date.parse(f.value);
|
|
if (isNaN(t)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
function Check(f) {
|
|
var ok=1;
|
|
var _alertString="";
|
|
var alertString2;
|
|
if (f.bookfundid.value.length==0) {
|
|
_alertString += "- bookfundid missing\n";
|
|
}
|
|
if (f.bookfundname.value.length==0) {
|
|
_alertString += "- bookfundname missing\n";
|
|
}
|
|
if (_alertString.length==0) {
|
|
document.Aform.submit();
|
|
} else {
|
|
alertString2 = "Form not submitted because of the following problem(s)\n";
|
|
alertString2 += "------------------------------------------------------------------------------------\n\n";
|
|
alertString2 += _alertString;
|
|
alert(alertString2);
|
|
}
|
|
}
|
|
//]]>
|
|
</script>
|
|
<!-- /TMPL_IF -->
|
|
</head>
|
|
<body>
|
|
<!-- TMPL_INCLUDE NAME="header.inc" -->
|
|
<!-- TMPL_INCLUDE NAME="bookfund-admin-search.inc" -->
|
|
|
|
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> › <!-- TMPL_IF name="else" -->Funds and Budgets <!-- /TMPL_IF --> <!-- TMPL_IF name="add_form" --><a href="/cgi-bin/koha/admin/aqbookfund.pl">Funds and Budgets</a> › Add fund<!-- /TMPL_IF --></div>
|
|
|
|
<div id="doc3" class="yui-t2">
|
|
|
|
<div id="bd">
|
|
<div id="yui-main">
|
|
<div class="yui-b">
|
|
|
|
<!-- TMPL_IF name="else" -->
|
|
<div id="toolbar">
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
|
|
// prepare DOM for YUI Toolbar
|
|
|
|
$(document).ready(function() {
|
|
yuiToolbar();
|
|
});
|
|
|
|
// YUI Toolbar Functions
|
|
|
|
function yuiToolbar() {
|
|
new YAHOO.widget.Button("newfund");
|
|
}
|
|
|
|
//]]>
|
|
</script>
|
|
<ul class="toolbar">
|
|
<li><a id="newfund" href="/cgi-bin/koha/admin/aqbookfund.pl?op=add_form">New Fund</a></li>
|
|
</ul></div>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF name="else" -->
|
|
<h1>Funds and budgets administration</h1>
|
|
<!-- TMPL_IF NAME="bookfund" -->
|
|
<form action="aqbudget.pl" method="post">
|
|
<table>
|
|
<tr>
|
|
<th>Code</th>
|
|
<th>Name</th>
|
|
<th>Branch</th>
|
|
<th colspan="3">Actions</th>
|
|
</tr>
|
|
|
|
<!-- TMPL_LOOP name="bookfund" -->
|
|
<!-- TMPL_IF NAME="toggle" -->
|
|
<tr class="highlight">
|
|
<!-- TMPL_ELSE -->
|
|
<tr>
|
|
<!-- /TMPL_IF -->
|
|
<td>
|
|
<!-- TMPL_VAR name="bookfundid" -->
|
|
</td>
|
|
<td>
|
|
<!-- TMPL_VAR name="bookfundname" -->
|
|
</td>
|
|
<td>
|
|
<!-- TMPL_IF NAME="branchname" -->
|
|
<!-- TMPL_VAR name="branchname" -->
|
|
<!-- TMPL_ELSE -->
|
|
<!-- /TMPL_IF -->
|
|
</td>
|
|
<td>
|
|
<a href="<!-- TMPL_VAR name="scriptname" -->?op=add_form&bookfundid=<!-- TMPL_VAR name="bookfundid" -->&branchcode=<!-- TMPL_VAR name="branchcode" -->">Edit</a></td><td>
|
|
<a href="<!-- TMPL_VAR name="scriptname" -->?op=delete_confirm&bookfundid=<!-- TMPL_VAR name="bookfundid" -->&branchcode=<!-- TMPL_VAR name="branchcode" -->">Delete</a></td><td>
|
|
<a href="aqbudget.pl?op=add_form&bookfundid=<!-- TMPL_VAR name="bookfundid" -->&branchcode=<!-- TMPL_VAR name="branchcode" -->">Add budget</a>
|
|
<!-- TMPL_IF NAME="has_budgets" -->
|
|
<a href="aqbudget.pl?filter_bookfundid=<!-- TMPL_VAR name="bookfundid" -->">Show budgets</a>
|
|
<!-- /TMPL_IF -->
|
|
</td>
|
|
</tr>
|
|
|
|
<!-- /TMPL_LOOP --> <!-- bookfund -->
|
|
</table>
|
|
</form>
|
|
|
|
<div class="paginationBar"><!-- TMPL_VAR NAME="pagination_bar" --></div>
|
|
<!-- /TMPL_IF --> <!-- bookfund -->
|
|
|
|
<p>
|
|
<a href="aqbudget.pl">Show all budgets</a>
|
|
</p>
|
|
|
|
<!-- /TMPL_IF --> <!-- else -->
|
|
|
|
<!-- TMPL_IF name="add_form" -->
|
|
<form action="<!-- TMPL_VAR name="action" -->" name="Aform" method="post">
|
|
|
|
|
|
<!-- TMPL_IF name="header-is-modify-p" -->
|
|
<input type="hidden" name="op" value="mod_validate" />
|
|
<input type="hidden" name="current_branch" value="<!-- TMPL_VAR name="current_branch" -->"/>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF name="header-is-add-p" -->
|
|
<input type="hidden" name="op" value="add_validate" />
|
|
<!-- /TMPL_IF -->
|
|
|
|
|
|
<input type="hidden" name="checked" value="0" />
|
|
|
|
<fieldset class="rows">
|
|
<legend><!-- TMPL_VAR name="header" --></legend>
|
|
|
|
<ol><!-- TMPL_IF name="add_or_modify" -->
|
|
<li>
|
|
<span class="label">Fund: </span>
|
|
<input type="hidden" name="bookfundid" id="bookfundid" value="<!-- TMPL_VAR name="bookfundid" -->" />
|
|
<!-- TMPL_VAR name="bookfundid" -->
|
|
</li>
|
|
<!-- TMPL_ELSE -->
|
|
<li>
|
|
<label for="bookfundid">Fund: </label>
|
|
<input type="text" name="bookfundid" id="bookfundid" size="5" maxlength="5" onblur="toUC(this)" />
|
|
</li>
|
|
<!-- /TMPL_IF --> <!-- add_or_modify -->
|
|
|
|
<li>
|
|
<label for="bookfundname">Name: </label>
|
|
<input type="text" name="bookfundname" id="bookfundname" size="40" maxlength="80" value="<!-- TMPL_VAR name="bookfundname" escape="HTML" -->" />
|
|
</li>
|
|
|
|
<li>
|
|
<label for="branchcode">Library: </label>
|
|
<select name="branchcode" id="branchcode">
|
|
<option value="">----</option>
|
|
<!-- TMPL_LOOP NAME="branches" -->
|
|
<!-- TMPL_IF NAME="selected" -->
|
|
<option value="<!-- TMPL_VAR NAME="branchcode" -->" selected="selected"><!-- TMPL_VAR NAME="branchname" --></option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="<!-- TMPL_VAR NAME="branchcode" -->"><!-- TMPL_VAR NAME="branchname" --></option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- /TMPL_LOOP -->
|
|
</select>
|
|
</li></ol>
|
|
|
|
</fieldset>
|
|
|
|
<fieldset class="action">
|
|
<input type="button" value="Submit" onclick="Check(this.form); return false;" /> <a class="cancel" href="/cgi-bin/koha/admin/aqbookfund.pl">Cancel</a>
|
|
</fieldset>
|
|
</form>
|
|
<!-- /TMPL_IF --> <!-- add_form -->
|
|
|
|
|
|
<!-- TMPL_IF name="add_validate" -->
|
|
<h3>Fund added</h3>
|
|
|
|
<p>
|
|
<a href="<!-- TMPL_VAR name="action" -->">Return to fund list</a>
|
|
</p>
|
|
<!-- /TMPL_IF -->
|
|
|
|
|
|
<!-- TMPL_IF name="mod_validate" -->
|
|
<h3>Fund modified</h3>
|
|
|
|
<p>
|
|
<a href="<!-- TMPL_VAR name="action" -->">Return to fund list</a>
|
|
</p>
|
|
<!-- /TMPL_IF -->
|
|
|
|
|
|
|
|
<!-- TMPL_IF name="delete_confirm" -->
|
|
|
|
<form action="<!-- TMPL_VAR name="action" -->" method="post">
|
|
<input type="hidden" name="op" value="delete_confirmed" />
|
|
<input type="hidden" name="bookfundid" value="<!-- TMPL_VAR name="bookfundid" -->" />
|
|
<input type="hidden" name="branchcode" value="<!-- TMPL_VAR name="branchcode" -->" />
|
|
<fieldset><legend>Confirm Deletion of Fund <em><!-- TMPL_VAR name="bookfundid" --></em></legend>
|
|
<table>
|
|
<tr>
|
|
<th scope="row">Fund: </th><td>
|
|
<!-- TMPL_VAR name="bookfundid" --></td></tr>
|
|
|
|
<tr>
|
|
<th scope="row">Branch: </th><td>
|
|
<!-- TMPL_VAR name="branchcode" --></td></tr>
|
|
|
|
<tr>
|
|
<th scope="row">Name: </th><td>
|
|
<!-- TMPL_VAR name="bookfundname" --></td></tr>
|
|
|
|
<tr>
|
|
<th scope="row">Group: </th><td>
|
|
<!-- TMPL_VAR name="bookfundgroup" --></td></tr>
|
|
</table>
|
|
<fieldset class="action"> <input type="submit" value="Yes, Delete this Fund" /> <a class="cancel" href="/cgi-bin/koha/admin/aqbookfund.pl">Cancel</a></fieldset>
|
|
</fieldset>
|
|
</form>
|
|
|
|
<!-- /TMPL_IF --> <!-- delete_confirm -->
|
|
|
|
<!-- TMPL_IF name="delete_confirmed" -->
|
|
<h3>Data Deleted</h3>
|
|
<form action="<!-- TMPL_VAR name="action" -->" method="post">
|
|
<input type="submit" value="OK" />
|
|
</form>
|
|
<!-- /TMPL_IF --> <!-- delete_confirmed -->
|
|
|
|
</div>
|
|
</div>
|
|
<div class="yui-b">
|
|
<!-- TMPL_INCLUDE NAME="admin-menu.inc" -->
|
|
</div>
|
|
</div>
|
|
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
|