mirror of
https://github.com/bringout/oca-project.git
synced 2026-04-18 17:22:07 +02:00
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
10 lines
259 B
Python
10 lines
259 B
Python
# Copyright 2024 Tecnativa Carolina Fernandez
|
|
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ProjectTask(models.Model):
|
|
_inherit = "project.task"
|
|
|
|
notes = fields.Html(string="Internal notes")
|