X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=inventory%2Fmanage%2Fitem_units.php;h=39be1be54d192d1c986488d67063d1aa50a68907;hb=902f1015d874c33bd7946b17de2ad80b4f2144b6;hp=61e4e685d6de346f3a37e5b3e4ab819556f8a46f;hpb=8259c324f645a39cb847d5a4346b70e225e1b02c;p=fa-stable.git diff --git a/inventory/manage/item_units.php b/inventory/manage/item_units.php index 61e4e685..39be1be5 100644 --- a/inventory/manage/item_units.php +++ b/inventory/manage/item_units.php @@ -1,7 +1,16 @@ . +***********************************************************************/ +$page_security = 'SA_UOM'; +$path_to_root = "../.."; include($path_to_root . "/includes/session.inc"); page(_("Units of Measure")); @@ -33,7 +42,7 @@ if ($Mode=='ADD_ITEM' || $Mode=='UPDATE_ITEM') } if ($input_error !=1) { - write_item_unit($selected_id, $_POST['abbr'], $_POST['description'], $_POST['decimals'] ); + write_item_unit(htmlentities($selected_id), $_POST['abbr'], $_POST['description'], $_POST['decimals'] ); if($selected_id != '') display_notification(_('Selected unit has been updated')); else @@ -58,22 +67,26 @@ if ($Mode == 'Delete') { delete_item_unit($selected_id); display_notification(_('Selected unit has been deleted')); - $Mode = 'RESET'; } + $Mode = 'RESET'; } if ($Mode == 'RESET') { $selected_id = ''; + $sav = get_post('show_inactive'); unset($_POST); + $_POST['show_inactive'] = $sav; } //---------------------------------------------------------------------------------- -$result = get_all_item_units(); +$result = get_all_item_units(check_value('show_inactive')); + start_form(); -start_table("$table_style width=50%"); +start_table("$table_style width=40%"); $th = array(_('Unit'), _('Description'), _('Decimals'), "", ""); +inactive_control_column($th); table_header($th); $k = 0; //row colour counter @@ -87,20 +100,18 @@ while ($myrow = db_fetch($result)) label_cell($myrow["name"]); label_cell(($myrow["decimals"]==-1?_("User Quantity Decimals"):$myrow["decimals"])); - edit_button_cell("Edit".$myrow[0], _("Edit")); - edit_button_cell("Delete".$myrow[0], _("Delete")); + inactive_control_cell($myrow["abbr"], $myrow["inactive"], 'item_units', 'abbr'); + edit_button_cell("Edit".$myrow["abbr"], _("Edit")); + delete_button_cell("Delete".$myrow["abbr"], _("Delete")); end_row(); } -end_table(); -end_form(); -echo '
'; +inactive_control_row($th); +end_table(1); //---------------------------------------------------------------------------------- -start_form(); - -start_table("class='tablestyle_noborder'"); +start_table($table_style2); if ($selected_id != '') { @@ -115,7 +126,6 @@ if ($selected_id != '') } hidden('selected_id', $selected_id); } - if ($selected_id != '' && item_unit_used($selected_id)) { label_row(_("Unit Abbreviation:"), $_POST['abbr']); hidden('abbr', $_POST['abbr']); @@ -127,7 +137,7 @@ number_list_row(_("Decimal Places:"), 'decimals', null, 0, 6, _("User Quantity D end_table(1); -submit_add_or_update_center($selected_id == '', '', true); +submit_add_or_update_center($selected_id == '', '', 'both'); end_form();