Index: /trunk/grails-app/conf/Config.groovy
===================================================================
--- /trunk/grails-app/conf/Config.groovy	(revision 603)
+++ /trunk/grails-app/conf/Config.groovy	(revision 604)
@@ -388,5 +388,8 @@
 
 /**
- * Some custom globals.
+ * Custom application global settings.
  */
 taskRecurringScheduleJob.repeatInterval=10
+ // Example: ['EUR', 'XCD', 'USD', 'XOF', 'NOK', 'AUD', 'XAF', 'NZD', 'MAD', 'DKK', 'GBP', 'CHF', 'XPF', 'ILS', 'ROL', 'TRL']
+currencyList = ['AUD']
+
Index: /trunk/grails-app/views/inventoryItemDetailed/create.gsp
===================================================================
--- /trunk/grails-app/views/inventoryItemDetailed/create.gsp	(revision 603)
+++ /trunk/grails-app/views/inventoryItemDetailed/create.gsp	(revision 604)
@@ -132,5 +132,7 @@
                                                     value="${fieldValue(bean:inventoryItemInstance,field:'estimatedUnitPriceAmount')}" />
                                     <g:currencySelect name="estimatedUnitPriceCurrency"
-                                                                        value="${inventoryItemInstance.estimatedUnitPriceCurrency}" />
+                                                                        value="${inventoryItemInstance?.estimatedUnitPriceCurrency}"
+                                                                        from="${grailsApplication.config.currencyList}">
+                                    </g:currencySelect>
                                 </td>
                             </tr>
Index: /trunk/grails-app/views/inventoryItemDetailed/edit.gsp
===================================================================
--- /trunk/grails-app/views/inventoryItemDetailed/edit.gsp	(revision 603)
+++ /trunk/grails-app/views/inventoryItemDetailed/edit.gsp	(revision 604)
@@ -169,5 +169,7 @@
                                                     value="${inventoryItemInstance.estimatedUnitPriceAmount}" />
                                     <g:currencySelect name="estimatedUnitPriceCurrency"
-                                                                        value="${inventoryItemInstance.estimatedUnitPriceCurrency}" />
+                                                                        value="${inventoryItemInstance?.estimatedUnitPriceCurrency}"
+                                                                        from="${grailsApplication.config.currencyList}">
+                                    </g:currencySelect>
                                 </td>
                             </tr>
