mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
16 lines
310 B
Python
16 lines
310 B
Python
from odoo import fields, models
|
|
|
|
|
|
class ResPartnerIdCategory(models.Model):
|
|
_inherit = "res.partner.id_category"
|
|
|
|
country_ids = fields.Many2many(
|
|
comodel_name="res.country",
|
|
string="Countries",
|
|
)
|
|
|
|
priority = fields.Integer(
|
|
string="Priority",
|
|
default=100,
|
|
)
|