You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
335 B
13 lines
335 B
from odoo import models, fields
|
|
|
|
|
|
class Company(models.Model):
|
|
_inherit = "res.company"
|
|
|
|
export_gogocarto_fields = fields.Many2many(
|
|
'ir.model.fields',
|
|
domain=[
|
|
('model_id', '=', 'res.partner'),
|
|
('name', 'not in', ['id', 'name', 'partner_longitude', 'partner_latitude'])
|
|
]
|
|
)
|