Changeset 665 for trunk


Ignore:
Timestamp:
Sep 30, 2010, 7:25:38 AM (14 years ago)
Author:
gav
Message:

Add estimatedUnitPrice to demo data.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/services/CreateDataService.groovy

    r650 r665  
    12551255        //InventoryItem
    12561256        def inventoryItemInstance
     1257        def currency = Currency.getInstance('AUD')
    12571258
    12581259        def pictureResource = grailsApplication.mainContext.getResource('images/logo.png')
     
    12651266                                                                                    name: "Hemp rope",
    12661267                                                                                    description: "Natural hemp rope.",
     1268                                                                                    estimatedUnitPriceAmount: 1.23,
     1269                                                                                    estimatedUnitPriceCurrency: currency,
    12671270                                                                                    unitsInStock: 2,
    12681271                                                                                    reorderPoint: 0)
     
    12771280                                                                                    name: "Cotton Rope 12mm",
    12781281                                                                                    description: "A soft natural rope made from cotton.",
     1282                                                                                    estimatedUnitPriceAmount: 2.50,
     1283                                                                                    estimatedUnitPriceCurrency: currency,
    12791284                                                                                    alternateItems: InventoryItem.get(1),
    12801285                                                                                    unitsInStock: 2,
     
    12901295                                                                                    name: "2305-2RS",
    12911296                                                                                    description: "Bearing 25x62x24mm double row self aligning ball",
     1297                                                                                    estimatedUnitPriceAmount: 5,
     1298                                                                                    estimatedUnitPriceCurrency: currency,
    12921299                                                                                    unitsInStock: 3,
    12931300                                                                                    reorderPoint: 2)
     
    13021309                                                                                    name: "L1592-K10",
    13031310                                                                                    description: "10kW contactor",
     1311                                                                                    estimatedUnitPriceAmount: 180,
     1312                                                                                    estimatedUnitPriceCurrency: currency,
    13041313                                                                                    unitsInStock: 4,
    13051314                                                                                    reorderPoint: 0)
     
    13141323                                                                                    name: "6205-ZZ",
    13151324                                                                                    description: "Bearing 25x52x15mm single row ball shielded",
     1325                                                                                    estimatedUnitPriceAmount: 3.45,
     1326                                                                                    estimatedUnitPriceCurrency: currency,
    13161327                                                                                    unitsInStock: 5,
    13171328                                                                                    reorderPoint: 2)
Note: See TracChangeset for help on using the changeset viewer.