248 lines
13 KiB
Cheetah
248 lines
13 KiB
Cheetah
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
|
|
<title>Koha › Administration › Contracts ›
|
|
<!-- TMPL_IF NAME="add_form" -->
|
|
<!-- TMPL_IF NAME="contractnumber" -->Modify contract '<!-- TMPL_VAR NAME="contractname" -->'
|
|
<!-- TMPL_ELSE -->New contract<!-- /TMPL_IF -->
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF NAME="add_validate" -->Data recorded<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF NAME="delete_confirm" -->Confirm Deletion of Contract '<!-- TMPL_VAR NAME="contractnumber" -->'<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF NAME="delete_confirmed" -->Contract Deleted<!-- /TMPL_IF --></title>
|
|
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
|
|
<!-- TMPL_INCLUDE NAME="calendar.inc" -->
|
|
<script type="text/javascript" src="<!-- TMPL_VAR NAME='themelang' -->/js/acq.js"></script>
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
// to check if the data are correctly entered.
|
|
function Check(ff) {
|
|
var ok=0;
|
|
var _alertString="Form not submitted because of the following problem(s)\n";
|
|
_alertString +="-------------------------------------------------------------------\n\n";
|
|
if (!(isNotNull(ff.booksellerid,0)) || !(isNum(ff.booksellerid,0))) {
|
|
ok=1;
|
|
_alertString += "- bookseller missing\n";
|
|
}
|
|
if (!(isNotNull(ff.contractname,0))){
|
|
ok=1;
|
|
_alertString += "- contract name missing\n";
|
|
}
|
|
if (!(isNotNull(ff.contractdescription,0))) {
|
|
ok=1;
|
|
_alertString += "- description missing\n";
|
|
}
|
|
if (!(CheckDate(ff.contractstartdate))){
|
|
ok=1;
|
|
_alertString += "- contract start date missing\n";
|
|
}
|
|
if (!(CheckDate(ff.contractenddate))){
|
|
ok=1;
|
|
_alertString += "- contract end date missing\n";
|
|
}
|
|
|
|
if (!CompareDate(ff.contractstartdate.value, ff.contractenddate.value)) {
|
|
ok=1;
|
|
_alertString += "Bad date! Contract start date can not be after end date.\n";
|
|
}
|
|
if (! CheckEndDate(ff.contractenddate.value)) {
|
|
ok=1;
|
|
_alertString += "End date before today, Invalid end date!\n";
|
|
}
|
|
if (ok) { // if there is a problem
|
|
alert(_alertString);
|
|
return false;
|
|
}
|
|
// if all is good
|
|
ff.submit();
|
|
}
|
|
//]]>
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<!-- TMPL_INCLUDE NAME="header.inc" -->
|
|
<!-- TMPL_INCLUDE NAME="contracts-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="add_form" -->
|
|
<a href="/cgi-bin/koha/admin/aqcontract.pl">Contracts</a>
|
|
›
|
|
<!-- TMPL_IF NAME="contractnumber" -->Modify contract '<!-- TMPL_VAR NAME="contractname" -->'
|
|
<!-- TMPL_ELSE -->New contract
|
|
<!-- /TMPL_IF -->
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF NAME="add_validate" -->
|
|
<a href="/cgi-bin/koha/admin/aqcontract.pl">Contracts</a>
|
|
› Data recorded
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF NAME="delete_confirm" -->
|
|
<a href="/cgi-bin/koha/admin/aqcontract.pl">Contracts</a>
|
|
› Confirm Deletion of Contract <!-- TMPL_VAR NAME="contractnumber" -->
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF NAME="delete_confirmed" -->
|
|
<a href="/cgi-bin/koha/admin/aqcontract.pl">Contracts</a> › Contract Deleted
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF NAME="else" -->Contracts<!-- /TMPL_IF -->
|
|
</div>
|
|
|
|
<div id="doc3" class="yui-t2">
|
|
<div id="bd">
|
|
<div id="yui-main">
|
|
<div class="yui-b">
|
|
<!-- TMPL_IF NAME="add_form" -->
|
|
<form name="Aform" action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
|
|
<input type="hidden" name="op" value="add_validate" />
|
|
<input type="hidden" name="checked" value="0" />
|
|
<!-- TMPL_IF NAME="contractnumber" -->
|
|
<h1>Modify contract <!-- TMPL_VAR NAME="contractname" --></h1>
|
|
<!-- TMPL_ELSE -->
|
|
<h1>New contract</h1>
|
|
<!-- /TMPL_IF -->
|
|
<fieldset class="rows">
|
|
<ol>
|
|
<!-- TMPL_IF NAME="contractnumber" -->
|
|
<li><span class="label">Contract id </span><!-- TMPL_VAR NAME="contractnumber" -->
|
|
<input type="hidden" name="contractnumber" value="<!-- TMPL_VAR NAME="contractnumber" -->" />
|
|
<input type="hidden" name="is_a_modif" value="1" />
|
|
</li>
|
|
<!-- /TMPL_IF -->
|
|
<li><label for="contractname">Contract name</label>
|
|
<input type="text" name="contractname" id="contractname" size="40" maxlength="80" value="<!-- TMPL_VAR NAME="contractname" -->" />
|
|
</li>
|
|
<li><label for="contractdescription">Contract description</label>
|
|
<input type="text" name="contractdescription" id="contractdescription" size="40" maxlength="80" value="<!-- TMPL_VAR NAME="contractdescription" -->" />
|
|
</li>
|
|
<li><label for="booksellerid">bookseller</label>
|
|
<select id="booksellerid" name="booksellerid">
|
|
<!-- TMPL_LOOP NAME="booksellerloop" -->
|
|
<!-- TMPL_IF NAME="selected" -->
|
|
<option value="<!-- TMPL_VAR NAME="id" -->" selected="selected"><!-- TMPL_VAR NAME="name" --></option>
|
|
<!-- TMPL_ELSE -->
|
|
<option value="<!-- TMPL_VAR NAME="id" -->"><!-- TMPL_VAR NAME="name" --></option>
|
|
<!-- /TMPL_IF -->
|
|
<!-- /TMPL_LOOP -->
|
|
</select>
|
|
</li>
|
|
<li><label for="contractstartdate">contract start date</label>
|
|
<input type="text" name="contractstartdate" id="contractstartdate" value="<!-- TMPL_VAR NAME="contractstartdate" -->"/>
|
|
<img src="<!-- TMPL_VAR Name="themelang" -->/lib/calendar/cal.gif" id="contractstartdate_button" alt="Show Calendar" />
|
|
<script language="JavaScript" type="text/javascript">
|
|
Calendar.setup(
|
|
{
|
|
inputField : "contractstartdate",
|
|
ifFormat : "<!-- TMPL_VAR NAME="DHTMLcalendar_dateformat" -->",
|
|
button : "contractstartdate_button"
|
|
}
|
|
);
|
|
</script>
|
|
</li>
|
|
<li><label for="contractenddate">contract end date</label>
|
|
<input type="text" name="contractenddate" id="contractenddate" value="<!-- TMPL_VAR NAME="contractenddate" -->" />
|
|
<img src="<!-- TMPL_VAR Name="themelang" -->/lib/calendar/cal.gif" id="contractenddate_button" alt="Show Calendar" />
|
|
<script language="JavaScript" type="text/javascript">
|
|
Calendar.setup(
|
|
{
|
|
inputField : "contractenddate",
|
|
ifFormat : "<!-- TMPL_VAR NAME="DHTMLcalendar_dateformat" -->",
|
|
button : "contractenddate_button"
|
|
}
|
|
);
|
|
</script>
|
|
</li>
|
|
</ol>
|
|
</fieldset>
|
|
<fieldset class="action">
|
|
<input type="button" value="Save" onclick="Check(this.form);" />
|
|
</fieldset>
|
|
</form>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF NAME="add_validate" -->
|
|
<h3>Data recorded</h3>
|
|
<form action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
|
|
<input type="submit" value="OK" />
|
|
</form>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF NAME="delete_confirm" -->
|
|
<form action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
|
|
<fieldset>
|
|
<legend>Confirm Deletion of Contract <!-- TMPL_VAR NAME="contractnumber" --></legend>
|
|
<table>
|
|
<tr><th scope="row">contractnumber:</th><td><!-- TMPL_VAR NAME="contractnumber" --></td></tr>
|
|
<tr><th scope="row">Contract Name:</th><td><!-- TMPL_VAR NAME="contractname" --></td></tr>
|
|
<tr><th scope="row">Contract Description:</th><td><!-- TMPL_VAR NAME="contractdescription" --></td></tr>
|
|
<tr><th scope="row">contractstartdate:</th><td><!-- TMPL_VAR NAME="contractstartdate" --></td></tr>
|
|
<tr><th scope="row">contractenddate:</th><td><!-- TMPL_VAR NAME="contractenddate" --></td></tr>
|
|
<tr><th scope="row">bookseller:</th><td><!-- TMPL_VAR NAME="booksellername" --></td></tr>
|
|
</table>
|
|
<fieldset class="action">
|
|
<input type="hidden" name="op" value="delete_confirmed" />
|
|
<input type="hidden" name="contractnumber" value="<!-- TMPL_VAR NAME="contractnumber" -->" />
|
|
<input type="submit" value="Delete this Contract" />
|
|
<a class="cancel" href="/cgi-bin/koha/admin/aqcontract.pl">Cancel</a>
|
|
</fieldset>
|
|
</fieldset>
|
|
</form>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF NAME="delete_confirmed" -->
|
|
<h3>Contract Deleted</h3>
|
|
<form action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
|
|
<input type="submit" value="OK" />
|
|
</form>
|
|
<!-- /TMPL_IF -->
|
|
<!-- 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("newcontract");
|
|
}
|
|
//]]>
|
|
</script>
|
|
<ul class="toolbar">
|
|
<li><a id="newcontract" href="/cgi-bin/koha/admin/aqcontract.pl?op=add_form">New Contract</a></li>
|
|
</ul>
|
|
</div>
|
|
<h2>Contract Administration</h2>
|
|
<table>
|
|
<tr>
|
|
<th scope="col">contract id</th>
|
|
<th scope="col">Contract name</th>
|
|
<th scope="col">Contract description</th>
|
|
<th scope="col">contract start date</th>
|
|
<th scope="col">contract end date</th>
|
|
<th scope="col">bookseller</th>
|
|
<th scope="col" colspan="2"> </th>
|
|
</tr>
|
|
<!-- TMPL_LOOP NAME="loop" -->
|
|
<!-- TMPL_IF NAME="toggle" -->
|
|
<tr class="highlight">
|
|
<!-- TMPL_ELSE -->
|
|
<tr>
|
|
<!-- /TMPL_IF -->
|
|
<td><!-- TMPL_VAR NAME="contractnumber" --></td>
|
|
<td>
|
|
<a href="<!-- TMPL_VAR NAME="script_name" -->?op=add_form&contractnumber=<!-- TMPL_VAR NAME="contractnumber" -->"><!-- TMPL_VAR NAME="contractname" --></a>
|
|
</td>
|
|
<td><!-- TMPL_VAR NAME="contractdescription" --></td>
|
|
<td><!-- TMPL_VAR NAME="contractstartdate" --></td>
|
|
<td><!-- TMPL_VAR NAME="contractenddate" --></td>
|
|
<td><!-- TMPL_VAR NAME="booksellername" --></td>
|
|
<td><a href="<!-- TMPL_VAR NAME="script_name" -->?op=add_form&contractnumber=<!-- TMPL_VAR NAME="contractnumber" -->">Edit</a></td>
|
|
<td><a href="<!-- TMPL_VAR NAME="script_name" -->?op=delete_confirm&contractnumber=<!-- TMPL_VAR NAME="contractnumber" -->">Delete</a></td>
|
|
</tr>
|
|
<!-- /TMPL_LOOP -->
|
|
</table>
|
|
<!-- /TMPL_IF -->
|
|
</div>
|
|
</div>
|
|
<div class="yui-b">
|
|
<!-- TMPL_INCLUDE NAME="admin-menu.inc" -->
|
|
</div>
|
|
</div>
|
|
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
|