Merged changes up to version 2.3.4 into unstable.
[fa-stable.git] / includes / ui / items_cart.inc
index 12e1ab244694ddbc2f9673aa43205ed4d1f3b06b..a5e15fdbf4a524d1c7ded60d06f48ed4b6a75372 100644 (file)
@@ -20,8 +20,6 @@ class items_cart
 
        var     $order_id;
 
-       var $editing_item, $deleting_item;
-
        var $from_loc;
        var $to_loc;
        var $tran_date;
@@ -31,6 +29,7 @@ class items_cart
        var $person_id;
        var $branch_id;
        var $reference;
+       var $original_amount;
        
        function items_cart($type)
        {
@@ -52,7 +51,7 @@ class items_cart
                else
                {
                        // shouldn't come here under normal circumstances
-                       display_db_error("unexpected - adding an invalid item or null quantity", "", true);
+                       display_error("unexpected - adding an invalid item or null quantity", "", true);
                }
 
                return false;
@@ -107,7 +106,7 @@ class items_cart
                else
                {
                        // shouldn't come here under normal circumstances
-                       display_db_error("unexpected - invalid parameters in add_gl_item($code_id, $dimension_id, $dimension2_id, $amount,...)", "", true);
+                       display_error("unexpected - invalid parameters in add_gl_item($code_id, $dimension_id, $dimension2_id, $amount,...)", "", true);
                }
 
                return false;
@@ -198,7 +197,7 @@ class line_item
                $item_row = get_item($stock_id);
 
                if ($item_row == null)
-                       display_db_error("invalid item added to order : $stock_id", "");
+                       display_error("invalid item added to order : $stock_id", "");
 
                $this->mb_flag = $item_row["mb_flag"];
                $this->units = $item_row["units"];