[DOC] read_group: added comments for the new formatting option

bzr revid: tde@openerp.com-20130916103047-lpbf7czflyvgtonu
This commit is contained in:
Thibault Delavallée 2013-09-16 12:30:47 +02:00
parent 8583ced4cc
commit defa3adbe8
2 changed files with 14 additions and 1 deletions

View File

@ -6,6 +6,8 @@ Changelog
`trunk`
-------
- Added support of custom group_by format and display format when using group_by
on a datetime field, using datetime_format context key
- Improved ``html_email_clean`` in tools: better quote and signature finding,
added shortening.
- Cleaned and slightly refactored ``ir.actions.server``. The ``loop``, ``sms``

View File

@ -2601,7 +2601,18 @@ class BaseModel(object):
:param list groupby: fields by which the records will be grouped
:param int offset: optional number of records to skip
:param int limit: optional max number of records to return
:param dict context: context arguments, like lang, time zone
:param dict context: context arguments, like lang, time zone. A special
context key exist for datetime fields : ``datetime_format``.
context[``datetime_format``] = {
'field_name': {
groupby_format: format for to_char (default: yyyy-mm)
display_format: format for displaying the value
in the result (default: MMM yyyy)
interval: day, month or year; used for begin
and end date of group_by intervals
computation (default: month)
}
}
:param list orderby: optional ``order by`` specification, for
overriding the natural sort ordering of the
groups, see also :py:meth:`~osv.osv.osv.search`