b774d2bc0d90f83a83a1fbcb37b77148181745fe
[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         begin_transaction(__FUNCTION__, func_get_args());
18
19         $sql = "UPDATE ".TB_PREF."sys_prefs SET value = ";
20         foreach($params as $name => $value) {
21                 if (!db_query($sql. db_escape($value). " WHERE name=".db_escape($name),
22                          "The company prefferences could not be updated "))
23                         return false;
24                 // update cached value
25                 $_SESSION['SysPrefs']->prefs[$name] = $value;
26         }
27
28         commit_transaction();
29         return true;
30 }
31 /*
32         Get company preferences. Returns cached values from global variable SysPrefs
33         or retrieved from database if SysPrefs values are not set.
34         $prefs can be preference name, array of names, or null for all preferences.
35         
36 */
37 function get_company_pref($prefs = null)
38 {
39         global $SysPrefs, $db_version;
40
41         if (!isset($SysPrefs->prefs))    // just after first login or reset
42                 $SysPrefs->refresh();
43
44         $all = $SysPrefs->prefs;
45
46         if ($prefs && is_string($prefs))
47                 return @$all[$prefs];
48
49         if (!is_array($all))
50                 $all = array();
51
52         return $all;
53 }
54
55 function get_company_prefs()
56 {
57         return get_company_pref(null);
58 }
59
60 function set_company_pref($pref, $category, $type, $length, $value)
61 {
62         begin_transaction(__FUNCTION__, func_get_args());
63
64         $sql = "REPLACE `".TB_PREF."sys_prefs` SET `name`=".db_escape($pref).", `category`=".db_escape($category)
65                 .", `type`=".db_escape($type).", `length`=".db_escape($length).", `value`=".db_escape($value);
66         $result = db_query($sql, "cannot set company pref");
67
68         commit_transaction();
69         return $result;
70
71 }
72
73 function get_base_sales_type()
74 {
75         return get_company_pref('base_sales');
76 }
77
78 function get_company_extensions($id = -1) {
79         global $path_to_root;
80
81         $file = $path_to_root.($id == -1 ? '' : '/company/'.(int)$id).'/installed_extensions.php';
82         $installed_extensions = array();
83         if (is_file($file)) {
84                 include($file);
85         }
86         return $installed_extensions;
87 }
88
89 function add_payment_terms($terms, $type, $days=0, $early_discount=0, $early_days=0)
90 {
91         begin_transaction(__FUNCTION__, func_get_args());
92
93         $sql = "INSERT INTO ".TB_PREF."payment_terms (terms, type, days, early_discount, early_days)
94                 VALUES (" .db_escape($terms) . "," . db_escape($type) . ", ".db_escape($days). ", ".db_escape($early_discount). ", ".db_escape($early_days).")";
95
96         db_query($sql,"The payment term could not be added");
97
98         commit_transaction();
99 }
100
101 function update_payment_terms($selected_id, $terms, $type, $days=0, $early_discount=0, $early_days=0)
102 {
103         begin_transaction(__FUNCTION__, func_get_args());
104
105         $sql = "UPDATE ".TB_PREF."payment_terms SET terms=" . db_escape($terms) . ",
106                 type=".db_escape($type).",
107                 days=" . db_escape($days).",
108                 early_discount=".db_escape($early_discount).",
109                 early_days=".db_escape($early_days).
110                 " WHERE id = " .db_escape($selected_id);
111
112         db_query($sql,"The payment term could not be updated");
113
114         commit_transaction();
115 }
116
117 function delete_payment_terms($selected_id)
118 {
119         begin_transaction(__FUNCTION__, func_get_args());
120
121         $sql="DELETE FROM ".TB_PREF."payment_terms WHERE id=".db_escape($selected_id);
122         db_query($sql,"could not delete a payment terms");
123
124         commit_transaction();
125 }
126
127 function get_payment_terms($selected_id)
128 {
129         $sql = "SELECT * FROM ".TB_PREF."payment_terms t WHERE id=".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         begin_transaction(__FUNCTION__, func_get_args());
181
182         $comp = user_company();
183
184         $connections = $db_connections; // do not use db_connections directly here, or script will hang due to db_connections usage inside the loop
185         foreach ($connections as $n => $conn) {
186                 $db = $_SESSION["wa_current_user"]->set_db_connection($n);
187                 $sql = "UPDATE {$conn['tbpref']}users SET theme='default' WHERE theme='$theme'";
188                 if (!db_query($sql, 'Cannot update user theme settings'))
189                         return false;
190         }
191         $db = $_SESSION["wa_current_user"]->set_db_connection($comp);
192         $_SESSION['wa_current_user']->prefs->theme = 'default';
193
194         commit_transaction();
195         return true;
196 }