diff options
Diffstat (limited to 'addons/stock_account/models/res_config_settings.py')
| -rw-r--r-- | addons/stock_account/models/res_config_settings.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/addons/stock_account/models/res_config_settings.py b/addons/stock_account/models/res_config_settings.py new file mode 100644 index 00000000..0889e5e0 --- /dev/null +++ b/addons/stock_account/models/res_config_settings.py @@ -0,0 +1,11 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import fields, models + + +class ResConfigSettings(models.TransientModel): + _inherit = 'res.config.settings' + + module_stock_landed_costs = fields.Boolean("Landed Costs", + help="Affect landed costs on reception operations and split them among products to update their cost price.") |
