X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fincludes%2Fdb%2Fcust_trans_db.inc;h=4f92807a468ea3a831f2e8cad3f7921ff8c17be2;hb=1e4cd218cd0b7e1093b4b63d6636f5360b3c7958;hp=bf28fe604863b255ec56bd2ab67e3237bc4e1f90;hpb=f75695448532371e64f0d3033b88389a62d41da3;p=fa-stable.git diff --git a/sales/includes/db/cust_trans_db.inc b/sales/includes/db/cust_trans_db.inc index bf28fe60..4f92807a 100644 --- a/sales/includes/db/cust_trans_db.inc +++ b/sales/includes/db/cust_trans_db.inc @@ -103,7 +103,7 @@ function write_customer_trans($trans_type, $trans_no, $debtor_no, $BranchNo, ov_freight=".db_escape($Freight).", ov_freight_tax=$FreightTax, rate=$rate, ship_via=".db_escape($ship_via).", alloc=$AllocAmt, dimension_id=".db_escape($dimension_id).", dimension2_id=".db_escape($dimension2_id).", - payment_terms=".db_escape($payment_terms)." + payment_terms=".db_escape($payment_terms, true)." WHERE trans_no=".db_escape($trans_no)." AND type=".db_escape($trans_type); } db_query($sql, "The debtor transaction record could not be inserted"); @@ -140,7 +140,9 @@ function get_customer_trans($trans_id, $trans_type) .TB_PREF."tax_groups.id AS tax_group_id "; } - $sql .= " FROM ".TB_PREF."debtor_trans trans, ".TB_PREF."debtors_master cust"; + $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) { // it's a payment so also get the bank account @@ -149,8 +151,7 @@ function get_customer_trans($trans_id, $trans_type) if ($trans_type == ST_SALESINVOICE || $trans_type == ST_CUSTCREDIT || $trans_type == ST_CUSTDELIVERY) { // it's an invoice so also get the shipper, salestypes - $sql .= ", ".TB_PREF."shippers, " - .TB_PREF."sales_types, " + $sql .= ", ".TB_PREF."sales_types, " .TB_PREF."cust_branch branch, " .TB_PREF."tax_groups "; } @@ -168,8 +169,7 @@ function get_customer_trans($trans_id, $trans_type) } if ($trans_type == ST_SALESINVOICE || $trans_type == ST_CUSTCREDIT || $trans_type == ST_CUSTDELIVERY) { // it's an invoice so also get the shipper - $sql .= " AND ".TB_PREF."shippers.shipper_id=trans.ship_via - AND ".TB_PREF."sales_types.id = trans.tpe + $sql .= " AND ".TB_PREF."sales_types.id = trans.tpe AND branch.branch_code = trans.branch_code AND branch.tax_group_id = ".TB_PREF."tax_groups.id "; } @@ -206,19 +206,6 @@ function exists_customer_trans($type, $type_no) //---------------------------------------------------------------------------------------- -function get_customer_trans_from_ref($type, $ref) -{ - $sql = "SELECT trans_no FROM ".TB_PREF."debtor_trans WHERE type=".db_escape($type)." - AND reference=".db_escape($ref); - - $result = db_query($sql, "Cannot retreive a debtor transaction"); - - $row = db_fetch_row($result); - return $row[0]; -} - -//---------------------------------------------------------------------------------------- - // retreives the related sales order for a given trans function get_customer_trans_order($type, $type_no)