Index: /trunk/grails-app/services/CreateDataService.groovy
===================================================================
--- /trunk/grails-app/services/CreateDataService.groovy	(revision 419)
+++ /trunk/grails-app/services/CreateDataService.groovy	(revision 420)
@@ -470,9 +470,14 @@
 
         // SupplierType #1
+        supplierTypeInstance = new SupplierType(name: "Unknown",
+                                                                    description: "Unknown supplier type")
+        saveAndTest(supplierTypeInstance)
+
+        // SupplierType #2
         supplierTypeInstance = new SupplierType(name: "OEM",
                                                                     description: "Original equipment supplier")
         saveAndTest(supplierTypeInstance)
 
-        // SupplierType #2
+        // SupplierType #3
         supplierTypeInstance = new SupplierType(name: "Local",
                                                                     description: "Local supplier")
@@ -486,9 +491,14 @@
 
         // ManufacturerType #1
+        manufacturerTypeInstance = new ManufacturerType(name: "Unknown",
+                                                                        description: "Unknown manufacturer type")
+        saveAndTest(manufacturerTypeInstance)
+
+        // ManufacturerType #2
         manufacturerTypeInstance = new ManufacturerType(name: "OEM",
                                                                         description: "Original equipment manufacturer")
         saveAndTest(manufacturerTypeInstance)
 
-        // ManufacturerType #2
+        // ManufacturerType #3
         manufacturerTypeInstance = new ManufacturerType(name: "Alternate",
                                                                         description: "Not original equipment manufacturer")
@@ -586,10 +596,10 @@
         // Supplier #1
         supplierInstance = new Supplier(name: "OEM Distributors",
-                                                                        supplierType: SupplierType.get(1))
+                                                                        supplierType: SupplierType.get(2))
         saveAndTest(supplierInstance)
 
         // Supplier #2
         supplierInstance = new Supplier(name: "Mex Holdings",
-                                                                        supplierType: SupplierType.get(2))
+                                                                        supplierType: SupplierType.get(3))
         saveAndTest(supplierInstance)
     }
@@ -602,10 +612,10 @@
         // Manufacturer #1
         manufacturerInstance = new Manufacturer(name: "OEM Manufacturer",
-                                                                        manufacturerType: ManufacturerType.get(1))
+                                                                        manufacturerType: ManufacturerType.get(2))
         saveAndTest(manufacturerInstance)
 
         // Manufacturer #2
         manufacturerInstance = new Manufacturer(name: "Laser Cutting Services Pty",
-                                                                        manufacturerType: ManufacturerType.get(2))
+                                                                        manufacturerType: ManufacturerType.get(3))
         saveAndTest(manufacturerInstance)
     }
