X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Fincludes%2Fitem_adjustments_ui.inc;h=a8a7481aa5d43a86108edc9fb7133b60b50bdab3;hb=2e8e792ac86ac0242c38236fa14bf7a005b921a7;hp=b132bf3568df02f63a18a04d870472cb91076367;hpb=6159819c4115d50fcb52f4ad0c04737af2a28115;p=fa-stable.git diff --git a/inventory/includes/item_adjustments_ui.inc b/inventory/includes/item_adjustments_ui.inc index b132bf35..a8a7481a 100644 --- a/inventory/includes/item_adjustments_ui.inc +++ b/inventory/includes/item_adjustments_ui.inc @@ -1,5 +1,14 @@ . +***********************************************************************/ include_once($path_to_root . "/includes/ui.inc"); include_once($path_to_root . "/includes/ui/items_cart.inc"); @@ -17,28 +26,20 @@ function add_to_order(&$order, $new_item, $new_item_qty, $standard_cost) function display_order_header(&$order) { - global $table_style2; + global $table_style2, $Refs; - start_table("width=70% $table_style2"); // outer table - echo ""; - echo ""; // inner table + start_outer_table("width=70% $table_style2"); // outer table + table_section(1); locations_list_row(_("Location:"), 'StockLocation', null); - ref_row(_("Reference:"), 'ref', '', references::get_next(systypes::inventory_adjustment())); - - echo "
"; // inner table - - echo ""; + ref_row(_("Reference:"), 'ref', '', $Refs->get_next(ST_INVADJUST)); - echo ""; // inner table + table_section(2, "33%"); - date_row(_("Date:"), 'AdjDate'); + date_row(_("Date:"), 'AdjDate', '', true); - echo "
"; // inner table + table_section(3, "33%"); - echo ""; - - echo ""; // inner table movement_types_list_row(_("Detail:"), 'type', null); if (!isset($_POST['Increase'])) @@ -46,10 +47,7 @@ function display_order_header(&$order) yesno_list_row(_("Type:"), 'Increase', $_POST['Increase'], _("Positive Adjustment"), _("Negative Adjustment")); - echo "
"; // inner table - - echo ""; - end_table(1); // outer table + end_outer_table(1); // outer table } //--------------------------------------------------------------------------------- @@ -62,7 +60,7 @@ function display_adjustment_items($title, &$order) div_start('items_table'); start_table("$table_style width=80%"); $th = array(_("Item Code"), _("Item Description"), _("Quantity"), - _("Unit"), _("Unit Cost"), _("Total")); + _("Unit"), _("Unit Cost"), _("Total"), ""); if ( count($order->line_items)) $th[] = ''; table_header($th); @@ -88,7 +86,7 @@ function display_adjustment_items($title, &$order) 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(); } @@ -152,10 +150,10 @@ function adjustment_edit_item_controls(&$order, $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'); }