17 lines
455 B
Python
17 lines
455 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2024-2026 Nexa Systems Inc.
|
|
# License OPL-1 (Odoo Proprietary License v1.0)
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResUsers(models.Model):
|
|
_inherit = 'res.users'
|
|
|
|
x_flm_home_location_id = fields.Many2one(
|
|
'stock.location',
|
|
string='Home Storage Location',
|
|
domain="[('usage', '=', 'internal')]",
|
|
help='Default storage location for this sales rep\'s demo/loaner equipment',
|
|
)
|