Admin and dimensions modules sealed against XSS atacks
[fa-stable.git] / admin / db / voiding_db.inc
1 <?php
2
3 include_once($path_to_root . "/sales/includes/sales_db.inc");
4 include_once($path_to_root . "/purchasing/includes/purchasing_db.inc");
5 include_once($path_to_root . "/inventory/includes/inventory_db.inc");
6 include_once($path_to_root . "/manufacturing/includes/manufacturing_db.inc");
7
8 function void_transaction($type, $type_no, $date_, $memo_)
9 {
10         $void_entry = get_voided_entry($type, $type_no);
11
12         if ($void_entry != null)
13                 return false;
14
15         switch ($type) {
16                 case 0 : // it's a journal entry
17                         if (!exists_gl_trans($type, $type_no))
18                                 return false;
19                         void_gl_trans($type, $type_no);
20                         if (exists_bank_trans($type, $type_no))
21                                 void_bank_trans($type, $type_no);
22                         break;
23
24                 case 1 : // it's a payment
25                 case 2 : // it's a deposit
26                 case 4 : // it's a transfer
27                         if (!exists_bank_trans($type, $type_no))
28                                 return false;
29                         void_bank_trans($type, $type_no);
30                         break;
31
32                 case 10 : // it's a customer invoice
33                 case 11 : // it's a customer credit note
34                 case 12 : // it's a customer payment
35                 case 13 : // it's a customer dispatch
36                         if (!exists_customer_trans($type, $type_no))
37                                 return false;
38                         post_void_customer_trans($type, $type_no);
39                         break;
40
41                 case systypes::location_transfer() : // it's a stock transfer
42                         if (get_stock_transfer_items($type_no) == null)
43                                 return false;
44                         void_stock_transfer($type_no);
45                         break;
46
47                 case systypes::inventory_adjustment() : // it's a stock adjustment
48                         if (get_stock_adjustment_items($type_no) == null)
49                                 return false;
50                         void_stock_adjustment($type_no);
51                         break;
52
53                 case 20 : // it's a suppler invoice
54                 case 21 : // it's a supplier credit note
55                 case 22 : // it's a supplier payment
56                 case 25 : // it's a GRN
57                         if (!exists_supp_trans($type, $type_no))
58                                 return false;
59                         if (!post_void_supp_trans($type, $type_no))
60                                 return false;
61                         break;
62
63                 case systypes::work_order() : // it's a work order
64                         if (!get_work_order($type_no, true))
65                                 return false;
66                         void_work_order($type_no);
67                         break;
68
69                 case 28 : // it's a work order issue
70                         if (!exists_work_order_issue($type_no))
71                                 return false;
72                         void_work_order_issue($type_no);
73                         break;
74
75                 case 29 : // it's a work order production
76                         if (!exists_work_order_produce($type_no))
77                                 return false;
78                         void_work_order_produce($type_no);
79                         break;
80
81                 case systypes::cost_update() : // it's a stock cost update
82                         break;
83         }
84
85         // only add an entry if it's actually been voided
86         add_voided_entry($type, $type_no, $date_, $memo_);
87
88         return true;
89 }
90
91 //--------------------------------------------------------------------------------------------------
92
93 function get_voided_entry($type, $type_no)
94 {
95         $sql = "SELECT * FROM ".TB_PREF."voided WHERE type=$type AND id=$type_no";
96
97         $result = db_query($sql, "could not query voided transaction table");
98
99         return db_fetch($result);
100 }
101
102 //--------------------------------------------------------------------------------------------------
103
104 function add_voided_entry($type, $type_no, $date_, $memo_)
105 {
106         $date = date2sql($date_);
107         $sql = "INSERT INTO ".TB_PREF."voided (type, id, date_, memo_)
108                 VALUES ($type, $type_no, ".db_escape($date).", ".db_escape($memo_).")";
109
110         db_query($sql, "could not add voided transaction entry");
111 }
112
113 //--------------------------------------------------------------------------------------------------
114
115 ?>