Files
pms/pms_stock/models/pms_property.py
2022-04-11 09:32:39 -05:00

10 lines
294 B
Python

# Copyright (c) 2022 Open Source Integrators
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import fields, models
class PmsProperty(models.Model):
_inherit = "pms.property"
stock_location_id = fields.Many2one("stock.location", string="Inventory Location")