Files

10 lines
276 B
Python
Raw Permalink Normal View History

2026-07-01 14:41:49 +07:00
from odoo import models, fields
class ProjectTask(models.Model):
_inherit = 'project.task'
remote_id = fields.Integer(
string='Remote Server Task ID',
copy=False,
help="Stores the ID of the corresponding task on the remote Odoo server."
)