mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
12 lines
376 B
Python
12 lines
376 B
Python
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = "res.config.settings"
|
|
|
|
group_show_transit_location_stock_wizard = fields.Boolean(
|
|
"Display also transit location lines in sale line stock popup.",
|
|
implied_group="sale_stock_on_hand_popup.group_show_transit_location_stock_wizard",
|
|
default=False,
|
|
)
|