X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=gl%2Fbank_transfer.php;h=351bfb5d51dd5cc6dd91a2a4b86f30de816282a3;hb=6be0e5ddb5163ce1ca48769ff8015c0d90e76a8b;hp=2256a4a041aa93dee001f71e4c6372ccfc3db7af;hpb=ebc600101ceab69c06eac4b1bd4d1782af45de05;p=fa-stable.git diff --git a/gl/bank_transfer.php b/gl/bank_transfer.php index 2256a4a0..351bfb5d 100644 --- a/gl/bank_transfer.php +++ b/gl/bank_transfer.php @@ -42,7 +42,7 @@ if (isset($_GET['AddedID'])) hyperlink_no_params($_SERVER['PHP_SELF'], _("Enter &Another Transfer")); - safeExit(); + display_footer_exit(); } if (isset($_POST['_DatePaid_changed'])) { @@ -53,13 +53,13 @@ if (isset($_POST['_DatePaid_changed'])) { function gl_payment_controls() { - global $table_style2, $Refs; + global $Refs; $home_currency = get_company_currency(); start_form(); - start_outer_table($table_style2, 5); + start_outer_table(TABLESTYLE2); table_section(1); @@ -123,6 +123,15 @@ function check_valid_entries() return false; } + $limit = get_bank_account_limit($_POST['FromBankAccount'], $_POST['DatePaid']); + + if ($limit != null && ($limit < (input_num('charge') + input_num('amount')))) + { + display_error(sprintf(_("The total bank amount exceeds allowed limit (%s) for source account."), price_format($limit))); + set_focus('amount'); + return false; + } + if (isset($_POST['charge']) && !check_num('charge', 0)) { display_error(_("The entered amount is invalid or less than zero.")); @@ -170,21 +179,11 @@ function handle_add_deposit() //---------------------------------------------------------------------------------------- -function safeExit() -{ - echo "

"; - end_page(); - exit; -} - -//---------------------------------------------------------------------------------------- - if (isset($_POST['AddPayment'])) { if (check_valid_entries() == true) { handle_add_deposit(); - safeExit(); } }