X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=purchasing%2Fsupplier_payment.php;h=e40fb8f2b772149ce3704941259dde19ed756188;hb=3f3cfa578adbc2b71f4fd9c8d0f5536d26af43d8;hp=aff82825edb15968fd0a36d46829ecdbc2eed6d7;hpb=d585998d2265b8c65a24e30566f8f29683ff2406;p=fa-stable.git diff --git a/purchasing/supplier_payment.php b/purchasing/supplier_payment.php index aff82825..e40fb8f2 100644 --- a/purchasing/supplier_payment.php +++ b/purchasing/supplier_payment.php @@ -134,7 +134,7 @@ function check_inputs() } if (isset($_POST['charge']) && input_num('charge') > 0) { - $charge_acct = get_company_pref('bank_charge_act'); + $charge_acct = get_bank_charge_account($_POST['bank_account']); if (get_gl_account($charge_acct) == false) { display_error(_("The Bank Charge Account has not been set in System and General GL Setup.")); set_focus('charge'); @@ -177,7 +177,7 @@ function check_inputs() } elseif (!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; } @@ -276,12 +276,12 @@ start_form(); } set_global_supplier($_POST['supplier_id']); - + if (!list_updated('bank_account')) $_POST['bank_account'] = get_default_supplier_bank_account($_POST['supplier_id']); - + bank_accounts_list_row(_("From Bank Account:"), 'bank_account', null, true); - + bank_balance_row($_POST['bank_account']); table_section(2);