bb1defe9ca23609c95c0c207e9328bca340058b0
[fa-stable.git] / includes / db / references_db.inc
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU Affero General Public License,
5         AGPL, as published by the Free Software Foundation, either version 
6         3 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/agpl-3.0.html>.
11 ***********************************************************************/
12 //--------------------------------------------------------------------------------------------------
13
14 function get_reference($type, $id)
15 {
16         $sql = "SELECT * FROM ".TB_PREF."refs WHERE type=$type AND id=$id";
17
18         return db_query($sql, "could not query reference table");
19 }
20
21 //--------------------------------------------------------------------------------------------------
22
23 function add_reference($type, $id, $reference)
24 {
25         $sql = "INSERT INTO ".TB_PREF."refs (type, id, reference)
26                 VALUES ($type, $id, " . db_escape(trim($reference)) . ")";
27
28         db_query($sql, "could not add reference entry");
29 }
30
31 //--------------------------------------------------------------------------------------------------
32
33 function delete_reference($type, $id)
34 {
35         $sql = "DELETE FROM ".TB_PREF."refs WHERE type=$type AND id=$id";
36
37         return db_query($sql, "could not delete from reference table");
38 }
39
40 //--------------------------------------------------------------------------------------------------
41
42 function find_reference($type, $reference)
43 {
44         $sql = "SELECT id FROM ".TB_PREF."refs WHERE type=$type AND reference='$reference'";
45
46         $result = db_query($sql, "could not query reference table");
47
48     return (db_num_rows($result) > 0);
49 }
50
51 //--------------------------------------------------------------------------------------------------
52
53 function save_next_reference($type, $reference)
54 {
55     $sql = "UPDATE ".TB_PREF."sys_types SET next_reference=" . db_escape(trim($reference)) . " WHERE type_id = $type";
56
57         db_query($sql, "The next transaction ref for $type could not be updated");
58 }
59
60 //--------------------------------------------------------------------------------------------------
61
62 function get_next_reference($type)
63 {
64     $sql = "SELECT next_reference FROM ".TB_PREF."sys_types WHERE type_id = $type";
65
66     $result = db_query($sql,"The last transaction ref for $type could not be retreived");
67
68     $row = db_fetch_row($result);
69     return $row[0];
70 }
71
72 ?>