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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/account_payment.tt (-2 / +1 lines)
Lines 73-79 $( document ).ready(function() { Link Here
73
        $("input[name='debit_id']:checked" ).each(function(i,n){
73
        $("input[name='debit_id']:checked" ).each(function(i,n){
74
            sum += parseFloat( $( "#amount_outstanding_" + $(this).val() ).val() );
74
            sum += parseFloat( $( "#amount_outstanding_" + $(this).val() ).val() );
75
        });
75
        });
76
        $('#amount_to_pay').val( sum );
76
        $('#amount_to_pay').val( sum.toFixed(2) );
77
    });
77
    });
78
});
78
});
79
79
80
- 

Return to bug 6427