f73cd04cc636036d1b68bd41738d6a64b0fb1288
[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($SysPrefs->prefs))    // just after first login or reset
38                 $SysPrefs->refresh();
39
40         $all = $SysPrefs->prefs;
41
42         if (!$prefs)
43                 return $all;
44         elseif (is_string($prefs))
45                 return @$all[$prefs];
46
47         $ret = array();
48         foreach($prefs as $name)
49                 $ret[$name] = $all[$name];
50
51         return $ret;
52 }
53
54 function get_company_prefs()
55 {
56         return get_company_pref(null);
57 }
58
59 function set_company_pref($pref, $category, $type, $length, $value)
60 {
61         $sql = "REPLACE `".TB_PREF."sys_prefs` SET `name`=".db_escape($pref).", `category`=".db_escape($category)
62                 .", `type`=".db_escape($type).", `length`=".db_escape($length).", `value`=".db_escape($value);
63         return db_query($sql, "cannot set company pref");
64 }
65
66 function get_base_sales_type()
67 {
68         return get_company_pref('base_sales');
69 }
70
71 function get_company_extensions($id = -1) {
72         global $path_to_root;
73
74         $file = $path_to_root.($id == -1 ? '' : '/company/'.(int)$id).'/installed_extensions.php';
75         $installed_extensions = array();
76         if (is_file($file)) {
77                 include($file);
78         }
79         return $installed_extensions;
80 }
81
82 function add_payment_terms($daysOrFoll, $terms, $dayNumber)
83 {
84         if ($daysOrFoll) 
85         {
86                 $sql = "INSERT INTO ".TB_PREF."payment_terms (terms,
87                         days_before_due, day_in_following_month)
88                         VALUES (" .
89                         db_escape($terms) . ", " . db_escape($dayNumber) . ", 0)";
90         } 
91         else 
92         {
93                 $sql = "INSERT INTO ".TB_PREF."payment_terms (terms,
94                         days_before_due, day_in_following_month)
95                         VALUES (" . db_escape($terms) . ",
96                         0, " . db_escape($dayNumber) . ")";
97         }
98         db_query($sql,"The payment term could not be added");
99 }
100
101 function update_payment_terms($selected_id, $daysOrFoll, $terms, $dayNumber)
102 {
103         if ($daysOrFoll) 
104         {
105                 $sql = "UPDATE ".TB_PREF."payment_terms SET terms=" . db_escape($terms) . ",
106                         day_in_following_month=0,
107                         days_before_due=" . db_escape($dayNumber) . "
108                         WHERE terms_indicator = " .db_escape($selected_id);
109         } 
110         else 
111         {
112                 $sql = "UPDATE ".TB_PREF."payment_terms SET terms=" . db_escape($terms) . ",
113                         day_in_following_month=" . db_escape($dayNumber) . ",
114                         days_before_due=0
115                         WHERE terms_indicator = " .db_escape($selected_id);
116         }
117         db_query($sql,"The payment term could not be updated");
118 }
119
120 function delete_payment_terms($selected_id)
121 {
122         $sql="DELETE FROM ".TB_PREF."payment_terms WHERE terms_indicator=".db_escape($selected_id);
123         db_query($sql,"could not delete a payment terms");
124 }
125
126 function get_payment_terms($selected_id)
127 {
128         $sql = "SELECT *, (t.days_before_due=0) AND (t.day_in_following_month=0) as cash_sale
129          FROM ".TB_PREF."payment_terms t WHERE terms_indicator=".db_escape($selected_id);
130
131         $result = db_query($sql,"could not get payment term");
132
133         return db_fetch($result);
134 }
135
136 function get_payment_terms_all($show_inactive)
137 {
138         $sql = "SELECT * FROM ".TB_PREF."payment_terms";
139         if (!$show_inactive) $sql .= " WHERE !inactive";
140         return db_query($sql,"could not get payment terms");
141 }
142 /*
143         Return number of records in tables, where some foreign key $id is used.
144         $id - searched key value
145         $tables - array of table names (without prefix); when table name is used as a key, then
146                 value is name of foreign key field. For numeric keys $stdkey field name is used.
147         $stdkey - standard name of foreign key.
148 */
149 function key_in_foreign_table($id, $tables, $stdkey)
150 {
151
152         if (!is_array($tables))
153                 $tables = array($tables);
154
155         $sqls = array();
156         foreach ($tables as $tbl => $key) {
157                 if (is_numeric($tbl)) {
158                         $tbl = $key;
159                         $key = $stdkey;
160                 }
161                 $sqls[] = "(SELECT COUNT(*) as cnt FROM `".TB_PREF."$tbl` WHERE `$key`=".db_escape($id).")\n";
162         }
163
164         $sql = "SELECT sum(cnt) FROM (". implode(' UNION ', $sqls).") as counts";
165
166         $result = db_query($sql, "check relations for ".implode(',',$tables)." failed");
167         $count =  db_fetch($result);
168
169         return $count[0];
170 }
171
172 //---------------------------------------------------------------------------------------------
173 //
174 // Resets $theme references in users records to 'default'.
175 //
176 function clean_user_themes($theme)
177 {
178         global $db_connections, $db;
179
180         $comp = user_company();
181
182         $connections = $db_connections; // do not use db_connections directly here, or script will hang due to db_connections usage inside the loop
183         foreach ($connections as $n => $conn) {
184                 $db = $_SESSION["wa_current_user"]->set_db_connection($n);
185                 $sql = "UPDATE {$conn['tbpref']}users SET theme='default' WHERE theme='$theme'";
186                 if (!db_query($sql, 'Cannot update user theme settings'))
187                         return false;
188         }
189         $db = $_SESSION["wa_current_user"]->set_db_connection($comp);
190         $_SESSION['wa_current_user']->prefs->theme = 'default';
191         return true;
192 }