X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fmanage%2Fcredit_status.php;h=bab7f269e36552980c4b23dbeda0ced9f4513764;hb=9a6be31598b20ab95541e4c89db43ff56a105cc2;hp=6b0ee02d608b233911389da2433b201ff0708edf;hpb=34629834b5ba829a2d7cb3c51961248a02cde29e;p=fa-stable.git diff --git a/sales/manage/credit_status.php b/sales/manage/credit_status.php index 6b0ee02d..bab7f269 100644 --- a/sales/manage/credit_status.php +++ b/sales/manage/credit_status.php @@ -1,5 +1,14 @@ . +***********************************************************************/ $page_security = 3; $path_to_root="../.."; include($path_to_root . "/includes/session.inc"); @@ -79,15 +88,18 @@ if ($Mode == 'Delete') if ($Mode == 'RESET') { $selected_id = -1; + $sav = get_post('show_inactive'); unset($_POST); + $_POST['show_inactive'] = $sav; } //----------------------------------------------------------------------------------- -$result = get_all_credit_status(); +$result = get_all_credit_status(check_value('show_inactive')); start_form(); start_table("$table_style width=40%"); $th = array(_("Description"), _("Dissallow Invoices"),'',''); +inactive_control_column($th); table_header($th); $k = 0; @@ -107,20 +119,19 @@ while ($myrow = db_fetch($result)) label_cell($myrow["reason_description"]); label_cell($disallow_text); + inactive_control_cell($myrow["id"], $myrow["inactive"], 'credit_status', 'id'); edit_button_cell("Edit".$myrow['id'], _("Edit")); - edit_button_cell("Delete".$myrow['id'], _("Delete")); + delete_button_cell("Delete".$myrow['id'], _("Delete")); end_row(); } +inactive_control_row($th); end_table(); -end_form(); echo '
'; //----------------------------------------------------------------------------------- -start_form(); - -start_table("$table_style2 width=40%"); +start_table($table_style2); if ($selected_id != -1) { @@ -141,7 +152,7 @@ yesno_list_row(_("Dissallow invoicing ?"), 'DisallowInvoices', null); end_table(1); -submit_add_or_update_center($selected_id == -1, '', true); +submit_add_or_update_center($selected_id == -1, '', 'both'); end_form();