10 lines
276 B
Python
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."
|
||
|
|
)
|