Skip to content

Commit

Permalink
Shanu: Fixing the invoice error
Browse files Browse the repository at this point in the history
  • Loading branch information
Shanu committed Mar 10, 2011
1 parent 994ba15 commit 31be019
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion grails-app/domain/com/breigns/vms/Voucher.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Voucher {
}

def getVoucherModel(){
return new VoucherModel(sequenceNumber:sequenceNumber,barcodeAlpha:barcodeAlpha,value:value,
return new VoucherModel(id:id,sequenceNumber:sequenceNumber,barcodeAlpha:barcodeAlpha,value:value,
validThru:validThru,client:voucherRequest.client)
}
}
1 change: 1 addition & 0 deletions src/groovy/com/breigns/vms/VoucherModel.groovy
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.breigns.vms

class VoucherModel {
Long id
Integer sequenceNumber
String barcodeAlpha
Double value
Expand Down

0 comments on commit 31be019

Please sign in to comment.