X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fmanage%2Fcredit_status.php;h=aed0b1ffc9a622d74836be1c6d083f8ffb0406f3;hb=5cd13431fe25eb8cd98f67020c55dab124c7e930;hp=8d9400cc886a81757263a7f5b6722137d5b7d95c;hpb=d567a10b7925c8bb97c734e213d6651a979af29d;p=fa-stable.git diff --git a/sales/manage/credit_status.php b/sales/manage/credit_status.php index 8d9400cc..aed0b1ff 100644 --- a/sales/manage/credit_status.php +++ b/sales/manage/credit_status.php @@ -9,11 +9,11 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License here . ***********************************************************************/ -$page_security = 3; -$path_to_root="../.."; +$page_security = 'SA_CRSTATUS'; +$path_to_root = "../.."; include($path_to_root . "/includes/session.inc"); -page(_("Credit Status")); +page(_($help_context = "Credit Status")); include($path_to_root . "/sales/includes/db/credit_status_db.inc"); @@ -59,7 +59,7 @@ if ($Mode=='UPDATE_ITEM' && can_process()) function can_delete($selected_id) { $sql= "SELECT COUNT(*) FROM ".TB_PREF."debtors_master - WHERE credit_status=$selected_id"; + WHERE credit_status=".db_escape($selected_id); $result = db_query($sql, "could not query customers"); $myrow = db_fetch_row($result); if ($myrow[0] > 0) @@ -88,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; @@ -116,19 +119,18 @@ 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")); delete_button_cell("Delete".$myrow['id'], _("Delete")); end_row(); } +inactive_control_row($th); end_table(); -end_form(); echo '
'; //----------------------------------------------------------------------------------- -start_form(); - start_table($table_style2); if ($selected_id != -1) @@ -150,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();