X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fmanage%2Fcustomer_branches.php;h=37572a63490ceb5733cdf62b936a3a5c1a40cc5f;hb=231addc23887aa8b906dca18ea0b2a6fe63c3c39;hp=0e0fe1b9388cf9effbe48720e954bf3b2dcfa58b;hpb=4d4371fb200bb27fd6b680ebd2d1aaa450a0be7e;p=fa-stable.git diff --git a/sales/manage/customer_branches.php b/sales/manage/customer_branches.php index 0e0fe1b9..37572a63 100644 --- a/sales/manage/customer_branches.php +++ b/sales/manage/customer_branches.php @@ -168,7 +168,9 @@ if ($Mode == 'RESET' || get_post('_customer_id_update')) { $selected_id = -1; $cust_id = $_POST['customer_id']; + $inact = get_post('show_inactive'); unset($_POST); + $_POST['show_inactive'] = $inact; $_POST['customer_id'] = $cust_id; $Ajax->activate('_page_body'); } @@ -176,7 +178,7 @@ start_form(); echo "
" . _("Select a customer: ") . "  "; customer_list('customer_id', null, false, true); -echo "


"; +echo "
"; $num_branches = db_customer_has_branches($_POST['customer_id']); @@ -191,13 +193,17 @@ if ($num_branches) AND ".TB_PREF."cust_branch.salesman=".TB_PREF."salesman.salesman_code AND ".TB_PREF."cust_branch.debtor_no = '" . $_POST['customer_id']. "'"; + if (!check_value('show_inactive')) $sql .= " AND !".TB_PREF."cust_branch.inactive"; + $result = db_query($sql,"could not get customer branches"); start_table("$table_style width=60%"); $th = array(_("Name"), _("Contact"), _("Sales Person"), _("Area"), _("Phone No"), _("Fax No"), _("E-mail"), _("Tax Group"), "", ""); + inactive_control_column($th); if (count($_SESSION['Context'])) $th[] = ''; + table_header($th); while ($myrow = db_fetch($result)) @@ -211,13 +217,16 @@ if ($num_branches) label_cell($myrow["fax"]); email_cell($myrow["email"]); label_cell($myrow["tax_group_name"]); + inactive_control_cell($myrow["branch_code"], $myrow["inactive"], + 'cust_branch', 'branch_code'); if (count($_SESSION['Context'])) edit_button_cell("Select".$myrow["branch_code"], _("Select")); edit_button_cell("Edit".$myrow["branch_code"], _("Edit")); delete_button_cell("Delete".$myrow["branch_code"], _("Delete")); end_row(); } - end_table(); + inactive_control_row($th); + end_table(1); //END WHILE LIST LOOP } else