Changeset 604 for trunk/grails-app
- Timestamp:
- Jun 21, 2010, 11:01:39 AM (14 years ago)
- Location:
- trunk/grails-app
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/conf/Config.groovy
r598 r604 388 388 389 389 /** 390 * Some custom globals.390 * Custom application global settings. 391 391 */ 392 392 taskRecurringScheduleJob.repeatInterval=10 393 // Example: ['EUR', 'XCD', 'USD', 'XOF', 'NOK', 'AUD', 'XAF', 'NZD', 'MAD', 'DKK', 'GBP', 'CHF', 'XPF', 'ILS', 'ROL', 'TRL'] 394 currencyList = ['AUD'] 395 -
trunk/grails-app/views/inventoryItemDetailed/create.gsp
r435 r604 132 132 value="${fieldValue(bean:inventoryItemInstance,field:'estimatedUnitPriceAmount')}" /> 133 133 <g:currencySelect name="estimatedUnitPriceCurrency" 134 value="${inventoryItemInstance.estimatedUnitPriceCurrency}" /> 134 value="${inventoryItemInstance?.estimatedUnitPriceCurrency}" 135 from="${grailsApplication.config.currencyList}"> 136 </g:currencySelect> 135 137 </td> 136 138 </tr> -
trunk/grails-app/views/inventoryItemDetailed/edit.gsp
r441 r604 169 169 value="${inventoryItemInstance.estimatedUnitPriceAmount}" /> 170 170 <g:currencySelect name="estimatedUnitPriceCurrency" 171 value="${inventoryItemInstance.estimatedUnitPriceCurrency}" /> 171 value="${inventoryItemInstance?.estimatedUnitPriceCurrency}" 172 from="${grailsApplication.config.currencyList}"> 173 </g:currencySelect> 172 174 </td> 173 175 </tr>
Note: See TracChangeset
for help on using the changeset viewer.