mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
16 lines
576 B
Python
16 lines
576 B
Python
# Copyright 2019 Eficent Business and IT Consulting Services S.L.
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = "res.config.settings"
|
|
|
|
group_qty_reason_preset = fields.Boolean(
|
|
string="Preset Change Qty Reason",
|
|
required=True,
|
|
implied_group="stock_change_qty_reason.group_qty_reason_preset",
|
|
help="Enable use of predefined Reasons to manage Inventory Adjustments"
|
|
"and Product Update Quantities Wizard.",
|
|
)
|