Payment terms related functions moved to separate file, common function for calculati...
[fa-stable.git] / admin / db / attachments_db.inc
index 3fb0a915d5410de7ad61fc1027005399f46c7325..561bea33f8a917f720fe6f5d7f679d94e6e77cd0 100644 (file)
@@ -15,6 +15,8 @@
 function add_attachment($filterType, $trans_no, $description,
        $filename, $unique_name, $filesize, $filetype)
 {
+       begin_transaction(__FUNCTION__, func_get_args());
+
        $date = date2sql(Today());
        $sql = "INSERT INTO ".TB_PREF."attachments (type_no, trans_no, description, filename, unique_name,
                filesize, filetype, tran_date) VALUES (".db_escape($filterType).","
@@ -22,12 +24,16 @@ function add_attachment($filterType, $trans_no, $description,
                .db_escape($filename).", ".db_escape($unique_name).", ".db_escape($filesize)
                .", ".db_escape($filetype).", '$date')";
        db_query($sql, "Attachment could not be inserted");             
+
+       commit_transaction();
 }
 //----------------------------------------------------------------------------------------
 
 function update_attachment($selected_id, $filterType, $trans_no, $description,
        $filename, $unique_name, $filesize, $filetype)
 {
+       begin_transaction(__FUNCTION__, func_get_args());
+
        $date = date2sql(Today());
        $sql = "UPDATE ".TB_PREF."attachments SET
                type_no=".db_escape($filterType).",
@@ -42,14 +48,20 @@ function update_attachment($selected_id, $filterType, $trans_no, $description,
        }       
        $sql .= "tran_date='$date' WHERE id=".db_escape($selected_id);
        db_query($sql, "Attachment could not be updated");              
+
+       commit_transaction();
 }
 
 //----------------------------------------------------------------------------------------
 
 function delete_attachment($id)
 {
+       begin_transaction(__FUNCTION__, func_get_args());
+
        $sql = "DELETE FROM ".TB_PREF."attachments WHERE id = ".db_escape($id);
        db_query($sql, "Could not delete attachment");
+
+       commit_transaction();
 }
 
 //----------------------------------------------------------------------------------------
@@ -65,9 +77,9 @@ function get_attachment_string($type, $id)
         if (strlen($str_return))
             $str_return = $str_return . " \n";    
         $str_return .= _("Attached File:")." <a href='$path_to_root/admin/attachments.php?vw=".$attachment["id"]." ' target='blanc_'> ". 
-               $attachment["id"] . " " . $attachment["description"]. " - ". $attachment["filename"]."</a><br/>";
+               $attachment["id"] . " " . $attachment["description"]. " - ". $attachment["filename"]."</a><br>";
     }
-    return $str_return . "<br/>";
+    return $str_return . "<br>";
 }
 
 //----------------------------------------------------------------------------------------