X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Fdb%2Fcompany_db.inc;h=39108db831f22d408f41f2344c3a1c3b9371f96a;hb=25379bdc9f10bda4aae4b37f04d16eb1bbe7e4f6;hp=ee98b4638f92e836ca3c379487b8ad5fd065c406;hpb=97023f8706bb7149c62ca49eaec123cca3c51fa0;p=fa-stable.git diff --git a/admin/db/company_db.inc b/admin/db/company_db.inc index ee98b463..39108db8 100644 --- a/admin/db/company_db.inc +++ b/admin/db/company_db.inc @@ -1,163 +1,189 @@ . +***********************************************************************/ +/* + Update main or gl company setup. +*/ +function update_company_prefs($params) { - $sql = "UPDATE ".TB_PREF."company SET - debtors_act='$debtors_act', pyt_discount_act='$pyt_discount_act', - creditors_act='$creditors_act', grn_act='$grn_act', - exchange_diff_act='$exchange_diff_act', - purch_exchange_diff_act='$purch_exchange_diff_act', - retained_earnings_act='$retained_earnings_act', - freight_act='$freight_act', - default_sales_act='$default_sales_act', - default_sales_discount_act='$default_sales_discount_act', - default_prompt_payment_act='$default_prompt_payment_act', - default_inventory_act='$default_inventory_act', - default_cogs_act='$default_cogs_act', - default_adj_act='$default_adj_act', - default_inv_sales_act='$default_inv_sales_act', - default_assembly_act='$default_assembly_act', - payroll_act='$payroll_act', - allow_negative_stock=$allow_negative_stock, - po_over_receive=$po_over_receive, - po_over_charge=$po_over_charge, - past_due_days=$past_due_days, - default_credit_limit=$default_credit_limit, - default_workorder_required=$default_workorder_required, - default_dim_required=$default_dim_required - WHERE coy_code=1"; - - db_query($sql, "The company gl setup could not be updated "); + $sql = "UPDATE ".TB_PREF."sys_prefs SET value = "; + foreach($params as $name => $value) { + if (!db_query($sql. db_escape($value). " WHERE name=".db_escape($name), + "The company prefferences could not be updated ")) + return false; + // update cached value + $_SESSION['SysPrefs']->prefs[$name] = $value; + } + return true; } - -function update_company_setup($coy_name, $coy_no, $gst_no, $tax_prd, $tax_last, $postal_address, $phone, $fax, $email, - $coy_logo, $domicile, $Dimension, $custom1_name, $custom2_name, $custom3_name, - $custom1_value, $custom2_value, $custom3_value, $curr_default, $f_year) +/* + Get company preferences. Returns cached values from global variable SysPrefs + or retrieved from database if SysPrefs values are not set. + $prefs can be preference name, array of names, or null for all preferences. + +*/ +function get_company_pref($prefs = null) { - if ($f_year == null) - $f_year = 0; - $sql = "UPDATE ".TB_PREF."company SET coy_name='$coy_name', - coy_no = '$coy_no', - gst_no='$gst_no', - tax_prd=$tax_prd, - tax_last=$tax_last, - postal_address ='$postal_address', - phone='$phone', fax='$fax', - email='$email', - coy_logo='$coy_logo', - domicile='$domicile', - use_dimension=$Dimension, - custom1_name='$custom1_name', - custom2_name='$custom2_name', - custom3_name='$custom3_name', - custom1_value='$custom1_value', - custom2_value='$custom2_value', - custom3_value='$custom3_value', - curr_default='$curr_default', - f_year=$f_year - WHERE coy_code=1"; - - db_query($sql, "The company setup could not be updated "); -} + global $SysPrefs, $db_version; -function get_company_prefs() -{ - $sql = "SELECT * FROM ".TB_PREF."company WHERE coy_code=1"; - $result = db_query($sql, "The company preferences could not be retrieved"); + if (!isset($SysPrefs->prefs)) // just after first login or reset + $SysPrefs->refresh(); - if (db_num_rows($result) == 0) - display_db_error("FATAL : Could not find company prefs", $sql); + $all = $SysPrefs->prefs; - return db_fetch($result); + if ($prefs && is_string($prefs)) + return @$all[$prefs]; + + if (!is_array($all)) + $all = array(); + + return $all; } -function get_company_pref($pref_name) +function get_company_prefs() { - $prefs = get_company_prefs(); - return $prefs[$pref_name]; + return get_company_pref(null); } -// fiscal year routines -function add_fiscalyear($from_date, $to_date, $closed) +function set_company_pref($pref, $category, $type, $length, $value) { - $from = date2sql($from_date); - $to = date2sql($to_date); - - $sql = "INSERT INTO ".TB_PREF."fiscal_year (begin, end, closed) - VALUES ('$from', '$to', $closed)"; - - db_query($sql, "could not add fiscal year"); + $sql = "REPLACE `".TB_PREF."sys_prefs` SET `name`=".db_escape($pref).", `category`=".db_escape($category) + .", `type`=".db_escape($type).", `length`=".db_escape($length).", `value`=".db_escape($value); + return db_query($sql, "cannot set company pref"); } -function update_fiscalyear($from_date, $closed) +function get_base_sales_type() { - $from = date2sql($from_date); + return get_company_pref('base_sales'); +} - $sql = "UPDATE ".TB_PREF."fiscal_year SET closed=$closed - WHERE begin='$from'"; +function get_company_extensions($id = -1) { + global $path_to_root; - db_query($sql, "could not update fiscal year"); + $file = $path_to_root.($id == -1 ? '' : '/company/'.(int)$id).'/installed_extensions.php'; + $installed_extensions = array(); + if (is_file($file)) { + include($file); + } + return $installed_extensions; } -function get_all_fiscalyears() +function add_payment_terms($daysOrFoll, $terms, $dayNumber) { - $sql = "SELECT * FROM ".TB_PREF."fiscal_year ORDER BY begin"; - - return db_query($sql, "could not get all fiscal years"); + if ($daysOrFoll) + { + $sql = "INSERT INTO ".TB_PREF."payment_terms (terms, + days_before_due, day_in_following_month) + VALUES (" . + db_escape($terms) . ", " . db_escape($dayNumber) . ", 0)"; + } + else + { + $sql = "INSERT INTO ".TB_PREF."payment_terms (terms, + days_before_due, day_in_following_month) + VALUES (" . db_escape($terms) . ", + 0, " . db_escape($dayNumber) . ")"; + } + db_query($sql,"The payment term could not be added"); } -function get_fiscalyear($from_date) +function update_payment_terms($selected_id, $daysOrFoll, $terms, $dayNumber) { - $from = date2sql($from_date); - - $sql = "SELECT * FROM ".TB_PREF."fiscal_year WHERE begin='$from'"; - - $result = db_query($sql, "could not get fiscal year"); - - return db_fetch($result); + if ($daysOrFoll) + { + $sql = "UPDATE ".TB_PREF."payment_terms SET terms=" . db_escape($terms) . ", + day_in_following_month=0, + days_before_due=" . db_escape($dayNumber) . " + WHERE terms_indicator = " .db_escape($selected_id); + } + else + { + $sql = "UPDATE ".TB_PREF."payment_terms SET terms=" . db_escape($terms) . ", + day_in_following_month=" . db_escape($dayNumber) . ", + days_before_due=0 + WHERE terms_indicator = " .db_escape($selected_id); + } + db_query($sql,"The payment term could not be updated"); } -function get_current_fiscalyear() +function delete_payment_terms($selected_id) { - $year = get_company_pref('f_year'); + $sql="DELETE FROM ".TB_PREF."payment_terms WHERE terms_indicator=".db_escape($selected_id); + db_query($sql,"could not delete a payment terms"); +} - $sql = "SELECT * FROM ".TB_PREF."fiscal_year WHERE id=$year"; +function get_payment_terms($selected_id) +{ + $sql = "SELECT *, (t.days_before_due=0) AND (t.day_in_following_month=0) as cash_sale + FROM ".TB_PREF."payment_terms t WHERE terms_indicator=".db_escape($selected_id); - $result = db_query($sql, "could not get current fiscal year"); + $result = db_query($sql,"could not get payment term"); return db_fetch($result); } -function delete_fiscalyear($from_date) +function get_payment_terms_all($show_inactive) +{ + $sql = "SELECT * FROM ".TB_PREF."payment_terms"; + if (!$show_inactive) $sql .= " WHERE !inactive"; + return db_query($sql,"could not get payment terms"); +} +/* + Return number of records in tables, where some foreign key $id is used. + $id - searched key value + $tables - array of table names (without prefix); when table name is used as a key, then + value is name of foreign key field. For numeric keys $stdkey field name is used. + $stdkey - standard name of foreign key. +*/ +function key_in_foreign_table($id, $tables, $stdkey) { - $from = date2sql($from_date); - begin_transaction(); - $sql="DELETE FROM ".TB_PREF."fiscal_year WHERE begin='$from'"; + if (!is_array($tables)) + $tables = array($tables); - db_query($sql, "could not delete fiscal year"); + $sqls = array(); + foreach ($tables as $tbl => $key) { + if (is_numeric($tbl)) { + $tbl = $key; + $key = $stdkey; + } + $sqls[] = "(SELECT COUNT(*) as cnt FROM `".TB_PREF."$tbl` WHERE `$key`=".db_escape($id).")\n"; + } - commit_transaction(); -} + $sql = "SELECT sum(cnt) FROM (". implode(' UNION ', $sqls).") as counts"; + + $result = db_query($sql, "check relations for ".implode(',',$tables)." failed"); + $count = db_fetch($result); + return $count[0]; +} -?> \ No newline at end of file +//--------------------------------------------------------------------------------------------- +// +// Resets $theme references in users records to 'default'. +// +function clean_user_themes($theme) +{ + global $db_connections, $db; + + $comp = user_company(); + + $connections = $db_connections; // do not use db_connections directly here, or script will hang due to db_connections usage inside the loop + foreach ($connections as $n => $conn) { + $db = $_SESSION["wa_current_user"]->set_db_connection($n); + $sql = "UPDATE {$conn['tbpref']}users SET theme='default' WHERE theme='$theme'"; + if (!db_query($sql, 'Cannot update user theme settings')) + return false; + } + $db = $_SESSION["wa_current_user"]->set_db_connection($comp); + $_SESSION['wa_current_user']->prefs->theme = 'default'; + return true; +}