X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Fincludes%2Freports_classes.inc;h=dd76d84de2cb71a260bbde7d21c7c37b73235cfe;hb=e685a94465fe8f26c8ff3789242b43c1c20054cf;hp=276d988ea8fe4db56f9ee603201eae31cd580452;hpb=8e393ccdb96b3d59f4afe138e2dd5325230b48d9;p=fa-stable.git diff --git a/reporting/includes/reports_classes.inc b/reporting/includes/reports_classes.inc index 276d988e..dd76d84d 100644 --- a/reporting/includes/reports_classes.inc +++ b/reporting/includes/reports_classes.inc @@ -100,7 +100,7 @@ class BoxReports . "
\n"; $st_params .= submit('Rep'.$report->id, _("Display: ") . access_string($report->name, true), - false, '', $SysPrefs->pdf_debug ? false : 'default process') . hidden('REP_ID', $report->id, false).'

'; + false, '', $SysPrefs->pdf_debug ? false : 'default popup') . hidden('REP_ID', $report->id, false).'

'; $st_params .= $this->getOptions($report->get_controls(), $report->id); $st_params .= "\n" ."\n
\n"; @@ -276,9 +276,13 @@ class BoxReports case 'GL_ACCOUNTS': return gl_all_accounts_list($name); + case 'BANK_ACCOUNTS_NO_FILTER': case 'BANK_ACCOUNTS': - return bank_accounts_list($name); - + if ($type == 'BANK_ACCOUNTS_NO_FILTER') + return bank_accounts_list($name, null, false, _("All")); + else + return bank_accounts_list($name); + case 'DIMENSION': return dimensions_list($name, null, false, ' ', false, true, 0);