41fd14acc4cdc0f5c0be3629963657d2d2d5e507
[fa-stable.git] / inventory / includes / db / movement_types_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 function add_movement_type($name)
13 {
14         $sql = "INSERT INTO ".TB_PREF."movement_types (name)
15                 VALUES (".db_escape($name).")";
16
17         db_query($sql, "could not add item movement type");
18 }
19
20 function update_movement_type($type_id, $name)
21 {
22         $sql = "UPDATE ".TB_PREF."movement_types SET name=".db_escape($name)."
23                         WHERE id=$type_id";
24
25         db_query($sql, "could not update item movement type");
26 }
27
28 function get_all_movement_type($all=false)
29 {
30         $sql = "SELECT * FROM ".TB_PREF."movement_types";
31         if (!$all) $sql .= " WHERE !inactive";
32
33         return db_query($sql, "could not get all item movement type");
34 }
35
36 function get_movement_type($type_id)
37 {
38         $sql = "SELECT * FROM ".TB_PREF."movement_types WHERE id=$type_id";
39         $result = db_query($sql, "could not get item movement type");
40
41         return db_fetch($result);
42 }
43
44 function delete_movement_type($type_id)
45 {
46         $sql="DELETE FROM ".TB_PREF."movement_types WHERE id=$type_id";
47
48         db_query($sql, "could not delete item movement type");
49 }
50
51 ?>