Skip to content
Snippets Groups Projects
Commit 0ca4b0f3 authored by Simon Lejeune's avatar Simon Lejeune
Browse files

[REF] stock_account: warn when changing cost method

parent 5851a69a
No related branches found
No related tags found
No related merge requests found
......@@ -234,3 +234,13 @@ class ProductCategory(models.Model):
'account.account', 'Stock Valuation Account', company_dependent=True,
domain=[('deprecated', '=', False)],
help="When real-time inventory valuation is enabled on a product, this account will hold the current value of the products.",)
@api.onchange('property_cost_method')
def onchange_property_valuation(self):
return {
'warning': {
'title': _("Warning"),
'message': _("Changing your cost method is an important change that will impact your inventory valuation. Are you sure you want to make that change?"),
}
}
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