1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00

Fix for tests

This commit is contained in:
Hillel Coren 2018-01-18 16:03:41 +02:00
parent 1de93e0f03
commit 8a8483bcbd

View File

@ -215,21 +215,21 @@
});
function onFormSubmit(event) {
@if ($payment)
return true;
@else
// warn if amount is more than balance/credit will be created
var invoiceId = $('input[name=invoice]').val();
var invoice = invoiceMap[invoiceId];
var amount = $('#amount').val();
if (! invoice) {
logError('Warning: invoice not found: ' + invoiceId);
}
if (amount <= invoice.balance || confirm("{{ trans('texts.amount_greater_than_balance') }}")) {
$('#saveButton').attr('disabled', true);
return true;
} else {
return false;
}
@endif
}
function submitAction(action) {