[IMP]account_voucher :improve typo

bzr revid: mma@tinyerp.com-20120606053638-f5a4sw2xqmvpjcep
This commit is contained in:
Mayur Maheshwari (OpenERP) 2012-06-06 11:06:38 +05:30
parent f088d75d6f
commit 6f43cc8642
1 changed files with 1 additions and 1 deletions

View File

@ -1302,7 +1302,7 @@ class account_voucher(osv.osv):
def reconcile_send_note(self, cr, uid, ids, context=None):
for obj in self.browse(cr, uid, ids, context=context):
self.message_append_note(cr, uid, [obj.id],body=_("%s <b>Reconciled</b>.") % (self._get_document_type(obj.type)), context=context)
self.message_append_note(cr, uid, [obj.id],body=_("%s <b>reconciled</b>.") % (self._get_document_type(obj.type)), context=context)
account_voucher()