mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
11 lines
336 B
Python
11 lines
336 B
Python
from marshmallow import fields
|
|
|
|
from odoo.addons.datamodel.core import Datamodel
|
|
|
|
|
|
class PmsPricelistInfo(Datamodel):
|
|
_name = "pms.pricelist.info"
|
|
id = fields.Integer(required=False, allow_none=True)
|
|
name = fields.String(required=False, allow_none=True)
|
|
pms_property_id = fields.Integer(required=False, allow_none=True)
|