Fixed date format in supplier transactions table.
[fa-stable.git] / sales / sales_order_entry.php
index 3f1b20dba1ce3732f53918e68411bd0d9550fc84..19f81cb70870222ce9780f022238f86fb30ff181 100644 (file)
@@ -356,9 +356,11 @@ function check_item_data()
 function handle_update_item()
 {
        if ($_POST['UpdateItem'] != '' && check_item_data()) {
+               //alert("description=".$_POST['item_description']);
+               //$_SESSION['items']->line_items[$_POST['LineNo']]->item_description = $_POST['item_description'];
                $_SESSION['Items']->update_cart_item($_POST['LineNo'],
                 input_num('qty'), input_num('price'),
-                input_num('Disc') / 100 );
+                input_num('Disc') / 100, $_POST['item_description'] );
        }
   line_start_focus();
 }
@@ -526,15 +528,15 @@ if ($customer_error == "") {
        if ($_SESSION['Items']->trans_no == 0) {
 
                submit_center_first('ProcessOrder', $porder,
-                   _('Check entered data and save document'), true, ICON_OK);
+                   _('Check entered data and save document'), true);
        } else {
                submit_center_first('ProcessOrder', $corder,
-                   _('Validate changes and update document'), true, ICON_OK);
+                   _('Validate changes and update document'), true);
        }
 
        submit_center_last('CancelOrder', $cancelorder,
           _('Cancels document entry or removes sales order when editing an old document'),
-          true, ICON_CANCEL);
+          true);
 } else {
        display_error($customer_error);
 }