X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=purchasing%2Fsupplier_payment.php;h=dd2a09d46cb8ed3e978792093ac76db215ca840b;hb=dcdaed552c94303ca6145d898a8365f6cccec072;hp=ed8f5a089a9c50302c9e7614358e2e68b31fe496;hpb=2bbf52478cf6cbf4fb89395f18390f1a6af93f40;p=fa-stable.git diff --git a/purchasing/supplier_payment.php b/purchasing/supplier_payment.php index ed8f5a08..dd2a09d4 100644 --- a/purchasing/supplier_payment.php +++ b/purchasing/supplier_payment.php @@ -57,11 +57,6 @@ if (isset($_POST['_DatePaid_changed'])) { $Ajax->activate('_ex_rate'); } -if (list_updated('supplier_id') || list_updated('bank_account')) { - $_SESSION['alloc']->read(); - $_POST['memo_'] = $_POST['amount'] = ''; - $Ajax->activate('alloc_tbl'); -} //---------------------------------------------------------------------------------------- if (!isset($_POST['bank_account'])) { // first page call @@ -100,9 +95,10 @@ if (isset($_GET['AddedID'])) { display_note(get_gl_view_str(ST_SUPPAYMENT, $payment_id, _("View the GL &Journal Entries for this Payment"))); + hyperlink_no_params($path_to_root . "/purchasing/inquiry/supplier_allocation_inquiry.php?supplier_id=", _("Select Another &Supplier Transaction for Payment")); // hyperlink_params($path_to_root . "/purchasing/allocations/supplier_allocate.php", _("&Allocate this Payment"), "trans_no=$payment_id&trans_type=22"); - hyperlink_params($_SERVER['PHP_SELF'], _("Enter another supplier &payment"), "supplier_id=" . $_POST['supplier_id']); + hyperlink_params($_SERVER['PHP_SELF'], _("Enter Another Supplier &Payment"), "supplier_id=" . $_POST['supplier_id']); display_footer_exit(); } @@ -210,6 +206,8 @@ function check_inputs() return false; } + if (!db_has_currency_rates(get_supplier_currency($_POST['supplier_id']), $_POST['DatePaid'], true)) + return false; $_SESSION['alloc']->amount = -input_num('amount'); if (isset($_POST["TotalNumberOfAllocs"])) @@ -228,7 +226,11 @@ function handle_add_payment() if ($comp_currency != $bank_currency && $bank_currency != $supp_currency) $rate = 0; else + { $rate = input_num('_ex_rate'); + $supplier_amount = input_num('allocated_amount'); + if($supplier_amount) $rate = input_num('amount')/$supplier_amount; + } $payment_id = add_supp_payment($_POST['supplier_id'], $_POST['DatePaid'], $_POST['bank_account'], input_num('amount'), input_num('discount'), @@ -272,6 +274,12 @@ start_form(); supplier_list_row(_("Payment To:"), 'supplier_id', null, false, true); + if (list_updated('supplier_id') || list_updated('bank_account')) { + $_SESSION['alloc']->read(); + $_POST['memo_'] = $_POST['amount'] = ''; + $Ajax->activate('alloc_tbl'); + } + set_global_supplier($_POST['supplier_id']); if (!list_updated('bank_account')) @@ -293,7 +301,7 @@ start_form(); $bank_currency = get_bank_account_currency($_POST['bank_account']); if ($bank_currency != $supplier_currency) { - exchange_rate_display($bank_currency, $supplier_currency, $_POST['DatePaid'], true); + amount_row("Supplier Amount:", 'allocated_amount', null, '', $supplier_currency, 2); } amount_row(_("Bank Charge:"), 'charge');