Feature 5388: Print Invoices (documents) list gets too long. Fixed by default 180...
[fa-stable.git] / inventory / adjustments.php
index dda848d7da92f306fab1d9c4683255e9e0cdcb59..fe72039205790b54bec9e627f23c44a552407daa 100644 (file)
@@ -1,7 +1,16 @@
 <?php
-
-$page_security = 3;
-$path_to_root="..";
+/**********************************************************************
+    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 = 'SA_INVENTORYADJUSTMENT';
+$path_to_root = "..";
 include_once($path_to_root . "/includes/ui/items_cart.inc");
 
 include_once($path_to_root . "/includes/session.inc");
@@ -9,34 +18,51 @@ include_once($path_to_root . "/includes/session.inc");
 include_once($path_to_root . "/includes/date_functions.inc");
 include_once($path_to_root . "/includes/data_checks.inc");
 
+include_once($path_to_root . "/fixed_assets/includes/fixed_assets_db.inc");
 include_once($path_to_root . "/inventory/includes/item_adjustments_ui.inc");
 include_once($path_to_root . "/inventory/includes/inventory_db.inc");
 $js = "";
-if ($use_popup_windows)
+if ($SysPrefs->use_popup_windows)
        $js .= get_js_open_window(800, 500);
-if ($use_date_picker)
+if (user_use_date_picker())
        $js .= get_js_date_picker();
-page(_("Item Adjustments Note"), false, false, "", $js);
-
-//-----------------------------------------------------------------------------------------------
-
-check_db_has_costable_items(_("There are no inventory items defined in the system which can be adjusted (Purchased or Manufactured)."));
-
-check_db_has_movement_types(_("There are no inventory movement types defined in the system. Please define at least one inventory adjustment type."));
+if (isset($_GET['NewAdjustment'])) {
+       if (isset($_GET['FixedAsset'])) {
+               $page_security = 'SA_ASSETDISPOSAL';
+               $_SESSION['page_title'] = _($help_context = "Fixed Assets Disposal");
+       } else {
+               $_SESSION['page_title'] = _($help_context = "Item Adjustments Note");
+       }
+}
+page($_SESSION['page_title'], false, false, "", $js);
 
 //-----------------------------------------------------------------------------------------------
 
 if (isset($_GET['AddedID'])) 
 {
        $trans_no = $_GET['AddedID'];
-       $trans_type = systypes::inventory_adjustment();
+       $trans_type = ST_INVADJUST;
+
+  $result = get_stock_adjustment_items($trans_no);
+  $row = db_fetch($result);
 
-       display_notification_centered(_("Items adjustment has been processed"));
-       display_note(get_trans_view_str($trans_type, $trans_no, _("View this adjustment")));
+  if (is_fixed_asset($row['mb_flag'])) {
+    display_notification_centered(_("Fixed Assets disposal has been processed"));
+    display_note(get_trans_view_str($trans_type, $trans_no, _("&View this disposal")));
 
-       display_note(get_gl_view_str($trans_type, $trans_no, _("View the GL Postings for this Adjustment")), 1, 0);
+    display_note(get_gl_view_str($trans_type, $trans_no, _("View the GL &Postings for this Disposal")), 1, 0);
+         hyperlink_params($_SERVER['PHP_SELF'], _("Enter &Another Disposal"), "NewAdjustment=1&FixedAsset=1");
+  }
+  else {
+    display_notification_centered(_("Items adjustment has been processed"));
+    display_note(get_trans_view_str($trans_type, $trans_no, _("&View this adjustment")));
 
-       hyperlink_no_params($_SERVER['PHP_SELF'], _("Enter Another Adjustment"));
+    display_note(get_gl_view_str($trans_type, $trans_no, _("View the GL &Postings for this Adjustment")), 1, 0);
+
+         hyperlink_params($_SERVER['PHP_SELF'], _("Enter &Another Adjustment"), "NewAdjustment=1");
+  }
+
+       hyperlink_params("$path_to_root/admin/attachments.php", _("Add an Attachment"), "filterType=$trans_type&trans_no=$trans_no");
 
        display_footer_exit();
 }
@@ -48,27 +74,6 @@ function line_start_focus() {
   $Ajax->activate('items_table');
   set_focus('_stock_id_edit');
 }
-//--------------------------------------------------------------------------------------------------
-
-function copy_to_st()
-{
-       $_SESSION['adj_items']->from_loc = $_POST['StockLocation'];
-       $_SESSION['adj_items']->tran_date = $_POST['AdjDate'];
-       $_SESSION['adj_items']->transfer_type = $_POST['type'];
-       $_SESSION['adj_items']->increase = $_POST['Increase'];
-       $_SESSION['adj_items']->memo_ = $_POST['memo_'];
-}
-//--------------------------------------------------------------------------------------------------
-
-function copy_from_st()
-{
-       $_POST['StockLocation'] = $_SESSION['adj_items']->from_loc;
-       $_POST['AdjDate'] = $_SESSION['adj_items']->tran_date;
-       $_POST['type'] = $_SESSION['adj_items']->transfer_type;
-       $_POST['Increase'] = $_SESSION['adj_items']->increase;
-       $_POST['memo_'] = $_SESSION['adj_items']->memo_;
-}
-
 //-----------------------------------------------------------------------------------------------
 
 function handle_new_order()
@@ -79,10 +84,9 @@ function handle_new_order()
                unset ($_SESSION['adj_items']);
        }
 
-    session_register("adj_items");
-
-    $_SESSION['adj_items'] = new items_cart(systypes::inventory_adjustment());
-       $_POST['AdjDate'] = Today();
+    $_SESSION['adj_items'] = new items_cart(ST_INVADJUST);
+    $_SESSION['adj_items']->fixed_asset = isset($_GET['FixedAsset']);
+       $_POST['AdjDate'] = new_doc_date();
        if (!is_date_in_fiscalyear($_POST['AdjDate']))
                $_POST['AdjDate'] = end_fiscalyear();
        $_SESSION['adj_items']->tran_date = $_POST['AdjDate'];  
@@ -92,6 +96,8 @@ function handle_new_order()
 
 function can_process()
 {
+       global $SysPrefs;
+
        $adj = &$_SESSION['adj_items'];
 
        if (count($adj->line_items) == 0)       {
@@ -99,16 +105,9 @@ function can_process()
                set_focus('stock_id');
                return false;
        }
-       if (!references::is_valid($_POST['ref'])) 
-       {
-               display_error( _("You must enter a reference."));
-               set_focus('ref');
-               return false;
-       }
 
-       if (!is_new_reference($_POST['ref'], systypes::inventory_adjustment())) 
+       if (!check_reference($_POST['ref'], ST_INVADJUST))
        {
-               display_error( _("The entered reference is already in use."));
                set_focus('ref');
                return false;
        }
@@ -121,19 +120,19 @@ function can_process()
        } 
        elseif (!is_date_in_fiscalyear($_POST['AdjDate'])) 
        {
-               display_error(_("The entered date is not in fiscal year."));
+               display_error(_("The entered date is out of fiscal year or is closed for further data entry."));
                set_focus('AdjDate');
                return false;
-       } else {
-               $failed_item = $adj->check_qoh($_POST['StockLocation'], $_POST['AdjDate'], !$_POST['Increase']);
-               if ($failed_item >= 0) 
+       }
+       elseif (!$SysPrefs->allow_negative_stock())
+       {
+               $low_stock = $adj->check_qoh($_POST['StockLocation'], $_POST['AdjDate']);
+
+               if ($low_stock)
                {
-                       $line = $adj->line_items[$failed_item];
-               display_error(_("The adjustment cannot be processed because an adjustment item would cause a negative inventory balance :") .
-                       " " . $line->stock_id . " - " .  $line->item_description);
-                       $_POST['Edit'.$failed_item] = 1; // enter edit mode
+               display_error(_("The adjustment cannot be processed because it would cause negative inventory balance for marked items as of document date or later."));
                        unset($_POST['Process']);
-               return false;
+                       return false;
                }
        }
        return true;
@@ -143,23 +142,28 @@ function can_process()
 
 if (isset($_POST['Process']) && can_process()){
 
-       $trans_no = add_stock_adjustment($_SESSION['adj_items']->line_items,
-               $_POST['StockLocation'], $_POST['AdjDate'],     $_POST['type'], $_POST['Increase'],
-               $_POST['ref'], $_POST['memo_']);
+  $fixed_asset = $_SESSION['adj_items']->fixed_asset; 
 
+       $trans_no = add_stock_adjustment($_SESSION['adj_items']->line_items,
+               $_POST['StockLocation'], $_POST['AdjDate'],     $_POST['ref'], $_POST['memo_']);
+       new_doc_date($_POST['AdjDate']);
        $_SESSION['adj_items']->clear_items();
        unset($_SESSION['adj_items']);
 
+  if ($fixed_asset)
+       meta_forward($_SERVER['PHP_SELF'], "AddedID=$trans_no&FixedAsset=1");
+  else
        meta_forward($_SERVER['PHP_SELF'], "AddedID=$trans_no");
+
 } /*end of process credit note */
 
 //-----------------------------------------------------------------------------------------------
 
 function check_item_data()
 {
-       if (!check_num('qty',0))
+       if (input_num('qty') == 0)
        {
-               display_error(_("The quantity entered is negative or invalid."));
+               display_error(_("The quantity entered is invalid."));
                set_focus('qty');
                return false;
        }
@@ -178,12 +182,9 @@ function check_item_data()
 
 function handle_update_item()
 {
-    if($_POST['UpdateItem'] != "" && check_item_data())
-    {
-               $id = $_POST['LineNo'];
-       $_SESSION['adj_items']->update_cart_item($id, input_num('qty'), 
-                       input_num('std_cost'));
-    }
+       $id = $_POST['LineNo'];
+       $_SESSION['adj_items']->update_cart_item($id, input_num('qty'), 
+               input_num('std_cost'));
        line_start_focus();
 }
 
@@ -199,11 +200,8 @@ function handle_delete_item($id)
 
 function handle_new_item()
 {
-       if (!check_item_data())
-               return;
-
        add_to_order($_SESSION['adj_items'], $_POST['stock_id'], 
-         input_num('qty'), input_num('std_cost'));
+       input_num('qty'), input_num('std_cost'));
        line_start_focus();
 }
 
@@ -212,45 +210,54 @@ $id = find_submit('Delete');
 if ($id != -1)
        handle_delete_item($id);
 
-if (isset($_POST['AddItem']) || isset($_POST['UpdateItem'])) {
-       copy_to_st();
-       line_start_focus();
-}
-
-if (isset($_POST['AddItem']))
+if (isset($_POST['AddItem']) && check_item_data()) {
        handle_new_item();
-
-if (isset($_POST['UpdateItem']))
+       unset($_POST['selected_id']);
+}
+if (isset($_POST['UpdateItem']) && check_item_data()) {
        handle_update_item();
-
+       unset($_POST['selected_id']);
+}
 if (isset($_POST['CancelItemChanges'])) {
+       unset($_POST['selected_id']);
        line_start_focus();
 }
 //-----------------------------------------------------------------------------------------------
 
 if (isset($_GET['NewAdjustment']) || !isset($_SESSION['adj_items']))
 {
+
+       if (isset($_GET['FixedAsset']))
+               check_db_has_disposable_fixed_assets(_("There are no fixed assets defined in the system."));
+       else
+               check_db_has_costable_items(_("There are no inventory items defined in the system which can be adjusted (Purchased or Manufactured)."));
+
        handle_new_order();
 }
 
 //-----------------------------------------------------------------------------------------------
-start_form(false, true);
+start_form();
+
+if ($_SESSION['adj_items']->fixed_asset) {
+       $items_title = _("Disposal Items");
+       $button_title = _("Process Disposal");
+} else {
+       $items_title = _("Adjustment Items");
+       $button_title = _("Process Adjustment");
+}
 
 display_order_header($_SESSION['adj_items']);
 
-start_table("$table_style width=70%", 10);
-start_row();
-echo "<TD>";
-display_adjustment_items(_("Adjustment Items"), $_SESSION['adj_items']);
+start_outer_table(TABLESTYLE, "width='70%'", 10);
+
+display_adjustment_items($items_title, $_SESSION['adj_items']);
 adjustment_options_controls();
-echo "</TD>";
-end_row();
-end_table(1);
+
+end_outer_table(1, false);
 
 submit_center_first('Update', _("Update"), '', null);
-submit_center_last('Process', _("Process Adjustment"), '', true);
+submit_center_last('Process', $button_title, '', 'default');
 
 end_form();
 end_page();
 
-?>