Changeset 665
- Timestamp:
- Sep 30, 2010, 7:25:38 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/services/CreateDataService.groovy
r650 r665 1255 1255 //InventoryItem 1256 1256 def inventoryItemInstance 1257 def currency = Currency.getInstance('AUD') 1257 1258 1258 1259 def pictureResource = grailsApplication.mainContext.getResource('images/logo.png') … … 1265 1266 name: "Hemp rope", 1266 1267 description: "Natural hemp rope.", 1268 estimatedUnitPriceAmount: 1.23, 1269 estimatedUnitPriceCurrency: currency, 1267 1270 unitsInStock: 2, 1268 1271 reorderPoint: 0) … … 1277 1280 name: "Cotton Rope 12mm", 1278 1281 description: "A soft natural rope made from cotton.", 1282 estimatedUnitPriceAmount: 2.50, 1283 estimatedUnitPriceCurrency: currency, 1279 1284 alternateItems: InventoryItem.get(1), 1280 1285 unitsInStock: 2, … … 1290 1295 name: "2305-2RS", 1291 1296 description: "Bearing 25x62x24mm double row self aligning ball", 1297 estimatedUnitPriceAmount: 5, 1298 estimatedUnitPriceCurrency: currency, 1292 1299 unitsInStock: 3, 1293 1300 reorderPoint: 2) … … 1302 1309 name: "L1592-K10", 1303 1310 description: "10kW contactor", 1311 estimatedUnitPriceAmount: 180, 1312 estimatedUnitPriceCurrency: currency, 1304 1313 unitsInStock: 4, 1305 1314 reorderPoint: 0) … … 1314 1323 name: "6205-ZZ", 1315 1324 description: "Bearing 25x52x15mm single row ball shielded", 1325 estimatedUnitPriceAmount: 3.45, 1326 estimatedUnitPriceCurrency: currency, 1316 1327 unitsInStock: 5, 1317 1328 reorderPoint: 2)
Note: See TracChangeset
for help on using the changeset viewer.