Option for allowing negative prices for dummy/service items.
authorJanusz Dobrowolski <janusz@frontaccounting.eu>
Mon, 27 Dec 2010 11:39:31 +0000 (11:39 +0000)
committerJanusz Dobrowolski <janusz@frontaccounting.eu>
Mon, 27 Dec 2010 11:39:31 +0000 (11:39 +0000)
config.default.php
sales/sales_order_entry.php

index 7e8534a6262302cc1e3d783acb7d6baae01f23eb..7c7389ea4c0342afae2a38959670cf6453cc1bde 100644 (file)
@@ -11,7 +11,7 @@
 ***********************************************************************/
     //--------------------------------------------------
 
-       // User configurable variables
+       // User configurable variables
        //---------------------------------------------------
 
        /*Show debug messages returned from an error on the page.
@@ -146,6 +146,9 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
 
        $config_allocation_settled_allowance = 0.005;
 
+       /* Alow negative prices for dummy/service items. To be moved to GL db settings */
+       $allow_negative_prices = 1;
+
        // Internal configurable variables
        //-----------------------------------------------------------------------------------
 
index 4a47369598f7e7659418d1b91d96931416657f51..08e8e7d6bd67b267c43ce204479f60f1bb627636 100644 (file)
@@ -404,7 +404,10 @@ function can_process() {
                display_error(_("The entered reference is already in use."));
                set_focus('ref');
                return false;
-       }
+       } elseif ($_SESSION['Items']->get_items_total() < 0) {
+               display_error("Invoice total amount cannot be less than zero.");
+               return false;
+       }
        return true;
 }
 
@@ -412,7 +415,6 @@ function can_process() {
 
 if (isset($_POST['ProcessOrder']) && can_process()) {
        copy_to_cart();
-
        $modified = ($_SESSION['Items']->trans_no != 0);
        $so_type = $_SESSION['Items']->so_type;
        $_SESSION['Items']->write(1);
@@ -448,8 +450,9 @@ if (isset($_POST['update'])) {
 
 function check_item_data()
 {
-       global $SysPrefs;
+       global $SysPrefs, $allow_negative_prices;
        
+       $is_inventory_item = is_inventory_item(get_post('stock_id'));
        if(!get_post('stock_id_text', true)) {
                display_error( _("Item description cannot be empty."));
                set_focus('stock_id_edit');
@@ -459,8 +462,8 @@ function check_item_data()
                display_error( _("The item could not be updated because you are attempting to set the quantity ordered to less than 0, or the discount percent to more than 100."));
                set_focus('qty');
                return false;
-       } elseif (!check_num('price', 0)) {
-               display_error( _("Price for item must be entered and can not be less than 0"));
+       } elseif (!check_num('price', 0) && (!$allow_negative_prices || $is_inventory_item)) {
+               display_error( _("Price for inventory item must be entered and can not be less than 0"));
                set_focus('price');
                return false;
        } elseif (isset($_POST['LineNo']) && isset($_SESSION['Items']->line_items[$_POST['LineNo']])
@@ -470,8 +473,8 @@ function check_item_data()
                display_error(_("You attempting to make the quantity ordered a quantity less than has already been delivered. The quantity delivered cannot be modified retrospectively."));
                return false;
        } // Joe Hunt added 2008-09-22 -------------------------
-       elseif ($_SESSION['Items']->trans_type!=ST_SALESORDER && $_SESSION['Items']->trans_type!=ST_SALESQUOTE && !$SysPrefs->allow_negative_stock() &&
-               is_inventory_item($_POST['stock_id']))
+       elseif ($is_inventory_item && $_SESSION['Items']->trans_type!=ST_SALESORDER && $_SESSION['Items']->trans_type!=ST_SALESQUOTE 
+               && !$SysPrefs->allow_negative_stock())
        {
                $qoh = get_qoh_on_date($_POST['stock_id'], $_POST['Location'], $_POST['OrderDate']);
                if (input_num('qty') > $qoh)