70faccdb8818fc06fc2cc400420bacfc20361ed8
[fa-stable.git] / gl / manage / gl_account_classes.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_GLACCOUNTCLASS';
13 $path_to_root = "../..";
14 include($path_to_root . "/includes/session.inc");
15
16 page(_("GL Account Classes"));
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 $use_oldstyle_convert;
28         if (!is_numeric($_POST['id'])) 
29         {
30                 display_error( _("The account class ID must be numeric."));
31                 set_focus('id');
32                 return false;
33         }
34         if (strlen($_POST['name']) == 0) 
35         {
36                 display_error( _("The account class name cannot be empty."));
37                 set_focus('name');
38                 return false;
39         }
40         if (isset($use_oldstyle_convert) && $use_oldstyle_convert == 1)
41                 $_POST['Balance'] = check_value('Balance');
42         return true;
43 }
44
45 //-----------------------------------------------------------------------------------
46
47 if ($Mode=='ADD_ITEM' || $Mode=='UPDATE_ITEM') 
48 {
49
50         if (can_process()) 
51         {
52
53         if ($selected_id != -1) 
54         {
55                 if(update_account_class($selected_id, $_POST['name'], $_POST['ctype']))
56                                 display_notification(_('Selected account class settings has been updated'));
57         } 
58         else 
59         {
60                 if(add_account_class($_POST['id'], $_POST['name'], $_POST['ctype'])) {
61                                 display_notification(_('New account class has been added'));
62                                 $Mode = 'RESET';
63                         }
64         }
65         }
66 }
67
68 //-----------------------------------------------------------------------------------
69
70 function can_delete($selected_id)
71 {
72         if ($selected_id == -1)
73                 return false;
74         $sql= "SELECT COUNT(*) FROM ".TB_PREF."chart_types
75                 WHERE class_id=$selected_id";
76         $result = db_query($sql, "could not query chart master");
77         $myrow = db_fetch_row($result);
78         if ($myrow[0] > 0) 
79         {
80                 display_error(_("Cannot delete this account class because GL account types have been created referring to it."));
81                 return false;
82         }
83
84         return true;
85 }
86
87
88 //-----------------------------------------------------------------------------------
89
90 if ($Mode == 'Delete')
91 {
92
93         if (can_delete($selected_id))
94         {
95                 delete_account_class($selected_id);
96                 display_notification(_('Selected account class has been deleted'));
97         }
98         $Mode = 'RESET';
99 }
100
101 //-----------------------------------------------------------------------------------
102 if ($Mode == 'RESET')
103 {
104         $selected_id = -1;
105         $_POST['id']  = $_POST['name']  = $_POST['ctype'] =  '';
106 }
107 //-----------------------------------------------------------------------------------
108
109 $result = get_account_classes(check_value('show_inactive'));
110
111 start_form();
112 start_table($table_style);
113 $th = array(_("Class ID"), _("Class Name"), _("Class Type"), "", "");
114 if (isset($use_oldstyle_convert) && $use_oldstyle_convert == 1)
115         $th[2] = _("Balance Sheet");
116 inactive_control_column($th);
117 table_header($th);
118
119 $k = 0;
120 while ($myrow = db_fetch($result)) 
121 {
122
123         alt_table_row_color($k);
124
125         label_cell($myrow["cid"]);
126         label_cell($myrow['class_name']);
127         if (isset($use_oldstyle_convert) && $use_oldstyle_convert == 1)
128         {
129                 $myrow['ctype'] = ($myrow["ctype"] >= CL_ASSETS && $myrow["ctype"] < CL_INCOME ? 1 : 0);
130                 label_cell(($myrow['ctype'] == 1 ? _("Yes") : _("No")));
131         }       
132         else    
133                 label_cell($class_types[$myrow["ctype"]]);
134         inactive_control_cell($myrow["cid"], $myrow["inactive"], 'chart_class', 'cid');
135         edit_button_cell("Edit".$myrow["cid"], _("Edit"));
136         delete_button_cell("Delete".$myrow["cid"], _("Delete"));
137         end_row();
138 }
139 inactive_control_row($th);
140 end_table(1);
141 //-----------------------------------------------------------------------------------
142
143 start_table($table_style2);
144
145 if ($selected_id != -1) 
146 {
147  if ($Mode == 'Edit') {
148         //editing an existing status code
149         $myrow = get_account_class($selected_id);
150
151         $_POST['id']  = $myrow["cid"];
152         $_POST['name']  = $myrow["class_name"];
153         if (isset($use_oldstyle_convert) && $use_oldstyle_convert == 1)
154                 $_POST['ctype'] = ($myrow["ctype"] >= CL_ASSETS && $myrow["ctype"] < CL_INCOME ? 1 : 0);
155         else
156                 $_POST['ctype']  = $myrow["ctype"];
157         hidden('selected_id', $selected_id);
158  }
159         hidden('id');
160         label_row(_("Class ID:"), $_POST['id']);
161
162
163 else 
164 {
165
166         text_row_ex(_("Class ID:"), 'id', 3);
167 }
168
169 text_row_ex(_("Class Name:"), 'name', 50, 60);
170
171 if (isset($use_oldstyle_convert) && $use_oldstyle_convert == 1)
172         check_row(_("Balance Sheet"), 'ctype', null);
173 else
174         class_types_list_row(_("Class Type:"), 'ctype', null);
175
176 end_table(1);
177
178 submit_add_or_update_center($selected_id == -1, '', 'both');
179
180 end_form();
181
182 //------------------------------------------------------------------------------------
183
184 end_page();
185
186 ?>