X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Fdb%2Fattachments_db.inc;h=bae91fe179507c00179e923ef42a8efcc22be420;hb=d1de4b72e5fa6b5952c75b7c79479935bdd0d9d8;hp=e563dba3a7bba84dd5e6b9afb2691cba6e2c1b2e;hpb=fe2e057d97e8a8bc2429025b861f9229c5b9fe05;p=fa-stable.git diff --git a/admin/db/attachments_db.inc b/admin/db/attachments_db.inc index e563dba3..bae91fe1 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) && $id_no != null) + if(($type == ST_CUSTOMER || $type == ST_SUPPLIER || $type == ST_ITEM) && $id_no != null) $sql .=" AND trans_no = ".db_escape($id_no); $sql .= " ORDER BY trans_no DESC";