Old ineffective sql_trail superseded by new improved db_trail logging only calls...
[fa-stable.git] / gl / includes / db / gl_db_currencies.inc
index 8c9ad97924b16ce0457b8a04eacd4e53a3d7dbe5..b725c11318e2dec7300ad6247cdacbc91c89574e 100644 (file)
@@ -1,55 +1,82 @@
 <?php
-
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
+***********************************************************************/
 //---------------------------------------------------------------------------------------------
 
-function update_currency($curr_abrev, $symbol, $currency, $country, $hundreds_name)
+function update_currency($curr_abrev, $symbol, $currency, $country, 
+       $hundreds_name, $auto_update)
 {
-       $sql = "UPDATE ".TB_PREF."currencies SET currency='$currency', curr_symbol='$symbol',
-               country='$country', hundreds_name='$hundreds_name' WHERE curr_abrev = '$curr_abrev'";   
-                       
+       begin_transaction(__FUNCTION__, func_get_args());
+       $sql = "UPDATE ".TB_PREF."currencies SET currency=".db_escape($currency)
+               .", curr_symbol=".db_escape($symbol).", country=".db_escape($country)
+               .", hundreds_name=".db_escape($hundreds_name)
+               .",auto_update = ".db_escape($auto_update)
+                       ." WHERE curr_abrev = ".db_escape($curr_abrev);
+
        db_query($sql, "could not update currency for $curr_abrev");
+       commit_transaction();
 }
 
 //---------------------------------------------------------------------------------------------
 
-function add_currency($curr_abrev, $symbol, $currency, $country, $hundreds_name)
+function add_currency($curr_abrev, $symbol, $currency, $country, 
+       $hundreds_name, $auto_update)
 {
-       $sql = "INSERT INTO ".TB_PREF."currencies (curr_abrev, curr_symbol, currency, country, hundreds_name) 
-               VALUES ('$curr_abrev', '$symbol', '$currency', '$country', '$hundreds_name')";
-       
+       begin_transaction(__FUNCTION__, func_get_args());
+
+       $sql = "INSERT INTO ".TB_PREF."currencies (curr_abrev, curr_symbol, currency, 
+                       country, hundreds_name, auto_update)
+               VALUES (".db_escape($curr_abrev).", ".db_escape($symbol).", "
+               .db_escape($currency).", ".db_escape($country).", "
+               .db_escape($hundreds_name).",".db_escape($auto_update).")";
+
        db_query($sql, "could not add currency for $curr_abrev");
+
+       $result = db_insert_id();
+       commit_transaction();
+       return $result;
 }
 
 //---------------------------------------------------------------------------------------------
 
 function delete_currency($curr_code)
 {
-       $sql="DELETE FROM ".TB_PREF."currencies WHERE curr_abrev='$curr_code'";
+       begin_transaction(__FUNCTION__, func_get_args());
+
+       $sql="DELETE FROM ".TB_PREF."currencies WHERE curr_abrev=".db_escape($curr_code);
        db_query($sql, "could not delete currency       $curr_code");
-       
+
        $sql="DELETE FROM ".TB_PREF."exchange_rates WHERE curr_code='$curr_code'";
        db_query($sql, "could not delete exchange rates for currency $curr_code");
+
+       commit_transaction();
 }
 
 //---------------------------------------------------------------------------------------------
 
 function get_currency($curr_code)
 {
-       $sql = "SELECT * FROM ".TB_PREF."currencies WHERE curr_abrev='$curr_code'";     
+       $sql = "SELECT * FROM ".TB_PREF."currencies WHERE curr_abrev=".db_escape($curr_code);
        $result = db_query($sql, "could not get currency $curr_code");
-       
+
        $row = db_fetch($result);
-       return $row;                    
+       return $row;
 }
 
 //---------------------------------------------------------------------------------------------
 
-function get_currencies()
+function get_currencies($all=false)
 {
-       $sql = "SELECT * FROM ".TB_PREF."currencies";   
+       $sql = "SELECT * FROM ".TB_PREF."currencies";
+       if (!$all) $sql .= " WHERE !inactive";
        return db_query($sql, "could not get currencies");
 }
 
-//---------------------------------------------------------------------------------------------
-
-?>
\ No newline at end of file