Add a function to format dates

pull/80/head
Houzefa Abbasbhay 2013-10-29 11:03:33 +01:00
parent 6df4a8469c
commit 1a84a03659
1 changed files with 5 additions and 0 deletions

View File

@ -32,6 +32,11 @@ class py3o_report(report_sxw):
[('code', '=', lang_code)], [('code', '=', lang_code)],
context=context)[0] context=context)[0]
return lang_obj.browse(cr, uid, lang, context=context) return lang_obj.browse(cr, uid, lang, context=context)
def format_date(self, date, values):
''' Return a date formatted according to the language extracted from
the "values" argument (which should be the result of get_values). '''
return date.strftime(values['lang'].date_format)
def create(self, cr, uid, ids, data, context=None): def create(self, cr, uid, ids, data, context=None):
# Find the report definition to get its settings. # Find the report definition to get its settings.