Fixed Assets: Added sum-of-the-year digits method, fixed declining balance method...
[fa-stable.git] / fixed_assets / includes / fa_classes_db.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
13 function get_fixed_asset_classes()
14 {
15         $sql="SELECT * FROM ".TB_PREF."stock_fa_class";
16
17         $result = db_query($sql,"fixed asset classes could not be retrieved");
18
19         return $result;
20 }
21
22 function update_fixed_asset_class($fa_class_id, $parent_id, $description, $long_description, $depreciation_rate)
23 {
24         $sql = "UPDATE ".TB_PREF."stock_fa_class SET
25                 parent_id=".db_escape($parent_id).",
26                 description=".db_escape($description).",
27                 long_description=".db_escape($long_description).",
28     depreciation_rate=".db_escape($depreciation_rate)."
29     WHERE fa_class_id=".db_escape($fa_class_id);
30
31         db_query($sql, "The fixed asset class could not be updated");
32 }
33
34 function add_fixed_asset_class($fa_class_id, $parent_id, $description, $long_description, $depreciation_rate)
35 {
36   $sql = "INSERT INTO ".TB_PREF."stock_fa_class (fa_class_id, parent_id, description, long_description,
37      depreciation_rate) VALUES ("
38     .db_escape($fa_class_id).", ".db_escape($parent_id).", "
39         .db_escape($description).", ".db_escape($long_description).", "
40     .db_escape($depreciation_rate).")";
41
42         db_query($sql, "The fixed asset class could not be added");
43 }
44
45 function delete_fixed_asset_class($fa_class_id)
46 {
47   $sql = "DELETE FROM ".TB_PREF."stock_fa_class WHERE fa_class_id=".db_escape($fa_class_id);
48
49         db_query($sql, "The fixed asset class could not be deleted");
50 }