X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=gl%2Fbank_transfer.php;h=b7c7fcc5ef56ded16bb071e9b575b58cf4de588c;hb=7ba24fed715d41c0210f4395fd885ef34a483d5e;hp=36e28a6a899b4d3ac7f137f7048d96cec394b492;hpb=e8ae3516539a520338117f25d401c0fc234973a4;p=fa-stable.git diff --git a/gl/bank_transfer.php b/gl/bank_transfer.php index 36e28a6a..b7c7fcc5 100644 --- a/gl/bank_transfer.php +++ b/gl/bank_transfer.php @@ -9,8 +9,8 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License here . ***********************************************************************/ -$path_to_root=".."; -$page_security = 5; +$page_security = 'SA_BANKTRANSFER'; +$path_to_root = ".."; include_once($path_to_root . "/includes/session.inc"); @@ -58,10 +58,10 @@ function gl_payment_controls() start_form(); - start_table($table_style2, 5, 7); - echo ""; // outer table + start_outer_table($table_style2, 5); + + table_section(1); - echo ""; bank_accounts_list_row(_("From Account:"), 'FromBankAccount', null, true); bank_accounts_list_row(_("To Account:"), 'ToBankAccount', null, true); @@ -73,28 +73,25 @@ function gl_payment_controls() if ($from_currency != "" && $to_currency != "" && $from_currency != $to_currency) { amount_row(_("Amount:"), 'amount', null, null, $from_currency); + amount_row(_("Bank Charge:"), 'charge', null, null, $from_currency); exchange_rate_display($from_currency, $to_currency, $_POST['DatePaid']); } else { amount_row(_("Amount:"), 'amount'); + amount_row(_("Bank Charge:"), 'charge'); } - echo "
"; - echo ""; // outer table - echo ""; + table_section(2); ref_row(_("Reference:"), 'ref', '', references::get_next(systypes::bank_transfer())); textarea_row(_("Memo:"), 'memo_', null, 40,4); - end_table(1); - - echo ""; - end_table(1); // outer table + end_outer_table(1); // outer table - submit_center('AddPayment',_("Enter Transfer"), true, '', true); + submit_center('AddPayment',_("Enter Transfer"), true, '', 'default'); end_form(); } @@ -123,6 +120,12 @@ function check_valid_entries() return false; } + if (isset($_POST['charge']) && !check_num('charge', 0)) + { + display_error(_("The entered amount is invalid or less than zero.")); + set_focus('charge'); + return false; + } if (!references::is_valid($_POST['ref'])) { display_error(_("You must enter a reference.")); @@ -152,7 +155,7 @@ function check_valid_entries() function handle_add_deposit() { $trans_no = add_bank_transfer($_POST['FromBankAccount'], $_POST['ToBankAccount'], - $_POST['DatePaid'], input_num('amount'), $_POST['ref'], $_POST['memo_']); + $_POST['DatePaid'], input_num('amount'), $_POST['ref'], $_POST['memo_'], input_num('charge')); meta_forward($_SERVER['PHP_SELF'], "AddedID=$trans_no"); }