[FIX] website_forum: execute the change of number of views in SQL instead of using the orm

Using sql will be faster (doing a write in a read is never a good idea for performances) and will not update the write_date (which is used for the last activity filter)
This commit is contained in:
Martin Trigaux 2014-05-15 10:57:51 +02:00
parent 1fbc5c1cfb
commit f0c1eb1786
1 changed files with 1 additions and 2 deletions

View File

@ -269,8 +269,7 @@ class Post(osv.Model):
return {'vote_count': self._get_vote_count(cr, uid, ids, None, None, context=context)[ids[0]]}
def set_viewed(self, cr, uid, ids, context=None):
for post in self.browse(cr, uid, ids, context=context):
self.write(cr, uid, [post.id], {'views': post.views + 1}, context=context)
cr.execute("""UPDATE forum_post SET views = views+1 WHERE id IN %s""", (tuple(ids),))
return True