X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fcustomer_payments.php;h=25f3b3f8090ce1aa6ec73c5ad71ba8ca8b5b6311;hb=220f68cab16f746b276c7eaefba368ce6654178a;hp=59fe6077ebbe0cf35f5666d8733b64dce6bd8f19;hpb=a9d55e1c13cbd6a6305b9322ec8621a06516f9f3;p=fa-stable.git diff --git a/sales/customer_payments.php b/sales/customer_payments.php index 59fe6077..25f3b3f8 100644 --- a/sales/customer_payments.php +++ b/sales/customer_payments.php @@ -51,8 +51,9 @@ if (!isset($_POST['bank_account'])) { // first page call $inv = get_customer_trans($_GET['SInvoice'], ST_SALESINVOICE); $dflt_act = get_default_bank_account($inv['curr_code']); $_POST['bank_account'] = $dflt_act['id']; - if($inv) { - $_SESSION['alloc']->person_id = $_POST['customer_id'] = $inv['debtor_no']; + if ($inv) { + $_POST['customer_id'] = $inv['debtor_no']; + $_SESSION['alloc']->set_person($inv['debtor_no'], PT_CUSTOMER); $_SESSION['alloc']->read(); $_POST['BranchID'] = $inv['branch_code']; $_POST['DateBanked'] = sql2date($inv['tran_date']); @@ -81,8 +82,11 @@ if (list_updated('BranchID')) { } if (!isset($_POST['customer_id'])) { - $_SESSION['alloc']->person_id = $_POST['customer_id'] = get_global_customer(false); + $_POST['customer_id'] = get_global_customer(false); + $_SESSION['alloc']->set_person($_POST['customer_id'], PT_CUSTOMER); $_SESSION['alloc']->read(); + $dflt_act = get_default_bank_account($_SESSION['alloc']->person_curr); + $_POST['bank_account'] = $dflt_act['id']; } if (!isset($_POST['DateBanked'])) { $_POST['DateBanked'] = new_doc_date(); @@ -98,6 +102,7 @@ if (isset($_GET['AddedID'])) { display_notification_centered(_("The customer payment has been successfully entered.")); submenu_print(_("&Print This Receipt"), ST_CUSTPAYMENT, $payment_no."-".ST_CUSTPAYMENT, 'prtopt'); + submenu_print(_("&Email This Receipt"), ST_CUSTPAYMENT, $payment_no."-".ST_CUSTPAYMENT, null, 1); submenu_view(_("&View this Customer Payment"), ST_CUSTPAYMENT, $payment_no); @@ -170,7 +175,7 @@ function can_process() return false; } - if (isset($_POST['charge']) && !check_num('charge', 0)) { + if (isset($_POST['charge']) && (!check_num('charge', 0) || $_POST['charge'] == $_POST['amount'])) { display_error(_("The entered amount is invalid or negative and cannot be processed.")); set_focus('charge'); return false; @@ -236,9 +241,10 @@ if (get_post('AddPaymentItem') && can_process()) { //Chaitanya : 13-OCT-2011 - To support Edit feature $payment_no = write_customer_payment($_SESSION['alloc']->trans_no, $_POST['customer_id'], $_POST['BranchID'], $_POST['bank_account'], $_POST['DateBanked'], $_POST['ref'], - input_num('amount'), input_num('discount'), $_POST['memo_'], 0, input_num('charge'), input_num('bank_amount', input_num('amount'))); + input_num('amount'), input_num('discount'), $_POST['memo_'], 0, input_num('charge'), input_num('bank_amount', input_num('amount')), $_POST['dimension_id'], $_POST['dimension2_id']); $_SESSION['alloc']->trans_no = $payment_no; + $_SESSION['alloc']->date_ = $_POST['DateBanked']; $_SESSION['alloc']->write(); unset($_SESSION['alloc']); @@ -305,8 +311,6 @@ start_outer_table(TABLESTYLE2, "width='60%'", 5); table_section(1); -bank_accounts_list_row(_("Into Bank Account:"), 'bank_account', null, true); - if ($new) customer_list_row(_("From Customer:"), 'customer_id', null, false, true); else { @@ -314,12 +318,6 @@ else { hidden('customer_id', $_POST['customer_id']); } -if (list_updated('customer_id') || ($new && list_updated('bank_account'))) { - $_SESSION['alloc']->read(); - $_POST['memo_'] = $_POST['amount'] = $_POST['discount'] = ''; - $Ajax->activate('alloc_tbl'); -} - if (db_customer_has_branches($_POST['customer_id'])) { customer_branches_list_row(_("Branch:"), $_POST['customer_id'], 'BranchID', null, false, true, true); } else { @@ -330,9 +328,15 @@ if (list_updated('customer_id') || ($new && list_updated('bank_account'))) { $_SESSION['alloc']->set_person($_POST['customer_id'], PT_CUSTOMER); $_SESSION['alloc']->read(); $_POST['memo_'] = $_POST['amount'] = $_POST['discount'] = ''; - $Ajax->activate('alloc_tbl'); + if (list_updated('customer_id')) { + $dflt_act = get_default_bank_account($_SESSION['alloc']->person_curr); + $_POST['bank_account'] = $dflt_act['id']; + } + $Ajax->activate('_page_body'); } +bank_accounts_list_row(_("Into Bank Account:"), 'bank_account', null, true); + read_customer_data(); set_global_customer($_POST['customer_id']); @@ -361,6 +365,21 @@ if ($cust_currency != $bank_currency) amount_row(_("Bank Charge:"), 'charge', null, '', $bank_currency); +$row = get_customer($_POST['customer_id']); +$_POST['dimension_id'] = $row['dimension_id']; +$_POST['dimension2_id'] = $row['dimension2_id']; +$dim = get_company_pref('use_dimension'); +if ($dim > 0) + dimensions_list_row(_("Dimension").":", 'dimension_id', + null, true, ' ', false, 1, false); +else + hidden('dimension_id', 0); +if ($dim > 1) + dimensions_list_row(_("Dimension")." 2:", 'dimension2_id', + null, true, ' ', false, 2, false); +else + hidden('dimension2_id', 0); + end_outer_table(1); div_start('alloc_tbl');