Add customer filter in Invoice report
[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 Customers') => '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 Customers') => '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                         _('Comments') => 'TEXTBOX',
229                         _('Orientation') => 'ORIENTATION',
230                         _('Destination') => 'DESTINATION'));
231 $reports->addReport(RC_INVENTORY, 304, _('Inventory &Sales Report'),
232         array(  _('Start Date') => 'DATEBEGINM',
233                         _('End Date') => 'DATEENDM',
234                         _('Inventory Category') => 'CATEGORIES',
235                         _('Location') => 'LOCATIONS',
236                         _('Customer') => 'CUSTOMERS_NO_FILTER',
237                         _('Comments') => 'TEXTBOX',
238                         _('Orientation') => 'ORIENTATION',
239                         _('Destination') => 'DESTINATION'));
240 $reports->addReport(RC_INVENTORY, 305, _('&GRN Valuation Report'),
241         array(  _('Start Date') => 'DATEBEGINM',
242                         _('End Date') => 'DATEENDM',
243                         _('Comments') => 'TEXTBOX',
244                         _('Orientation') => 'ORIENTATION',
245                         _('Destination') => 'DESTINATION'));
246 $reports->addReport(RC_INVENTORY, 306, _('Inventory P&urchasing Report'),
247         array(  _('Start Date') => 'DATEBEGINM',
248                         _('End Date') => 'DATEENDM',
249                         _('Inventory Category') => 'CATEGORIES',
250                         _('Location') => 'LOCATIONS',
251                         _('Supplier') => 'SUPPLIERS_NO_FILTER',
252                         _('Items') => 'ITEMS_P',
253                         _('Comments') => 'TEXTBOX',
254                         _('Orientation') => 'ORIENTATION',
255                         _('Destination') => 'DESTINATION'));
256 $reports->addReport(RC_INVENTORY, 307, _('Inventory &Movement Report'),
257         array(  _('Start Date') => 'DATEBEGINM',
258                         _('End Date') => 'DATEENDM',
259                         _('Inventory Category') => 'CATEGORIES',
260                         _('Location') => 'LOCATIONS',
261                         _('Comments') => 'TEXTBOX',
262                         _('Orientation') => 'ORIENTATION',
263                         _('Destination') => 'DESTINATION'));                            
264 $reports->addReport(RC_INVENTORY, 308, _('C&osted Inventory Movement Report'),
265         array(  _('Start Date') => 'DATEBEGINM',
266                         _('End Date') => 'DATEENDM',
267                         _('Inventory Category') => 'CATEGORIES',
268                         _('Location') => 'LOCATIONS',
269                         _('Comments') => 'TEXTBOX',
270                         _('Orientation') => 'ORIENTATION',
271                         _('Destination') => 'DESTINATION'));                            
272 $reports->addReport(RC_INVENTORY, 309,_('Item &Sales Summary Report'),
273         array(  _('Start Date') => 'DATEBEGINM',
274                         _('End Date') => 'DATEENDM',
275                         _('Inventory Category') => 'CATEGORIES',
276                         _('Comments') => 'TEXTBOX',
277                         _('Orientation') => 'ORIENTATION',
278                         _('Destination') => 'DESTINATION'));                            
279
280 $reports->addReportClass(_('Manufacturing'), RC_MANUFACTURE);
281 $reports->addReport(RC_MANUFACTURE, 401, _('&Bill of Material Listing'),
282         array(  _('From product') => 'ITEMS',
283                         _('To product') => 'ITEMS',
284                         _('Comments') => 'TEXTBOX',
285                         _('Orientation') => 'ORIENTATION',
286                         _('Destination') => 'DESTINATION'));
287 $reports->addReport(RC_MANUFACTURE, 409, _('Print &Work Orders'),
288         array(  _('From') => 'WORKORDER',
289                         _('To') => 'WORKORDER',
290                         _('Email Locations') => 'YES_NO',
291                         _('Comments') => 'TEXTBOX',
292                         _('Orientation') => 'ORIENTATION'));
293 $reports->addReportClass(_('Dimensions'), RC_DIMENSIONS);
294 if ($dim > 0)
295 {
296         $reports->addReport(RC_DIMENSIONS, 501, _('Dimension &Summary'),
297         array(  _('From Dimension') => 'DIMENSION',
298                         _('To Dimension') => 'DIMENSION',
299                         _('Show Balance') => 'YES_NO',
300                         _('Comments') => 'TEXTBOX',
301                         _('Orientation') => 'ORIENTATION',
302                         _('Destination') => 'DESTINATION'));
303         //$reports->addReport(_('Dimensions'),502, _('Dimension Details'),
304         //array(        _('Dimension'),'DIMENSIONS'),
305         //              _('Comments'),'TEXTBOX')));
306 }
307 $reports->addReportClass(_('Banking'), RC_BANKING);
308         $reports->addReport(RC_BANKING,  601, _('Bank &Statement'),
309         array(  _('Bank Accounts') => 'BANK_ACCOUNTS',
310                         _('Start Date') => 'DATEBEGINM',
311                         _('End Date') => 'DATEENDM',
312                         _('Zero values') => 'YES_NO',
313                         _('Comments') => 'TEXTBOX',
314                         _('Orientation') => 'ORIENTATION',
315                         _('Destination') => 'DESTINATION'));
316
317 $reports->addReportClass(_('General Ledger'), RC_GL);
318 $reports->addReport(RC_GL, 701, _('Chart of &Accounts'),
319         array(  _('Show Balances') => 'YES_NO',
320                         _('Comments') => 'TEXTBOX',
321                         _('Orientation') => 'ORIENTATION',
322                         _('Destination') => 'DESTINATION'));
323 $reports->addReport(RC_GL, 702, _('List of &Journal Entries'),
324         array(  _('Start Date') => 'DATEBEGINM',
325                         _('End Date') => 'DATEENDM',
326                         _('Type') => 'SYS_TYPES',
327                         _('Comments') => 'TEXTBOX',
328                         _('Orientation') => 'ORIENTATION',
329                         _('Destination') => 'DESTINATION'));
330 //$reports->addReport(RC_GL, 703, _('GL Account Group Summary'),
331 //      array(  _('Comments'),'TEXTBOX')));
332
333 if ($dim == 2)
334 {
335         $reports->addReport(RC_GL, 704, _('GL Account &Transactions'),
336         array(  _('Start Date') => 'DATEBEGINM',
337                         _('End Date') => 'DATEENDM',
338                         _('From Account') => 'GL_ACCOUNTS',
339                         _('To Account') => 'GL_ACCOUNTS',
340                         _('Dimension')." 1" =>  'DIMENSIONS1',
341                         _('Dimension')." 2" =>  'DIMENSIONS2',
342                         _('Comments') => 'TEXTBOX',
343                         _('Orientation') => 'ORIENTATION',
344                         _('Destination') => 'DESTINATION'));
345         $reports->addReport(RC_GL, 705, _('Annual &Expense Breakdown'),
346         array(  _('Year') => 'TRANS_YEARS',
347                         _('Dimension')." 1" =>  'DIMENSIONS1',
348                         _('Dimension')." 2" =>  'DIMENSIONS2',
349                         _('Account Tags') =>  'ACCOUNTTAGS',
350                         _('Comments') => 'TEXTBOX',
351                         _('Orientation') => 'ORIENTATION',
352                         _('Destination') => 'DESTINATION'));
353         $reports->addReport(RC_GL, 706, _('&Balance Sheet'),
354         array(  _('Start Date') => 'DATEBEGIN',
355                         _('End Date') => 'DATEENDM',
356                         _('Dimension')." 1" => 'DIMENSIONS1',
357                         _('Dimension')." 2" => 'DIMENSIONS2',
358                         _('Account Tags') =>  'ACCOUNTTAGS',
359                         _('Decimal values') => 'YES_NO',
360                         _('Graphics') => 'GRAPHIC',
361                         _('Comments') => 'TEXTBOX',
362                         _('Orientation') => 'ORIENTATION',
363                         _('Destination') => 'DESTINATION'));
364         $reports->addReport(RC_GL, 707, _('&Profit and Loss Statement'),
365         array(  _('Start Date') => 'DATEBEGINM',
366                         _('End Date') => 'DATEENDM',
367                         _('Compare to') => 'COMPARE',
368                         _('Dimension')." 1" =>  'DIMENSIONS1',
369                         _('Dimension')." 2" =>  'DIMENSIONS2',
370                         _('Account Tags') =>  'ACCOUNTTAGS',
371                         _('Decimal values') => 'YES_NO',
372                         _('Graphics') => 'GRAPHIC',
373                         _('Comments') => 'TEXTBOX',
374                         _('Orientation') => 'ORIENTATION',
375                         _('Destination') => 'DESTINATION'));
376         $reports->addReport(RC_GL, 708, _('Trial &Balance'),
377         array(  _('Start Date') => 'DATEBEGINM',
378                         _('End Date') => 'DATEENDM',
379                         _('Zero values') => 'YES_NO',
380                         _('Only balances') => 'YES_NO',
381                         _('Dimension')." 1" =>  'DIMENSIONS1',
382                         _('Dimension')." 2" =>  'DIMENSIONS2',
383                         _('Comments') => 'TEXTBOX',
384                         _('Orientation') => 'ORIENTATION',
385                         _('Destination') => 'DESTINATION'));
386 }
387 else if ($dim == 1)
388 {
389         $reports->addReport(RC_GL, 704, _('GL Account &Transactions'),
390         array(  _('Start Date') => 'DATEBEGINM',
391                         _('End Date') => 'DATEENDM',
392                         _('From Account') => 'GL_ACCOUNTS',
393                         _('To Account') => 'GL_ACCOUNTS',
394                         _('Dimension') =>  'DIMENSIONS1',
395                         _('Comments') => 'TEXTBOX',
396                         _('Orientation') => 'ORIENTATION',
397                         _('Destination') => 'DESTINATION'));
398         $reports->addReport(RC_GL, 705, _('Annual &Expense Breakdown'),
399         array(  _('Year') => 'TRANS_YEARS',
400                         _('Dimension') =>  'DIMENSIONS1',
401                         _('Account Tags') =>  'ACCOUNTTAGS',
402                         _('Comments') => 'TEXTBOX',
403                         _('Orientation') => 'ORIENTATION',
404                         _('Destination') => 'DESTINATION'));
405         $reports->addReport(RC_GL, 706, _('&Balance Sheet'),
406         array(  _('Start Date') => 'DATEBEGIN',
407                         _('End Date') => 'DATEENDM',
408                         _('Dimension') => 'DIMENSIONS1',
409                         _('Account Tags') =>  'ACCOUNTTAGS',
410                         _('Decimal values') => 'YES_NO',
411                         _('Graphics') => 'GRAPHIC',
412                         _('Comments') => 'TEXTBOX',
413                         _('Orientation') => 'ORIENTATION',
414                         _('Destination') => 'DESTINATION'));
415         $reports->addReport(RC_GL, 707, _('&Profit and Loss Statement'),
416         array(  _('Start Date') => 'DATEBEGINM',
417                         _('End Date') => 'DATEENDM',
418                         _('Compare to') => 'COMPARE',
419                         _('Dimension') => 'DIMENSIONS1',
420                         _('Account Tags') =>  'ACCOUNTTAGS',
421                         _('Decimal values') => 'YES_NO',
422                         _('Graphics') => 'GRAPHIC',
423                         _('Comments') => 'TEXTBOX',
424                         _('Orientation') => 'ORIENTATION',
425                         _('Destination') => 'DESTINATION'));
426         $reports->addReport(RC_GL, 708, _('Trial &Balance'),
427         array(  _('Start Date') => 'DATEBEGINM',
428                         _('End Date') => 'DATEENDM',
429                         _('Zero values') => 'YES_NO',
430                         _('Only balances') => 'YES_NO',
431                         _('Dimension') => 'DIMENSIONS1',
432                         _('Comments') => 'TEXTBOX',
433                         _('Orientation') => 'ORIENTATION',
434                         _('Destination') => 'DESTINATION'));
435 }
436 else
437 {
438         $reports->addReport(RC_GL, 704, _('GL Account &Transactions'),
439         array(  _('Start Date') => 'DATEBEGINM',
440                         _('End Date') => 'DATEENDM',
441                         _('From Account') => 'GL_ACCOUNTS',
442                         _('To Account') => 'GL_ACCOUNTS',
443                         _('Comments') => 'TEXTBOX',
444                         _('Orientation') => 'ORIENTATION',
445                         _('Destination') => 'DESTINATION'));
446         $reports->addReport(RC_GL, 705, _('Annual &Expense Breakdown'),
447         array(  _('Year') => 'TRANS_YEARS',
448                         _('Account Tags') =>  'ACCOUNTTAGS',
449                         _('Comments') => 'TEXTBOX',
450                         _('Orientation') => 'ORIENTATION',
451                         _('Destination') => 'DESTINATION'));
452         $reports->addReport(RC_GL, 706, _('&Balance Sheet'),
453         array(  _('Start Date') => 'DATEBEGIN',
454                         _('End Date') => 'DATEENDM',
455                         _('Account Tags') =>  'ACCOUNTTAGS',
456                         _('Decimal values') => 'YES_NO',
457                         _('Graphics') => 'GRAPHIC',
458                         _('Comments') => 'TEXTBOX',
459                         _('Orientation') => 'ORIENTATION',
460                         _('Destination') => 'DESTINATION'));
461         $reports->addReport(RC_GL, 707, _('&Profit and Loss Statement'),
462         array(  _('Start Date') => 'DATEBEGINM',
463                         _('End Date') => 'DATEENDM',
464                         _('Compare to') => 'COMPARE',
465                         _('Account Tags') =>  'ACCOUNTTAGS',
466                         _('Decimal values') => 'YES_NO',
467                         _('Graphics') => 'GRAPHIC',
468                         _('Comments') => 'TEXTBOX',
469                         _('Orientation') => 'ORIENTATION',
470                         _('Destination') => 'DESTINATION'));
471         $reports->addReport(RC_GL, 708, _('Trial &Balance'),
472         array(  _('Start Date') => 'DATEBEGINM',
473                         _('End Date') => 'DATEENDM',
474                         _('Zero values') => 'YES_NO',
475                         _('Only balances') => 'YES_NO',
476                         _('Comments') => 'TEXTBOX',
477                         _('Orientation') => 'ORIENTATION',
478                         _('Destination') => 'DESTINATION'));
479 }
480 $reports->addReport(RC_GL, 709, _('Ta&x Report'),
481         array(  _('Start Date') => 'DATEBEGINTAX',
482                         _('End Date') => 'DATEENDTAX',
483                         _('Summary Only') => 'YES_NO',
484                         _('Comments') => 'TEXTBOX',
485                         _('Orientation') => 'ORIENTATION',
486                         _('Destination') => 'DESTINATION'));
487 $reports->addReport(RC_GL, 710, _('Audit Trail'),
488         array(  _('Start Date') => 'DATEBEGINM',
489                         _('End Date') => 'DATEENDM',
490                         _('Type') => 'SYS_TYPES_ALL',
491                         _('User') => 'USERS',
492                         _('Comments') => 'TEXTBOX',
493                         _('Orientation') => 'ORIENTATION',
494                         _('Destination') => 'DESTINATION'));
495
496 add_custom_reports($reports);
497
498 echo $reports->getDisplay();
499
500 end_page();
501 ?>