Mysqli errors: Trying to access array offset on value of type bool. Fixed. Please...
[fa-stable.git] / sales / includes / db / sales_types_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 function add_sales_type($name, $tax_included, $factor)
13 {
14         $sql = "INSERT INTO ".TB_PREF."sales_types (sales_type,tax_included,factor) VALUES (".db_escape($name).","
15                 .db_escape($tax_included).",".db_escape($factor).")";
16         db_query($sql, "could not add sales type");             
17 }
18
19 function update_sales_type($id, $name, $tax_included, $factor)
20 {
21
22         $sql = "UPDATE ".TB_PREF."sales_types SET sales_type = ".db_escape($name).",
23         tax_included =".db_escape($tax_included).", factor=".db_escape($factor)." WHERE id = ".db_escape($id);
24         
25         db_query($sql, "could not update sales type");                  
26 }
27
28 function get_all_sales_types($all=false)
29 {
30         $sql = "SELECT * FROM ".TB_PREF."sales_types";
31         if (!$all)
32                 $sql .= " WHERE !inactive";
33         
34         return db_query($sql, "could not get all sales types");
35
36
37 function get_sales_type($id)
38 {
39         $sql = "SELECT * FROM ".TB_PREF."sales_types WHERE id=".db_escape($id);
40         
41         $result = db_query($sql, "could not get sales type");
42         
43         return db_fetch($result);
44 }
45
46 function get_sales_type_name($id)
47 {
48         $sql = "SELECT sales_type FROM ".TB_PREF."sales_types WHERE id=".db_escape($id);
49         
50         $result = db_query($sql, "could not get sales type");
51         
52         $row = db_fetch_row($result);
53         return is_array($row) ? $row[0] : false;
54 }
55
56 function delete_sales_type($id)
57 {
58         $sql="DELETE FROM ".TB_PREF."sales_types WHERE id=".db_escape($id);
59         db_query($sql,"The Sales type record could not be deleted");
60
61         $sql ="DELETE FROM ".TB_PREF."prices WHERE sales_type_id=".db_escape($id);
62         db_query($sql,"The Sales type prices could not be deleted");
63 }
64