X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fincludes%2Fdb%2Fcust_trans_db.inc;h=19cdaea7b466509e4435e482dd037a5e116a0138;hb=e27f352665019d956e8bb4dc4b4086146f6e0535;hp=4f92807a468ea3a831f2e8cad3f7921ff8c17be2;hpb=ad0fdc78ec8ae2b67ef1b3a6d4f3393dba242310;p=fa-stable.git diff --git a/sales/includes/db/cust_trans_db.inc b/sales/includes/db/cust_trans_db.inc index 4f92807a..19cdaea7 100644 --- a/sales/includes/db/cust_trans_db.inc +++ b/sales/includes/db/cust_trans_db.inc @@ -116,17 +116,22 @@ function write_customer_trans($trans_type, $trans_no, $debtor_no, $BranchNo, function get_customer_trans($trans_id, $trans_type) { + global $go_debug; + $sql = "SELECT trans.*," ."ov_amount+ov_gst+ov_freight+ov_freight_tax+ov_discount AS Total," ."cust.name AS DebtorName, cust.address, " ."cust.curr_code, " - ."cust.tax_id "; + ."cust.tax_id, " + ."com.memo_"; - if ($trans_type == ST_CUSTPAYMENT) { + if ($trans_type == ST_CUSTPAYMENT || $trans_type == ST_BANKDEPOSIT) { // it's a payment so also get the bank account // Chaitanya : Added bank_act to support Customer Payment Edit $sql .= ",bank_act,".TB_PREF."bank_accounts.bank_name, ".TB_PREF."bank_accounts.bank_account_name, - ".TB_PREF."bank_accounts.account_type AS BankTransType "; + ".TB_PREF."bank_accounts.account_type AS BankTransType, + ".TB_PREF."bank_accounts.bank_curr_code, + ".TB_PREF."bank_trans.amount as bank_amount"; } if ($trans_type == ST_SALESINVOICE || $trans_type == ST_CUSTCREDIT || $trans_type == ST_CUSTDELIVERY) { @@ -140,11 +145,12 @@ function get_customer_trans($trans_id, $trans_type) .TB_PREF."tax_groups.id AS tax_group_id "; } - $sql .= " FROM ".TB_PREF."debtor_trans trans LEFT JOIN ".TB_PREF."comments com ON trans.type=com.type AND trans.trans_no=com.id + $sql .= " FROM ".TB_PREF."debtor_trans trans + LEFT JOIN ".TB_PREF."comments com ON trans.type=com.type AND trans.trans_no=com.id LEFT JOIN ".TB_PREF."shippers ON ".TB_PREF."shippers.shipper_id=trans.ship_via, ".TB_PREF."debtors_master cust"; - if ($trans_type == ST_CUSTPAYMENT) { + if ($trans_type == ST_CUSTPAYMENT || $trans_type == ST_BANKDEPOSIT) { // it's a payment so also get the bank account $sql .= ", ".TB_PREF."bank_trans, ".TB_PREF."bank_accounts"; } @@ -160,7 +166,7 @@ function get_customer_trans($trans_id, $trans_type) AND trans.type=".db_escape($trans_type)." AND trans.debtor_no=cust.debtor_no"; - if ($trans_type == ST_CUSTPAYMENT) { + if ($trans_type == ST_CUSTPAYMENT || $trans_type == ST_BANKDEPOSIT) { // it's a payment so also get the bank account $sql .= " AND ".TB_PREF."bank_trans.trans_no =".db_escape($trans_id)." AND ".TB_PREF."bank_trans.type=$trans_type @@ -178,12 +184,15 @@ function get_customer_trans($trans_id, $trans_type) if (db_num_rows($result) == 0) { // can't return nothing + if($go_debug) + display_backtrace(); display_db_error("no debtor trans found for given params", $sql, true); exit; } - if (db_num_rows($result) > 1) { // can't return multiple + if($go_debug) + display_backtrace(); display_db_error("duplicate debtor transactions found for given params", $sql, true); exit; } @@ -352,7 +361,7 @@ function get_sql_for_customer_inquiry() return $sql; } -function get_sql_for_sales_deliveries_view($selected_customer, $selected_stock_item=null) +function get_sql_for_sales_deliveries_view($selected_customer, $selected_stock_item=null, $customer_id=ALL_TEXT) { $sql = "SELECT trans.trans_no, debtor.name, @@ -406,6 +415,9 @@ function get_sql_for_sales_deliveries_view($selected_customer, $selected_stock_i if (isset($_POST['StockLocation']) && $_POST['StockLocation'] != ALL_TEXT) $sql .= " AND sorder.from_stk_loc = ".db_escape($_POST['StockLocation'])." "; + + if ($customer_id != ALL_TEXT) + $sql .= " AND sorder.debtor_no = ".db_escape($customer_id) . " AND trans.debtor_no = ".db_escape($customer_id); $sql .= " GROUP BY trans.trans_no ";