X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=gl%2Fbank_transfer.php;h=1dbc3939c0ed714558ad897b7dc2649f33d6a6cb;hb=eed850acf1c3a796fe0cc1ed673cc6cd7d893647;hp=439d6b6e0e63982bd79bb6d0d7def31a619174b0;hpb=6a12518d87e341c16dd2e2898f36e74320369d71;p=fa-stable.git diff --git a/gl/bank_transfer.php b/gl/bank_transfer.php index 439d6b6e..1dbc3939 100644 --- a/gl/bank_transfer.php +++ b/gl/bank_transfer.php @@ -118,7 +118,7 @@ function check_valid_entries() } if (!is_date_in_fiscalyear($_POST['DatePaid'])) { - display_error(_("The entered date is not in fiscal year.")); + display_error(_("The entered date is out of fiscal year or is closed for further data entry.")); set_focus('DatePaid'); return false; } @@ -159,7 +159,7 @@ function check_valid_entries() set_focus('charge'); return false; } - if (isset($_POST['charge']) && input_num('charge') > 0 && get_company_pref('bank_charge_act') == '') { + if (isset($_POST['charge']) && input_num('charge') > 0 && get_bank_charge_account($_POST['FromBankAccount']) == '') { display_error(_("The Bank Charge Account has not been set in System and General GL Setup.")); set_focus('charge'); return false;