[NEW] pad_hedgedoc_tasks: create addon

This commit is contained in:
Stéphan Sainléger
2022-08-09 23:03:43 +02:00
parent 5f2adcbc91
commit 1561baeae0
9 changed files with 231 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
# -*- coding: utf-8 -*-
from odoo import models, fields, _
class HedgedocPad(models.Model):
_inherit = "hedgedoc.pad"
task_id = fields.Many2one("project.task", string=_("Associated task"), copy=True)