Koha/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqplan.tmpl
Owen Leonard 9c0752edf2 Fix for Bug 5679 - funds planning showing strange borders
Table border style needed more specificity

Signed-off-by: Nicole Engard <nengard@bywatersolutions.com>
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
2011-02-14 10:24:44 +13:00

311 lines
12 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title>Koha &rsaquo; Administration &rsaquo; Budgets &rsaquo; Funds &rsaquo; Planning for <!-- TMPL_VAR NAME="budget_period_description" --> by <!-- TMPL_VAR NAME="authcat" --></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[
// ---------------------------------------------------------------------
// Javascript
// ---------------------------------------------------------------------
function Check(f) {
var ok=1;
var _alertString="";
var alertString2;
var arr = document.getElementsByName('est_total')
for ( var i=0, len=arr.length; i<len; ++i ){
var tot = arr[i].innerHTML;
if (tot == 'NaN') {
_alertString += "\n- " + _("One or more cell values is non-numeric");
}
}
if (_alertString.length==0) {
var op = document.createElement('input');
op.setAttribute("type","hidden");
op.setAttribute("name","op");
op.setAttribute("value","save"); //ohh the pain...
document.Aform.appendChild(op);
document.Aform.submit()
} else {
alertString2 = _("Form not submitted because of the following problem(s)");
alertString2 += "\n------------------------------------------------------------------------------------\n";
alertString2 += _alertString;
alert(alertString2);
}
}
YAHOO.util.Event.onAvailable("popmenu", function () {
var itemData = new Array();
table = document.getElementById('plan')
tableTmp = table.cloneNode(true);
tableTmp.id = 'planTmp';
<!-- TMPL_LOOP NAME="authvals_row" -->
itemData.push( { text: "<!-- TMPL_VAR NAME="val" -->", onclick: { fn: addColumn, obj: ["<!-- TMPL_VAR NAME="colnum" -->", "<!-- TMPL_VAR NAME="code" -->"] } } );
<!-- /TMPL_LOOP -->
oMenu = new YAHOO.widget.Menu("basicmenu",
{ position: "dynamic", itemdata: itemData , clicktohide : "true" , context:["popmenu","tl","tr"] }
);
oMenu.render("popmenu");
YAHOO.util.Event.addListener("add_popmenu_item", "click", oMenu.show, null, oMenu);
// oMenu.removeItem(2); // TODO.....
});
//]]>
</script>
<style type="text/css">td.locked { background-image: url('/intranet-tmpl/prog/img/locked.png'); padding-left : 20px; background-repeat: no-repeat; background-position: 4% 50%; } a.control { font-size:85%;text-decoration:none; }</style>
</head>
<body>
<!-- TMPL_INCLUDE NAME="header.inc" -->
<!-- TMPL_INCLUDE NAME="budgets-admin-search.inc" -->
<div id="breadcrumbs">
<a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo;
<a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> &rsaquo;
<a href="/cgi-bin/koha/admin/aqbudgetperiods.pl">Budgets</a> &rsaquo;
<a href="/cgi-bin/koha/admin/aqbudgets.pl?budget_period_id=<!-- TMPL_VAR NAME="budget_period_id" -->">Funds</a> &rsaquo;
<a href="/cgi-bin/koha/admin/aqplan.pl?budget_period_id=<!-- TMPL_VAR NAME="budget_period_id" -->">Planning</a> &rsaquo;
</div>
<div id="doc3" class="yui-t2">
<div id="bd">
<div id="yui-main">
<div class="yui-b">
<!-- TMPL_INCLUDE NAME="budgets-admin-toolbar.inc" -->
<form method="post" id="Aform" name="Aform" action="/cgi-bin/koha/admin/aqplan.pl">
<h3>Planning for <!-- TMPL_VAR NAME="budget_period_description" --> by <!-- TMPL_VAR NAME="authcat" --></h3>
<!-- Budget Lines -->
<!-- TMPL_IF NAME="budget_lines" -->
<!-- TMPL_IF name="currency" --><p><b>Currency = <!-- TMPL_VAR name="currency" --></b>.
<!-- TMPL_IF NAME="show_actual" -->
<b>Each cell contain both actual and estimated values.</b>
<!-- TMPL_ELSE -->
<b>Cells contain estimated values only.</b>
<!-- /TMPL_IF -->
</p><!-- TMPL_ELSE --><div class="dialog alert"><h3>No active currency is defined</h3><p>Please <a href="/cgi-bin/koha/admin/currency.pl">specify an active currency</a>.</p></div>
<!-- TMPL_IF NAME="show_actual" -->
<p><b>Each cell contain both actual and estimated values.</b></p>
<!-- TMPL_ELSE -->
<p><b>Cells contain estimated values only.</b></p>
<!-- /TMPL_IF -->
<!-- /TMPL_IF -->
<table id="plan" width="100%">
<thead>
<tr>
<th>Fund name</th>
<th>Fund total</th>
<!-- TMPL_LOOP NAME="authvals_row" -->
<!-- TMPL_IF NAME="display" -->
<th id="col<!-- TMPL_VAR NAME="code" -->" class="<!-- TMPL_VAR NAME="colnum" -->">
<!-- TMPL_ELSE -->
<th id="col<!-- TMPL_VAR NAME="code" -->" styl="display:none;" class="<!-- TMPL_VAR NAME="colnum" -->">
<!-- /TMPL_IF -->
<!-- TMPL_VAR NAME="code" --></th>
<!-- /TMPL_LOOP -->
<th>Fund remaining</th><th>&nbsp;</th>
</tr>
<tr>
<th>&nbsp;</th><th>&nbsp;</th>
<!-- TMPL_LOOP NAME="authvals_row" -->
<!-- TMPL_IF NAME="display" -->
<th class="<!-- TMPL_VAR NAME="colnum" -->">
<!-- TMPL_ELSE -->
<th style="display:none;" class="<!-- TMPL_VAR NAME="colnum" -->">
<!-- /TMPL_IF -->
<a class="control" onclick="delColumn('<!-- TMPL_VAR NAME="colnum" -->', 'col<!-- TMPL_VAR NAME="code" -->')" href="#" title="Hide this column">[ hide ]</a></th>
<!-- /TMPL_LOOP -->
<th id="popmenu"><a style="font-size:85%;text-decoration:none;" id="add_popmenu_item" href="#" title="Show a hidden column">[ show a column ]</a></th><th>&nbsp;</th>
</tr>
</thead>
<tbody>
<!-- TMPL_LOOP NAME="budget_lines" -->
<!-- TMPL_UNLESS NAME="__odd__" --><tr class="highlight"><!-- TMPL_ELSE --><tr><!-- /TMPL_UNLESS -->
<td align="left"<!-- TMPL_IF NAME="budget_lock" --> class="locked" title="Fund locked"<!-- /TMPL_IF -->><a href="/cgi-bin/koha/admin/aqbudgets.pl?op=add_form&amp;budget_id=<!-- TMPL_VAR NAME="budget_id" -->&amp;budget_period_id=<!-- TMPL_VAR NAME="budget_period_id" -->"><!-- TMPL_VAR NAME="budget_name_indent"--></a></td>
<td><span id="budget_tot_formatted_<!-- TMPL_VAR NAME="budget_id" -->"><!-- TMPL_VAR NAME="budget_amount_formatted"-->&nbsp;</span>
<!-- NEXT DIV ELEMENT IS USED BY JS FOR CALC-ING AUTO-FILL AND ESTIMATED AMOUNTS -->
<div style="display:none;" id="budget_tot_<!-- TMPL_VAR NAME="budget_id" -->"><!-- TMPL_VAR NAME="budget_amount"--></div></td>
<!-- TMPL_LOOP NAME="lines" -->
<!-- TMPL_IF NAME="display" -->
<td class="<!-- TMPL_VAR NAME="colnum"-->">
<!-- TMPL_ELSE -->
<td style="display:none;" class="<!-- TMPL_VAR NAME="colnum"-->">
<!-- /TMPL_IF -->
<table class="invis" width="100%">
<tr>
<!-- TMPL_IF Name="show_actual" -->
<td width="50%" ><!-- TMPL_VAR NAME="actual_amount" --></td>
<!--/TMPL_IF -->
<td>
<!--TMPL_IF Name="budget_lock" -->
<!-- TMPL_VAR NAME="estimated_amount" -->&nbsp;
<input type="hidden" style="text-align: right;" name="<!-- TMPL_VAR NAME="cell_name"-->" value="<!-- TMPL_VAR NAME="estimated_amount" -->" />
<!--TMPL_ELSE -->
<input type="text" style="text-align: right; width:90%; " size="6" name="<!-- TMPL_VAR NAME="cell_name"-->" value="<!-- TMPL_VAR NAME="estimated_amount" -->" id="budget_<!-- TMPL_VAR NAME="budget_id"--><!-- TMPL_VAR NAME="colnum"-->" class="plan_entry_<!-- TMPL_VAR NAME="budget_id"-->" onchange="calcTotalRow(this);" />
<!--/TMPL_IF -->
</td></tr>
</table>
</td>
<!-- /TMPL_LOOP -->
<td>
<table class="invis" width="100%">
<tr>
<!-- TMPL_IF Name="show_actual" -->
<!-- TMPL_IF NAME="act_negative" -->
<td width="50%" style="color: red;">
<!-- TMPL_ELSIF NAME="act_positive" -->
<td width="50%" style="color: green;">
<!-- TMPL_ELSE -->
<td width="50%">
<!--/TMPL_IF -->
<!-- TMPL_VAR NAME="budget_act_remain"-->
</td>
<!-- /TMPL_IF -->
<!-- TMPL_IF NAME="est_negative" -->
<td width="50%" style="color: red;" id="budget_est_<!-- TMPL_VAR NAME="budget_id"-->">
<!-- TMPL_ELSIF NAME="est_positive" -->
<td width="50%" style="color: green;" id="budget_est_<!-- TMPL_VAR NAME="budget_id"-->">
<!-- TMPL_ELSE -->
<td width="50%" id="budget_est_<!-- TMPL_VAR NAME="budget_id"-->">
<!--/TMPL_IF -->
<!-- TMPL_VAR NAME="budget_est_remain"-->&nbsp;
</td>
</tr>
</table>
</td>
<td>
<!-- TMPL_UNLESS Name="budget_lock" -->
<input type="button" onclick="autoFillRow('<!-- TMPL_VAR NAME="budget_id"-->')" value="Auto-fill row"/>
<!-- TMPL_ELSE -->
<div style="color:red;">not owned</div>
<!-- /TMPL_UNLESS -->
</td>
</tr>
<!-- /TMPL_LOOP -->
</tbody>
</table>
<!-- TMPL_IF name="budget_period_locked" -->
<!-- <input STYLE="background: gray;" type="submit" value="Save" disabled="disabled"/> -->
<!-- TMPL_ELSE -->
<fieldset class="action"><input type="button" onclick="Check(this.form)" value="Save"/></fieldset>
<!-- /TMPL_IF -->
<div id="hide_div">
<!-- TMPL_LOOP NAME="authvals_row" -->
<!-- TMPL_UNLESS Name="display" -->
<input type="hidden" value="<!-- TMPL_VAR NAME="code" -->" name="hide_cols"/>
<!-- /TMPL_UNLESS -->
<!-- /TMPL_LOOP -->
</div>
</form>
<!-- TMPL_ELSE -->
<div class="dialog message">No funds to display for this search criteria</div>
<!-- /TMPL_IF -->
</div>
</div>
<div class="yui-b">
<form method="post" action="/cgi-bin/koha/admin/aqplan.pl">
<fieldset class="brief">
<h4>Filter</h4>
<ol>
<li>
<label for="authcat"> Select planning type:</label>
<!-- TMPL_VAR NAME="authcat_dropbox" -->
</li>
<li class="radio">
<!-- TMPL_IF NAME="show_mine" -->
<input type="checkbox" id="show_mine" name="show_mine" value="1" checked="checked" />
<!-- TMPL_ELSE -->
<input type="checkbox" id="show_mine" name="show_mine" value="1" />
<!-- /TMPL_IF -->
<label for="show_mine">Show my funds only</label>
</li>
<li class="radio">
<!-- TMPL_IF NAME="show_active" -->
<input type="checkbox" id="show_active" name="show_active" value="1" checked="checked" />
<!-- TMPL_ELSE -->
<input type="checkbox" id="show_active" name="show_active" value="1" />
<!-- /TMPL_IF -->
<label for="show_active">Show active funds only</label>
</li>
<li class="radio">
<!-- TMPL_IF NAME="show_actual" -->
<input type="checkbox" id="show_actual" name="show_actual" value="1" checked="checked" />
<!-- TMPL_ELSE -->
<input type="checkbox" id="show_actual" name="show_actual" value="1" />
<!-- /TMPL_IF -->
<label for="show_actual">Show actual/estimated values</label>
</li>
</ol>
<fieldset class="action">
<input type="submit" name="option_submit" value="Submit" /></fieldset>
</fieldset>
</form>
<!-- TMPL_IF NAME="budget_lines" -->
<form method="post" action="/cgi-bin/koha/admin/aqplan.pl">
<h4>Export</h4>
<fieldset class="brief">
<ol>
<li><label for="basename">Output to a file named: </label><input type="text" name="basename" id="basename" value="Export" /></li>
<li><label class="inline" for="MIME">Into an application
</label><!-- TMPL_VAR NAME="CGIextChoice" -->
<!-- TMPL_VAR NAME="CGIsepChoice" --></li>
</ol>
<fieldset class="action"> <input type="submit" value="Submit"/>
<input type="hidden" name="report_name" value="<!--TMPL_VAR NAME="report_name" -->" />
<input type="hidden" name="output" value="file" /></fieldset>
</fieldset>
</form>
<!-- /TMPL_IF -->
<!-- TMPL_INCLUDE NAME="acquisitions-menu.inc" -->
</div>
</div>
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->