Files
Odoo-Modules/fusion_loaners_management/models/res_users.py
gsinghpal e56974d46f update
2026-03-16 08:14:56 -04:00

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',
)