X-Git-Url: https://delta.frontaccounting.com/gitweb/?p=fa-stable.git;a=blobdiff_plain;f=admin%2Fdb%2Fattachments_db.inc;fp=admin%2Fdb%2Fattachments_db.inc;h=5a935fbf5bb7c26bd35ba7198f40afb6541f8eb4;hp=c280688485957f3bcf5746fbb88fa9067acad1cf;hb=3331ec7af8426899cdb765c98d96563d4b583193;hpb=0f465ad5e73c6683a5102bde63821a6f6a1c3f3a diff --git a/admin/db/attachments_db.inc b/admin/db/attachments_db.inc index c2806884..5a935fbf 100644 --- a/admin/db/attachments_db.inc +++ b/admin/db/attachments_db.inc @@ -104,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 || $type == ST_ITEM || $type == ST_FIXEDASSET) && $id_no != null) + if(($type == ST_CUSTOMER || $type == ST_SUPPLIER || $type == ST_ITEM || $type == ST_FIXEDASSET || $type == ST_BANKACCOUNT) && $id_no != null) $sql .=" AND trans_no = ".db_escape($id_no); $sql .= " ORDER BY trans_no DESC";