Merged all main trunk bugfixes up to release 2.0.5
[fa-stable.git] / admin / db / voiding_db.inc
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU Affero General Public License,
5         AGPL, as published by the Free Software Foundation, either version 
6         3 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/agpl-3.0.html>.
11 ***********************************************************************/
12 include_once($path_to_root . "/sales/includes/sales_db.inc");
13 include_once($path_to_root . "/purchasing/includes/purchasing_db.inc");
14 include_once($path_to_root . "/inventory/includes/inventory_db.inc");
15 include_once($path_to_root . "/manufacturing/includes/manufacturing_db.inc");
16
17 function void_transaction($type, $type_no, $date_, $memo_)
18 {
19         $void_entry = get_voided_entry($type, $type_no);
20
21         if ($void_entry != null)
22                 return false;
23
24         switch ($type) {
25                 case 0 : // it's a journal entry
26                         if (!exists_gl_trans($type, $type_no))
27                                 return false;
28                         void_gl_trans($type, $type_no);
29                         if (exists_bank_trans($type, $type_no))
30                                 void_bank_trans($type, $type_no);
31                         break;
32
33                 case 1 : // it's a payment
34                 case 2 : // it's a deposit
35                 case 4 : // it's a transfer
36                         if (!exists_bank_trans($type, $type_no))
37                                 return false;
38                         void_bank_trans($type, $type_no);
39                         break;
40
41                 case 10 : // it's a customer invoice
42                 case 11 : // it's a customer credit note
43                 case 12 : // it's a customer payment
44                 case 13 : // it's a customer dispatch
45                         if (!exists_customer_trans($type, $type_no))
46                                 return false;
47                         if ($type == 13)        // added 04 Oct 2008 by Joe Hunt. If delivery note has a not voided invoice, then NO.
48                         {
49                                 $delivery = get_customer_trans($type_no, $type);
50                                 if ($delivery['trans_link'] != 0)
51                                 {
52                                         if (get_voided_entry(10, $delivery['trans_link']) === false)
53                                                 return false;
54                                 }
55                         }       
56                         post_void_customer_trans($type, $type_no);
57                         break;
58
59                 case systypes::location_transfer() : // it's a stock transfer
60                         if (get_stock_transfer_items($type_no) == null)
61                                 return false;
62                         void_stock_transfer($type_no);
63                         break;
64
65                 case systypes::inventory_adjustment() : // it's a stock adjustment
66                         if (get_stock_adjustment_items($type_no) == null)
67                                 return false;
68                         void_stock_adjustment($type_no);
69                         break;
70
71                 case 25 : // it's a GRN
72                         return false;
73                 case 20 : // it's a suppler invoice
74                 case 21 : // it's a supplier credit note
75                 case 22 : // it's a supplier payment
76                         if (!exists_supp_trans($type, $type_no))
77                                 return false;
78                         if (!post_void_supp_trans($type, $type_no))
79                                 return false;
80                         break;
81
82                 case systypes::work_order() : // it's a work order
83                         if (!get_work_order($type_no, true))
84                                 return false;
85                         void_work_order($type_no);
86                         break;
87
88                 case 28 : // it's a work order issue
89                         if (!exists_work_order_issue($type_no))
90                                 return false;
91                         void_work_order_issue($type_no);
92                         break;
93
94                 case 29 : // it's a work order production
95                         if (!exists_work_order_produce($type_no))
96                                 return false;
97                         void_work_order_produce($type_no);
98                         break;
99
100                 case systypes::cost_update() : // it's a stock cost update
101                         return false;
102                         break;
103         }
104
105         // only add an entry if it's actually been voided
106         add_voided_entry($type, $type_no, $date_, $memo_);
107
108         return true;
109 }
110
111 //--------------------------------------------------------------------------------------------------
112
113 function get_voided_entry($type, $type_no)
114 {
115         $sql = "SELECT * FROM ".TB_PREF."voided WHERE type=$type AND id=$type_no";
116
117         $result = db_query($sql, "could not query voided transaction table");
118
119         return db_fetch($result);
120 }
121
122 //--------------------------------------------------------------------------------------------------
123
124 function add_voided_entry($type, $type_no, $date_, $memo_)
125 {
126         $date = date2sql($date_);
127         $sql = "INSERT INTO ".TB_PREF."voided (type, id, date_, memo_)
128                 VALUES ($type, $type_no, ".db_escape($date).", ".db_escape($memo_).")";
129
130         db_query($sql, "could not add voided transaction entry");
131 }
132
133 //--------------------------------------------------------------------------------------------------
134
135 ?>