Skip to content

Commit

Permalink
fix price history link bug #96
Browse files Browse the repository at this point in the history
  • Loading branch information
rvalyi committed Jun 19, 2019
1 parent ce4fac8 commit 4759934
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion product_usability/product.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def show_product_price_history(self):
action = self.env['ir.actions.act_window'].for_xml_id(
'product_usability', 'product_price_history_action')
action.update({
'domain': "[('id', 'in', %s)]" % products.ids,
'domain': "[('product_id', 'in', %s)]" % products.ids,
})
return action

Expand Down

0 comments on commit 4759934

Please sign in to comment.