Skip to content

Commit ce08af3

Browse files
authored
Merge pull request #97 from akretion/12.0-fix-price-history
fix price history link bug #96
2 parents ce4fac8 + 4759934 commit ce08af3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

product_usability/product.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def show_product_price_history(self):
2222
action = self.env['ir.actions.act_window'].for_xml_id(
2323
'product_usability', 'product_price_history_action')
2424
action.update({
25-
'domain': "[('id', 'in', %s)]" % products.ids,
25+
'domain': "[('product_id', 'in', %s)]" % products.ids,
2626
})
2727
return action
2828

0 commit comments

Comments
 (0)