b4ca18665f55ce9ea2d70438c53a0c7292333228
[fa-stable.git] / gl / manage / gl_account_types.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_GLACCOUNTGROUP';
13 $path_to_root = "../..";
14 include($path_to_root . "/includes/session.inc");
15
16 page(_("GL Account Groups"));
17
18 include($path_to_root . "/gl/includes/gl_db.inc");
19
20 include($path_to_root . "/includes/ui.inc");
21
22 simple_page_mode(true);
23 //-----------------------------------------------------------------------------------
24
25 function can_process() 
26 {
27         global $selected_id;
28
29         if (!input_num('id'))
30         {
31             display_error( _("The account id must be an integer and cannot be empty."));
32             set_focus('id');
33             return false;
34         }
35         if (strlen($_POST['name']) == 0) 
36         {
37                 display_error( _("The account group name cannot be empty."));
38                 set_focus('name');
39                 return false;
40         }
41
42         if (isset($selected_id) && ($selected_id == $_POST['parent'])) 
43         {
44                 display_error(_("You cannot set an account group to be a subgroup of itself."));
45                 return false;
46         }
47
48         return true;
49 }
50
51 //-----------------------------------------------------------------------------------
52
53 if ($Mode=='ADD_ITEM' || $Mode=='UPDATE_ITEM') 
54 {
55
56         if (can_process()) 
57         {
58
59         if ($selected_id != -1) 
60         {
61                 if (update_account_type($selected_id, $_POST['name'], $_POST['class_id'], $_POST['parent']))
62                                 display_notification(_('Selected account type has been updated'));
63         } 
64         else 
65         {
66                 if (add_account_type($_POST['id'], $_POST['name'], $_POST['class_id'], $_POST['parent'])) {
67                                 display_notification(_('New account type has been added'));
68                                 $Mode = 'RESET';
69                         }
70         }
71         }
72 }
73
74 //-----------------------------------------------------------------------------------
75
76 function can_delete($selected_id)
77 {
78         if ($selected_id == -1)
79                 return false;
80         $sql= "SELECT COUNT(*) FROM ".TB_PREF."chart_master
81                 WHERE account_type=$selected_id";
82         $result = db_query($sql, "could not query chart master");
83         $myrow = db_fetch_row($result);
84         if ($myrow[0] > 0) 
85         {
86                 display_error(_("Cannot delete this account group because GL accounts have been created referring to it."));
87                 return false;
88         }
89
90         $sql= "SELECT COUNT(*) FROM ".TB_PREF."chart_types
91                 WHERE parent=$selected_id";
92         $result = db_query($sql, "could not query chart types");
93         $myrow = db_fetch_row($result);
94         if ($myrow[0] > 0) 
95         {
96                 display_error(_("Cannot delete this account group because GL account groups have been created referring to it."));
97                 return false;
98         }
99
100         return true;
101 }
102
103
104 //-----------------------------------------------------------------------------------
105
106 if ($Mode == 'Delete')
107 {
108
109         if (can_delete($selected_id))
110         {
111                 delete_account_type($selected_id);
112                 display_notification(_('Selected currency has been deleted'));
113         }
114         $Mode = 'RESET';
115 }
116 if ($Mode == 'RESET')
117 {
118         $selected_id = -1;
119         $_POST['id']  = $_POST['name']  = '';
120         unset($_POST['parent']);
121         unset($_POST['class_id']);
122 }
123 //-----------------------------------------------------------------------------------
124
125 $result = get_account_types(check_value('show_inactive'));
126
127 start_form();
128 start_table($table_style);
129 $th = array(_("ID"), _("Name"), _("Subgroup Of"), _("Class Type"), "", "");
130 inactive_control_column($th);
131 table_header($th);
132
133 $k = 0;
134 while ($myrow = db_fetch($result)) 
135 {
136
137         alt_table_row_color($k);
138
139         $bs_text = get_account_class_name($myrow["class_id"]);
140
141         if ($myrow["parent"] == ANY_NUMERIC) 
142         {
143                 $parent_text = "";
144         } 
145         else 
146         {
147                 $parent_text = get_account_type_name($myrow["parent"]);
148         }
149
150         label_cell($myrow["id"]);
151         label_cell($myrow["name"]);
152         label_cell($parent_text);
153         label_cell($bs_text);
154         inactive_control_cell($myrow["id"], $myrow["inactive"], 'chart_types', 'id');
155         edit_button_cell("Edit".$myrow["id"], _("Edit"));
156         delete_button_cell("Delete".$myrow["id"], _("Delete"));
157         end_row();
158 }
159
160 inactive_control_row($th);
161 end_table(1);
162 //-----------------------------------------------------------------------------------
163
164 start_table($table_style2);
165
166 if ($selected_id != -1)
167 {
168         if ($Mode == 'Edit') 
169         {
170                 //editing an existing status code
171                 $myrow = get_account_type($selected_id);
172         
173                 $_POST['id']  = $myrow["id"];
174                 $_POST['name']  = $myrow["name"];
175                 $_POST['parent']  = $myrow["parent"];
176                 $_POST['class_id']  = $myrow["class_id"];
177                 hidden('selected_id', $selected_id);
178         }
179         hidden('id');
180         label_row(_("ID:"), $_POST['id']);
181 }
182 else
183         text_row_ex(_("ID:"), 'id', 4);
184 text_row_ex(_("Name:"), 'name', 50);
185
186 gl_account_types_list_row(_("Subgroup Of:"), 'parent', null, _("None"), true);
187
188 class_list_row(_("Class Type:"), 'class_id', null);
189
190 end_table(1);
191
192 submit_add_or_update_center($selected_id == -1, '', 'both');
193
194 end_form();
195
196 //------------------------------------------------------------------------------------
197
198 end_page();
199
200 ?>