X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Freports_main.php;h=84bfb44fe210ad394abd55860ea0f2da51b1c163;hb=98bf5bfc72317d45e356e3909a8cd1fdf5181176;hp=7536d2b2b88e7cbc0ae739c38e5e7281c48dcc8f;hpb=902f1015d874c33bd7946b17de2ad80b4f2144b6;p=fa-stable.git diff --git a/reporting/reports_main.php b/reporting/reports_main.php index 7536d2b2..84bfb44f 100644 --- a/reporting/reports_main.php +++ b/reporting/reports_main.php @@ -1,12 +1,12 @@ . ***********************************************************************/ $path_to_root=".."; @@ -18,339 +18,520 @@ include_once($path_to_root . "/includes/data_checks.inc"); include_once($path_to_root . "/includes/ui.inc"); include_once($path_to_root . "/reporting/includes/reports_classes.inc"); $js = ""; -if ($use_date_picker) +if ($SysPrefs->use_popup_windows && $SysPrefs->use_popup_search) + $js .= get_js_open_window(900, 500); +if (user_use_date_picker()) $js .= get_js_date_picker(); -page(_("Reports and Analysis"), false, false, "", $js); + +add_js_file('reports.js'); + +page(_($help_context = "Reports and Analysis"), false, false, "", $js); $reports = new BoxReports; $dim = get_company_pref('use_dimension'); -$reports->addReportClass(_('Customer')); -$reports->addReport(_('Customer'),101,_('Customer &Balances'), - array( new ReportParam(_('Start Date'),'DATEBEGIN'), - new ReportParam(_('End Date'),'DATEENDM'), - new ReportParam(_('Customer'),'CUSTOMERS_NO_FILTER'), - new ReportParam(_('Currency Filter'),'CURRENCY'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); -$reports->addReport(_('Customer'),102,_('&Aged Customer Analysis'), - array( new ReportParam(_('End Date'),'DATE'), - new ReportParam(_('Customer'),'CUSTOMERS_NO_FILTER'), - new ReportParam(_('Currency Filter'),'CURRENCY'), - new ReportParam(_('Summary Only'),'YES_NO'), - new ReportParam(_('Graphics'),'GRAPHIC'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); -$reports->addReport(_('Customer'),103,_('Customer &Detail Listing'), - array( new ReportParam(_('Activity Since'),'DATEBEGIN'), - new ReportParam(_('Sales Areas'),'AREAS'), - new ReportParam(_('Sales Folk'),'SALESMEN'), - new ReportParam(_('Activity Greater Than'),'TEXT'), - new ReportParam(_('Activity Less Than'),'TEXT'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); -$reports->addReport(_('Customer'),104,_('&Price Listing'), - array( new ReportParam(_('Currency Filter'),'CURRENCY'), - new ReportParam(_('Inventory Category'),'CATEGORIES'), - new ReportParam(_('Sales Types'),'SALESTYPES'), - new ReportParam(_('Show Pictures'),'YES_NO'), - new ReportParam(_('Show GP %'),'YES_NO'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); -$reports->addReport(_('Customer'),105,_('&Order Status Listing'), - array( new ReportParam(_('Start Date'),'DATEBEGINM'), - new ReportParam(_('End Date'),'DATEENDM'), - new ReportParam(_('Inventory Category'),'CATEGORIES'), - new ReportParam(_('Stock Location'),'LOCATIONS'), - new ReportParam(_('Back Orders Only'),'YES_NO'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); -$reports->addReport(_('Customer'),106,_('&Salesman Listing'), - array( new ReportParam(_('Start Date'),'DATEBEGINM'), - new ReportParam(_('End Date'),'DATEENDM'), - new ReportParam(_('Summary Only'),'YES_NO'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); -$reports->addReport(_('Customer'),107,_('Print &Invoices/Credit Notes'), - array( new ReportParam(_('From'),'INVOICE'), - new ReportParam(_('To'),'INVOICE'), - new ReportParam(_('Currency Filter'),'CURRENCY'), - new ReportParam(_('Bank Account'),'BANK_ACCOUNTS'), - new ReportParam(_('email Customers'),'YES_NO'), - new ReportParam(_('Payment Link'),'PAYMENT_LINK'), - new ReportParam(_('Comments'),'TEXTBOX'))); -$reports->addReport(_('Customer'),110,_('Print &Deliveries'), - array( new ReportParam(_('From'),'DELIVERY'), - new ReportParam(_('To'),'DELIVERY'), - new ReportParam(_('email Customers'),'YES_NO'), - new ReportParam(_('Comments'),'TEXTBOX'))); -$reports->addReport(_('Customer'),108,_('Print &Statements'), - array( new ReportParam(_('Customer'),'CUSTOMERS_NO_FILTER'), - new ReportParam(_('Currency Filter'),'CURRENCY'), - new ReportParam(_('Bank Account'),'BANK_ACCOUNTS'), - new ReportParam(_('Email Customers'),'YES_NO'), - new ReportParam(_('Comments'),'TEXTBOX'))); -$reports->addReport(_('Customer'),109,_('&Print Sales Orders'), - array( new ReportParam(_('From'),'ORDERS'), - new ReportParam(_('To'),'ORDERS'), - new ReportParam(_('Currency Filter'),'CURRENCY'), - new ReportParam(_('Bank Account'),'BANK_ACCOUNTS'), - new ReportParam(_('Email Customers'),'YES_NO'), - new ReportParam(_('Print as Quote'),'YES_NO'), - new ReportParam(_('Comments'),'TEXTBOX'))); +$reports->addReportClass(_('Customer'), RC_CUSTOMER); +$reports->addReport(RC_CUSTOMER, 101, _('Customer &Balances'), + array( _('Start Date') => 'DATEBEGIN', + _('End Date') => 'DATEENDM', + _('Customer') => 'CUSTOMERS_NO_FILTER', + _('Show Balance') => 'YES_NO', + _('Currency Filter') => 'CURRENCY', + _('Suppress Zeros') => 'YES_NO', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +$reports->addReport(RC_CUSTOMER, 102, _('&Aged Customer Analysis'), + array( _('End Date') => 'DATE', + _('Customer') => 'CUSTOMERS_NO_FILTER', + _('Currency Filter') => 'CURRENCY', + _('Show Also Allocated') => 'YES_NO', + _('Summary Only') => 'YES_NO', + _('Suppress Zeros') => 'YES_NO', + _('Graphics') => 'GRAPHIC', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +$reports->addReport(RC_CUSTOMER, 103, _('Customer &Detail Listing'), + array( _('Activity Since') => 'DATEBEGIN', + _('Sales Areas') => 'AREAS', + _('Sales Folk') => 'SALESMEN', + _('Activity Greater Than') => 'TEXT', + _('Activity Less Than') => 'TEXT', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +$reports->addReport(RC_CUSTOMER, 114, _('Sales &Summary Report'), + array( _('Start Date') => 'DATEBEGINTAX', + _('End Date') => 'DATEENDTAX', + _('Tax Id Only') => 'YES_NO', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +$reports->addReport(RC_CUSTOMER, 104, _('&Price Listing'), + array( _('Currency Filter') => 'CURRENCY', + _('Inventory Category') => 'CATEGORIES', + _('Sales Types') => 'SALESTYPES', + _('Show Pictures') => 'YES_NO', + _('Show GP %') => 'YES_NO', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +$reports->addReport(RC_CUSTOMER, 105, _('&Order Status Listing'), + array( _('Start Date') => 'DATEBEGINM', + _('End Date') => 'DATEENDM', + _('Inventory Category') => 'CATEGORIES', + _('Stock Location') => 'LOCATIONS', + _('Back Orders Only') => 'YES_NO', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +$reports->addReport(RC_CUSTOMER, 106, _('&Salesman Listing'), + array( _('Start Date') => 'DATEBEGINM', + _('End Date') => 'DATEENDM', + _('Summary Only') => 'YES_NO', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +$reports->addReport(RC_CUSTOMER, 107, _('Print &Invoices'), + array( _('From') => 'INVOICE', + _('To') => 'INVOICE', + _('Currency Filter') => 'CURRENCY', + _('email Customers') => 'YES_NO', + _('Payment Link') => 'PAYMENT_LINK', + _('Comments') => 'TEXTBOX', + _('Customer') => 'CUSTOMERS_NO_FILTER', + _('Orientation') => 'ORIENTATION' +)); +$reports->addReport(RC_CUSTOMER, 113, _('Print &Credit Notes'), + array( _('From') => 'CREDIT', + _('To') => 'CREDIT', + _('Currency Filter') => 'CURRENCY', + _('email Customers') => 'YES_NO', + _('Payment Link') => 'PAYMENT_LINK', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION')); +$reports->addReport(RC_CUSTOMER, 110, _('Print &Deliveries'), + array( _('From') => 'DELIVERY', + _('To') => 'DELIVERY', + _('email Customers') => 'YES_NO', + _('Print as Packing Slip') => 'YES_NO', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION')); +$reports->addReport(RC_CUSTOMER, 108, _('Print &Statements'), + array( _('Customer') => 'CUSTOMERS_NO_FILTER', + _('Currency Filter') => 'CURRENCY', + _('Show Also Allocated') => 'YES_NO', + _('Email Customers') => 'YES_NO', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION')); +$reports->addReport(RC_CUSTOMER, 109, _('&Print Sales Orders'), + array( _('From') => 'ORDERS', + _('To') => 'ORDERS', + _('Currency Filter') => 'CURRENCY', + _('Email Customers') => 'YES_NO', + _('Print as Quote') => 'YES_NO', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION')); +$reports->addReport(RC_CUSTOMER, 111, _('&Print Sales Quotations'), + array( _('From') => 'QUOTATIONS', + _('To') => 'QUOTATIONS', + _('Currency Filter') => 'CURRENCY', + _('Email Customers') => 'YES_NO', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION')); +$reports->addReport(RC_CUSTOMER, 112, _('Print Receipts'), + array( _('From') => 'RECEIPT', + _('To') => 'RECEIPT', + _('Currency Filter') => 'CURRENCY', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION')); -$reports->addReportClass(_('Supplier')); -$reports->addReport(_('Supplier'),201,_('Supplier &Balances'), - array( new ReportParam(_('Start Date'),'DATEBEGIN'), - new ReportParam(_('End Date'),'DATEENDM'), - new ReportParam(_('Supplier'),'SUPPLIERS_NO_FILTER'), - new ReportParam(_('Currency Filter'),'CURRENCY'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); -$reports->addReport(_('Supplier'),202,_('&Aged Supplier Analyses'), - array( new ReportParam(_('End Date'),'DATE'), - new ReportParam(_('Supplier'),'SUPPLIERS_NO_FILTER'), - new ReportParam(_('Currency Filter'),'CURRENCY'), - new ReportParam(_('Summary Only'),'YES_NO'), - new ReportParam(_('Graphics'),'GRAPHIC'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); -$reports->addReport(_('Supplier'),203,_('&Payment Report'), - array( new ReportParam(_('End Date'),'DATE'), - new ReportParam(_('Supplier'),'SUPPLIERS_NO_FILTER'), - new ReportParam(_('Currency Filter'),'CURRENCY'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); -$reports->addReport(_('Supplier'),204,_('Outstanding &GRNs Report'), - array( new ReportParam(_('Supplier'),'SUPPLIERS_NO_FILTER'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); -$reports->addReport(_('Supplier'),209,_('Print Purchase &Orders'), - array( new ReportParam(_('From'),'PO'), - new ReportParam(_('To'),'PO'), - new ReportParam(_('Currency Filter'),'CURRENCY'), - new ReportParam(_('Bank Account'),'BANK_ACCOUNTS'), - new ReportParam(_('Email Customers'),'YES_NO'), - new ReportParam(_('Comments'),'TEXTBOX'))); +$reports->addReportClass(_('Supplier'), RC_SUPPLIER); +$reports->addReport(RC_SUPPLIER, 201, _('Supplier &Balances'), + array( _('Start Date') => 'DATEBEGIN', + _('End Date') => 'DATEENDM', + _('Supplier') => 'SUPPLIERS_NO_FILTER', + _('Show Balance') => 'YES_NO', + _('Currency Filter') => 'CURRENCY', + _('Suppress Zeros') => 'YES_NO', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +$reports->addReport(RC_SUPPLIER, 202, _('&Aged Supplier Analyses'), + array( _('End Date') => 'DATE', + _('Supplier') => 'SUPPLIERS_NO_FILTER', + _('Currency Filter') => 'CURRENCY', + _('Show Also Allocated') => 'YES_NO', + _('Summary Only') => 'YES_NO', + _('Suppress Zeros') => 'YES_NO', + _('Graphics') => 'GRAPHIC', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +$reports->addReport(RC_SUPPLIER, 203, _('&Payment Report'), + array( _('End Date') => 'DATE', + _('Supplier') => 'SUPPLIERS_NO_FILTER', + _('Currency Filter') => 'CURRENCY', + _('Suppress Zeros') => 'YES_NO', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +$reports->addReport(RC_SUPPLIER, 204, _('Outstanding &GRNs Report'), + array( _('Supplier') => 'SUPPLIERS_NO_FILTER', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +$reports->addReport(RC_SUPPLIER, 205, _('Supplier &Detail Listing'), + array( _('Activity Since') => 'DATEBEGIN', + _('Activity Greater Than') => 'TEXT', + _('Activity Less Than') => 'TEXT', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +$reports->addReport(RC_SUPPLIER, 209, _('Print Purchase &Orders'), + array( _('From') => 'PO', + _('To') => 'PO', + _('Currency Filter') => 'CURRENCY', + _('Email Suppliers') => 'YES_NO', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION')); +$reports->addReport(RC_SUPPLIER, 210, _('Print Remi&ttances'), + array( _('From') => 'REMITTANCE', + _('To') => 'REMITTANCE', + _('Currency Filter') => 'CURRENCY', + _('Email Suppliers') => 'YES_NO', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION')); -$reports->addReportClass(_('Inventory')); -$reports->addReport(_('Inventory'),301,_('Inventory &Valuation Report'), - array( new ReportParam(_('Inventory Category'),'CATEGORIES'), - new ReportParam(_('Location'),'LOCATIONS'), - new ReportParam(_('Detailed Report'),'YES_NO'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); -$reports->addReport(_('Inventory'),302,_('Inventory &Planning Report'), - array( new ReportParam(_('Inventory Category'),'CATEGORIES'), - new ReportParam(_('Location'),'LOCATIONS'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); -$reports->addReport(_('Inventory'),303,_('Stock &Check Sheets'), - array( new ReportParam(_('Inventory Category'),'CATEGORIES'), - new ReportParam(_('Location'),'LOCATIONS'), - new ReportParam(_('Show Pictures'),'YES_NO'), - new ReportParam(_('Inventory Column'),'YES_NO'), - new ReportParam(_('Show Shortage'),'YES_NO'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); -$reports->addReport(_('Inventory'),304,_('Inventory &Sales Report'), - array( new ReportParam(_('Start Date'),'DATEBEGINM'), - new ReportParam(_('End Date'),'DATEENDM'), - new ReportParam(_('Inventory Category'),'CATEGORIES'), - new ReportParam(_('Location'),'LOCATIONS'), - new ReportParam(_('Customer'),'CUSTOMERS_NO_FILTER'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); -$reports->addReport(_('Inventory'),305,_('&GRN Valuation Report'), - array( new ReportParam(_('Start Date'),'DATEBEGINM'), - new ReportParam(_('End Date'),'DATEENDM'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); - -$reports->addReportClass(_('Manufacturing')); -$reports->addReport(_('Manufacturing'),401,_('&Bill of Material Listing'), - array( new ReportParam(_('From component'),'ITEMS'), - new ReportParam(_('To component'),'ITEMS'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); -$reports->addReport(_('Manufacturing'),409,_('Print &Work Orders'), - array( new ReportParam(_('From'),'WORKORDER'), - new ReportParam(_('To'),'WORKORDER'), - new ReportParam(_('Email Locations'),'YES_NO'), - new ReportParam(_('Comments'),'TEXTBOX'))); -$reports->addReportClass(_('Dimensions')); +$reports->addReportClass(_('Inventory'), RC_INVENTORY); +$reports->addReport(RC_INVENTORY, 301, _('Inventory &Valuation Report'), + array( _('End Date') => 'DATE', + _('Inventory Category') => 'CATEGORIES', + _('Location') => 'LOCATIONS', + _('Summary Only') => 'YES_NO', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +$reports->addReport(RC_INVENTORY, 302, _('Inventory &Planning Report'), + array( _('Inventory Category') => 'CATEGORIES', + _('Location') => 'LOCATIONS', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +$reports->addReport(RC_INVENTORY, 303, _('Stock &Check Sheets'), + array( _('Inventory Category') => 'CATEGORIES', + _('Location') => 'LOCATIONS', + _('Show Pictures') => 'YES_NO', + _('Inventory Column') => 'YES_NO', + _('Show Shortage') => 'YES_NO', + _('Suppress Zeros') => 'YES_NO', + _('Item Like') => 'TEXT', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +$reports->addReport(RC_INVENTORY, 304, _('Inventory &Sales Report'), + array( _('Start Date') => 'DATEBEGINM', + _('End Date') => 'DATEENDM', + _('Inventory Category') => 'CATEGORIES', + _('Location') => 'LOCATIONS', + _('Customer') => 'CUSTOMERS_NO_FILTER', + _('Show Service Items') => 'YES_NO', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +$reports->addReport(RC_INVENTORY, 305, _('&GRN Valuation Report'), + array( _('Start Date') => 'DATEBEGINM', + _('End Date') => 'DATEENDM', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +$reports->addReport(RC_INVENTORY, 306, _('Inventory P&urchasing Report'), + array( _('Start Date') => 'DATEBEGINM', + _('End Date') => 'DATEENDM', + _('Inventory Category') => 'CATEGORIES', + _('Location') => 'LOCATIONS', + _('Supplier') => 'SUPPLIERS_NO_FILTER', + _('Items') => 'ITEMS_P', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +$reports->addReport(RC_INVENTORY, 307, _('Inventory &Movement Report'), + array( _('Start Date') => 'DATEBEGINM', + _('End Date') => 'DATEENDM', + _('Inventory Category') => 'CATEGORIES', + _('Location') => 'LOCATIONS', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +$reports->addReport(RC_INVENTORY, 308, _('C&osted Inventory Movement Report'), + array( _('Start Date') => 'DATEBEGINM', + _('End Date') => 'DATEENDM', + _('Inventory Category') => 'CATEGORIES', + _('Location') => 'LOCATIONS', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +$reports->addReport(RC_INVENTORY, 309,_('Item &Sales Summary Report'), + array( _('Start Date') => 'DATEBEGINM', + _('End Date') => 'DATEENDM', + _('Inventory Category') => 'CATEGORIES', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +$reports->addReport(RC_INVENTORY, 310, _('Inventory Purchasing - &Transaction Based'), + array( _('Start Date') => 'DATEBEGINM', + _('End Date') => 'DATEENDM', + _('Inventory Category') => 'CATEGORIES', + _('Location') => 'LOCATIONS', + _('Supplier') => 'SUPPLIERS_NO_FILTER', + _('Items') => 'ITEMS_P', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +if (get_company_pref('use_manufacturing')) +{ + $reports->addReportClass(_('Manufacturing'), RC_MANUFACTURE); + $reports->addReport(RC_MANUFACTURE, 401, _('&Bill of Material Listing'), + array( _('From product') => 'ITEMS', + _('To product') => 'ITEMS', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); + $reports->addReport(RC_MANUFACTURE, 402, _('Work Order &Listing'), + array( _('Items') => 'ITEMS_ALL', + _('Location') => 'LOCATIONS', + _('Outstanding Only') => 'YES_NO', + _('Show GL Rows') => 'YES_NO', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); + $reports->addReport(RC_MANUFACTURE, 409, _('Print &Work Orders'), + array( _('From') => 'WORKORDER', + _('To') => 'WORKORDER', + _('Email Locations') => 'YES_NO', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION')); +} +if (get_company_pref('use_fixed_assets')) +{ + $reports->addReportClass(_('Fixed Assets'), RC_FIXEDASSETS); + $reports->addReport(RC_FIXEDASSETS, 451, _('&Fixed Assets Valuation'), + array( _('End Date') => 'DATE', + _('Fixed Assets Class') => 'FCLASS', + _('Fixed Assets Location') => 'FLOCATIONS', + _('Summary Only') => 'YES_NO', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +} +$reports->addReportClass(_('Dimensions'), RC_DIMENSIONS); if ($dim > 0) { - $reports->addReport(_('Dimensions'),501,_('Dimension &Summary'), - array( new ReportParam(_('From Dimension'),'DIMENSION'), - new ReportParam(_('To Dimension'),'DIMENSION'), - new ReportParam(_('Show Balance'),'YES_NO'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); - //$reports->addReport(_('Dimensions'),502,_('Dimension Details'), - //array( new ReportParam(_('Dimension'),'DIMENSIONS'), - // new ReportParam(_('Comments'),'TEXTBOX'))); + $reports->addReport(RC_DIMENSIONS, 501, _('Dimension &Summary'), + array( _('From Dimension') => 'DIMENSION', + _('To Dimension') => 'DIMENSION', + _('Show Balance') => 'YES_NO', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); } -$reports->addReportClass(_('Banking')); - $reports->addReport(_('Banking'),601,_('Bank &Statement'), - array( new ReportParam(_('Bank Accounts'),'BANK_ACCOUNTS'), - new ReportParam(_('Start Date'),'DATEBEGINM'), - new ReportParam(_('End Date'),'DATEENDM'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); +$reports->addReportClass(_('Banking'), RC_BANKING); + $reports->addReport(RC_BANKING, 601, _('Bank &Statement'), + array( _('Bank Accounts') => 'BANK_ACCOUNTS', + _('Start Date') => 'DATEBEGINM', + _('End Date') => 'DATEENDM', + _('Zero values') => 'YES_NO', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); + $reports->addReport(RC_BANKING, 602, _('Bank Statement w/ &Reconcile'), + array( _('Bank Accounts') => 'BANK_ACCOUNTS', + _('Start Date') => 'DATEBEGINM', + _('End Date') => 'DATEENDM', + _('Comments') => 'TEXTBOX', + _('Destination') => 'DESTINATION')); + +$reports->addReportClass(_('General Ledger'), RC_GL); +$reports->addReport(RC_GL, 701, _('Chart of &Accounts'), + array( _('Show Balances') => 'YES_NO', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +$reports->addReport(RC_GL, 702, _('List of &Journal Entries'), + array( _('Start Date') => 'DATEBEGINM', + _('End Date') => 'DATEENDM', + _('Type') => 'SYS_TYPES', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); -$reports->addReportClass(_('General Ledger')); -$reports->addReport(_('General Ledger'),701,_('Chart of &Accounts'), - array( new ReportParam(_('Show Balances'),'YES_NO'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); -$reports->addReport(_('General Ledger'),702,_('List of &Journal Entries'), - array( new ReportParam(_('Start Date'),'DATEBEGINM'), - new ReportParam(_('End Date'),'DATEENDM'), - new ReportParam(_('Type'),'SYS_TYPES'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); -//$reports->addReport(_('General Ledger'),703,_('GL Account Group Summary'), -// array( new ReportParam(_('Comments'),'TEXTBOX'))); if ($dim == 2) { - $reports->addReport(_('General Ledger'),704,_('GL Account &Transactions'), - array( new ReportParam(_('Start Date'),'DATEBEGINM'), - new ReportParam(_('End Date'),'DATEENDM'), - new ReportParam(_('From Account'),'GL_ACCOUNTS'), - new ReportParam(_('To Account'),'GL_ACCOUNTS'), - new ReportParam(_('Dimension')." 1", 'DIMENSIONS1'), - new ReportParam(_('Dimension')." 2", 'DIMENSIONS2'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); - $reports->addReport(_('General Ledger'),705,_('Annual &Expense Breakdown'), - array( new ReportParam(_('Year'),'TRANS_YEARS'), - new ReportParam(_('Dimension')." 1", 'DIMENSIONS1'), - new ReportParam(_('Dimension')." 2", 'DIMENSIONS2'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); - $reports->addReport(_('General Ledger'),706,_('&Balance Sheet'), - array( new ReportParam(_('Start Date'),'DATEBEGIN'), - new ReportParam(_('End Date'),'DATEENDM'), - new ReportParam(_('Dimension')." 1", 'DIMENSIONS1'), - new ReportParam(_('Dimension')." 2", 'DIMENSIONS2'), - new ReportParam(_('Graphics'),'GRAPHIC'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); - $reports->addReport(_('General Ledger'),707,_('&Profit and Loss Statement'), - array( new ReportParam(_('Start Date'),'DATEBEGINM'), - new ReportParam(_('End Date'),'DATEENDM'), - new ReportParam(_('Compare to'),'COMPARE'), - new ReportParam(_('Dimension')." 1", 'DIMENSIONS1'), - new ReportParam(_('Dimension')." 2", 'DIMENSIONS2'), - new ReportParam(_('Graphics'),'GRAPHIC'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); - $reports->addReport(_('General Ledger'),708,_('Trial &Balance'), - array( new ReportParam(_('Start Date'),'DATEBEGINM'), - new ReportParam(_('End Date'),'DATEENDM'), - new ReportParam(_('Zero values'),'YES_NO'), - new ReportParam(_('Only balances'),'YES_NO'), - new ReportParam(_('Dimension')." 1", 'DIMENSIONS1'), - new ReportParam(_('Dimension')." 2", 'DIMENSIONS2'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); + $reports->addReport(RC_GL, 704, _('GL Account &Transactions'), + array( _('Start Date') => 'DATEBEGINM', + _('End Date') => 'DATEENDM', + _('From Account') => 'GL_ACCOUNTS', + _('To Account') => 'GL_ACCOUNTS', + _('Dimension')." 1" => 'DIMENSIONS1', + _('Dimension')." 2" => 'DIMENSIONS2', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); + $reports->addReport(RC_GL, 705, _('Annual &Expense Breakdown'), + array( _('Year') => 'TRANS_YEARS', + _('Dimension')." 1" => 'DIMENSIONS1', + _('Dimension')." 2" => 'DIMENSIONS2', + _('Account Tags') => 'ACCOUNTTAGS', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); + $reports->addReport(RC_GL, 706, _('&Balance Sheet'), + array( _('Start Date') => 'DATEBEGIN', + _('End Date') => 'DATEENDM', + _('Dimension')." 1" => 'DIMENSIONS1', + _('Dimension')." 2" => 'DIMENSIONS2', + _('Account Tags') => 'ACCOUNTTAGS', + _('Decimal values') => 'YES_NO', + _('Graphics') => 'GRAPHIC', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); + $reports->addReport(RC_GL, 707, _('&Profit and Loss Statement'), + array( _('Start Date') => 'DATEBEGINM', + _('End Date') => 'DATEENDM', + _('Compare to') => 'COMPARE', + _('Dimension')." 1" => 'DIMENSIONS1', + _('Dimension')." 2" => 'DIMENSIONS2', + _('Account Tags') => 'ACCOUNTTAGS', + _('Decimal values') => 'YES_NO', + _('Graphics') => 'GRAPHIC', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); + $reports->addReport(RC_GL, 708, _('Trial &Balance'), + array( _('Start Date') => 'DATEBEGINM', + _('End Date') => 'DATEENDM', + _('Zero values') => 'YES_NO', + _('Only balances') => 'YES_NO', + _('Dimension')." 1" => 'DIMENSIONS1', + _('Dimension')." 2" => 'DIMENSIONS2', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); } -else if ($dim == 1) +elseif ($dim == 1) { - $reports->addReport(_('General Ledger'),704,_('GL Account &Transactions'), - array( new ReportParam(_('Start Date'),'DATEBEGINM'), - new ReportParam(_('End Date'),'DATEENDM'), - new ReportParam(_('From Account'),'GL_ACCOUNTS'), - new ReportParam(_('To Account'),'GL_ACCOUNTS'), - new ReportParam(_('Dimension'), 'DIMENSIONS1'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); - $reports->addReport(_('General Ledger'),705,_('Annual &Expense Breakdown'), - array( new ReportParam(_('Year'),'TRANS_YEARS'), - new ReportParam(_('Dimension'), 'DIMENSIONS1'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); - $reports->addReport(_('General Ledger'),706,_('&Balance Sheet'), - array( new ReportParam(_('Start Date'),'DATEBEGIN'), - new ReportParam(_('End Date'),'DATEENDM'), - new ReportParam(_('Dimension'), 'DIMENSIONS1'), - new ReportParam(_('Graphics'),'GRAPHIC'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); - $reports->addReport(_('General Ledger'),707,_('&Profit and Loss Statement'), - array( new ReportParam(_('Start Date'),'DATEBEGINM'), - new ReportParam(_('End Date'),'DATEENDM'), - new ReportParam(_('Compare to'),'COMPARE'), - new ReportParam(_('Dimension'), 'DIMENSIONS1'), - new ReportParam(_('Graphics'),'GRAPHIC'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); - $reports->addReport(_('General Ledger'),708,_('Trial &Balance'), - array( new ReportParam(_('Start Date'),'DATEBEGINM'), - new ReportParam(_('End Date'),'DATEENDM'), - new ReportParam(_('Zero values'),'YES_NO'), - new ReportParam(_('Only balances'),'YES_NO'), - new ReportParam(_('Dimension'), 'DIMENSIONS1'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); + $reports->addReport(RC_GL, 704, _('GL Account &Transactions'), + array( _('Start Date') => 'DATEBEGINM', + _('End Date') => 'DATEENDM', + _('From Account') => 'GL_ACCOUNTS', + _('To Account') => 'GL_ACCOUNTS', + _('Dimension') => 'DIMENSIONS1', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); + $reports->addReport(RC_GL, 705, _('Annual &Expense Breakdown'), + array( _('Year') => 'TRANS_YEARS', + _('Dimension') => 'DIMENSIONS1', + _('Account Tags') => 'ACCOUNTTAGS', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); + $reports->addReport(RC_GL, 706, _('&Balance Sheet'), + array( _('Start Date') => 'DATEBEGIN', + _('End Date') => 'DATEENDM', + _('Dimension') => 'DIMENSIONS1', + _('Account Tags') => 'ACCOUNTTAGS', + _('Decimal values') => 'YES_NO', + _('Graphics') => 'GRAPHIC', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); + $reports->addReport(RC_GL, 707, _('&Profit and Loss Statement'), + array( _('Start Date') => 'DATEBEGINM', + _('End Date') => 'DATEENDM', + _('Compare to') => 'COMPARE', + _('Dimension') => 'DIMENSIONS1', + _('Account Tags') => 'ACCOUNTTAGS', + _('Decimal values') => 'YES_NO', + _('Graphics') => 'GRAPHIC', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); + $reports->addReport(RC_GL, 708, _('Trial &Balance'), + array( _('Start Date') => 'DATEBEGINM', + _('End Date') => 'DATEENDM', + _('Zero values') => 'YES_NO', + _('Only balances') => 'YES_NO', + _('Dimension') => 'DIMENSIONS1', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); } else { - $reports->addReport(_('General Ledger'),704,_('GL Account &Transactions'), - array( new ReportParam(_('Start Date'),'DATEBEGINM'), - new ReportParam(_('End Date'),'DATEENDM'), - new ReportParam(_('From Account'),'GL_ACCOUNTS'), - new ReportParam(_('To Account'),'GL_ACCOUNTS'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); - $reports->addReport(_('General Ledger'),705,_('Annual &Expense Breakdown'), - array( new ReportParam(_('Year'),'TRANS_YEARS'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); - $reports->addReport(_('General Ledger'),706,_('&Balance Sheet'), - array( new ReportParam(_('Start Date'),'DATEBEGIN'), - new ReportParam(_('End Date'),'DATEENDM'), - new ReportParam(_('Graphics'),'GRAPHIC'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); - $reports->addReport(_('General Ledger'),707,_('&Profit and Loss Statement'), - array( new ReportParam(_('Start Date'),'DATEBEGINM'), - new ReportParam(_('End Date'),'DATEENDM'), - new ReportParam(_('Compare to'),'COMPARE'), - new ReportParam(_('Graphics'),'GRAPHIC'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); - $reports->addReport(_('General Ledger'),708,_('Trial &Balance'), - array( new ReportParam(_('Start Date'),'DATEBEGINM'), - new ReportParam(_('End Date'),'DATEENDM'), - new ReportParam(_('Zero values'),'YES_NO'), - new ReportParam(_('Only balances'),'YES_NO'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); + $reports->addReport(RC_GL, 704, _('GL Account &Transactions'), + array( _('Start Date') => 'DATEBEGINM', + _('End Date') => 'DATEENDM', + _('From Account') => 'GL_ACCOUNTS', + _('To Account') => 'GL_ACCOUNTS', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); + $reports->addReport(RC_GL, 705, _('Annual &Expense Breakdown'), + array( _('Year') => 'TRANS_YEARS', + _('Account Tags') => 'ACCOUNTTAGS', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); + $reports->addReport(RC_GL, 706, _('&Balance Sheet'), + array( _('Start Date') => 'DATEBEGIN', + _('End Date') => 'DATEENDM', + _('Account Tags') => 'ACCOUNTTAGS', + _('Decimal values') => 'YES_NO', + _('Graphics') => 'GRAPHIC', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); + $reports->addReport(RC_GL, 707, _('&Profit and Loss Statement'), + array( _('Start Date') => 'DATEBEGINM', + _('End Date') => 'DATEENDM', + _('Compare to') => 'COMPARE', + _('Account Tags') => 'ACCOUNTTAGS', + _('Decimal values') => 'YES_NO', + _('Graphics') => 'GRAPHIC', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); + $reports->addReport(RC_GL, 708, _('Trial &Balance'), + array( _('Start Date') => 'DATEBEGINM', + _('End Date') => 'DATEENDM', + _('Zero values') => 'YES_NO', + _('Only balances') => 'YES_NO', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); } -$reports->addReport(_('General Ledger'),709,_('Ta&x Report'), - array( new ReportParam(_('Start Date'),'DATEBEGINTAX'), - new ReportParam(_('End Date'),'DATEENDTAX'), - new ReportParam(_('Summary Only'),'YES_NO'), - new ReportParam(_('Comments'),'TEXTBOX'))); -$reports->addReport(_('General Ledger'),710,_('Audit Trail'), - array( new ReportParam(_('Start Date'),'DATEBEGINM'), - new ReportParam(_('End Date'),'DATEENDM'), - new ReportParam(_('Type'),'SYS_TYPES_ALL'), - new ReportParam(_('User'),'USERS'), - new ReportParam(_('Comments'),'TEXTBOX'), - new ReportParam(_('Destination'),'DESTINATION'))); +$reports->addReport(RC_GL, 709, _('Ta&x Report'), + array( _('Start Date') => 'DATEBEGINTAX', + _('End Date') => 'DATEENDTAX', + _('Summary Only') => 'YES_NO', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); +$reports->addReport(RC_GL, 710, _('Audit Trail'), + array( _('Start Date') => 'DATEBEGINM', + _('End Date') => 'DATEENDM', + _('Type') => 'SYS_TYPES_ALL', + _('User') => 'USERS', + _('Comments') => 'TEXTBOX', + _('Orientation') => 'ORIENTATION', + _('Destination') => 'DESTINATION')); + +add_custom_reports($reports); -echo " -"; echo $reports->getDisplay(); end_page(); -?> \ No newline at end of file