Changeset 427
- Timestamp:
- Mar 3, 2010, 6:56:07 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/services/InventoryCsvService.groovy
r426 r427 374 374 inventoryParams.averageDeliveryPeriod = averageDeliveryPeriodInstance 375 375 376 // Format remaining properties. 376 // Name. 377 // Checked above for blank string. 377 378 inventoryParams.name = WordUtils.capitalize(inventoryParams.name) 378 inventoryParams.description = inventoryParams.description[0].toUpperCase() + inventoryParams.description[1..-1] 379 380 // Description. 381 if(inventoryParams.description != '') 382 inventoryParams.description = inventoryParams.description[0].toUpperCase() + inventoryParams.description[1..-1] 379 383 380 384 // Debug
Note: See TracChangeset
for help on using the changeset viewer.