X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=manufacturing%2Fmanage%2Fwork_centres.php;h=769d1b4b04c40f91ac6c53563ea5bd3237f82687;hb=4a66afcbed7fb883d00c1a6a807497ccfd181378;hp=19227df8e3e3f8fb668b38be6fa68056734cf9c4;hpb=a5242af68e65661edb7175412444dce536a7f311;p=fa-stable.git diff --git a/manufacturing/manage/work_centres.php b/manufacturing/manage/work_centres.php index 19227df8..769d1b4b 100644 --- a/manufacturing/manage/work_centres.php +++ b/manufacturing/manage/work_centres.php @@ -94,15 +94,18 @@ if ($Mode == 'Delete') if ($Mode == 'RESET') { $selected_id = -1; + $sav = get_post('show_inactive'); unset($_POST); + $_POST['show_inactive'] = $sav; } //----------------------------------------------------------------------------------- -$result = get_all_work_centres(); +$result = get_all_work_centres(check_value('show_inactive')); start_form(); start_table("$table_style width=50%"); $th = array(_("Name"), _("description"), "", ""); +inactive_control_column($th); table_header($th); $k = 0; @@ -113,18 +116,16 @@ while ($myrow = db_fetch($result)) label_cell($myrow["name"]); label_cell($myrow["description"]); + inactive_control_cell($myrow["id"], $myrow["inactive"], 'workcentres', 'id'); edit_button_cell("Edit".$myrow['id'], _("Edit")); delete_button_cell("Delete".$myrow['id'], _("Delete")); end_row(); } -end_table(); -end_form(); -echo '
'; +inactive_control_row($th); +end_table(1); //----------------------------------------------------------------------------------- -start_form(); - start_table($table_style2); if ($selected_id != -1) @@ -144,7 +145,7 @@ text_row_ex(_("Description:"), 'description', 50); end_table(1); -submit_add_or_update_center($selected_id == -1, '', true); +submit_add_or_update_center($selected_id == -1, '', 'both'); end_form();