X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=sales%2Fmanage%2Fcustomer_branches.php;h=c4460d69e713b64569191e0a7daf8d67476117d1;hb=f12dbe7523bb1abc6cd69b009ef8f0be838f5348;hp=30669dea720ba463794215623ce152cd88a78ea4;hpb=171074993d8f6768cde0626697abd6b4eab732a6;p=fa-stable.git diff --git a/sales/manage/customer_branches.php b/sales/manage/customer_branches.php index 30669dea..c4460d69 100644 --- a/sales/manage/customer_branches.php +++ b/sales/manage/customer_branches.php @@ -35,6 +35,13 @@ if (isset($_GET['SelectedBranch'])) $selected_id = $_GET['SelectedBranch']; } +$id = find_submit('Select'); +if ($id != -1) +{ + context_return(array('customer_id' => $_POST['customer_id'], + 'branch_id' => $id)); // return to sales document +} + //----------------------------------------------------------------------------------------------- if ($Mode=='ADD_ITEM' || $Mode=='UPDATE_ITEM') @@ -179,6 +186,7 @@ if ($num_branches) $th = array(_("Name"), _("Contact"), _("Sales Person"), _("Area"), _("Phone No"), _("Fax No"), _("E-mail"), _("Tax Group"), "", ""); + if (count($_SESSION['Context'])) $th[] = ''; table_header($th); while ($myrow = db_fetch($result)) @@ -192,6 +200,8 @@ if ($num_branches) label_cell($myrow["fax"]); label_cell("" . $myrow["email"]. ""); label_cell($myrow["tax_group_name"]); + if (count($_SESSION['Context'])) + edit_button_cell("Select".$myrow["branch_code"], _("Select")); edit_button_cell("Edit".$myrow["branch_code"], _("Edit")); edit_button_cell("Delete".$myrow["branch_code"], _("Delete")); end_row();