After heavy testing a new set of nested subtypes in COA, Monthly Breakdown, Balance...
[fa-stable.git] / gl / includes / db / gl_db_account_types.inc
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 function add_account_type($id, $name, $class_id, $parent)
13 {
14         $sql = "INSERT INTO ".TB_PREF."chart_types (id, name, class_id, parent)
15                 VALUES ($id, ".db_escape($name).", $class_id, $parent)";
16
17         db_query($sql, "could not add account type");
18 }
19
20 function update_account_type($id, $name, $class_id, $parent)
21 {
22     $sql = "UPDATE ".TB_PREF."chart_types SET name=".db_escape($name).",
23                 class_id=$class_id,     parent=$parent WHERE id = $id";
24
25         db_query($sql, "could not update account type");
26 }
27
28 function get_account_types()
29 {
30         $sql = "SELECT * FROM ".TB_PREF."chart_types ORDER BY class_id, id";
31
32         return db_query($sql, "could not get account types");
33 }
34
35 function get_account_type($id)
36 {
37         $sql = "SELECT * FROM ".TB_PREF."chart_types WHERE id = $id";
38
39         $result = db_query($sql, "could not get account type");
40
41         return db_fetch($result);
42 }
43
44 function get_account_type_name($id)
45 {
46         $sql = "SELECT name FROM ".TB_PREF."chart_types WHERE id = $id";
47
48         $result = db_query($sql, "could not get account type");
49
50         $row = db_fetch_row($result);
51         return $row[0];
52 }
53
54 function delete_account_type($id)
55 {
56         $sql = "DELETE FROM ".TB_PREF."chart_types WHERE id = $id";
57
58         db_query($sql, "could not delete account type");
59 }
60
61 function add_account_class($id, $name, $balance)
62 {
63         $sql = "INSERT INTO ".TB_PREF."chart_class (cid, class_name, balance_sheet)
64                 VALUES ($id, ".db_escape($name).", $balance)";
65
66         db_query($sql, "could not add account type");
67 }
68
69 function update_account_class($id, $name, $balance)
70 {
71     $sql = "UPDATE ".TB_PREF."chart_class SET class_name=".db_escape($name).",
72                 balance_sheet=$balance WHERE cid = $id";
73
74         db_query($sql, "could not update account type");
75 }
76
77 function get_account_classes()
78 {
79         $sql = "SELECT * FROM ".TB_PREF."chart_class ORDER BY cid";
80
81         return db_query($sql, "could not get account types");
82 }
83
84 function get_account_class($id)
85 {
86         $sql = "SELECT * FROM ".TB_PREF."chart_class WHERE cid = $id";
87
88         $result = db_query($sql, "could not get account type");
89
90         return db_fetch($result);
91 }
92
93 function get_account_class_name($id)
94 {
95         $sql = "SELECT class_name FROM ".TB_PREF."chart_class WHERE cid = $id";
96
97         $result = db_query($sql, "could not get account type");
98
99         $row = db_fetch_row($result);
100         return $row[0];
101 }
102
103
104 function delete_account_class($id)
105 {
106         $sql = "DELETE FROM ".TB_PREF."chart_class WHERE cid = $id";
107
108         db_query($sql, "could not delete account type");
109 }
110
111
112 ?>