Skip to content
Snippets Groups Projects
Commit b0def9d4 authored by Thibault Delavallée's avatar Thibault Delavallée
Browse files

[FIX] website_mail_group: order archives by date descending

parent 538d97a6
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ class MailGroup(http.Controller):
MailMessage = request.registry['mail.message']
groups = MailMessage.read_group(
request.cr, request.uid, [('model', '=', 'mail.group'), ('res_id', '=', group_id)], ['subject', 'date'],
groupby="date", orderby="date asc", context=request.context)
groupby="date", orderby="date desc", context=request.context)
for group in groups:
begin_date = datetime.datetime.strptime(group['__domain'][0][2], tools.DEFAULT_SERVER_DATETIME_FORMAT).date()
end_date = datetime.datetime.strptime(group['__domain'][1][2], tools.DEFAULT_SERVER_DATETIME_FORMAT).date()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment