b5abaef7f7f631bb1775bdaa5f9e42bf6b6b3679
[fa-stable.git] / sales / includes / db / sales_points_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_sales_point($name, $location, $account, $cash, $credit)
13 {
14         $sql = "INSERT INTO ".TB_PREF."sales_pos (pos_name, pos_location, pos_account, cash_sale, credit_sale) VALUES (".db_escape($name)
15                         . ",".db_escape($location).",".db_escape($account)
16                         . ",$cash,$credit)";
17         db_query($sql, "could not add point of sale");
18 }
19
20 function update_sales_point($id, $name, $location, $account, $cash, $credit)
21 {
22
23         $sql = "UPDATE ".TB_PREF."sales_pos SET pos_name=".db_escape($name)
24                                 .",pos_location=".db_escape($location)
25                                 .",pos_account=".db_escape($account)
26                                 .",cash_sale =$cash"
27                                 .",credit_sale =$credit"
28                                 ." WHERE id = ".db_escape($id);
29         
30         db_query($sql, "could not update sales type");                  
31 }
32
33 function get_all_sales_points($all=false)
34 {
35         $sql = "SELECT pos.*, loc.location_name, acc.bank_account_name FROM "
36                 .TB_PREF."sales_pos as pos
37                 LEFT JOIN ".TB_PREF."locations as loc on pos.pos_location=loc.loc_code
38                 LEFT JOIN ".TB_PREF."bank_accounts as acc on pos.pos_account=acc.id";
39         if (!$all) $sql .= " WHERE !pos.inactive";
40         
41         return db_query($sql, "could not get all POS definitions");
42
43
44 function get_sales_point($id)
45 {
46         $sql = "SELECT pos.*, loc.location_name, acc.bank_account_name FROM "
47                 .TB_PREF."sales_pos as pos
48                 LEFT JOIN ".TB_PREF."locations as loc on pos.pos_location=loc.loc_code
49                 LEFT JOIN ".TB_PREF."bank_accounts as acc on pos.pos_account=acc.id
50                 WHERE pos.id=".db_escape($id);
51         
52         $result = db_query($sql, "could not get POS definition");
53         
54         return db_fetch($result);
55 }
56
57 function get_sales_point_name($id)
58 {
59         $sql = "SELECT pos_name FROM ".TB_PREF."sales_pos WHERE id=".db_escape($id);
60         
61         $result = db_query($sql, "could not get POS name");
62         
63         $row = db_fetch_row($result);
64         return $row[0];
65 }
66
67 function delete_sales_point($id)
68 {
69         $sql="DELETE FROM ".TB_PREF."sales_pos WHERE id=".db_escape($id);
70         db_query($sql,"The point of sale record could not be deleted");
71 }
72