Joe Hun rerun, didn't work (empty file when inserting). Better ratio when showing...
[fa-stable.git] / inventory / manage / items.php
index 78ca9f2b34378a79175738a18409c486a07dbe12..ca65111db900345424a3d1f162618e33c2f4cd36 100644 (file)
@@ -1,5 +1,14 @@
 <?php
-
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
+***********************************************************************/
 $page_security = 11;
 $path_to_root="../..";
 include($path_to_root . "/includes/session.inc");
@@ -13,58 +22,54 @@ include_once($path_to_root . "/includes/data_checks.inc");
 include_once($path_to_root . "/inventory/includes/inventory_db.inc");
 
 $user_comp = user_company();
+$new_item = get_post('stock_id')==''; 
 //------------------------------------------------------------------------------------
 
 if (isset($_GET['stock_id']))
 {
-       $stock_id = strtoupper($_GET['stock_id']);
+       $_POST['stock_id'] = $stock_id = $_GET['stock_id'];
 }
-else if (isset($_POST['stock_id']))
+elseif (isset($_POST['stock_id']))
 {
-       $stock_id = strtoupper($_POST['stock_id']);
+       $stock_id = $_POST['stock_id'];
 }
-
-if (isset($_GET['New']) || !isset($_POST['NewStockID'])) 
-{
-       $_POST['New'] = "1";
-}
-
-if (isset($_POST['SelectStockItem'])) 
-{
-       $_POST['NewStockID'] = $_POST['stock_id'];
-       unset($_POST['New']);
+if (list_updated('stock_id')) {
+       $_POST['NewStockID'] = get_post('stock_id');
+    clear_data();
+       $Ajax->activate('details');
+       $Ajax->activate('controls');
 }
 $upload_file = "";
 if (isset($_FILES['pic']) && $_FILES['pic']['name'] != '') 
 {
+       $stock_id = $_POST['NewStockID'];
        $result = $_FILES['pic']['error'];
        $upload_file = 'Yes'; //Assume all is well to start off with
-       $filename = $path_to_root . "/inventory/manage/image/$user_comp/";
+       $filename = $comp_path . "/$user_comp/images";
        if (!file_exists($filename))
        {
                mkdir($filename);
        }       
-       $filename .= "$stock_id.jpg";
+       $filename .= "/".item_img_name($stock_id).".jpg";
        
         //But check for the worst 
        if (strtoupper(substr(trim($_FILES['pic']['name']), strlen($_FILES['pic']['name']) - 3)) != 'JPG')
        {
-               display_notification(_('Only jpg files are supported - a file extension of .jpg is expected'));
+               display_warning(_('Only jpg files are supported - a file extension of .jpg is expected'));
                $upload_file ='No';
        } 
        elseif ( $_FILES['pic']['size'] > ($max_image_size * 1024)) 
        { //File Size Check
-               display_notification(_('The file size is over the maximum allowed. The maximum size allowed in KB is') . ' ' . $max_image_size);
+               display_warning(_('The file size is over the maximum allowed. The maximum size allowed in KB is') . ' ' . $max_image_size);
                $upload_file ='No';
        } 
        elseif ( $_FILES['pic']['type'] == "text/plain" ) 
        {  //File type Check
-               display_notification( _('Only graphics files can be uploaded'));
+               display_warning( _('Only graphics files can be uploaded'));
                $upload_file ='No';
        } 
        elseif (file_exists($filename))
        {
-               display_notification(_('Attempting to overwrite an existing item image'));
                $result = unlink($filename);
                if (!$result) 
                {
@@ -76,8 +81,8 @@ if (isset($_FILES['pic']) && $_FILES['pic']['name'] != '')
        if ($upload_file == 'Yes')
        {
                $result  =  move_uploaded_file($_FILES['pic']['tmp_name'], $filename);
-               $message = ($result)?_('File url') ."<a href='$filename'>$filename</a>" : "Somthing is wrong with uploading a file.";
        }
+       $Ajax->activate('details');
  /* EOF Add Image upload for New Item  - by Ori */
 }
 
@@ -97,7 +102,6 @@ function clear_data()
        unset($_POST['NewStockID']);
        unset($_POST['dimension_id']);
        unset($_POST['dimension2_id']);
-       $_POST['New'] = "1";
 }
 
 //------------------------------------------------------------------------------------
@@ -112,11 +116,13 @@ if (isset($_POST['addupdate']))
        {
                $input_error = 1;
                display_error( _('The item name must be entered.'));
+               set_focus('description');
        } 
        elseif (strlen($_POST['NewStockID']) == 0) 
        {
                $input_error = 1;
                display_error( _('The item code cannot be empty'));
+               set_focus('NewStockID');
        }
        elseif (strstr($_POST['NewStockID'], " ") || strstr($_POST['NewStockID'],"'") || 
                strstr($_POST['NewStockID'], "+") || strstr($_POST['NewStockID'], "\"") || 
@@ -124,13 +130,20 @@ if (isset($_POST['addupdate']))
        {
                $input_error = 1;
                display_error( _('The item code cannot contain any of the following characters -  & + OR a space OR quotes'));
+               set_focus('NewStockID');
 
        }
-
+       elseif ($new_item && db_num_rows(get_item_kit($_POST['NewStockID'])))
+       {
+                       $input_error = 1;
+               display_error( _("This item code is already assigned to stock item or sale kit."));
+                       set_focus('NewStockID');
+       }
+       
        if ($input_error != 1)
        {
 
-               if (!isset($_POST['New'])
+               if (!$new_item
                { /*so its an existing one */
 
                        update_item($_POST['NewStockID'], $_POST['description'],
@@ -139,6 +152,7 @@ if (isset($_POST['addupdate']))
                                $_POST['adjustment_account'], $_POST['assembly_account'], 
                                $_POST['dimension_id'], $_POST['dimension2_id']);
 
+                       display_notification(_("Item has been updated."));
                } 
                else 
                { //it is a NEW part
@@ -149,8 +163,12 @@ if (isset($_POST['addupdate']))
                                $_POST['inventory_account'], $_POST['cogs_account'],
                                $_POST['adjustment_account'], $_POST['assembly_account'], 
                                $_POST['dimension_id'], $_POST['dimension2_id']);
+
+               display_notification(_("A new item has been added."));
+               $_POST['stock_id'] = $_POST['NewStockID'];
                }
-               meta_forward($_SERVER['PHP_SELF']);
+               set_focus('stock_id');
+               $Ajax->activate('_page_body');
        }
 }
 
@@ -193,7 +211,22 @@ function can_delete($stock_id)
                display_error(_('Cannot delete this item because there are existing purchase order items for it.'));
                return false;
        }
-
+       $kits = get_where_used($stock_id);
+       $num_kits = db_num_rows($kits);
+       if ($num_kits) {
+               $msg = _("This item cannot be deleted because some code aliases 
+                       or foreign codes was entered for it, or there are kits defined 
+                       using this item as component")
+                       .':<br>';
+
+               while($num_kits--) {
+                       $kit = db_fetch($kits);
+                       $msg .= "'".$kit[0]."'";
+                       if ($num_kits) $msg .= ',';
+               }
+               display_error($msg);
+               return false;
+       }
        return true;
 }
 
@@ -206,12 +239,23 @@ if (isset($_POST['delete']) && strlen($_POST['delete']) > 1)
 
                $stock_id = $_POST['NewStockID'];
                delete_item($stock_id);
-               $filename = $path_to_root . "/inventory/manage/image/$user_comp/$stock_id.jpg";
+               $filename = $comp_path . "/$user_comp/images/".item_img_name($stock_id).".jpg";
                if (file_exists($filename))
                        unlink($filename);
-               meta_forward($_SERVER['PHP_SELF']);
+               display_notification(_("Selected item has been deleted."));
+               $_POST['stock_id'] = '';
+               clear_data();
+               set_focus('stock_id');
+               $new_item = true;
+               $Ajax->activate('_page_body');
        }
 }
+//-------------------------------------------------------------------------------------------- 
+
+if (isset($_POST['select']))
+{
+       context_return(array('stock_id' => $_POST['stock_id']));
+}
 
 //------------------------------------------------------------------------------------
 
@@ -221,28 +265,27 @@ if (db_has_stock_items())
 {
        start_table("class='tablestyle_noborder'");
        start_row();
-    stock_items_list_cells(_("Select an item:"), 'stock_id', null);
-    submit_cells('SelectStockItem', _("Edit Item"));
+    stock_items_list_cells(_("Select an item:"), 'stock_id', null,
+         _('New item'), true);
+       $new_item = get_post('stock_id')==''; 
        end_row();
        end_table();
 }
 
-hyperlink_params($_SERVER['PHP_SELF'], _("Enter a new item"), "New=1");
-echo "<br>";
+div_start('details');
+start_outer_table($table_style2, 5);
 
-start_table("$table_style2 width=40%");
+table_section(1);
 
 table_section_title(_("Item"));
 
 //------------------------------------------------------------------------------------
 
-if (!isset($_POST['NewStockID']) || isset($_POST['New'])
+if ($new_item
 {
 
 /*If the page was called without $_POST['NewStockID'] passed to page then assume a new item is to be entered show a form with a part Code field other wise the form showing the fields with the existing entries against the part will show for editing with only a hidden stock_id field. New is set to flag that the page may have called itself and still be entering a new part, in which case the page needs to know not to go looking up details for an existing part*/
 
-       hidden('New', 'Yes');
-
        text_row(_("Item Code:"), 'NewStockID', null, 21, 20);
 
        $company_record = get_company_prefs();
@@ -265,9 +308,8 @@ if (!isset($_POST['NewStockID']) || isset($_POST['New']))
 } 
 else 
 { // Must be modifying an existing item
+               $_POST['NewStockID'] = $_POST['stock_id'];
 
-       if (!isset($_POST['New'])) 
-       {
                $myrow = get_item($_POST['NewStockID']);
 
                $_POST['long_description'] = $myrow["long_description"];
@@ -287,45 +329,38 @@ else
        
                label_row(_("Item Code:"),$_POST['NewStockID']);
                hidden('NewStockID', $_POST['NewStockID']);
-       }
+               set_focus('description');
 }
 
 text_row(_("Name:"), 'description', null, 52, 50);
 
-textarea_row(_('Description:'), 'long_description', null, 50, 3);
-
-end_table();
-start_table("$table_style2 width=40%");
-// Add image upload for New Item  - by Joe
-start_row();
-label_cells(_("Image File (.jpg)") . ":", "<input type='file' id='pic' name='pic'>");
-// Add Image upload for New Item  - by Joe
-if (isset($_POST['NewStockID']) && file_exists("$path_to_root/inventory/manage/image/$user_comp/".$_POST['NewStockID'].".jpg")) 
-{
-       $stock_img_link = "<img src='$path_to_root/inventory/manage/image/$user_comp/".$_POST['NewStockID'].".jpg' width='$pic_width' height='$pic_height' border='0'>";
-} 
-else 
-{
-       $stock_img_link = "No Image";
-}
-
-label_cell($stock_img_link, "valign=top align=center rowspan=5");
-end_row();
+textarea_row(_('Description:'), 'long_description', null, 42, 3);
 
 stock_categories_list_row(_("Category:"), 'category_id', null);
 
 item_tax_types_list_row(_("Item Tax Type:"), 'tax_type_id', null);
 
 stock_item_types_list_row(_("Item Type:"), 'mb_flag', null,
-       (!isset($_POST['NewStockID']) || isset($_POST['New'])));
-
-/* The array stock_units is set up in config.php for user modification
-possible units of measure can added or modifying the array definition by editing that file */
+       (!isset($_POST['NewStockID']) || $new_item));
 
 stock_units_list_row(_('Units of Measure:'), 'units', null,
-       (!isset($_POST['NewStockID']) || isset($_POST['New'])));
-end_table();
-start_table("$table_style2 width=40%");
+       (!isset($_POST['NewStockID']) || $new_item));
+
+$dim = get_company_pref('use_dimension');
+if ($dim >= 1)
+{
+       table_section_title(_("Dimensions"));
+
+       dimensions_list_row(_("Dimension")." 1", 'dimension_id', null, true, " ", false, 1);
+       if ($dim > 1)
+               dimensions_list_row(_("Dimension")." 2", 'dimension2_id', null, true, " ", false, 2);
+}
+if ($dim < 1)
+       hidden('dimension_id', 0);
+if ($dim < 2)
+       hidden('dimension2_id', 0);
+
+table_section(2);
 
 table_section_title(_("GL Accounts"));
 
@@ -349,35 +384,43 @@ if (is_manufactured($_POST['mb_flag']))
        gl_all_accounts_list_row(_("Item Assembly Costs Account:"), 'assembly_account', $_POST['assembly_account']);
 else
        hidden('assembly_account', $_POST['assembly_account']);
-$dim = get_company_pref('use_dimension');
-if ($dim >= 1)
-{
-       table_section_title(_("Dimensions"));
 
-       dimensions_list_row(_("Dimension")." 1", 'dimension_id', null, true, " ", false, 1);
-       if ($dim > 1)
-               dimensions_list_row(_("Dimension")." 2", 'dimension2_id', null, true, " ", false, 2);
+table_section_title(_("Picture"));
+
+// Add image upload for New Item  - by Joe
+label_row(_("Image File (.jpg)") . ":", "<input type='file' id='pic' name='pic'>");
+// Add Image upload for New Item  - by Joe
+$stock_img_link = "";
+if (isset($_POST['NewStockID']) && file_exists("$comp_path/$user_comp/images/"
+       .item_img_name($_POST['NewStockID']).".jpg")) 
+{
+ // 31/08/08 - rand() call is necessary here to avoid caching problems. Thanks to Peter D.
+       $stock_img_link .= "<img id='item_img' alt = '[".$_POST['NewStockID'].".jpg".
+               "]' src='$comp_path/$user_comp/images/".item_img_name($_POST['NewStockID']).".jpg?nocache=".rand()."'".
+               " height='$pic_height' border='0'>";
+} 
+else 
+{
+       $stock_img_link .= _("No image");
 }
-if ($dim < 1)
-       hidden('dimension_id', 0);
-if ($dim < 2)
-       hidden('dimension2_id', 0);
 
-end_table(1);
+label_row("&nbsp;", $stock_img_link);
 
-if (!isset($_POST['NewStockID']) || (isset($_POST['New']) && $_POST['New'] != "")) 
+end_outer_table(1);
+div_end();
+div_start('controls');
+if (!isset($_POST['NewStockID']) || $new_item) 
 {
-       submit_center('addupdate', _("Insert New Item"));
-
+       submit_center('addupdate', _("Insert New Item"), true, '', true);
 } 
 else 
 {
-       submit_center_first('addupdate', _("Update Item"));
-
-       submit_center_last('delete', _("Delete This Item"));
+       submit_center_first('addupdate', _("Update Item"), '', true);
+       submit_return('select', _("Return"), _("Select this items and return to document entry."), true);
+       submit_center_last('delete', _("Delete This Item"), '', true);
 }
 
-
+div_end();
 end_form();
 
 //------------------------------------------------------------------------------------