X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep202.php;h=4f13042e9c21b09026a306a844431a74f8121690;hb=af03975abbd624d17cc6c4f61b71808a0a5c82ea;hp=e35e7ba01b8cb3c2947d5314680b45059c3d50ca;hpb=2ce280fb8619210f21485b723ec4cb2b306fcce9;p=fa-stable.git diff --git a/reporting/rep202.php b/reporting/rep202.php index e35e7ba0..4f13042e 100644 --- a/reporting/rep202.php +++ b/reporting/rep202.php @@ -158,7 +158,7 @@ function print_aged_supplier_analysis() $pastdue1 = $PastDueDays1 + 1 . "-" . $PastDueDays2 . " " . _('Days'); $pastdue2 = _('Over') . " " . $PastDueDays2 . " " . _('Days'); - $sql = "SELECT supplier_id, supp_name AS name, curr_code FROM ".TB_PREF."suppliers"; + $sql = "SELECT supplier_id, supp_name AS name, curr_code, inactive FROM ".TB_PREF."suppliers"; if ($fromsupp != ALL_TEXT) $sql .= " WHERE supplier_id=".db_escape($fromsupp); $sql .= " ORDER BY supp_name"; @@ -188,7 +188,7 @@ function print_aged_supplier_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] += ($supprec["Balance"] - $supprec["Due"]);