X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Fdb%2Fattachments_db.inc;h=5712b22a9480cf1182ae8db4c51d4c076d2503cb;hb=87ac1ff401682a1ccbbbf01ece7afe8ff518d3fe;hp=6ce9960f2d1024321c49b50f12626ae7a1f9aa24;hpb=46c5f7a65a7659a44ae8254c63152074363d3987;p=fa-stable.git diff --git a/admin/db/attachments_db.inc b/admin/db/attachments_db.inc index 6ce9960f..5712b22a 100644 --- a/admin/db/attachments_db.inc +++ b/admin/db/attachments_db.inc @@ -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:")." ". + $attachment["id"] . " " . $attachment["description"]. " - ". $attachment["filename"]."
"; + } + return $str_return . "
"; +} + //---------------------------------------------------------------------------------------- function get_attached_documents($type) @@ -78,5 +97,11 @@ function has_attachment($type, $id) return $myrow['id']; } +function get_sql_for_attached_documents($type) +{ + return "SELECT trans_no, description, filename, filesize, filetype, tran_date, id, type_no FROM ".TB_PREF."attachments WHERE type_no=".db_escape($type) + ." ORDER BY trans_no DESC"; +} + ?> \ No newline at end of file