Opitimized bank transaction edition code, [0000270] invalid next reference update.
[fa-stable.git] / gl / includes / db / gl_db_bank_trans.inc
index 24b60d9cb45b5d2e5146542caaf380f26e2631a5..90dc8c4afd40d2522d96e2042475e87b271b1ee7 100644 (file)
@@ -150,41 +150,4 @@ function void_bank_trans($type, $type_no, $nested=false)
                commit_transaction();
 }
 
-//----------------------------------------------------------------------------------
-
-//----------------------------------------------------------------------------------------
-
-function clear_bank_trans($type, $type_no, $nested=false)
-{
-       global $Refs;
-       
-       if (!$nested)
-               begin_transaction();
-
-       $sql = "DELETE FROM ".TB_PREF."bank_trans 
-               WHERE type=".db_escape($type)." AND trans_no=".db_escape($type_no);
-
-       $result = db_query($sql, "could not clear bank transactions for type=$type and trans_no=$type_no");
-
-       clear_gl_trans($type, $type_no, true);
-
-       // in case it's a customer trans - probably better to check first
-       void_cust_allocations($type, $type_no);
-       clear_customer_trans($type, $type_no);
-
-       // in case it's a supplier trans - probably better to check first
-       void_supp_allocations($type, $type_no);
-       clear_supp_trans($type, $type_no);
-
-       clear_trans_tax_details($type, $type_no);
-
-       //Delete the reference
-       $Refs->delete($type, $type_no); 
-
-       delete_comments($type, $type_no);
-       if (!$nested)
-               commit_transaction();
-}
-
-
 ?>
\ No newline at end of file