X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=gl%2Fbank_transfer.php;h=7e293af1544fcb69624cd12bb9f2af817f8e58b9;hb=f1fe277df787cdefb65142d66ce247b8757ba057;hp=1f7cbe3efec1c028b345f3254ebced02e8fda0b7;hpb=2d23368483326fc5229a37e715de0769dcee883a;p=fa-stable.git diff --git a/gl/bank_transfer.php b/gl/bank_transfer.php index 1f7cbe3e..7e293af1 100644 --- a/gl/bank_transfer.php +++ b/gl/bank_transfer.php @@ -113,7 +113,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; } @@ -134,7 +134,7 @@ function check_valid_entries() $amnt_tr = input_num('charge') + input_num('amount'); - if ($limit != null && ($limit < $amnt_tr))) + if ($limit != null && ($limit < $amnt_tr)) { display_error(sprintf(_("The total bank amount exceeds allowed limit (%s) for source account."), price_format($limit))); set_focus('amount');