From 72ab78a850fe2d1c11ccdcf6a8326957c59eaf6a Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Mon, 25 Aug 2014 10:42:49 +0200 Subject: [PATCH] [FIX] typo in comment, pass context --- advanced_filters/model/ir_filters.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/advanced_filters/model/ir_filters.py b/advanced_filters/model/ir_filters.py index ab4ac9c0..957880e8 100644 --- a/advanced_filters/model/ir_filters.py +++ b/advanced_filters/model/ir_filters.py @@ -101,7 +101,7 @@ class IrFilters(Model): return {'type': 'ir.actions.act_window.close'} def button_freeze(self, cr, uid, ids, context=None): - '''evaluate the filter and write a fixed [('ids', 'in', [])] domain''' + '''evaluate the filter and write a fixed [('id', 'in', [])] domain''' for this in self.browse(cr, uid, ids, context=context): ids = this._evaluate() removed_filter_ids = [f.id for f in itertools.chain( @@ -125,7 +125,7 @@ class IrFilters(Model): (tuple(removed_filter_ids),)) def button_test(self, cr, uid, ids, context=None): - for this in self.browse(cr, uid, ids, context=None): + for this in self.browse(cr, uid, ids, context=context): return { 'type': 'ir.actions.act_window', 'name': _('Testing %s') % this.name,