Rerun of items attachments. Including fixed assets.
[fa-stable.git] / admin / db / attachments_db.inc
index c4fc0d68fab7c4bb6fa0db0e8cd7858687d6c1d3..c280688485957f3bcf5746fbb88fa9067acad1cf 100644 (file)
@@ -64,7 +64,8 @@ function get_attachment_string($type, $id)
     {
         if (strlen($str_return))
             $str_return = $str_return . " \n";    
-        $str_return .= _("Attached File:")." <a target='_blank' href='$path_to_root/admin/attachments.php?vw=".$attachment["id"]."' onclick='javascript:openWindow(this.href, this.target);return false;'> ".$attachment["id"] . " " . $attachment["description"]. " - ". $attachment["filename"]."</a><br>";
+        $str_return .= _("Attached File:")." <a target='_blank' href='$path_to_root/admin/attachments.php?vw=".$attachment["id"]."' onclick='javascript:openWindow(this.href, this.target);return false;'> ".
+               $attachment["id"] . " " . $attachment["description"]. " - ". $attachment["filename"]."</a><br>";
     }
     return $str_return . "<br>";
 }
@@ -103,7 +104,7 @@ function get_sql_for_attached_documents($type, $id_no)
     // $_POST['trans_no'] will be used to store the customer_id or supplier_id for them
        $sql = "SELECT trans_no, description, filename, filesize, filetype, tran_date, id, type_no FROM ".TB_PREF."attachments WHERE type_no=".db_escape($type);
 
-       if(($type == ST_CUSTOMER || $type == ST_SUPPLIER) && $id_no != null)
+       if(($type == ST_CUSTOMER || $type == ST_SUPPLIER || $type == ST_ITEM || $type == ST_FIXEDASSET) && $id_no != null)
                $sql .=" AND trans_no = ".db_escape($id_no);
 
        $sql .= " ORDER BY trans_no DESC";