Attachments were not moved to new transaction after edition for some document types.
[fa-stable.git] / admin / db / attachments_db.inc
index e18000fe3f8f2db9e6f61a70a4b416cdf3ca488c..3fb0a915d5410de7ad61fc1027005399f46c7325 100644 (file)
@@ -51,6 +51,25 @@ function delete_attachment($id)
        $sql = "DELETE FROM ".TB_PREF."attachments WHERE id = ".db_escape($id);
        db_query($sql, "Could not delete attachment");
 }
+
+//----------------------------------------------------------------------------------------
+
+function get_attachment_string($type, $id)
+{
+       global $path_to_root;
+    $str_return = "";    
+    $sql = "SELECT * FROM ".TB_PREF."attachments WHERE type_no=".db_escape($type)." AND trans_no=".db_escape($id)." ORDER BY trans_no";
+    $return = db_query($sql, "Could not retrieve attachments");
+    while ($attachment = db_fetch($return))
+    {
+        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/>";
+    }
+    return $str_return . "<br/>";
+}
+
 //----------------------------------------------------------------------------------------
 
 function get_attached_documents($type)
@@ -84,5 +103,11 @@ function get_sql_for_attached_documents($type)
        ." ORDER BY trans_no DESC";
 }
 
+function move_trans_attachments($type, $trans_from, $trans_to)
+{
+       $sql = "UPDATE ".TB_PREF."attachments SET trans_no=".db_escape($trans_to)
+               ." WHERE type_no=".db_escape($type)." AND trans_no=".db_escape($trans_from);
+       db_query($sql, 'cannot move atachments');
+}
+
 
-?>
\ No newline at end of file