update
This commit is contained in:
16
fusion_loaners_management/models/res_users.py
Normal file
16
fusion_loaners_management/models/res_users.py
Normal file
@@ -0,0 +1,16 @@
|
||||
# -*- 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',
|
||||
)
|
||||
Reference in New Issue
Block a user