X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Fdb%2Fattachments_db.inc;h=561bea33f8a917f720fe6f5d7f679d94e6e77cd0;hb=89e8ca2be9235215ac2e2bf5e58d7eedd2dda84d;hp=e18000fe3f8f2db9e6f61a70a4b416cdf3ca488c;hpb=2a721693c8b5d1ebf55b51e4ed9396a29a1147b2;p=fa-stable.git diff --git a/admin/db/attachments_db.inc b/admin/db/attachments_db.inc index e18000fe..561bea33 100644 --- a/admin/db/attachments_db.inc +++ b/admin/db/attachments_db.inc @@ -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,15 +48,40 @@ 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(); } + +//---------------------------------------------------------------------------------------- + +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) @@ -84,5 +115,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