X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fmanage%2Fcustomers.php;h=69422a8c0b6bd6127a78d8e0918edb49dfe68756;hb=0633c80c829ea9dce559043806ec82982696c661;hp=41c642ac760ae5e964c9c0e00157c7491c258ad9;hpb=207ae289c358ff57c1adc55304a65b17a5dc4132;p=fa-stable.git diff --git a/sales/manage/customers.php b/sales/manage/customers.php index 41c642ac..69422a8c 100644 --- a/sales/manage/customers.php +++ b/sales/manage/customers.php @@ -110,10 +110,16 @@ function handle_submit(&$selected_id) if (isset($auto_create_branch) && $auto_create_branch == 1) { + $result = get_item_locations(false); + $loc = db_fetch($result); + if ($loc === false) + $location = ""; + else + $location = $loc['loc_code']; add_branch($selected_id, $_POST['CustName'], $_POST['cust_ref'], $_POST['address'], $_POST['salesman'], $_POST['area'], $_POST['tax_group_id'], '', get_company_pref('default_sales_discount_act'), get_company_pref('debtors_act'), get_company_pref('default_prompt_payment_act'), - get_company_pref('default location'), $_POST['address'], 0, 0, get_company_pref('default_ship_via'), $_POST['notes']); + $location, $_POST['address'], 0, 0, get_company_pref('default_ship_via'), $_POST['notes']); $selected_branch = db_insert_id();