Index: trunk/grails-app/services/CreateDataService.groovy
===================================================================
--- trunk/grails-app/services/CreateDataService.groovy	(revision 149)
+++ trunk/grails-app/services/CreateDataService.groovy	(revision 162)
@@ -59,4 +59,5 @@
         createDemoPersons()
         createDemoSites()
+        createDemoDepartments()
         // Tasks
         createDemoTaskGroups() /// @todo: Perhaps this should be BaseData?
@@ -240,4 +241,23 @@
         siteInstance = new Site(name: "Jasper Street Depot")
         saveAndTest(siteInstance)
+
+        siteInstance = new Site(name: "River Press")
+        saveAndTest(siteInstance)
+    }
+
+    def createDemoDepartments() {
+
+        //Department
+        def departmentInstance
+
+        //Department #1
+        departmentInstance = new Department(name: "Print Centre",
+                                                                                    site: Site.get(1))
+        saveAndTest(departmentInstance)
+
+        //Department #2
+        departmentInstance = new Department(name: "Pulp Mill 2",
+                                                                                    site: Site.get(2))
+        saveAndTest(departmentInstance)
     }
 
@@ -784,15 +804,18 @@
         //SystemSection #1
         systemSectionInstance = new SystemSection(name: "Press Section",
-                                                                                    site: Site.get(1))
+                                                                                    site: Site.get(1),
+                                                                                    department: Department.get(1))
         saveAndTest(systemSectionInstance)
 
         //SystemSection #2
         systemSectionInstance = new SystemSection(name: "RO System",
-                                                                                    site: Site.get(2))
+                                                                                    site: Site.get(2),
+                                                                                    department: Department.get(2))
         saveAndTest(systemSectionInstance)
 
         //SystemSection #3
         systemSectionInstance = new SystemSection(name: "Auxilliray Section",
-                                                                                    site: Site.get(1))
+                                                                                    site: Site.get(1),
+                                                                                    department: Department.get(1))
         saveAndTest(systemSectionInstance)
     }
