- Timestamp:
- Jul 23, 2012, 2:00:40 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/InventoryItemDetailedController.groovy
r913 r967 658 658 response.contentType = ConfigurationHolder.config.grails.mime.types[params.format] 659 659 response.setHeader("Content-disposition", "attachment; filename=Inventory.${params.extension}") 660 List fields = ["name", 660 List fields = ["reorderQuantity", 661 "unitOfMeasure", 661 662 "description", 662 "inventoryGroup", 663 "name", 664 "estimatedUnitPriceAmount", 665 "estimatedUnitPriceCurrency", 663 666 "unitsInStock", 664 667 "reorderPoint", 665 668 "unitOfMeasure", 669 "inventoryGroup", 666 670 "inventoryLocation", 667 671 "inventoryLocation.inventoryStore"] 668 Map labels = ["name": "Name", 672 Map labels = ["reorderQuantity": "Reorder Quantity", 673 "unitOfMeasure": "UOM", 669 674 "description": "Description", 670 "inventoryGroup": "Group", 675 "name": "Name", 676 "estimatedUnitPriceAmount": "Estimated Unit Price", 677 "estimatedUnitPriceCurrency": "Currency", 671 678 "unitsInStock":"In Stock", 672 679 "reorderPoint":"Reorder Point", 673 " unitOfMeasure": "UOM",680 "inventoryGroup": "Group", 674 681 "inventoryLocation": "Location", 675 682 "inventoryLocation.inventoryStore": "Store"]
Note: See TracChangeset
for help on using the changeset viewer.