Changes up to 2.3.7 merged into unstable branch.
[fa-stable.git] / admin / db / company_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         Update main or gl company setup.
14 */
15 function update_company_prefs($params)
16 {
17         $sql = "UPDATE ".TB_PREF."sys_prefs SET value = ";
18         foreach($params as $name => $value) {
19                 if (!db_query($sql. db_escape($value). " WHERE name=".db_escape($name),
20                          "The company prefferences could not be updated "))
21                         return false;
22                 // update cached value
23                 $_SESSION['SysPrefs']->prefs[$name] = $value;
24         }
25         return true;
26 }
27 /*
28         Get company preferences. Returns cached values from global variable SysPrefs
29         or retrieved from database if SysPrefs values are not set.
30         $prefs can be preference name, array of names, or null for all preferences.
31         
32 */
33 function get_company_pref($prefs = null)
34 {
35         global $SysPrefs, $db_version;
36         
37         if (!isset($_SESSION['SysPrefs']->prefs)) { // cached preferences
38
39                 $_SESSION['SysPrefs'] = new sys_prefs();
40
41                 $sql = "SELECT name, value FROM ".TB_PREF."sys_prefs";
42                 $result = @db_query($sql); // supress errors before 2.3 db structure upgrade
43
44                 if(!$result)
45                         return null;
46
47                 while($pref = db_fetch_assoc($result)) {
48                         $_SESSION['SysPrefs']->prefs[$pref['name']] = $pref['value'];
49                 }
50
51                 $SysPrefs = &$_SESSION['SysPrefs'];
52
53                 // update current db status for info in log file
54                 $SysPrefs->db_ok = $SysPrefs->prefs['version_id'] == $db_version;
55         }
56
57         $all = $_SESSION['SysPrefs']->prefs;
58
59         if (!$prefs)
60                 return $all;
61         elseif (is_string($prefs))
62                 return @$all[$prefs];
63
64         $ret = array();
65         foreach($prefs as $name)
66                 $ret[$name] = $all[$name];
67
68                 return $ret;
69 }
70
71 function set_company_pref($pref, $category, $type, $length, $value)
72 {
73         return get_company_pref(null);
74 }
75
76 function set_company_pref($pref, $category, $type, $length, $value)
77 {
78         $sql = "REPLACE `".TB_PREF."sys_prefs` SET `name`=".db_escape($pref).", `category`=".db_escape($category)
79                 .", `type`=".db_escape($type).", `length`=".db_escape($length).", `value`=".db_escape($value);
80         return db_query($sql, "cannot set company pref");
81 }
82
83 function refresh_sys_prefs()
84 {
85         flush_dir(company_path().'/js_cache'); // clear cache
86         unset($_SESSION['SysPrefs']);
87         get_company_prefs();
88 }
89
90 function get_base_sales_type()
91 {
92         return get_company_pref('base_sales');
93 }
94
95 function get_company_extensions($id = -1) {
96         global $path_to_root;
97
98         $file = $path_to_root.($id == -1 ? '' : '/company/'.(int)$id).'/installed_extensions.php';
99         $installed_extensions = array();
100         if (is_file($file)) {
101                 include($file);
102         }
103         return $installed_extensions;
104 }
105
106 function add_payment_terms($daysOrFoll, $terms, $dayNumber)
107 {
108         if ($daysOrFoll) 
109         {
110                 $sql = "INSERT INTO ".TB_PREF."payment_terms (terms,
111                         days_before_due, day_in_following_month)
112                         VALUES (" .
113                         db_escape($terms) . ", " . db_escape($dayNumber) . ", 0)";
114         } 
115         else 
116         {
117                 $sql = "INSERT INTO ".TB_PREF."payment_terms (terms,
118                         days_before_due, day_in_following_month)
119                         VALUES (" . db_escape($terms) . ",
120                         0, " . db_escape($dayNumber) . ")";
121         }
122         db_query($sql,"The payment term could not be added");
123 }
124
125 function update_payment_terms($selected_id, $daysOrFoll, $terms, $dayNumber)
126 {
127         if ($daysOrFoll) 
128         {
129                 $sql = "UPDATE ".TB_PREF."payment_terms SET terms=" . db_escape($terms) . ",
130                         day_in_following_month=0,
131                         days_before_due=" . db_escape($dayNumber) . "
132                         WHERE terms_indicator = " .db_escape($selected_id);
133         } 
134         else 
135         {
136                 $sql = "UPDATE ".TB_PREF."payment_terms SET terms=" . db_escape($terms) . ",
137                         day_in_following_month=" . db_escape($dayNumber) . ",
138                         days_before_due=0
139                         WHERE terms_indicator = " .db_escape($selected_id);
140         }
141         db_query($sql,"The payment term could not be updated");
142 }
143
144 function delete_payment_terms($selected_id)
145 {
146         $sql="DELETE FROM ".TB_PREF."payment_terms WHERE terms_indicator=".db_escape($selected_id);
147         db_query($sql,"could not delete a payment terms");
148 }
149
150 function get_payment_terms($selected_id)
151 {
152         $sql = "SELECT *, (t.days_before_due=0) AND (t.day_in_following_month=0) as cash_sale
153          FROM ".TB_PREF."payment_terms t WHERE terms_indicator=".db_escape($selected_id);
154
155         $result = db_query($sql,"could not get payment term");
156
157         return db_fetch($result);
158 }
159
160 function get_payment_terms_all($show_inactive)
161 {
162         $sql = "SELECT * FROM ".TB_PREF."payment_terms";
163         if (!$show_inactive) $sql .= " WHERE !inactive";
164         return db_query($sql,"could not get payment terms");
165 }
166 /*
167         Return number of records in tables, where some foreign key $id is used.
168         $id - searched key value
169         $tables - array of table names (without prefix); when table name is used as a key, then
170                 value is name of foreign key field. For numeric keys $stdkey field name is used.
171         $stdkey - standard name of foreign key.
172 */
173 function key_in_foreign_table($id, $tables, $stdkey, $escaped=false)
174 {
175         if (!$escaped)
176                 $id = db_escape($id);
177
178         if (!is_array($tables))
179                 $tables = array($tables);
180
181         $sqls = array();
182         foreach ($tables as $tbl => $key) {
183                 if (is_numeric($tbl)) {
184                         $tbl = $key;
185                         $key = $stdkey;
186                 }
187                 $sqls[] = "(SELECT COUNT(*) as cnt FROM `".TB_PREF."$tbl` WHERE `$key`=".db_escape($id).")\n";
188         }
189
190         $sql = "SELECT sum(cnt) FROM (". implode(' UNION ', $sqls).") as counts";
191
192         $result = db_query($sql, "check relations for ".implode(',',$tables)." failed");
193         $count =  db_fetch($result);
194
195         return $count[0];
196 }
197
198 ?>