View | Details | Raw Unified | Return to bug 5946
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/js/acq.js (-1 / +1 lines)
Lines 594-600 function calcTotalRow(cell) { Link Here
594
594
595
function autoFillRow(bud_id) {
595
function autoFillRow(bud_id) {
596
596
597
    var remainingTotal =   document.getElementById("budget_est_"+bud_id).textContent;
597
    var remainingTotal =   document.getElementById("budget_est_"+bud_id);
598
    var remainingNew = new Number;
598
    var remainingNew = new Number;
599
    var budgetTotal  =  document.getElementById("budget_tot_"+bud_id ).textContent;
599
    var budgetTotal  =  document.getElementById("budget_tot_"+bud_id ).textContent;
600
    var arr =  getElementsByClass("plan_entry_" + bud_id);
600
    var arr =  getElementsByClass("plan_entry_" + bud_id);
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqplan.tmpl (-2 / +1 lines)
Lines 88-94 YAHOO.util.Event.onAvailable("popmenu", function () { Link Here
88
88
89
<form method="post" id="Aform" name="Aform"  action="/cgi-bin/koha/admin/aqplan.pl">
89
<form method="post" id="Aform" name="Aform"  action="/cgi-bin/koha/admin/aqplan.pl">
90
<h3>Planning for <!-- TMPL_VAR NAME="budget_period_description" --> by <!-- TMPL_VAR NAME="authcat" --></h3>
90
<h3>Planning for <!-- TMPL_VAR NAME="budget_period_description" --> by <!-- TMPL_VAR NAME="authcat" --></h3>
91
91
<input type="hidden" name="authcat" value="<!-- TMPL_VAR NAME="authcat" -->" />
92
<!-- Budget Lines -->
92
<!-- Budget Lines -->
93
93
94
    <!-- TMPL_IF NAME="budget_lines" -->
94
    <!-- TMPL_IF NAME="budget_lines" -->
95
- 

Return to bug 5946