X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Fincludes%2Freports_classes.inc;h=647209f8224a99e46b92fa4c1a19964f99c4ecfb;hb=ae3b2bb8305be80dfb1e4e89bd10a0395c7db5ba;hp=b7cccecc4590417a48ef8029972d3078187825c1;hpb=772bf0b1831da4239fd643c3608a57f9e59d345c;p=fa-stable.git diff --git a/reporting/includes/reports_classes.inc b/reporting/includes/reports_classes.inc index b7cccecc..647209f8 100644 --- a/reporting/includes/reports_classes.inc +++ b/reporting/includes/reports_classes.inc @@ -18,6 +18,7 @@ define('RC_MANUFACTURE', 3); define('RC_DIMENSIONS', 4); define('RC_BANKING', 5); define('RC_GL', 6); +define('RC_FIXEDASSETS', 7); class BoxReports { @@ -219,7 +220,7 @@ class BoxReports $calc_image = (file_exists("$path_to_root/themes/".user_theme()."/images/cal.gif")) ? "$path_to_root/themes/".user_theme()."/images/cal.gif" : "$path_to_root/themes/default/images/cal.gif"; $st .= "" - . " "._(\n"; + . " "._(\n"; } return $st; break; @@ -264,7 +265,7 @@ class BoxReports case 'TEXTBOX': $value = (isset($_POST[$name]) ? $_POST[$name] : ""); - return ""; + return ""; case 'ACCOUNTS': // not used return gl_account_types_list($name, null, _("No Account Group Filter"), true); @@ -416,10 +417,15 @@ class BoxReports case 'LOCATIONS': return locations_list($name, null, _("No Location Filter")); + case 'FLOCATIONS': + return locations_list($name, null, _("No Location Filter"), false, true); case 'CATEGORIES': return stock_categories_list($name, null, _("No Category Filter")); - + case 'FCATEGORIES': + return stock_categories_list($name, null, _("No Category Filter"), false, true); + case 'FCLASS': + return fixed_asset_classes_list($name, null, _("No Class Filter"), false); case 'SALESTYPES': return sales_types_list($name);