'; //---------------------------------------------------------------------------------- start_form(); start_table("class='tablestyle_noborder'"); if ($selected_id != '') { if ($Mode == 'Edit') { //editing an existing item category $myrow = get_item_unit($selected_id); $_POST['abbr'] = $myrow["abbr"]; $_POST['description'] = $myrow["name"]; $_POST['decimals'] = $myrow["decimals"]; } hidden('selected_id', $selected_id); } if ($selected_id != '' && item_unit_used($selected_id)) { label_row(_("Unit Abbreviation:"), $_POST['abbr']); hidden('abbr', $_POST['abbr']); } else text_row(_("Unit Abbreviation:"), 'abbr', null, 20, 20); text_row(_("Descriptive Name:"), 'description', null, 40, 40); number_list_row(_("Decimal Places:"), 'decimals', null, 0, 6, _("User Quantity Decimals")); end_table(1); submit_add_or_update_center($selected_id == '', '', true); end_form(); end_page(); ?>