source: trunk/grails-app/services/CreateDataService.groovy @ 826

Last change on this file since 826 was 826, checked in by gav, 13 years ago

AJAX PM Entry, first draft.

File size: 81.8 KB
RevLine 
[622]1import org.codehaus.groovy.grails.commons.ConfigurationHolder
2
[149]3/**
4* Provides a data service to create base and demo data.
[798]5* Beware that most, if not all, BASE data is referenced by "Id" throughout the program.
[180]6* This allows changing the text of the 'name' property to something of the same meaning.
7* But be sure to maintain the correct Id during creation, indicated by #1, #2 etc.
[798]8* Task.list()[0] is used to allow integration testing with DEMO data, where Id's may change due to create-delete.
[149]9*/
10class  CreateDataService {
11
12    boolean transactional = false
13
[291]14    def authService
[180]15    def taskService
[210]16    def dateUtilService
[237]17    def appConfigService
[571]18    def searchableService
[549]19    def inventoryItemService
[251]20    def assignedGroupService
21    def assignedPersonService
[180]22
[549]23    def grailsApplication
24
[149]25/*******************************************
26Start of Group methods.
27Generally use these methods to create data.
28*******************************************/
29
30    /**
[199]31    * Always call this at startup to ensure that we have admin access
32    * and that the system pseudo person is available.
[149]33    */
[199]34    def ensureSystemAndAdminAccess() {
[149]35        if(!Authority.findByAuthority("ROLE_AppAdmin") ) {
[199]36            log.warn "ROLE_AppAdmin not found, calling createAdminAuthority()."
[149]37            createAdminAuthority()
38        }
[703]39        if(!Person.findByLoginName("system") ) {
[199]40            log.warn "LoginName 'system' not found, calling createSystemPerson()."
41            createSystemPerson()
42        }
[703]43        if(!Person.findByLoginName("admin") ) {
[199]44            log.warn "LoginName 'admin' not found, calling createAdminPerson()."
[149]45            createAdminPerson()
46        }
47    }
48
49    /**
50    * Create the base data required for the application to function.
51    */
52    def createBaseData() {
[237]53
54        if(appConfigService.exists("baseDataCreated")) {
[506]55            log.info "Base data previously created."
[237]56            return false
57        }
58
[506]59        log.info "Creating base data."
[237]60
[149]61        // Person and Utils
62        createBaseAuthorities()
[506]63        createBasePersonGroupTypes()
[149]64        createBasePersonGroups()
[265]65        createBaseDefinitions()
[149]66        createBaseUnitsOfMeasure()
67        createBasePeriods()
[397]68        createBaseSupplierTypes()
69        createBaseAddressTypes()
[402]70        createBaseContactTypes()
[534]71        createBaseMaintenancePolicies()
[441]72        createBaseInventoryItemPurchaseTypes()
[821]73        createBaseConditionSeverity()
[237]74
[534]75        // Assets
76        createBaseExtenededAttributeTypes()
77
78        // Inventory
79        createBaseInventoryTypes()
80        createBaseInventoryMovementTypes()
81
[149]82        // Tasks
[180]83        createBaseTaskGroups()
[149]84        createBaseTaskStatus()
85        createBaseTaskPriorities()
[252]86        createBaseTaskBudgetStatus()
[149]87        createBaseTaskTypes()
[180]88        createBaseTaskModificationTypes()
[149]89        createBaseEntryTypes()
[237]90
91        // Record that data has been created.
92        appConfigService.set("baseDataCreated")
[149]93    }
94
95    /**
96    * Create demo data for some example sites.
97    */
98    def createDemoData() {
[237]99
100        if(!appConfigService.exists("baseDataCreated")) {
101            log.error "Demo data cannot be created until base data has been created."
102            return false
103        }
104
105        if(appConfigService.exists("demoDataCreated")) {
106            log.error "Demo data has already been created, will NOT recreate."
107            return false
108        }
109
110        if(appConfigService.exists("demoDataCreationDisabled")) {
111            log.error "Demo data creation has been disabled, will NOT create."
112            return false
113        }
114
[199]115        log.info "Creating demo data..."
[237]116
[149]117        // Person and Utils
118        createDemoSites()
[162]119        createDemoDepartments()
[175]120        createDemoSuppliers()
[431]121        createDemoProductionReference()
[633]122        createDemoPurchasingGroups()  /// @todo: Perhaps a 'createQuickStartData' method?
[441]123        createDemoCostCodes()
[633]124        createDemoPersons()
[237]125
[534]126        // Assets
127        createDemoSections()
128        createDemoAssetTree()
[685]129        createDemoAssetExtendedAttributes()
130        createDemoAssetSubItemExtendedAttributes()
[237]131
[149]132        // Inventory
133        createDemoInventoryStores()  /// @todo: Perhaps a 'createQuickStartData' method?
[175]134        createDemoInventoryLocations()
[149]135        createDemoInventoryGroups() /// @todo: Perhaps a 'createQuickStartData' method?
136        createDemoInventoryItems()
[237]137
[534]138        // Tasks
139        createDemoTasks()
140        createDemoEntries()
141        createDemoAssignedGroups()
142        createDemoAssignedPersons()
[809]143//         createDemoTaskProcedure()
144//         createDemoMaintenanceActions()
[534]145        createDemoTaskRecurringSchedules()
[237]146
147        // Record that data has been created.
148        appConfigService.set("demoDataCreated")
[149]149    }
150
151/******************
152Start of Person
153*******************/
154
155    def createAdminAuthority() {
156        def authInstance
157
[294]158        // Authority #1
[431]159        authInstance = new Authority(description:"Application Admin, not required for daily use! \
160                                                                                Grants full admin access to the application.",
[149]161                                        authority:"ROLE_AppAdmin")
162        saveAndTest(authInstance)
163    }
164
165    def createBaseAuthorities() {
166
167        def authInstance
168
[294]169        // Authority #2
[296]170        authInstance = new Authority(description:"Business Manager, grants full management access.",
[431]171                                                            authority:"ROLE_Manager")
[149]172        saveAndTest(authInstance)
173
[294]174        // Authority #3
[431]175        authInstance = new Authority(description:"Application User, all application users need this base role \
176                                                                                    to allow login.",
177                                                            authority:"ROLE_AppUser")
[149]178        saveAndTest(authInstance)
[296]179
180        // Authority #4
181        authInstance = new Authority(description:"Task Manager",
[431]182                                                            authority:"ROLE_TaskManager")
[296]183        saveAndTest(authInstance)
184
185        // Authority #5
186        authInstance = new Authority(description:"Task User",
[431]187                                                            authority:"ROLE_TaskUser")
[296]188        saveAndTest(authInstance)
189
190        // Authority #6
191        authInstance = new Authority(description:"Inventory Manager",
[431]192                                                            authority:"ROLE_InventoryManager")
[296]193        saveAndTest(authInstance)
194
195        // Authority #7
196        authInstance = new Authority(description:"Inventory User",
[431]197                                                            authority:"ROLE_InventoryUser")
[296]198        saveAndTest(authInstance)
199
200        // Authority #8
201        authInstance = new Authority(description:"Asset Manager",
[431]202                                                            authority:"ROLE_AssetManager")
[296]203        saveAndTest(authInstance)
204
205        // Authority #9
206        authInstance = new Authority(description:"Asset User",
[431]207                                                            authority:"ROLE_AssetUser")
[296]208        saveAndTest(authInstance)
[431]209
210        // Authority #10
211        authInstance = new Authority(description:"Production Manager",
212                                                            authority:"ROLE_ProductionManager")
213        saveAndTest(authInstance)
214
215        // Authority #11
216        authInstance = new Authority(description:"Production User",
217                                                            authority:"ROLE_ProductionUser")
218        saveAndTest(authInstance)
[149]219    }
220
[506]221    void createBasePersonGroupTypes() {
222
223        //PersonGroupType.
[149]224        def personGroupTypeInstance
[506]225        personGroupTypeInstance = new PersonGroupType(name:"Team")
[149]226        saveAndTest(personGroupTypeInstance)
[506]227        personGroupTypeInstance = new PersonGroupType(name:"Contractor")
[149]228        saveAndTest(personGroupTypeInstance)
[506]229        personGroupTypeInstance = new PersonGroupType(name:"Project Team")
[149]230        saveAndTest(personGroupTypeInstance)
[506]231    }
[149]232
[506]233    void createBasePersonGroups() {
234
[149]235        //PersonGroup
236        def personGroupInstance
[506]237        personGroupInstance = new PersonGroup(personGroupType:PersonGroupType.get(1),
238                                                                                name:"Electrical - General")
[149]239        saveAndTest(personGroupInstance)
[506]240        personGroupInstance = new PersonGroup(personGroupType:PersonGroupType.get(1),
241                                                                                name:"Mechanical - General")
[149]242        saveAndTest(personGroupInstance)
[506]243        personGroupInstance = new PersonGroup(personGroupType:PersonGroupType.get(1),
244                                                                                name:"Production")
[149]245        saveAndTest(personGroupInstance)
[506]246        personGroupInstance = new PersonGroup(personGroupType:PersonGroupType.get(2),
247                                                                                name:"AirCon Contractor")
[149]248        saveAndTest(personGroupInstance)
[506]249        personGroupInstance = new PersonGroup(personGroupType:PersonGroupType.get(3),
250                                                                                name:"gnuMims")
[149]251        saveAndTest(personGroupInstance)
252    }
253
[199]254    def createSystemPerson() {
255        //Person
256        def passClearText = "pass"
[291]257        def passwordEncoded = authService.encodePassword(passClearText)
[199]258        def personInstance
259
260        //Person #1
261        personInstance = new Person(loginName:"system",
262                                    firstName:"gnuMims",
263                                    lastName:"System",
264                                    description:'''This is a pseudo person that the application uses to insert data. DO NOT
265                                                        assign login authorities or change the details of this person.''',
266                                    pass:passClearText,
[399]267                                    password:passwordEncoded)
[199]268        saveAndTest(personInstance)
269    }
270
[149]271    def createAdminPerson() {
272        //Person
273        def passClearText = "pass"
[291]274        def passwordEncoded = authService.encodePassword(passClearText)
[149]275        def personInstance
276
[199]277        //Person #2
[149]278        personInstance = new Person(loginName:"admin",
279                                    firstName:"Admin",
280                                    lastName:"Powers",
[199]281                                    description:'''Every time the application starts it ensures that the 'admin' login name is available.
282                                                        DO update the password and other details but keep the login name as 'admin'. ''',
[149]283                                    pass:passClearText,
[399]284                                    password:passwordEncoded)
[149]285        saveAndTest(personInstance)
286        personInstance.addToAuthorities(Authority.get(1))
287    }
288
289    def createBasePersons() {
[199]290    }
291
292    def createDemoPersons() {
[149]293        //Person
294        def passClearText = "pass"
[291]295        def passwordEncoded = authService.encodePassword(passClearText)
[149]296        def personInstance
297
[199]298        //Person #1 is system.
299        //Person #2 is admin.
[149]300
[199]301        //Person #3
[149]302        personInstance = new Person(loginName:"manager",
303                                    firstName:"Demo",
304                                    lastName:"Manager",
305                                    pass:passClearText,
[399]306                                    password:passwordEncoded)
[149]307        saveAndTest(personInstance)
[431]308        personInstance.addToAuthorities(Authority.get(2)) // ROLE_Manager.
309        personInstance.addToAuthorities(Authority.get(3)) // ROLE_AppUser.
[633]310        personInstance.addToPersonGroups(PersonGroup.get(1))
311        personInstance.addToPurchasingGroups(PurchasingGroup.get(1))
312        personInstance.addToPurchasingGroups(PurchasingGroup.get(2))
[149]313
[199]314        //Person #4
[149]315        personInstance = new Person(loginName:"user",
316                                    firstName:"Demo",
317                                    lastName:"User",
318                                    pass:passClearText,
[399]319                                    password:passwordEncoded)
[149]320        saveAndTest(personInstance)
[431]321        personInstance.addToAuthorities(Authority.get(3)) // ROLE_AppUser.
322        personInstance.addToAuthorities(Authority.get(5)) // ROLE_TaskManager.
323        personInstance.addToAuthorities(Authority.get(7)) // ROLE_InventoryUser.
324        personInstance.addToAuthorities(Authority.get(9)) // ROLE_AssetUser.
[164]325        personInstance.addToPersonGroups(PersonGroup.get(1))
[149]326
[199]327        //Person #5
[149]328        personInstance = new Person(loginName:"craig",
329                                    firstName:"Craig",
330                                    lastName:"SuperSparky",
331                                    pass:passClearText,
[399]332                                    password:passwordEncoded)
[149]333        saveAndTest(personInstance)
334        personInstance.addToAuthorities(Authority.get(3))
[296]335        personInstance.addToAuthorities(Authority.get(5))
336        personInstance.addToAuthorities(Authority.get(7))
337        personInstance.addToAuthorities(Authority.get(9))
[164]338        personInstance.addToPersonGroups(PersonGroup.get(1))
[149]339
[199]340        //Person #6
[149]341        personInstance = new Person(loginName:"john",
342                                    firstName:"John",
343                                    lastName:"SuperFitter",
344                                    pass:passClearText,
[399]345                                    password:passwordEncoded)
[149]346        saveAndTest(personInstance)
347        personInstance.addToAuthorities(Authority.get(3))
[296]348        personInstance.addToAuthorities(Authority.get(5))
349        personInstance.addToAuthorities(Authority.get(7))
350        personInstance.addToAuthorities(Authority.get(9))
[164]351        personInstance.addToPersonGroups(PersonGroup.get(2))
[149]352
[199]353        //Person #7
[431]354        personInstance = new Person(loginName:"production manager",
[149]355                                    firstName:"Production",
[431]356                                    lastName:"Manager",
[149]357                                    pass:passClearText,
[399]358                                    password:passwordEncoded)
[149]359        saveAndTest(personInstance)
[431]360        personInstance.addToAuthorities(Authority.get(3)) // ROLE_AppUser.
361        personInstance.addToAuthorities(Authority.get(10)) // ROLE_ProductionManager.
[164]362        personInstance.addToPersonGroups(PersonGroup.get(3))
[296]363
[431]364        //Person #8
365        personInstance = new Person(loginName:"production",
366                                    firstName:"Production",
367                                    lastName:"User",
368                                    pass:passClearText,
369                                    password:passwordEncoded)
370        saveAndTest(personInstance)
371        personInstance.addToAuthorities(Authority.get(3)) // ROLE_AppUser.
372        personInstance.addToAuthorities(Authority.get(11)) // ROLE_ProductionUser.
373        personInstance.addToPersonGroups(PersonGroup.get(3))
374
375        //Person #9
[296]376        personInstance = new Person(loginName:"testmanager",
377                                    firstName:"Test",
378                                    lastName:"Manager",
379                                    pass:passClearText,
[399]380                                    password:passwordEncoded)
[296]381        saveAndTest(personInstance)
[431]382        personInstance.addToAuthorities(Authority.get(3)) // ROLE_AppUser.
383        personInstance.addToAuthorities(Authority.get(4)) // ROLE_TaskManager.
384        personInstance.addToAuthorities(Authority.get(6)) // ROLE_InventoryManager.
385        personInstance.addToAuthorities(Authority.get(8)) // ROLE_AssetManager.
[296]386        personInstance.addToPersonGroups(PersonGroup.get(3))
[149]387    }
388
389/***********************
390START OF UTILITIES
391***********************/
392
[265]393    //These can redefined by the site at deployment time.
[266]394    /// @todo: build an admin view so that only the value (definition) can be changed.
[265]395    def createBaseDefinitions() {
396        appConfigService.set("Department Definition", "A department as recongised by accounting.")
[393]397        appConfigService.set("Site Definition", "The plant, work or production site.")
398        appConfigService.set("Section Definition", "A logical grouping of assets, which may be an area, system or process \
399                                            as determined by design.")
400        appConfigService.set("Asset Definition",
401                                            "The complete asset as it is known on the site. \
402                                            Often purchased as a whole with the primary purpose of returning value by performing a function. \
403                                            An asset is made up of 1 or more sub assets and performs a complete function as specified by the designer.")
404        appConfigService.set("Asset Sub Item 1 Name",
405                                            "Sub Asset")
406        appConfigService.set("Asset Sub Item 1 Definition",
407                                            "A machine that performs part of a complete asset's function and often has a model number.")
408        appConfigService.set("Asset Sub Item 2 Name",
409                                            "Functional Assembly")
410        appConfigService.set("Asset Sub Item 2 Definition",
411                                            "Functional Assemblies are taken from the designer's functional list for the sub asset and are made up of sub \
412                                            assemblies that together perform that function.")
413        appConfigService.set("Asset Sub Item 3 Name",
414                                            "Sub Assembly Group")
415        appConfigService.set("Asset Sub Item 3 Definition",
416                                            "Group or type of part.")
417        appConfigService.set("Asset Sub Item 4 Name",
418                                            "Component Item")
419        appConfigService.set("Asset Sub Item 4 Definition",
420                                            "The smallest part that would be analysed for failure.")
[265]421    }
422
[149]423    def createDemoSites() {
424        //Site
425        def siteInstance
426
[321]427        siteInstance = new Site(name: "CSM",
[314]428                                                    description: "Creek Side Mill")
[149]429        saveAndTest(siteInstance)
430
[314]431        siteInstance = new Site(name: "Jasper Street Depot",
432                                                    description: "Storage depot on Jasper Street.")
[149]433        saveAndTest(siteInstance)
[162]434
[314]435        siteInstance = new Site(name: "River Press",
436                                                    description: "Printing press site")
[162]437        saveAndTest(siteInstance)
[149]438    }
439
[162]440    def createDemoDepartments() {
441
442        //Department
443        def departmentInstance
444
445        //Department #1
446        departmentInstance = new Department(name: "Print Centre",
[314]447                                                                                description: "Printing Department",
448                                                                                site: Site.get(1))
[162]449        saveAndTest(departmentInstance)
450
451        //Department #2
[321]452        departmentInstance = new Department(name: "Pulp Mill",
453                                                                                description: "Business Department",
[314]454                                                                                site: Site.get(2))
[162]455        saveAndTest(departmentInstance)
456    }
457
[149]458    def createBaseUnitsOfMeasure() {
459
460        //UnitOfMeasure
461        def unitOfMeasureInstance
462
463        //UnitOfMeasure #1
464        unitOfMeasureInstance = new UnitOfMeasure(name: "each")
465        saveAndTest(unitOfMeasureInstance)
466
467        //UnitOfMeasure #2
468        unitOfMeasureInstance = new UnitOfMeasure(name: "meter(s)")
469        saveAndTest(unitOfMeasureInstance)
470
471        //UnitOfMeasure #3
472        unitOfMeasureInstance = new UnitOfMeasure(name: "box(es)")
473        saveAndTest(unitOfMeasureInstance)
474
475        //UnitOfMeasure #4
476        unitOfMeasureInstance = new UnitOfMeasure(name: "litre(s)")
477        saveAndTest(unitOfMeasureInstance)
478
479        //UnitOfMeasure #5
480        unitOfMeasureInstance = new UnitOfMeasure(name: "kilogram(s)")
481        saveAndTest(unitOfMeasureInstance)
[739]482
483        //UnitOfMeasure #6
484        unitOfMeasureInstance = new UnitOfMeasure(name: "gram(s)")
485        saveAndTest(unitOfMeasureInstance)
[149]486    }
487
488    def createBasePeriods() {
489
490        //Period
491        def periodInstance
492
493        //Period #1
494        periodInstance = new Period(period: "Day(s)")
495        saveAndTest(periodInstance)
496
497        //Period #2
498        periodInstance = new Period(period: "Week(s)")
499        saveAndTest(periodInstance)
500
501        //Period #3
502        periodInstance = new Period(period: "Month(s)")
503        saveAndTest(periodInstance)
504
505        //Period #4
506        periodInstance = new Period(period: "Year(s)")
507        saveAndTest(periodInstance)
508    }
509
[397]510    def createBaseSupplierTypes() {
[175]511
512        // SupplierType
513        def supplierTypeInstance
514
515        // SupplierType #1
[420]516        supplierTypeInstance = new SupplierType(name: "Unknown",
517                                                                    description: "Unknown supplier type")
518        saveAndTest(supplierTypeInstance)
519
520        // SupplierType #2
[175]521        supplierTypeInstance = new SupplierType(name: "OEM",
522                                                                    description: "Original equipment supplier")
523        saveAndTest(supplierTypeInstance)
524
[420]525        // SupplierType #3
[175]526        supplierTypeInstance = new SupplierType(name: "Local",
527                                                                    description: "Local supplier")
528        saveAndTest(supplierTypeInstance)
529    }
530
[397]531    def createBaseAddressTypes() {
532
533        // AddressType
534        def addressTypeInstance
535
536        // AddressType #1
537        addressTypeInstance = new AddressType(name: "Postal",
538                                                                                description: "A postal address.")
539        saveAndTest(addressTypeInstance)
540
541        // AddressType #2
542        addressTypeInstance = new AddressType(name: "Physical",
543                                                                                description: "A physical address.")
544        saveAndTest(addressTypeInstance)
545
546        // AddressType #3
547        addressTypeInstance = new AddressType(name: "Postal & Physical",
548                                                                                description: "An address that is both the postal and physical address.")
549        saveAndTest(addressTypeInstance)
550
551        // AddressType #4
552        addressTypeInstance = new AddressType(name: "Invoice",
553                                                                                description: "An address to send invoices to.")
554        saveAndTest(addressTypeInstance)
555
556        // AddressType #5
557        addressTypeInstance = new AddressType(name: "Delivery",
558                                                                                description: "An address to send deliveries to.")
559        saveAndTest(addressTypeInstance)
560    }
561
[402]562    def createBaseContactTypes() {
563
564        // ContactType
565        def contactTypeInstance
566
567        // ContactType #1
568        contactTypeInstance = new ContactType(name: "Email",
569                                                                                description: "Email address.")
570        saveAndTest(contactTypeInstance)
571
572        // ContactType #2
573        contactTypeInstance = new ContactType(name: "Alternate Email",
574                                                                                description: "Alternate email address.")
575        saveAndTest(contactTypeInstance)
576
577        // ContactType #3
578        contactTypeInstance = new ContactType(name: "Mobile",
579                                                                                description: "Modile phone number.")
580        saveAndTest(contactTypeInstance)
581
582        // ContactType #4
583        contactTypeInstance = new ContactType(name: "Work Phone",
584                                                                                description: "Work phone number.")
585        saveAndTest(contactTypeInstance)
586
587        // ContactType #5
588        contactTypeInstance = new ContactType(name: "Home Phone",
589                                                                                description: "Home phone number.")
590        saveAndTest(contactTypeInstance)
591
592        // ContactType #6
593        contactTypeInstance = new ContactType(name: "Work Fax",
594                                                                                description: "Work fax number.")
595        saveAndTest(contactTypeInstance)
596
597        // ContactType #7
598        contactTypeInstance = new ContactType(name: "Home Fax",
599                                                                                description: "Home fax number.")
600        saveAndTest(contactTypeInstance)
601
602        // ContactType #8
603        contactTypeInstance = new ContactType(name: "Web Site",
604                                                                                description: "Web site address.")
605        saveAndTest(contactTypeInstance)
606
607        // ContactType #9
608        contactTypeInstance = new ContactType(name: "Person",
609                                                                                description: "Contact person.")
610        saveAndTest(contactTypeInstance)
611    }
612
[441]613    def createBaseInventoryItemPurchaseTypes() {
614
615        // InventoryItemPurchaseType
616        def inventoryItemPurchaseTypeInstance
617
618        // InventoryItemPurchaseType #1
619        inventoryItemPurchaseTypeInstance = new InventoryItemPurchaseType(name: "Order Placed",
620                                                                                description: "Order has been placed.")
621        saveAndTest(inventoryItemPurchaseTypeInstance)
622
623        // InventoryItemPurchaseType #2
624        inventoryItemPurchaseTypeInstance = new InventoryItemPurchaseType(name: "Received B/order To Come",
625                                                                                description: "Order has been partially received.")
626        saveAndTest(inventoryItemPurchaseTypeInstance)
[597]627
[441]628        // InventoryItemPurchaseType #3
629        inventoryItemPurchaseTypeInstance = new InventoryItemPurchaseType(name: "Received Complete",
630                                                                                description: "Order has been partially received.")
631        saveAndTest(inventoryItemPurchaseTypeInstance)
632
633        // InventoryItemPurchaseType #4
634        inventoryItemPurchaseTypeInstance = new InventoryItemPurchaseType(name: "Invoice Approved",
635                                                                                description: "Invoice approved for payment.")
636        saveAndTest(inventoryItemPurchaseTypeInstance)
637    }
638
[821]639    def createBaseConditionSeverity() {
640
641        // ConditionSeverity
642        def conditionSeverity
643
644        // ConditionSeverity #1
645        conditionSeverity = new ConditionSeverity(code: 'A',
646                                                                            recommendation: 'Normal Monitoring').save(failOnError:true)
647
648        // ConditionSeverity #2
649        conditionSeverity = new ConditionSeverity(code: 'B',
650                                                                            recommendation: 'Increase Monitoring').save(failOnError:true)
651
652        // ConditionSeverity #3
653        conditionSeverity = new ConditionSeverity(code: 'C',
654                                                                            recommendation: 'Replace 2-6 weeks').save(failOnError:true)
655
656        // ConditionSeverity #4
657        conditionSeverity = new ConditionSeverity(code: 'D',
658                                                                            recommendation: 'Replace 1-2 weeks').save(failOnError:true)
659    }
660
[175]661    def createDemoSuppliers() {
662
663        // Supplier
664        def supplierInstance
665
666        // Supplier #1
667        supplierInstance = new Supplier(name: "OEM Distributors",
[420]668                                                                        supplierType: SupplierType.get(2))
[175]669        saveAndTest(supplierInstance)
670
671        // Supplier #2
672        supplierInstance = new Supplier(name: "Mex Holdings",
[420]673                                                                        supplierType: SupplierType.get(3))
[175]674        saveAndTest(supplierInstance)
675    }
676
[431]677    def createDemoProductionReference() {
678
679        // ProductionReference
680        def productionReferenceInstance
681
682        // ProductionReference #1
683        productionReferenceInstance = new ProductionReference(name: "Monday Production")
684        saveAndTest(productionReferenceInstance)
685
686        // ProductionReference #2
687        productionReferenceInstance = new ProductionReference(name: "Tuesday Production")
688        saveAndTest(productionReferenceInstance)
689    }
690
[633]691    void createDemoPurchasingGroups() {
692
693        // PurchasingGroup
694        def purchasingGroupInstance
695
696        purchasingGroupInstance = new PurchasingGroup(name:"R&M")
697        saveAndTest(purchasingGroupInstance)
698
699        purchasingGroupInstance = new PurchasingGroup(name:"Raw Materials")
700        saveAndTest(purchasingGroupInstance)
701
702        purchasingGroupInstance = new PurchasingGroup(name:"Safety")
703        saveAndTest(purchasingGroupInstance)
704    }
705
[441]706    def createDemoCostCodes() {
707
708        // CostCode
709        def costCodeInstance
710
711        // CostCode #1
[633]712        costCodeInstance = new CostCode(name: "Reelstand.172",
713                                                                    purchasingGroup: PurchasingGroup.get(1))
[441]714        saveAndTest(costCodeInstance)
715
716        // CostCode #2
[633]717        costCodeInstance = new CostCode(name: "Reelstand.CAPEX",
718                                                                    purchasingGroup: PurchasingGroup.get(1))
[441]719        saveAndTest(costCodeInstance)
[633]720
721        // CostCode #2
722        costCodeInstance = new CostCode(name: "PrintUnit.123",
723                                                                    purchasingGroup: PurchasingGroup.get(3))
724        saveAndTest(costCodeInstance)
[441]725    }
726
[149]727/*********************
728START OF TASK
729*********************/
730
[180]731    def createBaseTaskGroups() {
[149]732        //TaskGroup
733        def taskGroupInstance
734
[258]735        //TaskGroup #1
[149]736        taskGroupInstance = new TaskGroup(name:"Engineering Activites",
737                                                                            description:"Engineering daily activities")
738        saveAndTest(taskGroupInstance)
739
[258]740        //TaskGroup #2
[149]741        taskGroupInstance = new TaskGroup(name:"Production Activites",
742                                                                            description:"Production daily activities")
743        saveAndTest(taskGroupInstance)
744
[258]745        //TaskGroup #3
[149]746        taskGroupInstance = new TaskGroup(name:"New Projects",
[576]747                                                                            description:"New site projects")
[149]748        saveAndTest(taskGroupInstance)
[576]749
750        //TaskGroup #4
[587]751        taskGroupInstance = new TaskGroup(name:"Electrical Dayshift",
[576]752                                                                            description:"Group for dayshift electrical tasks")
753        saveAndTest(taskGroupInstance)
754
755        //TaskGroup #5
[587]756        taskGroupInstance = new TaskGroup(name:"Electrical Nightshift",
[576]757                                                                            description:"Group for dayshift mechanical tasks")
758        saveAndTest(taskGroupInstance)
759
760        //TaskGroup #6
[587]761        taskGroupInstance = new TaskGroup(name:"Mechanical Dayshift",
[576]762                                                                            description:"Group for nightshift electrical tasks")
763        saveAndTest(taskGroupInstance)
764
765        //TaskGroup #7
[587]766        taskGroupInstance = new TaskGroup(name:"Mechanical Nightshift",
[576]767                                                                            description:"Group for nightshift mechanical tasks")
768        saveAndTest(taskGroupInstance)
[149]769    }
770
771    def createBaseTaskStatus() {
772
773        //TaskStatus
774        def taskStatusInstance
775
[181]776        taskStatusInstance = new TaskStatus(name:"Not Started") // #1
[149]777        saveAndTest(taskStatusInstance)
778
[181]779        taskStatusInstance = new TaskStatus(name:"In Progress") // #2
[149]780        saveAndTest(taskStatusInstance)
781
[222]782        taskStatusInstance = new TaskStatus(name:"Complete") // #3
[149]783        saveAndTest(taskStatusInstance)
784    }
785
786    def createBaseTaskPriorities() {
787
788        //TaskPriority
789        def taskPriorityInstance
790
[433]791        taskPriorityInstance = new TaskPriority(name:"0 - Immediate") // #1
[149]792        saveAndTest(taskPriorityInstance)
793
[433]794        taskPriorityInstance = new TaskPriority(name:"1 - Very High") // #2
[149]795        saveAndTest(taskPriorityInstance)
796
[433]797        taskPriorityInstance = new TaskPriority(name:"2 - High") // #3
[149]798        saveAndTest(taskPriorityInstance)
799
[433]800        taskPriorityInstance = new TaskPriority(name:"3 - Normal") // #4
[149]801        saveAndTest(taskPriorityInstance)
[433]802
803        taskPriorityInstance = new TaskPriority(name:"4 - Low") // #5
804        saveAndTest(taskPriorityInstance)
805
806        taskPriorityInstance = new TaskPriority(name:"5 - Minor") //  #6
807        saveAndTest(taskPriorityInstance)
[149]808    }
809
[252]810    def createBaseTaskBudgetStatus() {
811
812        //TaskBudgetStatus
813        def taskBudgetStatusInstance
814
815        taskBudgetStatusInstance = new TaskBudgetStatus(name:"Unplanned") // #1
816        saveAndTest(taskBudgetStatusInstance)
817
818        taskBudgetStatusInstance = new TaskBudgetStatus(name:"Planned") // #2
819        saveAndTest(taskBudgetStatusInstance)
820    }
821
[149]822    def createBaseTaskTypes() {
823
824        //TaskType
825        def taskTypeInstance
826
[418]827        taskTypeInstance = new TaskType(name:"Immediate Callout") // #1
[149]828        saveAndTest(taskTypeInstance)
829
[418]830        taskTypeInstance = new TaskType(name:"Unscheduled Breakin") // #2
[149]831        saveAndTest(taskTypeInstance)
832
[418]833        taskTypeInstance = new TaskType(name:"Scheduled") // #3
[149]834        saveAndTest(taskTypeInstance)
835
[418]836        taskTypeInstance = new TaskType(name:"Preventative Maintenance") // #4
[149]837        saveAndTest(taskTypeInstance)
838
[523]839        taskTypeInstance = new TaskType(name:"Project") // #5
[149]840        saveAndTest(taskTypeInstance)
[749]841
842        taskTypeInstance = new TaskType(name:"Parent PM") // #6
843        saveAndTest(taskTypeInstance)
[149]844    }
845
[180]846    def createBaseTaskModificationTypes() {
847
848        //ModificationType
849        def taskModificationTypeInstance
850        taskModificationTypeInstance = new TaskModificationType(name:"Created").save()  // #1
851        taskModificationTypeInstance = new TaskModificationType(name:"Started").save()  // #2
852        taskModificationTypeInstance = new TaskModificationType(name:"Modified").save()  // #3
853        taskModificationTypeInstance = new TaskModificationType(name:"Completed").save()  // #4
854        taskModificationTypeInstance = new TaskModificationType(name:"Reopened").save()  // #5
855        taskModificationTypeInstance = new TaskModificationType(name:"Trashed").save()  // #6
856        taskModificationTypeInstance = new TaskModificationType(name:"Restored").save()  // #7
857        taskModificationTypeInstance = new TaskModificationType(name:"Approved").save()  // #8
858        taskModificationTypeInstance = new TaskModificationType(name:"Renege approval").save()  // #9
[251]859        taskModificationTypeInstance = new TaskModificationType(name:"Modified (Assigned Groups)").save()  // #10
860        taskModificationTypeInstance = new TaskModificationType(name:"Modified (Assigned Persons)").save()  // #11
[418]861        taskModificationTypeInstance = new TaskModificationType(name:"Modified (Flagged for attention)").save()  // #12
862        taskModificationTypeInstance = new TaskModificationType(name:"Modified (Attention flag cleared)").save()  // #13
[180]863    }
864
[149]865    def createDemoTasks() {
866
[180]867        def taskResult
868        def p = [:]
[149]869
870        //Task #1
[180]871        p = [taskGroup:TaskGroup.findByName("Engineering Activites"),
[798]872                taskPriority:TaskPriority.get(1),
[180]873                taskType:TaskType.get(1),
874                leadPerson:Person.get(2),
[534]875                primaryAsset:Asset.get(4),
[418]876                description:"Level sensor not working",
[180]877                comment:"Has been noted as problematic, try recalibrating.",
[447]878                targetStartDate: dateUtilService.today,
879                targetCompletionDate: dateUtilService.today]
[149]880
[394]881        taskResult = taskService.save(p)
[750]882        taskService.approve(taskResult.taskInstance)
[180]883
[149]884        //Task #2
[180]885        p = [taskGroup:TaskGroup.findByName("Engineering Activites"),
[149]886                taskPriority:TaskPriority.get(2),
[418]887                taskType:TaskType.get(3),
[149]888                leadPerson:Person.get(5),
[534]889                primaryAsset:Asset.get(4),
[149]890                description:"Some follow-up work",
891                comment:"Some help required",
[210]892                targetStartDate: dateUtilService.tomorrow,
[447]893                targetCompletionDate: dateUtilService.tomorrow,
[529]894                parentTask: Task.list()[0]]
[149]895
[394]896        taskResult = taskService.save(p)
[750]897        taskService.approve(taskResult.taskInstance)
[180]898
[149]899        //Task #3
[180]900        p = [taskGroup:TaskGroup.findByName("Engineering Activites"),
[149]901                taskPriority:TaskPriority.get(2),
[418]902                taskType:TaskType.get(3),
[149]903                leadPerson:Person.get(5),
[534]904                primaryAsset:Asset.get(4),
[418]905                description:"A Sub Task can be created from the 'Sub Task' tab.",
[149]906                comment:"Some help required",
[210]907                targetStartDate: dateUtilService.yesterday,
[447]908                targetCompletionDate: dateUtilService.yesterday,
[529]909                parentTask: Task.list()[0]]
[149]910
[394]911        taskResult = taskService.save(p)
[750]912        taskService.approve(taskResult.taskInstance)
[180]913
[149]914        //Task #4
[180]915        p = [taskGroup:TaskGroup.findByName("Engineering Activites"),
[534]916                taskPriority:TaskPriority.get(2),
917                taskType:TaskType.get(2),
918                leadPerson:Person.get(4),
919                primaryAsset:Asset.get(4),
920                description:"Please replace sensor at next available opportunity.",
921                comment:"Nothing else has worked. So we now require the part to be replaced.",
[447]922                targetStartDate: dateUtilService.today,
923                targetCompletionDate: dateUtilService.oneWeekFromNow,
[529]924                parentTask: Task.list()[0]]
[149]925
[394]926        taskResult = taskService.save(p)
[750]927        taskService.approve(taskResult.taskInstance)
[180]928
[149]929        //Task #5
[180]930        p = [taskGroup:TaskGroup.findByName("Production Activites"),
[534]931                taskPriority:TaskPriority.get(2),
932                taskType:TaskType.get(3),
933                leadPerson:Person.get(6),
934                primaryAsset:Asset.get(1),
935                description:"Production Task",
936                comment:"Production task for specific production run or shift",
[447]937                targetStartDate: dateUtilService.today - 6,
938                targetCompletionDate: dateUtilService.today - 6]
[149]939
[394]940        taskResult = taskService.save(p)
[750]941        taskService.approve(taskResult.taskInstance)
[180]942
[149]943        //Task #6
[199]944        p = [taskGroup:TaskGroup.findByName("Engineering Activites"),
[534]945                taskPriority:TaskPriority.get(4),
[750]946                taskType:TaskType.get(6),
[534]947                leadPerson:Person.get(4),
948                primaryAsset:Asset.get(2),
949                description:"This is a recurring preventative maintenance task.",
950                comment:"If there is a parent task specified then this is a generated sub task, if there is a recurring schedule specified then this is a parent task.",
[447]951                targetStartDate: dateUtilService.today,
952                targetCompletionDate: dateUtilService.today + 30]
[180]953
[394]954        taskResult = taskService.save(p)
[534]955        taskService.approve(taskResult.taskInstance)
[750]956
957        //Task #7
958        p = [taskGroup:TaskGroup.findByName("Engineering Activites"),
959                taskPriority:TaskPriority.get(4),
960                taskType:TaskType.get(6),
961                leadPerson:Person.get(4),
962                primaryAsset:Asset.get(2),
963                description:"100hr Service.",
964                comment:"Based on OEM service.",
965                targetStartDate: dateUtilService.today,
966                targetCompletionDate: dateUtilService.today + 1]
967
968        taskResult = taskService.save(p)
969        taskService.approve(taskResult.taskInstance)
[149]970    }
971
972    def createBaseEntryTypes() {
973
974        //EntryType
975        def entryTypeInstance
976
[190]977        entryTypeInstance = new EntryType(name:"Fault") // #1
[149]978        saveAndTest(entryTypeInstance)
979
[418]980        entryTypeInstance = new EntryType(name:"Cause") // #2
[149]981        saveAndTest(entryTypeInstance)
982
[418]983        entryTypeInstance = new EntryType(name:"Work Done") // #3
[149]984        saveAndTest(entryTypeInstance)
985
[418]986        entryTypeInstance = new EntryType(name:"Production Note") // #4
[149]987        saveAndTest(entryTypeInstance)
[418]988
989        entryTypeInstance = new EntryType(name:"Work Request") // #5
990        saveAndTest(entryTypeInstance)
[826]991
992        entryTypeInstance = new EntryType(name:"PM Entry") // #6
993        saveAndTest(entryTypeInstance)
[149]994    }
995
996    def createDemoEntries() {
997
[190]998        def entryResult
999        def p = [:]
[149]1000
1001        //Entry #1
[529]1002        p = [task: Task.list()[0],
[190]1003                entryType: EntryType.get(1),
1004                comment: "This level sensor is causing us trouble.",
1005                durationMinute: 20]
[149]1006
[394]1007        entryResult = taskService.saveEntry(p)
[190]1008
[149]1009        //Entry #2
[529]1010        p = [task: Task.list()[0],
[418]1011                entryType: EntryType.get(3),
[190]1012                comment: "Cleaned sensor, see how it goes.",
1013                durationMinute: 30]
[149]1014
[394]1015        entryResult = taskService.saveEntry(p)
[190]1016
[149]1017        //Entry #3
[529]1018        p = [task: Task.list()[0],
[418]1019                entryType: EntryType.get(3),
[190]1020                comment: "Checked up on it later and sensor is dropping out intermittently, created sub task to replace sensor.",
1021                durationMinute: 20]
1022
[394]1023        entryResult = taskService.saveEntry(p)
[534]1024
1025        //Entry #4
[750]1026        p = [task: Task.list()[4],
[534]1027                entryType: EntryType.get(3),
[750]1028                comment: "Work done as per procedure.",
[534]1029                durationMinute: 55]
1030
1031        entryResult = taskService.saveEntry(p)
[149]1032    }
1033
[242]1034    def createDemoAssignedGroups() {
1035
[251]1036        def result
1037        def p = [:]
[242]1038
1039        //AssignedGroup #1
[251]1040        p = [personGroup: PersonGroup.get(1),
[529]1041                task: Task.list()[0],
[251]1042                estimatedHour: 2,
1043                estimatedMinute: 30]
1044        result = assignedGroupService.save(p)
[242]1045
1046        //AssignedGroup #2
[251]1047        p = [personGroup: PersonGroup.get(2),
[529]1048                task: Task.list()[0],
[251]1049                estimatedHour: 1,
1050                estimatedMinute: 0]
1051        result = assignedGroupService.save(p)
[242]1052    }
1053
[241]1054    def createDemoAssignedPersons() {
[149]1055
[251]1056        def result
1057        def p = [:]
[149]1058
[241]1059        //AssignedPerson #1
[534]1060        p = [person: Person.get(3), // Demo Manager.
1061                task: Task.list()[5],
[251]1062                estimatedHour: 1,
1063                estimatedMinute: 20]
1064        result = assignedPersonService.save(p)
[149]1065
[241]1066        //AssignedPerson #2
[534]1067        p = [person: Person.get(4), // Demo User.
[750]1068                task: Task.list()[5],
1069                estimatedHour: 1,
1070                estimatedMinute: 20]
1071        result = assignedPersonService.save(p)
1072
1073        //AssignedPerson #3
1074        p = [person: Person.get(3), // Demo Manager.
1075                task: Task.list()[6],
[251]1076                estimatedHour: 3,
1077                estimatedMinute: 30]
1078        result = assignedPersonService.save(p)
[750]1079
1080        //AssignedPerson #4
1081        p = [person: Person.get(4), // Demo User.
1082                task: Task.list()[6],
1083                estimatedHour: 3,
1084                estimatedMinute: 30]
1085        result = assignedPersonService.save(p)
[149]1086    }
1087
[534]1088    def createBaseMaintenancePolicies() {
1089
1090        //MaintenancePolicy
1091        def maintenancePolicyInstance
1092
1093        //MaintenancePolicy #1
1094        maintenancePolicyInstance = new MaintenancePolicy(name: "Fixed Time")
1095        saveAndTest(maintenancePolicyInstance)
1096
1097        //MaintenancePolicy #2
1098        maintenancePolicyInstance = new MaintenancePolicy(name: "Condition Based Online")
1099        saveAndTest(maintenancePolicyInstance)
1100
1101        //MaintenancePolicy #3
1102        maintenancePolicyInstance = new MaintenancePolicy(name: "Condition Based Offline")
1103        saveAndTest(maintenancePolicyInstance)
1104
1105        //MaintenancePolicy #4
1106        maintenancePolicyInstance = new MaintenancePolicy(name: "Design Out")
1107        saveAndTest(maintenancePolicyInstance)
1108
1109        //MaintenancePolicy #5
1110        maintenancePolicyInstance = new MaintenancePolicy(name: "Operate To Failure")
1111        saveAndTest(maintenancePolicyInstance)
1112
1113        //MaintenancePolicy #6
1114        maintenancePolicyInstance = new MaintenancePolicy(name: "Regulatory Requirement")
1115        saveAndTest(maintenancePolicyInstance)
1116
1117        //MaintenancePolicy #7
1118        maintenancePolicyInstance = new MaintenancePolicy(name: "Hidden Function Test")
1119        saveAndTest(maintenancePolicyInstance)
1120    }
1121
1122    def createDemoTaskProcedure() {
1123
1124        //TaskProcedure
1125        def taskProcedureInstance
[798]1126        def taskInstance
1127        def person = Person.get(3)
[534]1128
[798]1129        taskInstance = Task.list()[6]
1130        taskProcedureInstance = new TaskProcedure(linkedTask: taskInstance,
1131                                                                                    createdBy: person,
1132                                                                                    lastUpdatedBy: person)
[534]1133        saveAndTest(taskProcedureInstance)
[798]1134        taskProcedureInstance.addToTasks(taskInstance)
[750]1135
[798]1136        taskInstance = Task.list()[4]
1137        taskProcedureInstance = new TaskProcedure(linkedTask: taskInstance,
1138                                                                                    createdBy: person,
1139                                                                                    lastUpdatedBy: person)
[750]1140        saveAndTest(taskProcedureInstance)
[798]1141        taskProcedureInstance.addToTasks(taskInstance)
[534]1142    }
1143
1144    def createDemoMaintenanceActions() {
1145
1146        //MaintenanceAction
1147        def maintenanceActionInstance
[798]1148        def taskProcedure = TaskProcedure.get(1)
1149        def assetSubItem = AssetSubItem.get(6)
[534]1150
1151        //MaintenanceAction #1
1152        maintenanceActionInstance = new MaintenanceAction(description: "Check all E-stops, activate E-stops S1-S12 and ensure machine cannot run",
1153                                                                                                        procedureStepNumber: 10,
[798]1154                                                                                                        assetSubItem: assetSubItem,
1155                                                                                                        taskProcedure: taskProcedure)
1156        taskProcedure.addToMaintenanceActions(maintenanceActionInstance)
[534]1157
1158        //MaintenanceAction #2
1159        maintenanceActionInstance = new MaintenanceAction(description: "Do more pushups",
1160                                                                                                        procedureStepNumber: 20,
[798]1161                                                                                                        assetSubItem: assetSubItem,
1162                                                                                                        taskProcedure: taskProcedure)
1163        taskProcedure.addToMaintenanceActions(maintenanceActionInstance)
[534]1164
1165        //MaintenanceAction #3
1166        maintenanceActionInstance = new MaintenanceAction(description: "Ok just one more pushup",
1167                                                                                                        procedureStepNumber: 30,
[798]1168                                                                                                        assetSubItem: assetSubItem,
1169                                                                                                        taskProcedure: taskProcedure)
1170        taskProcedure.addToMaintenanceActions(maintenanceActionInstance)
1171
1172        saveAndTest(taskProcedure)
[534]1173    }
1174
[149]1175    def createDemoTaskRecurringSchedules() {
1176
1177        //TaskRecurringSchedule
1178        def taskRecurringScheduleInstance
1179
1180        //TaskRecurringSchedule #1
[529]1181        taskRecurringScheduleInstance = new TaskRecurringSchedule(task: Task.list()[0],
[149]1182                                                                                                    recurEvery: 1,
[199]1183                                                                                                    recurPeriod: Period.get(2),
[210]1184                                                                                                    nextTargetStartDate: dateUtilService.today,
[149]1185                                                                                                    generateAhead: 1,
[199]1186                                                                                                    taskDuration: 2,
1187                                                                                                    taskDurationPeriod: Period.get(1),
1188                                                                                                    enabled: false)
[149]1189        saveAndTest(taskRecurringScheduleInstance)
1190
1191        //TaskRecurringSchedule #2
[534]1192        taskRecurringScheduleInstance = new TaskRecurringSchedule(task: Task.list()[5],
[149]1193                                                                                                    recurEvery: 1,
1194                                                                                                    recurPeriod: Period.get(1),
[210]1195                                                                                                    nextTargetStartDate: dateUtilService.today,
[149]1196                                                                                                    generateAhead: 1,
1197                                                                                                    taskDuration: 1,
[199]1198                                                                                                    taskDurationPeriod: Period.get(1),
1199                                                                                                    enabled: true)
[149]1200        saveAndTest(taskRecurringScheduleInstance)
[750]1201
1202        //TaskRecurringSchedule #3
1203        taskRecurringScheduleInstance = new TaskRecurringSchedule(task: Task.list()[6],
1204                                                                                                    recurEvery: 1,
1205                                                                                                    recurPeriod: Period.get(1),
1206                                                                                                    nextTargetStartDate: dateUtilService.today,
1207                                                                                                    generateAhead: 1,
1208                                                                                                    taskDuration: 1,
1209                                                                                                    taskDurationPeriod: Period.get(1),
1210                                                                                                    enabled: true)
1211        saveAndTest(taskRecurringScheduleInstance)
[149]1212    }
1213
1214/*************************
1215START OF INVENTORY
1216**************************/
1217
1218    def createDemoInventoryStores() {
1219
1220        //InventoryStore
1221        def inventoryStoreInstance
1222
1223        inventoryStoreInstance = new InventoryStore(site: Site.get(1), name: "Store #1")
1224        saveAndTest(inventoryStoreInstance)
1225
1226        inventoryStoreInstance = new InventoryStore(site: Site.get(2), name: "Store #2")
1227        saveAndTest(inventoryStoreInstance)
1228    }
1229
[175]1230    def createDemoInventoryLocations() {
[149]1231
[175]1232        // InventoryLocation
1233        def inventoryLocation
[149]1234
[175]1235        inventoryLocation = new InventoryLocation(inventoryStore: InventoryStore.get(1), name: "A1-2")
1236        saveAndTest(inventoryLocation)
[149]1237
[418]1238        inventoryLocation = new InventoryLocation(inventoryStore: InventoryStore.get(2), name: "C55")
[175]1239        saveAndTest(inventoryLocation)
[149]1240    }
1241
1242    def createDemoInventoryGroups() {
1243
1244        //InventoryGroup
1245        def inventoryGroupInstance
1246
1247        //InventoryGroup #1
1248        inventoryGroupInstance = new InventoryGroup(name: "Misc")
1249        saveAndTest(inventoryGroupInstance)
1250
1251        //InventoryGroup #2
1252        inventoryGroupInstance = new InventoryGroup(name: "Electrical")
1253        saveAndTest(inventoryGroupInstance)
1254
1255        //InventoryGroup #3
1256        inventoryGroupInstance = new InventoryGroup(name: "Mechanical")
1257        saveAndTest(inventoryGroupInstance)
1258
1259        //InventoryGroup #4
1260        inventoryGroupInstance = new InventoryGroup(name: "Production")
1261        saveAndTest(inventoryGroupInstance)
1262    }
1263
1264    def createBaseInventoryTypes() {
1265
1266        //InventoryType
1267        def inventoryTypeInstance
1268
[694]1269        //InventoryType #1
1270        inventoryTypeInstance = new InventoryType(name: "Consumable",
1271                                                                                description: "Standard inventory items that are received as new.")
[149]1272        saveAndTest(inventoryTypeInstance)
1273
[694]1274        //InventoryType #2
1275        inventoryTypeInstance = new InventoryType(name: "Rotable",
1276                                                                                description: "Repairable inventory items that are to be tracked as rotables.")
[149]1277        saveAndTest(inventoryTypeInstance)
[694]1278
1279        //InventoryType #3
1280        inventoryTypeInstance = new InventoryType(name: "Service",
1281                                                                                description: "Provided services from contractors etc.")
1282        saveAndTest(inventoryTypeInstance)
1283
1284        //InventoryType #4
1285        inventoryTypeInstance = new InventoryType(name: "Tool",
1286                                                                                description: "Tools that are held as inventory.")
1287        saveAndTest(inventoryTypeInstance)
[149]1288    }
1289
[175]1290    def createBaseInventoryMovementTypes() {
1291
1292        // InventoryMovementType
1293        def inventoryMovementTypeInstance
1294
1295        // InventoryMovementType #1
[177]1296        inventoryMovementTypeInstance = new InventoryMovementType(name: "Used",
1297                                                                                                                        incrementsInventory: false)
[175]1298        saveAndTest(inventoryMovementTypeInstance)
1299
1300        // InventoryMovementType #2
[177]1301        inventoryMovementTypeInstance = new InventoryMovementType(name: "Repaired",
1302                                                                                                                        incrementsInventory: true)
[175]1303        saveAndTest(inventoryMovementTypeInstance)
1304
1305        // InventoryMovementType #3
[177]1306        inventoryMovementTypeInstance = new InventoryMovementType(name: "Purchase Received",
1307                                                                                                                        incrementsInventory: true)
[175]1308        saveAndTest(inventoryMovementTypeInstance)
[177]1309
1310        // InventoryMovementType #4
1311        inventoryMovementTypeInstance = new InventoryMovementType(name: "Correction Increase",
1312                                                                                                                        incrementsInventory: true)
1313        saveAndTest(inventoryMovementTypeInstance)
1314
1315        // InventoryMovementType #5
1316        inventoryMovementTypeInstance = new InventoryMovementType(name: "Correction Decrease",
1317                                                                                                                        incrementsInventory: false)
1318        saveAndTest(inventoryMovementTypeInstance)
[175]1319    }
1320
[149]1321    def createDemoInventoryItems() {
1322
1323        //InventoryItem
1324        def inventoryItemInstance
[665]1325        def currency = Currency.getInstance('AUD')
[149]1326
[549]1327        def pictureResource = grailsApplication.mainContext.getResource('images/logo.png')
1328
[149]1329        //InventoryItem #1
1330        inventoryItemInstance = new InventoryItem(inventoryGroup: InventoryGroup.get(1),
1331                                                                                    inventoryType: InventoryType.get(1),
1332                                                                                    unitOfMeasure: UnitOfMeasure.get(2),
[175]1333                                                                                    inventoryLocation: InventoryLocation.get(1),
[185]1334                                                                                    name: "Hemp rope",
1335                                                                                    description: "Natural hemp rope.",
[665]1336                                                                                    estimatedUnitPriceAmount: 1.23,
1337                                                                                    estimatedUnitPriceCurrency: currency,
[175]1338                                                                                    unitsInStock: 2,
[149]1339                                                                                    reorderPoint: 0)
1340        saveAndTest(inventoryItemInstance)
[549]1341        inventoryItemService.savePicture(inventoryItemInstance, pictureResource)
[149]1342
1343        //InventoryItem #2
1344        inventoryItemInstance = new InventoryItem(inventoryGroup: InventoryGroup.get(1),
1345                                                                                    inventoryType: InventoryType.get(1),
1346                                                                                    unitOfMeasure: UnitOfMeasure.get(2),
[175]1347                                                                                    inventoryLocation: InventoryLocation.get(1),
[185]1348                                                                                    name: "Cotton Rope 12mm",
1349                                                                                    description: "A soft natural rope made from cotton.",
[665]1350                                                                                    estimatedUnitPriceAmount: 2.50,
1351                                                                                    estimatedUnitPriceCurrency: currency,
[175]1352                                                                                    unitsInStock: 2,
[149]1353                                                                                    reorderPoint: 0)
1354        saveAndTest(inventoryItemInstance)
[549]1355        inventoryItemService.savePicture(inventoryItemInstance, pictureResource)
[149]1356
1357        //InventoryItem #3
1358        inventoryItemInstance = new InventoryItem(inventoryGroup: InventoryGroup.get(3),
1359                                                                                    inventoryType: InventoryType.get(1),
1360                                                                                    unitOfMeasure: UnitOfMeasure.get(1),
[175]1361                                                                                    inventoryLocation: InventoryLocation.get(2),
[149]1362                                                                                    name: "2305-2RS",
1363                                                                                    description: "Bearing 25x62x24mm double row self aligning ball",
[665]1364                                                                                    estimatedUnitPriceAmount: 5,
1365                                                                                    estimatedUnitPriceCurrency: currency,
[175]1366                                                                                    unitsInStock: 3,
[149]1367                                                                                    reorderPoint: 2)
1368        saveAndTest(inventoryItemInstance)
[549]1369        inventoryItemService.savePicture(inventoryItemInstance, pictureResource)
[149]1370
1371        //InventoryItem #4
1372        inventoryItemInstance = new InventoryItem(inventoryGroup: InventoryGroup.get(2),
1373                                                                                    inventoryType: InventoryType.get(1),
1374                                                                                    unitOfMeasure: UnitOfMeasure.get(1),
[175]1375                                                                                    inventoryLocation: InventoryLocation.get(2),
[149]1376                                                                                    name: "L1592-K10",
1377                                                                                    description: "10kW contactor",
[665]1378                                                                                    estimatedUnitPriceAmount: 180,
1379                                                                                    estimatedUnitPriceCurrency: currency,
[175]1380                                                                                    unitsInStock: 4,
[149]1381                                                                                    reorderPoint: 0)
1382        saveAndTest(inventoryItemInstance)
[549]1383        inventoryItemService.savePicture(inventoryItemInstance, pictureResource)
[149]1384
1385        //InventoryItem #5
1386        inventoryItemInstance = new InventoryItem(inventoryGroup: InventoryGroup.get(3),
1387                                                                                    inventoryType: InventoryType.get(1),
1388                                                                                    unitOfMeasure: UnitOfMeasure.get(1),
[175]1389                                                                                    inventoryLocation: InventoryLocation.get(2),
[149]1390                                                                                    name: "6205-ZZ",
1391                                                                                    description: "Bearing 25x52x15mm single row ball shielded",
[665]1392                                                                                    estimatedUnitPriceAmount: 3.45,
1393                                                                                    estimatedUnitPriceCurrency: currency,
[175]1394                                                                                    unitsInStock: 5,
[149]1395                                                                                    reorderPoint: 2)
1396        saveAndTest(inventoryItemInstance)
[549]1397        inventoryItemService.savePicture(inventoryItemInstance, pictureResource)
[149]1398    }
1399
1400/*******************
1401START OF ASSET
1402*******************/
1403
[270]1404    def createBaseExtenededAttributeTypes() {
1405
1406        //ExtendedAttributeType
1407        def extendedAttributeTypeInstance
1408
1409        //ExtendedAttributeType #1
1410        extendedAttributeTypeInstance = new ExtendedAttributeType(name: "Model Number")
1411        saveAndTest(extendedAttributeTypeInstance)
1412
1413        //ExtendedAttributeType #2
1414        extendedAttributeTypeInstance = new ExtendedAttributeType(name: "Purchase Cost")
1415        saveAndTest(extendedAttributeTypeInstance)
1416
1417        //ExtendedAttributeType #3
1418        extendedAttributeTypeInstance = new ExtendedAttributeType(name: "Serial Number")
1419        saveAndTest(extendedAttributeTypeInstance)
1420
1421        //ExtendedAttributeType #4
1422        extendedAttributeTypeInstance = new ExtendedAttributeType(name: "Manufactured Date")
1423        saveAndTest(extendedAttributeTypeInstance)
1424
1425        //ExtendedAttributeType #5
1426        extendedAttributeTypeInstance = new ExtendedAttributeType(name: "Location Description")
1427        saveAndTest(extendedAttributeTypeInstance)
1428
1429        //ExtendedAttributeType #6
1430        extendedAttributeTypeInstance = new ExtendedAttributeType(name: "Cost Centre")
1431        saveAndTest(extendedAttributeTypeInstance)
1432
1433        //ExtendedAttributeType #7
1434        extendedAttributeTypeInstance = new ExtendedAttributeType(name: "Cost Code")
1435        saveAndTest(extendedAttributeTypeInstance)
1436
1437        //ExtendedAttributeType #8
[650]1438        extendedAttributeTypeInstance = new ExtendedAttributeType(name: "Manufacturer")
[270]1439        saveAndTest(extendedAttributeTypeInstance)
1440
1441        //ExtendedAttributeType #9
[678]1442        extendedAttributeTypeInstance = new ExtendedAttributeType(name: "ecr")
[270]1443        saveAndTest(extendedAttributeTypeInstance)
[650]1444
1445        //ExtendedAttributeType #10
[678]1446        extendedAttributeTypeInstance = new ExtendedAttributeType(name: "Risk Level")
[650]1447        saveAndTest(extendedAttributeTypeInstance)
1448
1449        //ExtendedAttributeType #11
1450        extendedAttributeTypeInstance = new ExtendedAttributeType(name: "Safe Work Procedure")
1451        saveAndTest(extendedAttributeTypeInstance)
1452
1453        //ExtendedAttributeType #12
[678]1454        extendedAttributeTypeInstance = new ExtendedAttributeType(name: "Regulatory Requirement")
[650]1455        saveAndTest(extendedAttributeTypeInstance)
1456
1457        //ExtendedAttributeType #13
[678]1458        extendedAttributeTypeInstance = new ExtendedAttributeType(name: "Maintenance % Completion")
[650]1459        saveAndTest(extendedAttributeTypeInstance)
1460
1461        //ExtendedAttributeType #14
1462        extendedAttributeTypeInstance = new ExtendedAttributeType(name: "Registration Required")
1463        saveAndTest(extendedAttributeTypeInstance)
1464
1465        //ExtendedAttributeType #15
1466        extendedAttributeTypeInstance = new ExtendedAttributeType(name: "Registration Expiry Date")
1467        saveAndTest(extendedAttributeTypeInstance)
[685]1468
1469        //ExtendedAttributeType #16
1470        extendedAttributeTypeInstance = new ExtendedAttributeType(name: "Asset Condition")
1471        saveAndTest(extendedAttributeTypeInstance)
1472
1473        //ExtendedAttributeType #17
1474        extendedAttributeTypeInstance = new ExtendedAttributeType(name: "Asset Number")
1475        saveAndTest(extendedAttributeTypeInstance)
[270]1476    }
1477
[268]1478    def createDemoSections() {
[149]1479
[268]1480        //Section
1481        def sectionInstance
[149]1482
[268]1483        //Section #1
[688]1484        sectionInstance = new Section(name: "A-Press",
[314]1485                                                                description: "Press Section",
1486                                                                site: Site.get(3),
1487                                                                department: Department.get(1))
[268]1488        saveAndTest(sectionInstance)
[149]1489
[268]1490        //Section #2
[321]1491        sectionInstance = new Section(name: "CSM-Delig",
[314]1492                                                                description: "Pulp Delignification",
1493                                                                site: Site.get(1),
1494                                                                department: Department.get(2))
[268]1495        saveAndTest(sectionInstance)
[149]1496
[268]1497        //Section #3
[321]1498        sectionInstance = new Section(name: "CSM-Aux",
[314]1499                                                                description: "Auxilliary Section",
1500                                                                site: Site.get(1),
1501                                                                department: Department.get(1))
[268]1502        saveAndTest(sectionInstance)
[149]1503    }
1504
[276]1505    def createDemoAssetTree() {
[149]1506
[270]1507        //Asset
1508        def assetInstance
[149]1509
[270]1510        //Asset #1
[276]1511        def assetInstance1 = new Asset(name: "Print Tower 22",
[314]1512                                                                description: "Complete Printing Asset #22",
[650]1513                                                                comment: "Includes everthing directly attached to the tower.",
[314]1514                                                                section: Section.get(1))
[276]1515        saveAndTest(assetInstance1)
[149]1516
[270]1517        //Asset #2
[276]1518        def assetInstance2 = new Asset(name: "Print Tower 21",
[314]1519                                                                description: "Complete Printing Asset #21",
1520                                                                section: Section.get(1))
[276]1521        saveAndTest(assetInstance2)
[149]1522
[270]1523        //Asset #3
[276]1524        def assetInstance3 = new Asset(name: "Print Tower 23",
[314]1525                                                                description: "Complete Printing Asset #23",
1526                                                                section: Section.get(1))
[276]1527        saveAndTest(assetInstance3)
[149]1528
[270]1529        //Asset #4
[321]1530        def assetInstance4 = new Asset(name: "C579",
[314]1531                                                                description: "RO #1",
1532                                                                section: Section.get(2))
[276]1533        saveAndTest(assetInstance4)
[149]1534
[270]1535        //AssetSubItem
1536        def assetSubItemInstance
[149]1537
[276]1538        //AssetSubItem #1 Level1
[314]1539        def assetSubItemInstance1 = new AssetSubItem(name: "Print Tower",
1540                                                                                            description: "Common sub asset.")
[276]1541        saveAndTest(assetSubItemInstance1)
[149]1542
[276]1543        // Add assetSubItemInstance1 to some assets.
1544        assetInstance1.addToAssetSubItems(assetSubItemInstance1)
1545        assetInstance2.addToAssetSubItems(assetSubItemInstance1)
1546        assetInstance3.addToAssetSubItems(assetSubItemInstance1)
1547
1548        //AssetSubItem #2 Level1
[321]1549        def assetSubItemInstance2 = new AssetSubItem(name: "C579-44",
1550                                                                                            description: "Tanks and towers")
[276]1551        saveAndTest(assetSubItemInstance2)
1552
1553        // Add assetSubItemInstance2 to some assets.
1554        assetInstance4.addToAssetSubItems(assetSubItemInstance2)
1555
1556        //AssetSubItem #3 Level1
[321]1557        def assetSubItemInstance3 = new AssetSubItem(name: "C579-20",
1558                                                                                            description: "Control Loops")
[276]1559        saveAndTest(assetSubItemInstance3)
1560
1561        // Add assetSubItemInstance3 to some assets.
1562        assetInstance4.addToAssetSubItems(assetSubItemInstance3)
1563
1564        //AssetSubItem #4 Level2
[321]1565        assetSubItemInstance = new AssetSubItem(name: "C579-TK-0022",
1566                                                                                            description: "Blow Tank",
1567                                                                                            parentItem: AssetSubItem.get(2))
1568        saveAndTest(assetSubItemInstance)
1569
1570        //AssetSubItem #5 Level2
1571        assetSubItemInstance = new AssetSubItem(name: "C579-TK-0023",
1572                                                                                            description: "Reactor Tower",
1573                                                                                            parentItem: AssetSubItem.get(2))
1574        saveAndTest(assetSubItemInstance)
1575
1576        //AssetSubItem #6 Level2
[314]1577        assetSubItemInstance = new AssetSubItem(name: "Print Unit",
1578                                                                                    description: "Print Unit - Common Level 2 sub item.",
1579                                                                                    parentItem: AssetSubItem.get(1))
[270]1580        saveAndTest(assetSubItemInstance)
[149]1581
[321]1582        //AssetSubItem #7 Level2
1583        assetSubItemInstance = new AssetSubItem(name: "1925365",
1584                                                                                    description: "Agitator",
1585                                                                                    parentItem: AssetSubItem.get(4))
[270]1586        saveAndTest(assetSubItemInstance)
[149]1587
[321]1588        //AssetSubItem #8 Level2
1589        assetSubItemInstance = new AssetSubItem(name: "1925366",
1590                                                                                    description: "Scraper",
1591                                                                                    parentItem: AssetSubItem.get(4))
[276]1592        saveAndTest(assetSubItemInstance)
1593
[321]1594        //AssetSubItem #9 Level3
[276]1595        assetSubItemInstance = new AssetSubItem(name: "Motor",
[314]1596                                                                                    description: "Motor - Level 3 sub item",
[321]1597                                                                                    parentItem: AssetSubItem.get(6))
[276]1598        saveAndTest(assetSubItemInstance)
1599
[321]1600        //AssetSubItem #10 Level3
[276]1601        assetSubItemInstance = new AssetSubItem(name: "Gearbox",
[314]1602                                                                                    description: "Gearbox - Level 3 sub item, gearbox",
[321]1603                                                                                    parentItem: AssetSubItem.get(6))
[276]1604        saveAndTest(assetSubItemInstance)
1605
[321]1606        //AssetSubItem #11 Level4
[276]1607        assetSubItemInstance = new AssetSubItem(name: "DS Bearing",
[314]1608                                                                                    description: "Drive Side Bearing",
[321]1609                                                                                    parentItem: AssetSubItem.get(9))
[276]1610        saveAndTest(assetSubItemInstance)
1611
[321]1612        //AssetSubItem #12 Level4
[276]1613        assetSubItemInstance = new AssetSubItem(name: "NDS Bearing",
[314]1614                                                                                    description: "Non Drive Side Bearing",
[321]1615                                                                                    parentItem: AssetSubItem.get(9))
[276]1616        saveAndTest(assetSubItemInstance)
[321]1617
1618        //AssetSubItem #13 Level2
1619        assetSubItemInstance = new AssetSubItem(name: "C579-F-0001",
1620                                                                                    description: "Weak Caustic Flow",
1621                                                                                    parentItem: AssetSubItem.get(3))
1622        saveAndTest(assetSubItemInstance)
1623
1624        //AssetSubItem #14 Level3
1625        assetSubItemInstance = new AssetSubItem(name: "C579-FT-0002",
1626                                                                                    description: "Weak Caustic Flow Transmitter",
1627                                                                                    parentItem: AssetSubItem.get(13))
1628        saveAndTest(assetSubItemInstance)
1629
1630        //AssetSubItem #15 Level3
1631        assetSubItemInstance = new AssetSubItem(name: "C579-PT-0003",
1632                                                                                    description: "Weak Caustic Pressure Transmitter",
1633                                                                                    parentItem: AssetSubItem.get(13))
1634        saveAndTest(assetSubItemInstance)
[276]1635    } // createDemoAssetTree()
1636
[685]1637    def createDemoAssetSubItemExtendedAttributes() {
[149]1638
[685]1639        //AssetSubItemExtendedAttribute
1640        def assetSubItemExtendedAttributeInstance
1641
1642        //AssetSubItemExtendedAttribute #1
1643        assetSubItemExtendedAttributeInstance = new AssetSubItemExtendedAttribute(value: "United Press",
1644                                                                                                                    assetSubItem: AssetSubItem.get(1),
1645                                                                                                                    extendedAttributeType: ExtendedAttributeType.get(8)) // Manufacturer.
1646        saveAndTest(assetSubItemExtendedAttributeInstance)
1647
1648        //AssetSubItemExtendedAttribute #2
1649        assetSubItemExtendedAttributeInstance = new AssetSubItemExtendedAttribute(value: "PU Mark 2",
1650                                                                                                                    assetSubItem: AssetSubItem.get(1),
1651                                                                                                                    extendedAttributeType: ExtendedAttributeType.get(1)) // Model Number.
1652        saveAndTest(assetSubItemExtendedAttributeInstance)
1653
1654        //AssetSubItemExtendedAttribute #3
1655        assetSubItemExtendedAttributeInstance = new AssetSubItemExtendedAttribute(value: "765895",
1656                                                                                                                    assetSubItem: AssetSubItem.get(1),
1657                                                                                                                    extendedAttributeType: ExtendedAttributeType.get(3)) // Serial Number.
1658        saveAndTest(assetSubItemExtendedAttributeInstance)
1659
1660        //AssetSubItemExtendedAttribute #4
1661        assetSubItemExtendedAttributeInstance = new AssetSubItemExtendedAttribute(value: "Jan-2003",
1662                                                                                                                    assetSubItem: AssetSubItem.get(1),
1663                                                                                                                    extendedAttributeType: ExtendedAttributeType.get(4)) // Manufactured Date.
1664        saveAndTest(assetSubItemExtendedAttributeInstance)
1665
1666    }
1667
1668    def createDemoAssetExtendedAttributes() {
1669
[270]1670        //AssetExtendedAttribute
1671        def assetExtendedAttributeInstance
1672
1673        //AssetExtendedAttribute #1
[685]1674        assetExtendedAttributeInstance = new AssetExtendedAttribute(value: "On the far side of Tank 5",
1675                                                                                                            asset: Asset.get(1),
1676                                                                                                            extendedAttributeType: ExtendedAttributeType.get(5)) // Location Description.
[650]1677        saveAndTest(assetExtendedAttributeInstance)
1678
1679        //AssetExtendedAttribute #2
[685]1680        assetExtendedAttributeInstance = new AssetExtendedAttribute(value: "3",
1681                                                                                                            asset: Asset.get(1),
1682                                                                                                            extendedAttributeType: ExtendedAttributeType.get(9)) // ecr.
[270]1683        saveAndTest(assetExtendedAttributeInstance)
1684
[650]1685        //AssetExtendedAttribute #3
[685]1686        assetExtendedAttributeInstance = new AssetExtendedAttribute(value: "RP-001",
1687                                                                                                            asset: Asset.get(1),
1688                                                                                                            extendedAttributeType: ExtendedAttributeType.get(17)) // Asset Number.
[270]1689        saveAndTest(assetExtendedAttributeInstance)
[650]1690
1691        //AssetExtendedAttribute #4
[685]1692        assetExtendedAttributeInstance = new AssetExtendedAttribute(value: "Good",
1693                                                                                                            asset: Asset.get(1),
1694                                                                                                            extendedAttributeType: ExtendedAttributeType.get(16)) // Asset Condition.
[650]1695        saveAndTest(assetExtendedAttributeInstance)
1696
1697        //AssetExtendedAttribute #5
[685]1698        assetExtendedAttributeInstance = new AssetExtendedAttribute(value: "TBA",
1699                                                                                                            asset: Asset.get(1),
1700                                                                                                            extendedAttributeType: ExtendedAttributeType.get(13)) // Maintenance % Completion.
[650]1701        saveAndTest(assetExtendedAttributeInstance)
[685]1702
1703        //AssetExtendedAttribute #6
1704        assetExtendedAttributeInstance = new AssetExtendedAttribute(value: "Y",
1705                                                                                                            asset: Asset.get(1),
1706                                                                                                            extendedAttributeType: ExtendedAttributeType.get(14)) // Registration Required.
1707        saveAndTest(assetExtendedAttributeInstance)
1708
1709        //AssetExtendedAttribute #7
1710        assetExtendedAttributeInstance = new AssetExtendedAttribute(value: "Feb-2009",
1711                                                                                                            asset: Asset.get(1),
1712                                                                                                            extendedAttributeType: ExtendedAttributeType.get(15)) // Registration Expiry Date.
1713        saveAndTest(assetExtendedAttributeInstance)
1714
1715        //AssetExtendedAttribute #8
1716        assetExtendedAttributeInstance = new AssetExtendedAttribute(value: "N",
1717                                                                                                            asset: Asset.get(1),
1718                                                                                                            extendedAttributeType: ExtendedAttributeType.get(12)) // Regulatory Requirement.
1719        saveAndTest(assetExtendedAttributeInstance)
1720
1721        //AssetExtendedAttribute #9
1722        assetExtendedAttributeInstance = new AssetExtendedAttribute(value: "Med",
1723                                                                                                            asset: Asset.get(1),
1724                                                                                                            extendedAttributeType: ExtendedAttributeType.get(10)) // Risk Level.
1725        saveAndTest(assetExtendedAttributeInstance)
1726
1727        //AssetExtendedAttribute #10
1728        assetExtendedAttributeInstance = new AssetExtendedAttribute(value: "WP-003",
1729                                                                                                            asset: Asset.get(1),
1730                                                                                                            extendedAttributeType: ExtendedAttributeType.get(11)) // Safe Work Procedure.
1731        saveAndTest(assetExtendedAttributeInstance)
[149]1732    }
1733
[571]1734    /**
[622]1735    * SearchableIndex and mirroring is disabled at startup.
1736    * Use this to start indexing after creating bootstrap data.
[571]1737    * @param indexInNewThread Whether to run the index in a new thread, defaults to true.
1738    */
[622]1739    def startSearchableIndex(Boolean indexInNewThread = true) {
1740        log.info "Start mirroring searchable index."
1741        ConfigurationHolder.config.appSearchable.cascadeOnUpdate = true
[571]1742        searchableService.startMirroring()
1743        if(indexInNewThread) {
1744            Thread.start {
[622]1745                log.info "Rebuilding searchable index, bulkIndex (new thread)."
[571]1746                searchableService.index()
[622]1747                log.info "Rebuilding searchable index, complete."
[571]1748            }
1749        }
1750        else {
[622]1751            log.info "Rebuilding searchable index, bulkIndex."
[571]1752            searchableService.index()
[622]1753            log.info "Rebuilding searchable index, complete."
[571]1754        }
1755    }
[149]1756
[571]1757    /**
[622]1758    * Searchable index and mirroring during bulk data creation may be slow.
1759    * Use this to stop indexing and restart with startSearchableIndex() after data creation.
[571]1760    */
[622]1761    def stopSearchableIndex() {
1762        log.info "Stop mirroring searchable index."
1763        ConfigurationHolder.config.appSearchable.cascadeOnUpdate = false
[571]1764        searchableService.stopMirroring()
1765    }
1766
1767    /**
1768    * Call this function instead of .save()
1769    */
[149]1770    private boolean saveAndTest(object) {
1771        if(!object.save()) {
1772//             DemoDataSuccessful = false
[199]1773            log.error "'${object}' failed to save!"
1774            log.error object.errors
[149]1775            return false
1776        }
1777        return true
1778    }
[571]1779
[617]1780} // end of class
Note: See TracBrowser for help on using the repository browser.