Rerun of autocreation branch location.
authorJoe Hunt <joe.hunt.consulting@gmail.com>
Mon, 12 Mar 2012 21:27:24 +0000 (22:27 +0100)
committerJoe Hunt <joe.hunt.consulting@gmail.com>
Mon, 12 Mar 2012 21:27:24 +0000 (22:27 +0100)
sales/manage/customers.php

index 69422a8c0b6bd6127a78d8e0918edb49dfe68756..e1d36f23104e51ceed6c17623b771f89b87f7aea 100644 (file)
@@ -110,16 +110,10 @@ 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'),
-                $location, $_POST['address'], 0, 0, get_company_pref('default_ship_via'), $_POST['notes']);
+                $_POST['location'], $_POST['address'], 0, 0, get_company_pref('default_ship_via'), $_POST['notes']);
                 
                $selected_branch = db_insert_id();
         
@@ -259,6 +253,7 @@ function customer_settings($selected_id)
                text_row(_("Secondary Phone Number:"), 'phone2', null, 32, 30);
                text_row(_("Fax Number:"), 'fax', null, 32, 30);
                email_row(_("E-mail:"), 'email', null, 35, 55);
+               locations_list_row(_("Default Inventory Location:"), 'location');
        }
        table_section(2);