Skip to content
Snippets Groups Projects
Commit 63e7e054 authored by Rucha Patel's avatar Rucha Patel
Browse files

[FIX]: account_voucher: Fixed log message and import

bzr revid: rpa@tinyerp.com-20100722084354-zeefn896rvrerwnu
parent 64e4a02c
Branches
Tags
No related merge requests found
......@@ -22,6 +22,7 @@
import time
from osv import fields
from osv import osv
from tools.translate import _
journal2type = {
'cash':'rec_voucher',
......@@ -367,7 +368,7 @@ class account_voucher(osv.osv):
'move_ids':[(6, 0,line_ids)]
}
message = _('Voucher ') + " '" + inv.name + "' "+ _("is confirm")
message = _('Voucher ') + " '" + inv.name + "' "+ _("is confirmed")
self.log(cr, uid, inv.id, message)
self.write(cr, uid, [inv.id], rec)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment