6 lines
182 B
Python
6 lines
182 B
Python
from odoo import models, fields
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = 'res.partner'
|
|
|
|
vps_server_ids = fields.One2many('vps.server', 'customer_id', string='VPS Servers') |