X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Fattachments.php;h=b3ad754532e165c5dab0a41bb5cb1e276962d871;hb=9044444ee1933dc684c6aab26ac718e65ce8c370;hp=565e4b1ed836e7b177c3a36974ce04f0930fd5c8;hpb=3d95c6844745f183ebab970251cd254dd6cbdcec;p=fa-stable.git diff --git a/admin/attachments.php b/admin/attachments.php index 565e4b1e..b3ad7545 100644 --- a/admin/attachments.php +++ b/admin/attachments.php @@ -80,23 +80,22 @@ if (isset($_GET['trans_no'])) if ($Mode == 'ADD_ITEM' || $Mode == 'UPDATE_ITEM') { - if($_POST['filterType'] == ST_CUSTOMER){ - $_POST['trans_no'] = $_POST['customer_id']; - }elseif($_POST['filterType'] == ST_SUPPLIER){ - $_POST['trans_no'] = $_POST['supplier_id']; - } - + $filename = basename($_FILES['filename']['name']); if (!transaction_exists($_POST['filterType'], $_POST['trans_no'])) display_error(_("Selected transaction does not exists.")); - elseif ($Mode == 'ADD_ITEM' && !isset($_FILES['filename'])) + elseif ($Mode == 'ADD_ITEM' && !in_array(strtoupper(substr($filename, strlen($filename) - 3)), array('JPG','PNG','GIF', 'PDF', 'DOC', 'ODT'))) + { + display_error(_('Only graphics,pdf,doc and odt files are supported.')); + } elseif ($Mode == 'ADD_ITEM' && !isset($_FILES['filename'])) display_error(_("Select attachment file.")); elseif ($Mode == 'ADD_ITEM' && ($_FILES['filename']['error'] > 0)) { if ($_FILES['filename']['error'] == UPLOAD_ERR_INI_SIZE) display_error(_("The file size is over the maximum allowed.")); else display_error(_("Select attachment file.")); - } - else { + } elseif ( strlen($filename) > 60) { + display_error(_("File name exceeds maximum of 60 chars. Please change filename and try again.")); + } else { //$content = base64_encode(file_get_contents($_FILES['filename']['tmp_name'])); $tmpname = $_FILES['filename']['tmp_name']; @@ -110,7 +109,6 @@ if ($Mode == 'ADD_ITEM' || $Mode == 'UPDATE_ITEM') fclose($fp); } - $filename = basename($_FILES['filename']['name']); $filesize = $_FILES['filename']['size']; $filetype = $_FILES['filename']['type']; @@ -143,10 +141,10 @@ if ($Mode == 'ADD_ITEM' || $Mode == 'UPDATE_ITEM') $filename, $unique_name, $filesize, $filetype); display_notification(_("Attachment has been updated.")); } + reset_form(); } refresh_pager('trans_tbl'); $Ajax->activate('_page_body'); - $Mode = 'RESET'; } if ($Mode == 'Delete') @@ -157,11 +155,15 @@ if ($Mode == 'Delete') unlink($dir."/".$row['unique_name']); delete_attachment($selected_id); display_notification(_("Attachment has been deleted.")); - $Mode = 'RESET'; + reset_form(); } if ($Mode == 'RESET') + reset_form(); + +function reset_form() { + global $selected_id; unset($_POST['trans_no']); unset($_POST['description']); $selected_id = -1; @@ -176,12 +178,12 @@ function viewing_controls() start_row(); systypes_list_cells(_("Type:"), 'filterType', null, true); if (list_updated('filterType')) - $selected_id = -1; + reset_form(); if(get_post('filterType') == ST_CUSTOMER ){ - customer_list_cells(_("Select a customer: "), 'customer_id', null, _('Select customer'), true, true); + customer_list_cells(_("Select a customer: "), 'trans_no', null, false, true, true); } elseif(get_post('filterType') == ST_SUPPLIER){ - supplier_list_cells(_("Select a supplier: "), 'supplier_id', null, _('Select supplier'), true,true); + supplier_list_cells(_("Select a supplier: "), 'trans_no', null, false, true,true); } end_row(); @@ -214,11 +216,11 @@ function delete_link($row) return button('Delete'.$row["id"], _("Delete"), _("Delete"), ICON_DELETE); } -function display_rows($type, $id_no) +function display_rows($type, $trans_no) { - $sql = get_sql_for_attached_documents($type, $id_no); + $sql = get_sql_for_attached_documents($type, $type==ST_SUPPLIER || $type==ST_CUSTOMER ? $trans_no : 0); $cols = array( - _("#") => array('fun'=>'trans_view', 'ord'=>''), + _("#") => $type == ST_SUPPLIER || $type == ST_CUSTOMER? 'skip' : array('fun'=>'trans_view', 'ord'=>''), _("Description") => array('name'=>'description'), _("Filename") => array('name'=>'filename'), _("Size") => array('name'=>'filesize'), @@ -229,20 +231,25 @@ function display_rows($type, $id_no) array('insert'=>true, 'fun'=>'download_link'), array('insert'=>true, 'fun'=>'delete_link') ); - $table =& new_db_pager('trans_tbl', $sql, $cols); - $table->width = "60%"; + $table =& new_db_pager('trans_tbl', $sql, $cols); - display_db_pager($table); + $table->width = "60%"; + + display_db_pager($table); } //---------------------------------------------------------------------------------------- +if (list_updated('filterType') || list_updated('trans_no')) + $Ajax->activate('_page_body'); start_form(true); viewing_controls(); -$id_no = ($_POST['filterType'] == ST_CUSTOMER) ? get_post('customer_id') : get_post('supplier_id'); -display_rows($_POST['filterType'], $id_no); + +$type = get_post('filterType'); + +display_rows($type, get_post('trans_no')); br(2); @@ -257,15 +264,14 @@ if ($selected_id != -1) $_POST['description'] = $row["description"]; hidden('trans_no', $row['trans_no']); hidden('unique_name', $row['unique_name']); - label_row(_("Transaction #"), $row['trans_no']); + if ($type != ST_SUPPLIER && $type != ST_CUSTOMER) + label_row(_("Transaction #"), $row['trans_no']); } hidden('selected_id', $selected_id); } else { - if( $id_no == 0 ) + if ($type != ST_SUPPLIER && $type != ST_CUSTOMER) text_row_ex(_("Transaction #").':', 'trans_no', 10); - else - hidden('trans_no', $id_no); } text_row_ex(_("Description").':', 'description', 40); file_row(_("Attached File") . ":", 'filename', 'filename');