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