X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep102.php;h=78d96c806a681c6ae230142dfdc6d6a5c6d56e18;hb=af03975abbd624d17cc6c4f61b71808a0a5c82ea;hp=76cbe1a5805d4538872fa32329f5bfb89619e09e;hpb=2ce280fb8619210f21485b723ec4cb2b306fcce9;p=fa-stable.git diff --git a/reporting/rep102.php b/reporting/rep102.php index 76cbe1a5..78d96c80 100644 --- a/reporting/rep102.php +++ b/reporting/rep102.php @@ -140,7 +140,7 @@ function print_aged_customer_analysis() $total = array(0,0,0,0, 0); - $sql = "SELECT debtor_no, name, curr_code FROM ".TB_PREF."debtors_master"; + $sql = "SELECT debtor_no, name, curr_code, inactive FROM ".TB_PREF."debtors_master"; if ($fromcust != ALL_TEXT) $sql .= " WHERE debtor_no=".db_escape($fromcust); $sql .= " ORDER BY name"; @@ -168,7 +168,7 @@ function print_aged_customer_analysis() if ($no_zeros && floatcmp(array_sum($str), 0) == 0) continue; $rep->fontSize += 2; - $rep->TextCol(0, 2, $myrow["name"]); + $rep->TextCol(0, 2, $myrow["name"].($myrow['inactive']==1 ? " ("._("Inactive").")" : "")); if ($convert) $rep->TextCol(2, 3, $myrow['curr_code']); $rep->fontSize -= 2; $total[0] += ($custrec["Balance"] - $custrec["Due"]);