*** empty log message ***
[fa-stable.git] / sales / includes / ui / sales_order_ui.inc
index c1fe085f1895c5e2658f627be703f913933811e9..26894710857927006a3dd6c1a1cacaa1257c1f58 100644 (file)
@@ -1,5 +1,14 @@
 <?php
-
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU Affero General Public License,
+       AGPL, 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/agpl-3.0.html>.
+***********************************************************************/
 include_once($path_to_root . "/sales/includes/cart_class.inc");
 include_once($path_to_root . "/includes/manufacturing.inc");
 
@@ -136,7 +145,7 @@ function display_order_summary($title, &$order, $editable_items=false)
                        {
                                edit_button_cell("Edit$line_no", _("Edit"),
                                _('Edit document line'));
-                               edit_button_cell("Delete$line_no", _("Delete"),
+                               delete_button_cell("Delete$line_no", _("Delete"),
                                _('Remove line from document'));
                        }
                        end_row();
@@ -446,10 +455,10 @@ function sales_order_item_controls(&$order, &$rowcounter, $line_no=-1)
 
        if ($id!=-1)
        {
-               edit_button_cell('UpdateItem', _("Update"),
-                               _('Confirm changes'));
-               edit_button_cell('CancelItemChanges', _("Cancel"),
-                               _('Cancel changes'));
+               button_cell('UpdateItem', _("Update"),
+                               _('Confirm changes'), ICON_UPDATE);
+               button_cell('CancelItemChanges', _("Cancel"),
+                               _('Cancel changes'), ICON_CANCEL);
                hidden('LineNo', $line_no);
                set_focus('qty');
        }