Changed context help organization to enable use of central, multilanguage wiki.
[fa-stable.git] / gl / view / gl_trans_view.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 $page_security = 'SA_GLTRANSVIEW';
13 $path_to_root = "../..";
14 include_once($path_to_root . "/includes/session.inc");
15
16 page(_($help_context = "General Ledger Transaction Details"), true);
17
18 include_once($path_to_root . "/includes/date_functions.inc");
19 include_once($path_to_root . "/includes/ui.inc");
20
21 include_once($path_to_root . "/gl/includes/gl_db.inc");
22
23 if (!isset($_GET['type_id']) || !isset($_GET['trans_no'])) 
24 { /*Script was not passed the correct parameters */
25
26         echo "<p>" . _("The script must be called with a valid transaction type and transaction number to review the general ledger postings for.") . "</p>";
27         exit;
28 }
29
30 function display_gl_heading($myrow)
31 {
32         global $table_style, $systypes_array;
33         $trans_name = $systypes_array[$_GET['type_id']];
34     start_table("$table_style width=95%");
35     $th = array(_("General Ledger Transaction Details"),
36         _("Date"), _("Person/Item"));
37     table_header($th);  
38     start_row();        
39     label_cell("$trans_name #" . $_GET['trans_no']);
40         label_cell(sql2date($myrow["tran_date"]));
41         label_cell(payment_person_name($myrow["person_type_id"],$myrow["person_id"]));
42         
43         end_row();
44
45         comments_display_row($_GET['type_id'], $_GET['trans_no']);
46
47     end_table(1);
48 }
49
50 $sql = "SELECT ".TB_PREF."gl_trans.*, account_name FROM "
51         .TB_PREF."gl_trans, ".TB_PREF."chart_master WHERE "
52         .TB_PREF."gl_trans.account = ".TB_PREF."chart_master.account_code AND type= " 
53         .db_escape($_GET['type_id']) . " AND type_no = ".db_escape($_GET['trans_no']) 
54         . " ORDER BY counter";
55 $result = db_query($sql,"could not get transactions");
56 //alert("sql = ".$sql);
57
58 if (db_num_rows($result) == 0)
59 {
60     echo "<p><center>" . _("No general ledger transactions have been created for") . " " .$systypes_array[$_GET['type_id']]." " . _("number") . " " . $_GET['trans_no'] . "</center></p><br><br>";
61         end_page(true);
62         exit;
63 }
64
65 /*show a table of the transactions returned by the sql */
66 $dim = get_company_pref('use_dimension');
67
68 if ($dim == 2)
69         $th = array(_("Account Code"), _("Account Name"), _("Dimension")." 1", _("Dimension")." 2",
70                 _("Debit"), _("Credit"), _("Memo"));
71 else if ($dim == 1)
72         $th = array(_("Account Code"), _("Account Name"), _("Dimension"),
73                 _("Debit"), _("Credit"), _("Memo"));
74 else            
75         $th = array(_("Account Code"), _("Account Name"),
76                 _("Debit"), _("Credit"), _("Memo"));
77 $k = 0; //row colour counter
78 $heading_shown = false;
79
80 while ($myrow = db_fetch($result)) 
81 {
82         if ($myrow['amount'] == 0) continue;
83         if (!$heading_shown)
84         {
85                 display_gl_heading($myrow);
86                 start_table("$table_style width=95%");
87                 table_header($th);
88                 $heading_shown = true;
89         }       
90
91         alt_table_row_color($k);
92         
93     label_cell($myrow['account']);
94         label_cell($myrow['account_name']);
95         if ($dim >= 1)
96                 label_cell(get_dimension_string($myrow['dimension_id'], true));
97         if ($dim > 1)
98                 label_cell(get_dimension_string($myrow['dimension2_id'], true));
99
100         display_debit_or_credit_cells($myrow['amount']);
101         label_cell($myrow['memo_']);
102         end_row();
103
104 }
105 //end of while loop
106 if ($heading_shown)
107         end_table(1);
108
109 is_voided_display($_GET['type_id'], $_GET['trans_no'], _("This transaction has been voided."));
110
111 end_page(true);
112
113 ?>