X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep102.php;fp=reporting%2Frep102.php;h=95d267c352f02b8b0d73759922331b4fc57089a4;hb=f44132511cc91b83f20f91af0625d4b112b4c26e;hp=d108f1c1551222b318064060bdf84a85eadb3888;hpb=9a1b3abd5371ad7f6315db1d56f8356587444314;p=fa-stable.git diff --git a/reporting/rep102.php b/reporting/rep102.php index d108f1c1..95d267c3 100644 --- a/reporting/rep102.php +++ b/reporting/rep102.php @@ -35,39 +35,30 @@ function get_invoices($customer_id, $to, $all=true) // Revomed allocated from sql if ($all) - $value = "(".TB_PREF."debtor_trans.ov_amount + ".TB_PREF."debtor_trans.ov_gst + " - .TB_PREF."debtor_trans.ov_freight + ".TB_PREF."debtor_trans.ov_freight_tax + " - .TB_PREF."debtor_trans.ov_discount)"; - else - $value = "(".TB_PREF."debtor_trans.ov_amount + ".TB_PREF."debtor_trans.ov_gst + " - .TB_PREF."debtor_trans.ov_freight + ".TB_PREF."debtor_trans.ov_freight_tax + " - .TB_PREF."debtor_trans.ov_discount - ".TB_PREF."debtor_trans.alloc)"; + $value = "(ov_amount + ov_gst + ov_freight + ov_freight_tax + ov_discount)"; + else + $value = "(ov_amount + ov_gst + ov_freight + ov_freight_tax + ov_discount - alloc)"; $sign = "IF(`type` IN(".implode(',', array(ST_CUSTCREDIT,ST_CUSTPAYMENT,ST_BANKDEPOSIT,ST_JOURNAL))."), -1, 1)"; - $due = "IF (".TB_PREF."debtor_trans.type=".ST_SALESINVOICE.",".TB_PREF."debtor_trans.due_date,".TB_PREF."debtor_trans.tran_date)"; - $sql = "SELECT ".TB_PREF."debtor_trans.type, ".TB_PREF."debtor_trans.reference, - ".TB_PREF."debtor_trans.tran_date, + $due = "IF (type=".ST_SALESINVOICE.", due_date, tran_date)"; + + $sql = "SELECT type, reference, tran_date, $sign*$value as Balance, IF ((TO_DAYS('$todate') - TO_DAYS($due)) > 0,$sign*$value,0) AS Due, IF ((TO_DAYS('$todate') - TO_DAYS($due)) > $PastDueDays1,$sign*$value,0) AS Overdue1, IF ((TO_DAYS('$todate') - TO_DAYS($due)) > $PastDueDays2,$sign*$value,0) AS Overdue2 - FROM ".TB_PREF."debtors_master, - ".TB_PREF."debtor_trans + FROM ".TB_PREF."debtor_trans trans + + WHERE type <> ".ST_CUSTDELIVERY." + AND debtor_no = $customer_id + AND tran_date <= '$todate' + AND ABS(ov_amount + ov_gst + ov_freight + ov_freight_tax + ov_discount) > " . FLOAT_COMP_DELTA; - WHERE ".TB_PREF."debtor_trans.type <> ".ST_CUSTDELIVERY." - AND ".TB_PREF."debtors_master.debtor_no = ".TB_PREF."debtor_trans.debtor_no - AND ".TB_PREF."debtor_trans.debtor_no = $customer_id - AND ".TB_PREF."debtor_trans.tran_date <= '$todate' - AND ABS(".TB_PREF."debtor_trans.ov_amount + ".TB_PREF."debtor_trans.ov_gst + " - .TB_PREF."debtor_trans.ov_freight + ".TB_PREF."debtor_trans.ov_freight_tax + " - .TB_PREF."debtor_trans.ov_discount) > " . FLOAT_COMP_DELTA; if (!$all) - $sql .= "AND ABS(".TB_PREF."debtor_trans.ov_amount + ".TB_PREF."debtor_trans.ov_gst + " - .TB_PREF."debtor_trans.ov_freight + ".TB_PREF."debtor_trans.ov_freight_tax + " - .TB_PREF."debtor_trans.ov_discount - ".TB_PREF."debtor_trans.alloc) > " . FLOAT_COMP_DELTA; - $sql .= "ORDER BY ".TB_PREF."debtor_trans.tran_date"; + $sql .= "AND ABS(ov_amount + ov_gst + ov_freight + ov_freight_tax + ov_discount - alloc) > " . FLOAT_COMP_DELTA; + $sql .= "ORDER BY tran_date"; - return db_query($sql, "The customer details could not be retrieved"); + return db_query($sql, "The customer transactions could not be retrieved"); } //----------------------------------------------------------------------------------------------------