Files
project_v19/odoo_project_sync/models/project_task.py
T
2026-07-01 14:41:49 +07:00

10 lines
276 B
Python

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."
)