Default Receival Days implemented. Maintained in System and GL Setup.
[fa-stable.git] / gl / bank_transfer.php
index 1f7cbe3efec1c028b345f3254ebced02e8fda0b7..7e293af1544fcb69624cd12bb9f2af817f8e58b9 100644 (file)
@@ -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');