You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
346 B
14 lines
346 B
# -*- coding: utf-8 -*-
|
|
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ReportSupportUser(models.Model):
|
|
_inherit = "report.project.task.user"
|
|
|
|
is_support_package = fields.Boolean(string='Support Package', readonly=True)
|
|
|
|
def _select(self):
|
|
return super(ReportSupportUser, self)._select() + """,
|
|
t.is_support_package"""
|
|
|