a37e633656ae3ce48eb3e6d2cef97699d3077f59
[fa-stable.git] / reporting / reports_main.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL,
5         as published by the Free Software Foundation, either version 3
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 $path_to_root="..";
13 $page_security = 'SA_OPEN';
14 include_once($path_to_root . "/includes/session.inc");
15
16 include_once($path_to_root . "/includes/date_functions.inc");
17 include_once($path_to_root . "/includes/data_checks.inc");
18 include_once($path_to_root . "/includes/ui.inc");
19 include_once($path_to_root . "/reporting/includes/reports_classes.inc");
20 $js = "";
21 if ($use_date_picker)
22         $js .= get_js_date_picker();
23
24 add_js_file('reports.js');
25
26 page(_($help_context = "Reports and Analysis"), false, false, "", $js);
27
28 $reports = new BoxReports;
29
30 $dim = get_company_pref('use_dimension');
31
32 $reports->addReportClass(_('Customer'), RC_CUSTOMER);
33 $reports->addReport(RC_CUSTOMER, 101, _('Customer &Balances'),
34         array(  _('Start Date') => 'DATEBEGIN',
35                         _('End Date') => 'DATEENDM',
36                         _('Customer') => 'CUSTOMERS_NO_FILTER',
37                         _('Show Balance') => 'YES_NO',
38                         _('Currency Filter') => 'CURRENCY',
39                         _('Suppress Zeros') => 'YES_NO',
40                         _('Comments') => 'TEXTBOX',
41                         _('Orientation') => 'ORIENTATION',
42                         _('Destination') => 'DESTINATION'));
43 $reports->addReport(RC_CUSTOMER, 102, _('&Aged Customer Analysis'),
44         array(  _('End Date') => 'DATE',
45                         _('Customer') => 'CUSTOMERS_NO_FILTER',
46                         _('Currency Filter') => 'CURRENCY',
47                         _('Show Also Allocated') => 'YES_NO',
48                         _('Summary Only') => 'YES_NO',
49                         _('Suppress Zeros') => 'YES_NO',
50                         _('Graphics') => 'GRAPHIC',
51                         _('Comments') => 'TEXTBOX',
52                         _('Orientation') => 'ORIENTATION',
53                         _('Destination') => 'DESTINATION'));
54 $reports->addReport(RC_CUSTOMER, 103, _('Customer &Detail Listing'),
55         array(  _('Activity Since') => 'DATEBEGIN',
56                         _('Sales Areas') => 'AREAS',
57                         _('Sales Folk') => 'SALESMEN',
58                         _('Activity Greater Than') => 'TEXT',
59                         _('Activity Less Than') => 'TEXT',
60                         _('Comments') => 'TEXTBOX',
61                         _('Orientation') => 'ORIENTATION',
62                         _('Destination') => 'DESTINATION'));
63 $reports->addReport(RC_CUSTOMER, 114, _('Sales &Summary Report'),
64         array(  _('Start Date') => 'DATEBEGINTAX',
65                         _('End Date') => 'DATEENDTAX',
66                         _('Tax Id Only') => 'YES_NO',
67                         _('Comments') => 'TEXTBOX',
68                         _('Orientation') => 'ORIENTATION',
69                         _('Destination') => 'DESTINATION'));
70 $reports->addReport(RC_CUSTOMER, 104, _('&Price Listing'),
71         array(  _('Currency Filter') => 'CURRENCY',
72                         _('Inventory Category') => 'CATEGORIES',
73                         _('Sales Types') => 'SALESTYPES',
74                         _('Show Pictures') => 'YES_NO',
75                         _('Show GP %') => 'YES_NO',
76                         _('Comments') => 'TEXTBOX',
77                         _('Orientation') => 'ORIENTATION',
78                         _('Destination') => 'DESTINATION'));
79 $reports->addReport(RC_CUSTOMER, 105, _('&Order Status Listing'),
80         array(  _('Start Date') => 'DATEBEGINM',
81                         _('End Date') => 'DATEENDM',
82                         _('Inventory Category') => 'CATEGORIES',
83                         _('Stock Location') => 'LOCATIONS',
84                         _('Back Orders Only') => 'YES_NO',
85                         _('Comments') => 'TEXTBOX',
86                         _('Orientation') => 'ORIENTATION',
87                         _('Destination') => 'DESTINATION'));
88 $reports->addReport(RC_CUSTOMER, 106, _('&Salesman Listing'),
89         array(  _('Start Date') => 'DATEBEGINM',
90                         _('End Date') => 'DATEENDM',
91                         _('Summary Only') => 'YES_NO',
92                         _('Comments') => 'TEXTBOX',
93                         _('Orientation') => 'ORIENTATION',
94                         _('Destination') => 'DESTINATION'));
95 $reports->addReport(RC_CUSTOMER, 107, _('Print &Invoices'),
96         array(  _('From') => 'INVOICE',
97                         _('To') => 'INVOICE',
98                         _('Currency Filter') => 'CURRENCY',
99                         _('email Customers') => 'YES_NO',
100                         _('Payment Link') => 'PAYMENT_LINK',
101                         _('Comments') => 'TEXTBOX',
102                         _('Customer') => 'CUSTOMERS_NO_FILTER',
103                         _('Orientation') => 'ORIENTATION'
104 ));
105 $reports->addReport(RC_CUSTOMER, 113, _('Print &Credit Notes'),
106         array(  _('From') => 'CREDIT',
107                         _('To') => 'CREDIT',
108                         _('Currency Filter') => 'CURRENCY',
109                         _('email Customers') => 'YES_NO',
110                         _('Payment Link') => 'PAYMENT_LINK',
111                         _('Comments') => 'TEXTBOX',
112                         _('Orientation') => 'ORIENTATION'));
113 $reports->addReport(RC_CUSTOMER, 110, _('Print &Deliveries'),
114         array(  _('From') => 'DELIVERY',
115                         _('To') => 'DELIVERY',
116                         _('email Customers') => 'YES_NO',
117                         _('Print as Packing Slip') => 'YES_NO',
118                         _('Comments') => 'TEXTBOX',
119                         _('Orientation') => 'ORIENTATION'));
120 $reports->addReport(RC_CUSTOMER, 108, _('Print &Statements'),
121         array(  _('Customer') => 'CUSTOMERS_NO_FILTER',
122                         _('Currency Filter') => 'CURRENCY',
123                         _('Show Also Allocated') => 'YES_NO',
124                         _('Email Customers') => 'YES_NO',
125                         _('Comments') => 'TEXTBOX',
126                         _('Orientation') => 'ORIENTATION'));
127 $reports->addReport(RC_CUSTOMER, 109, _('&Print Sales Orders'),
128         array(  _('From') => 'ORDERS',
129                         _('To') => 'ORDERS',
130                         _('Currency Filter') => 'CURRENCY',
131                         _('Email Customers') => 'YES_NO',
132                         _('Print as Quote') => 'YES_NO',
133                         _('Comments') => 'TEXTBOX',
134                         _('Orientation') => 'ORIENTATION'));
135 $reports->addReport(RC_CUSTOMER, 111, _('&Print Sales Quotations'),
136         array(  _('From') => 'QUOTATIONS',
137                         _('To') => 'QUOTATIONS',
138                         _('Currency Filter') => 'CURRENCY',
139                         _('Email Customers') => 'YES_NO',
140                         _('Comments') => 'TEXTBOX',
141                         _('Orientation') => 'ORIENTATION'));
142 $reports->addReport(RC_CUSTOMER, 112, _('Print Receipts'),
143         array(  _('From') => 'RECEIPT',
144                         _('To') => 'RECEIPT',
145                         _('Currency Filter') => 'CURRENCY',
146                         _('Comments') => 'TEXTBOX',
147                         _('Orientation') => 'ORIENTATION'));
148
149 $reports->addReportClass(_('Supplier'), RC_SUPPLIER);
150 $reports->addReport(RC_SUPPLIER, 201, _('Supplier &Balances'),
151         array(  _('Start Date') => 'DATEBEGIN',
152                         _('End Date') => 'DATEENDM',
153                         _('Supplier') => 'SUPPLIERS_NO_FILTER',
154                         _('Show Balance') => 'YES_NO',
155                         _('Currency Filter') => 'CURRENCY',
156                         _('Suppress Zeros') => 'YES_NO',
157                         _('Comments') => 'TEXTBOX',
158                         _('Orientation') => 'ORIENTATION',
159                         _('Destination') => 'DESTINATION'));
160 $reports->addReport(RC_SUPPLIER, 202, _('&Aged Supplier Analyses'),
161         array(  _('End Date') => 'DATE',
162                         _('Supplier') => 'SUPPLIERS_NO_FILTER',
163                         _('Currency Filter') => 'CURRENCY',
164                         _('Show Also Allocated') => 'YES_NO',
165                         _('Summary Only') => 'YES_NO',
166                         _('Suppress Zeros') => 'YES_NO',
167                         _('Graphics') => 'GRAPHIC',
168                         _('Comments') => 'TEXTBOX',
169                         _('Orientation') => 'ORIENTATION',
170                         _('Destination') => 'DESTINATION'));
171 $reports->addReport(RC_SUPPLIER, 203, _('&Payment Report'),
172         array(  _('End Date') => 'DATE',
173                         _('Supplier') => 'SUPPLIERS_NO_FILTER',
174                         _('Currency Filter') => 'CURRENCY',
175                         _('Suppress Zeros') => 'YES_NO',
176                         _('Comments') => 'TEXTBOX',
177                         _('Orientation') => 'ORIENTATION',
178                         _('Destination') => 'DESTINATION'));
179 $reports->addReport(RC_SUPPLIER, 204, _('Outstanding &GRNs Report'),
180         array(  _('Supplier') => 'SUPPLIERS_NO_FILTER',
181                         _('Comments') => 'TEXTBOX',
182                         _('Orientation') => 'ORIENTATION',
183                         _('Destination') => 'DESTINATION'));
184 $reports->addReport(RC_SUPPLIER, 205, _('Supplier &Detail Listing'),
185         array(  _('Activity Since') => 'DATEBEGIN',
186                         _('Activity Greater Than') => 'TEXT',
187                         _('Activity Less Than') => 'TEXT',
188                         _('Comments') => 'TEXTBOX',
189                         _('Orientation') => 'ORIENTATION',
190                         _('Destination') => 'DESTINATION'));
191 $reports->addReport(RC_SUPPLIER, 209, _('Print Purchase &Orders'),
192         array(  _('From') => 'PO',
193                         _('To') => 'PO',
194                         _('Currency Filter') => 'CURRENCY',
195                         _('Email Suppliers') => 'YES_NO',
196                         _('Comments') => 'TEXTBOX',
197                         _('Orientation') => 'ORIENTATION'));
198 $reports->addReport(RC_SUPPLIER, 210, _('Print Remittances'),
199         array(  _('From') => 'REMITTANCE',
200                         _('To') => 'REMITTANCE',
201                         _('Currency Filter') => 'CURRENCY',
202                         _('Email Suppliers') => 'YES_NO',
203                         _('Comments') => 'TEXTBOX',
204                         _('Orientation') => 'ORIENTATION'));
205
206 $reports->addReportClass(_('Inventory'), RC_INVENTORY);
207 $reports->addReport(RC_INVENTORY,  301, _('Inventory &Valuation Report'),
208         array(  _('End Date') => 'DATE',        
209                         _('Inventory Category') => 'CATEGORIES',
210                         _('Location') => 'LOCATIONS',
211                         _('Summary Only') => 'YES_NO',
212                         _('Comments') => 'TEXTBOX',
213                         _('Orientation') => 'ORIENTATION',
214                         _('Destination') => 'DESTINATION'));
215 $reports->addReport(RC_INVENTORY,  302, _('Inventory &Planning Report'),
216         array(  _('Inventory Category') => 'CATEGORIES',
217                         _('Location') => 'LOCATIONS',
218                         _('Comments') => 'TEXTBOX',
219                         _('Orientation') => 'ORIENTATION',
220                         _('Destination') => 'DESTINATION'));
221 $reports->addReport(RC_INVENTORY, 303, _('Stock &Check Sheets'),
222         array(  _('Inventory Category') => 'CATEGORIES',
223                         _('Location') => 'LOCATIONS',
224                         _('Show Pictures') => 'YES_NO',
225                         _('Inventory Column') => 'YES_NO',
226                         _('Show Shortage') => 'YES_NO',
227                         _('Suppress Zeros') => 'YES_NO',
228                         _('Item Like') => 'TEXT',
229                         _('Comments') => 'TEXTBOX',
230                         _('Orientation') => 'ORIENTATION',
231                         _('Destination') => 'DESTINATION'));
232 $reports->addReport(RC_INVENTORY, 304, _('Inventory &Sales Report'),
233         array(  _('Start Date') => 'DATEBEGINM',
234                         _('End Date') => 'DATEENDM',
235                         _('Inventory Category') => 'CATEGORIES',
236                         _('Location') => 'LOCATIONS',
237                         _('Customer') => 'CUSTOMERS_NO_FILTER',
238                         _('Comments') => 'TEXTBOX',
239                         _('Orientation') => 'ORIENTATION',
240                         _('Destination') => 'DESTINATION'));
241 $reports->addReport(RC_INVENTORY, 305, _('&GRN Valuation Report'),
242         array(  _('Start Date') => 'DATEBEGINM',
243                         _('End Date') => 'DATEENDM',
244                         _('Comments') => 'TEXTBOX',
245                         _('Orientation') => 'ORIENTATION',
246                         _('Destination') => 'DESTINATION'));
247 $reports->addReport(RC_INVENTORY, 306, _('Inventory P&urchasing Report'),
248         array(  _('Start Date') => 'DATEBEGINM',
249                         _('End Date') => 'DATEENDM',
250                         _('Inventory Category') => 'CATEGORIES',
251                         _('Location') => 'LOCATIONS',
252                         _('Supplier') => 'SUPPLIERS_NO_FILTER',
253                         _('Items') => 'ITEMS_P',
254                         _('Comments') => 'TEXTBOX',
255                         _('Orientation') => 'ORIENTATION',
256                         _('Destination') => 'DESTINATION'));
257 $reports->addReport(RC_INVENTORY, 307, _('Inventory &Movement Report'),
258         array(  _('Start Date') => 'DATEBEGINM',
259                         _('End Date') => 'DATEENDM',
260                         _('Inventory Category') => 'CATEGORIES',
261                         _('Location') => 'LOCATIONS',
262                         _('Comments') => 'TEXTBOX',
263                         _('Orientation') => 'ORIENTATION',
264                         _('Destination') => 'DESTINATION'));                            
265 $reports->addReport(RC_INVENTORY, 308, _('C&osted Inventory Movement Report'),
266         array(  _('Start Date') => 'DATEBEGINM',
267                         _('End Date') => 'DATEENDM',
268                         _('Inventory Category') => 'CATEGORIES',
269                         _('Location') => 'LOCATIONS',
270                         _('Comments') => 'TEXTBOX',
271                         _('Orientation') => 'ORIENTATION',
272                         _('Destination') => 'DESTINATION'));                            
273 $reports->addReport(RC_INVENTORY, 309,_('Item &Sales Summary Report'),
274         array(  _('Start Date') => 'DATEBEGINM',
275                         _('End Date') => 'DATEENDM',
276                         _('Inventory Category') => 'CATEGORIES',
277                         _('Comments') => 'TEXTBOX',
278                         _('Orientation') => 'ORIENTATION',
279                         _('Destination') => 'DESTINATION'));                            
280
281 $reports->addReportClass(_('Manufacturing'), RC_MANUFACTURE);
282 $reports->addReport(RC_MANUFACTURE, 401, _('&Bill of Material Listing'),
283         array(  _('From product') => 'ITEMS',
284                         _('To product') => 'ITEMS',
285                         _('Comments') => 'TEXTBOX',
286                         _('Orientation') => 'ORIENTATION',
287                         _('Destination') => 'DESTINATION'));
288 $reports->addReport(RC_MANUFACTURE, 402, _('Work Order &Listing'),
289         array(  _('Items') => 'ITEMS_ALL',
290                         _('Location') => 'LOCATIONS',
291                         _('Outstanding Only') => 'YES_NO',
292                         _('Comments') => 'TEXTBOX',
293                         _('Orientation') => 'ORIENTATION',
294                         _('Destination') => 'DESTINATION'));
295 $reports->addReport(RC_MANUFACTURE, 409, _('Print &Work Orders'),
296         array(  _('From') => 'WORKORDER',
297                         _('To') => 'WORKORDER',
298                         _('Email Locations') => 'YES_NO',
299                         _('Comments') => 'TEXTBOX',
300                         _('Orientation') => 'ORIENTATION'));
301 $reports->addReportClass(_('Dimensions'), RC_DIMENSIONS);
302 if ($dim > 0)
303 {
304         $reports->addReport(RC_DIMENSIONS, 501, _('Dimension &Summary'),
305         array(  _('From Dimension') => 'DIMENSION',
306                         _('To Dimension') => 'DIMENSION',
307                         _('Show Balance') => 'YES_NO',
308                         _('Comments') => 'TEXTBOX',
309                         _('Orientation') => 'ORIENTATION',
310                         _('Destination') => 'DESTINATION'));
311         //$reports->addReport(_('Dimensions'),502, _('Dimension Details'),
312         //array(        _('Dimension'),'DIMENSIONS'),
313         //              _('Comments'),'TEXTBOX')));
314 }
315 $reports->addReportClass(_('Banking'), RC_BANKING);
316         $reports->addReport(RC_BANKING,  601, _('Bank &Statement'),
317         array(  _('Bank Accounts') => 'BANK_ACCOUNTS',
318                         _('Start Date') => 'DATEBEGINM',
319                         _('End Date') => 'DATEENDM',
320                         _('Zero values') => 'YES_NO',
321                         _('Comments') => 'TEXTBOX',
322                         _('Orientation') => 'ORIENTATION',
323                         _('Destination') => 'DESTINATION'));
324
325 $reports->addReportClass(_('General Ledger'), RC_GL);
326 $reports->addReport(RC_GL, 701, _('Chart of &Accounts'),
327         array(  _('Show Balances') => 'YES_NO',
328                         _('Comments') => 'TEXTBOX',
329                         _('Orientation') => 'ORIENTATION',
330                         _('Destination') => 'DESTINATION'));
331 $reports->addReport(RC_GL, 702, _('List of &Journal Entries'),
332         array(  _('Start Date') => 'DATEBEGINM',
333                         _('End Date') => 'DATEENDM',
334                         _('Type') => 'SYS_TYPES',
335                         _('Comments') => 'TEXTBOX',
336                         _('Orientation') => 'ORIENTATION',
337                         _('Destination') => 'DESTINATION'));
338 //$reports->addReport(RC_GL, 703, _('GL Account Group Summary'),
339 //      array(  _('Comments'),'TEXTBOX')));
340
341 if ($dim == 2)
342 {
343         $reports->addReport(RC_GL, 704, _('GL Account &Transactions'),
344         array(  _('Start Date') => 'DATEBEGINM',
345                         _('End Date') => 'DATEENDM',
346                         _('From Account') => 'GL_ACCOUNTS',
347                         _('To Account') => 'GL_ACCOUNTS',
348                         _('Dimension')." 1" =>  'DIMENSIONS1',
349                         _('Dimension')." 2" =>  'DIMENSIONS2',
350                         _('Comments') => 'TEXTBOX',
351                         _('Orientation') => 'ORIENTATION',
352                         _('Destination') => 'DESTINATION'));
353         $reports->addReport(RC_GL, 705, _('Annual &Expense Breakdown'),
354         array(  _('Year') => 'TRANS_YEARS',
355                         _('Dimension')." 1" =>  'DIMENSIONS1',
356                         _('Dimension')." 2" =>  'DIMENSIONS2',
357                         _('Account Tags') =>  'ACCOUNTTAGS',
358                         _('Comments') => 'TEXTBOX',
359                         _('Orientation') => 'ORIENTATION',
360                         _('Destination') => 'DESTINATION'));
361         $reports->addReport(RC_GL, 706, _('&Balance Sheet'),
362         array(  _('Start Date') => 'DATEBEGIN',
363                         _('End Date') => 'DATEENDM',
364                         _('Dimension')." 1" => 'DIMENSIONS1',
365                         _('Dimension')." 2" => 'DIMENSIONS2',
366                         _('Account Tags') =>  'ACCOUNTTAGS',
367                         _('Decimal values') => 'YES_NO',
368                         _('Graphics') => 'GRAPHIC',
369                         _('Comments') => 'TEXTBOX',
370                         _('Orientation') => 'ORIENTATION',
371                         _('Destination') => 'DESTINATION'));
372         $reports->addReport(RC_GL, 707, _('&Profit and Loss Statement'),
373         array(  _('Start Date') => 'DATEBEGINM',
374                         _('End Date') => 'DATEENDM',
375                         _('Compare to') => 'COMPARE',
376                         _('Dimension')." 1" =>  'DIMENSIONS1',
377                         _('Dimension')." 2" =>  'DIMENSIONS2',
378                         _('Account Tags') =>  'ACCOUNTTAGS',
379                         _('Decimal values') => 'YES_NO',
380                         _('Graphics') => 'GRAPHIC',
381                         _('Comments') => 'TEXTBOX',
382                         _('Orientation') => 'ORIENTATION',
383                         _('Destination') => 'DESTINATION'));
384         $reports->addReport(RC_GL, 708, _('Trial &Balance'),
385         array(  _('Start Date') => 'DATEBEGINM',
386                         _('End Date') => 'DATEENDM',
387                         _('Zero values') => 'YES_NO',
388                         _('Only balances') => 'YES_NO',
389                         _('Dimension')." 1" =>  'DIMENSIONS1',
390                         _('Dimension')." 2" =>  'DIMENSIONS2',
391                         _('Comments') => 'TEXTBOX',
392                         _('Orientation') => 'ORIENTATION',
393                         _('Destination') => 'DESTINATION'));
394 }
395 else if ($dim == 1)
396 {
397         $reports->addReport(RC_GL, 704, _('GL Account &Transactions'),
398         array(  _('Start Date') => 'DATEBEGINM',
399                         _('End Date') => 'DATEENDM',
400                         _('From Account') => 'GL_ACCOUNTS',
401                         _('To Account') => 'GL_ACCOUNTS',
402                         _('Dimension') =>  'DIMENSIONS1',
403                         _('Comments') => 'TEXTBOX',
404                         _('Orientation') => 'ORIENTATION',
405                         _('Destination') => 'DESTINATION'));
406         $reports->addReport(RC_GL, 705, _('Annual &Expense Breakdown'),
407         array(  _('Year') => 'TRANS_YEARS',
408                         _('Dimension') =>  'DIMENSIONS1',
409                         _('Account Tags') =>  'ACCOUNTTAGS',
410                         _('Comments') => 'TEXTBOX',
411                         _('Orientation') => 'ORIENTATION',
412                         _('Destination') => 'DESTINATION'));
413         $reports->addReport(RC_GL, 706, _('&Balance Sheet'),
414         array(  _('Start Date') => 'DATEBEGIN',
415                         _('End Date') => 'DATEENDM',
416                         _('Dimension') => 'DIMENSIONS1',
417                         _('Account Tags') =>  'ACCOUNTTAGS',
418                         _('Decimal values') => 'YES_NO',
419                         _('Graphics') => 'GRAPHIC',
420                         _('Comments') => 'TEXTBOX',
421                         _('Orientation') => 'ORIENTATION',
422                         _('Destination') => 'DESTINATION'));
423         $reports->addReport(RC_GL, 707, _('&Profit and Loss Statement'),
424         array(  _('Start Date') => 'DATEBEGINM',
425                         _('End Date') => 'DATEENDM',
426                         _('Compare to') => 'COMPARE',
427                         _('Dimension') => 'DIMENSIONS1',
428                         _('Account Tags') =>  'ACCOUNTTAGS',
429                         _('Decimal values') => 'YES_NO',
430                         _('Graphics') => 'GRAPHIC',
431                         _('Comments') => 'TEXTBOX',
432                         _('Orientation') => 'ORIENTATION',
433                         _('Destination') => 'DESTINATION'));
434         $reports->addReport(RC_GL, 708, _('Trial &Balance'),
435         array(  _('Start Date') => 'DATEBEGINM',
436                         _('End Date') => 'DATEENDM',
437                         _('Zero values') => 'YES_NO',
438                         _('Only balances') => 'YES_NO',
439                         _('Dimension') => 'DIMENSIONS1',
440                         _('Comments') => 'TEXTBOX',
441                         _('Orientation') => 'ORIENTATION',
442                         _('Destination') => 'DESTINATION'));
443 }
444 else
445 {
446         $reports->addReport(RC_GL, 704, _('GL Account &Transactions'),
447         array(  _('Start Date') => 'DATEBEGINM',
448                         _('End Date') => 'DATEENDM',
449                         _('From Account') => 'GL_ACCOUNTS',
450                         _('To Account') => 'GL_ACCOUNTS',
451                         _('Comments') => 'TEXTBOX',
452                         _('Orientation') => 'ORIENTATION',
453                         _('Destination') => 'DESTINATION'));
454         $reports->addReport(RC_GL, 705, _('Annual &Expense Breakdown'),
455         array(  _('Year') => 'TRANS_YEARS',
456                         _('Account Tags') =>  'ACCOUNTTAGS',
457                         _('Comments') => 'TEXTBOX',
458                         _('Orientation') => 'ORIENTATION',
459                         _('Destination') => 'DESTINATION'));
460         $reports->addReport(RC_GL, 706, _('&Balance Sheet'),
461         array(  _('Start Date') => 'DATEBEGIN',
462                         _('End Date') => 'DATEENDM',
463                         _('Account Tags') =>  'ACCOUNTTAGS',
464                         _('Decimal values') => 'YES_NO',
465                         _('Graphics') => 'GRAPHIC',
466                         _('Comments') => 'TEXTBOX',
467                         _('Orientation') => 'ORIENTATION',
468                         _('Destination') => 'DESTINATION'));
469         $reports->addReport(RC_GL, 707, _('&Profit and Loss Statement'),
470         array(  _('Start Date') => 'DATEBEGINM',
471                         _('End Date') => 'DATEENDM',
472                         _('Compare to') => 'COMPARE',
473                         _('Account Tags') =>  'ACCOUNTTAGS',
474                         _('Decimal values') => 'YES_NO',
475                         _('Graphics') => 'GRAPHIC',
476                         _('Comments') => 'TEXTBOX',
477                         _('Orientation') => 'ORIENTATION',
478                         _('Destination') => 'DESTINATION'));
479         $reports->addReport(RC_GL, 708, _('Trial &Balance'),
480         array(  _('Start Date') => 'DATEBEGINM',
481                         _('End Date') => 'DATEENDM',
482                         _('Zero values') => 'YES_NO',
483                         _('Only balances') => 'YES_NO',
484                         _('Comments') => 'TEXTBOX',
485                         _('Orientation') => 'ORIENTATION',
486                         _('Destination') => 'DESTINATION'));
487 }
488 $reports->addReport(RC_GL, 709, _('Ta&x Report'),
489         array(  _('Start Date') => 'DATEBEGINTAX',
490                         _('End Date') => 'DATEENDTAX',
491                         _('Summary Only') => 'YES_NO',
492                         _('Comments') => 'TEXTBOX',
493                         _('Orientation') => 'ORIENTATION',
494                         _('Destination') => 'DESTINATION'));
495 $reports->addReport(RC_GL, 710, _('Audit Trail'),
496         array(  _('Start Date') => 'DATEBEGINM',
497                         _('End Date') => 'DATEENDM',
498                         _('Type') => 'SYS_TYPES_ALL',
499                         _('User') => 'USERS',
500                         _('Comments') => 'TEXTBOX',
501                         _('Orientation') => 'ORIENTATION',
502                         _('Destination') => 'DESTINATION'));
503
504 add_custom_reports($reports);
505
506 echo $reports->getDisplay();
507
508 end_page();
509 ?>