X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=gl%2Fincludes%2Fui%2Fgl_bank_ui.inc;h=981569c420943b06583a958f3daa11ad14bdd664;hb=fc24ee893402902fc58632dabb5d7c2594e191d0;hp=0f3d33f7382297e35f81c25a93d516127d774e2e;hpb=f301d5d26c8915521462bf044f704d139c957a7c;p=fa-stable.git diff --git a/gl/includes/ui/gl_bank_ui.inc b/gl/includes/ui/gl_bank_ui.inc index 0f3d33f7..981569c4 100644 --- a/gl/includes/ui/gl_bank_ui.inc +++ b/gl/includes/ui/gl_bank_ui.inc @@ -14,33 +14,17 @@ function display_bank_header(&$order) global $Ajax, $Refs; $payment = $order->trans_type == ST_BANKPAYMENT; + $customer_error = false; div_start('pmt_header'); - start_outer_table(TABLESTYLE2, "width=90%"); // outer table + start_outer_table(TABLESTYLE2, "width='90%'"); // outer table table_section(1); - if (list_updated('PayType') || list_updated('person_id')) - { - if (list_updated('PayType')) - { - $_POST['person_id'] = ""; - unset($_POST['bank_account']); - } - if ($_POST['PayType'] == PT_CUSTOMER || $_POST['PayType'] == PT_SUPPLIER) - { - if ($_POST['PayType'] == PT_CUSTOMER) - $_POST['bank_account'] = get_default_customer_bank_account($_POST['person_id']); - else - $_POST['bank_account'] = get_default_supplier_bank_account($_POST['person_id']); - } - } - bank_accounts_list_row( $payment ? _("From:") : _("To:"), 'bank_account', null, true); - if ($payment) - bank_balance_row($_POST['bank_account']); - date_row(_("Date:"), 'date_', '', true, 0, 0, 0, null, true); + ref_row(_("Reference:"), 'ref', ''); + table_section(2, "33%"); if (!isset($_POST['PayType'])) @@ -63,6 +47,7 @@ function display_bank_header(&$order) $Ajax->activate('code_id'); $Ajax->activate('pagehelp'); $Ajax->activate('editors'); + $Ajax->activate('footer'); } payment_person_types_list_row( $payment ? _("Pay To:"):_("From:"), 'PayType', $_POST['PayType'], true); @@ -91,6 +76,17 @@ function display_bank_header(&$order) $_POST['PersonDetailID'] = ANY_NUMERIC; hidden('PersonDetailID'); } + $trans = get_customer_habit($_POST['person_id']); // take care of customers on hold + if ($trans['dissallow_invoices'] != 0) + { + if ($payment) + { + $customer_error = true; + display_error(_("This customer account is on hold.")); + } + else + display_warning(_("This customer account is on hold.")); + } break; case PT_QUICKENTRY : @@ -98,6 +94,7 @@ function display_bank_header(&$order) $qid = get_quick_entry(get_post('person_id')); if (list_updated('person_id')) { unset($_POST['totamount']); // enable default + $Ajax->activate('footer'); $Ajax->activate('totamount'); } amount_row($qid['base_desc'].":", 'totamount', price_format($qid['base_amount']), @@ -108,18 +105,35 @@ function display_bank_header(&$order) // break; } - $person_currency = payment_person_currency($_POST['PayType'], $_POST['person_id']); - $bank_currency = get_bank_account_currency($_POST['bank_account']); + table_section(3, "33%"); - exchange_rate_display($bank_currency, $person_currency, $_POST['date_']); + if (!$order->order_id && !get_post('bank_account')) + { + if ($_POST['PayType'] == PT_CUSTOMER) + $_POST['bank_account'] = get_default_customer_bank_account($_POST['person_id']); + elseif ($_POST['PayType'] == PT_SUPPLIER) + $_POST['bank_account'] = get_default_supplier_bank_account($_POST['person_id']); + else + unset($_POST['bank_account']); + } + + bank_accounts_list_row( $payment ? _("From:") : _("Into:"), 'bank_account', null, true); + if ($payment) + bank_balance_row($_POST['bank_account']); - table_section(3, "33%"); + $bank_currency = get_bank_account_currency($_POST['bank_account']); - ref_row(_("Reference:"), 'ref', ''); + exchange_rate_display(get_company_currency(), $bank_currency, $_POST['date_']); end_outer_table(1); // outer table div_end(); + if ($customer_error) + { + end_form(); + end_page(); + exit; + } } //--------------------------------------------------------------------------------- @@ -132,7 +146,7 @@ function display_gl_items($title, &$order) display_heading($title); div_start('items_table'); - start_table(TABLESTYLE, "colspan=7 width=95%"); + start_table(TABLESTYLE, "width='95%'"); if ($dim == 2) $th = array(_("Account Code"), _("Account Description"), _("Dimension")." 1", @@ -278,13 +292,27 @@ function gl_edit_item_controls(&$order, $dim, $Index=null) //--------------------------------------------------------------------------------- -function gl_options_controls() +function gl_options_controls($order) { + div_start('footer'); echo "
"; + $type = get_post('PayType'); + $bank_curr = get_bank_account_currency(get_post('bank_account')); + $person_curr = $type == PT_CUSTOMER ? get_customer_currency(get_post('person_id')) + : ($type == PT_SUPPLIER ? get_supplier_currency(get_post('person_id')) : $bank_curr); + + if ($person_curr != $bank_curr) + { + $_POST['settled_amount'] = + price_format(abs($order->gl_items_total() / get_exchange_rate_from_to($bank_curr, $person_curr, get_post('date_')))); + amount_row($type == PT_CUSTOMER ? _("Settled AR Amount:") : _("Settled AP Amount:"), + 'settled_amount', null, null, $person_curr, user_price_dec()); + } textarea_row(_("Memo"), 'memo_', null, 50, 3); echo "
"; + div_end(); }