Changeset 893 for branches/features
- Timestamp:
- Apr 21, 2011, 6:12:03 PM (14 years ago)
- Location:
- branches/features/purchaseOrders/grails-app
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/features/purchaseOrders/grails-app/controllers/InventoryItemPurchaseDetailedController.groovy
r891 r893 285 285 286 286 return ['inventoryItemPurchaseInstance': inventoryItemPurchaseInstance, 287 'costCodes': costCodes, purchaseOrderNumbers:purchaseOrderNumbers] 287 'costCodes': costCodes, 288 'purchaseOrderNumbers': purchaseOrderNumbers] 288 289 } 289 290 -
branches/features/purchaseOrders/grails-app/services/CreateDataService.groovy
r891 r893 88 88 createBaseTaskModificationTypes() 89 89 createBaseEntryTypes() 90 91 90 92 91 // Record that data has been created. -
branches/features/purchaseOrders/grails-app/services/InventoryItemService.groovy
r891 r893 60 60 if(p.sort && p.order) { 61 61 order(p.sort, p.order) 62 if(p.sort == "purchaseOrderNumber") order('id', 'asc') 62 if(p.sort == "purchaseOrderNumber") 63 order('id', 'asc') 63 64 } 64 65 else { -
branches/features/purchaseOrders/grails-app/services/InventoryPurchaseService.groovy
r891 r893 348 348 349 349 } // end withTransaction 350 } 350 } // save() 351 351 352 352 def receiveSave(params) {
Note: See TracChangeset
for help on using the changeset viewer.