mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-20 04:32:00 +02:00
33 lines
1 KiB
Python
33 lines
1 KiB
Python
# Copyright 2018 Tecnativa - Jairo Llopis
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = "res.partner"
|
|
|
|
privacy_consent_ids = fields.One2many(
|
|
comodel_name="privacy.consent",
|
|
inverse_name="partner_id",
|
|
string="Privacy consents",
|
|
)
|
|
privacy_consent_count = fields.Integer(
|
|
string="Consents",
|
|
compute="_compute_privacy_consent_count",
|
|
help="Privacy consent requests amount",
|
|
)
|
|
|
|
@api.depends("privacy_consent_ids")
|
|
def _compute_privacy_consent_count(self):
|
|
"""Count consent requests."""
|
|
self.privacy_consent_count = 0
|
|
groups = self.env["privacy.consent"].read_group(
|
|
[("partner_id", "in", self.ids)],
|
|
["partner_id"],
|
|
["partner_id"],
|
|
)
|
|
for group in groups:
|
|
self.browse(group["partner_id"][0]).privacy_consent_count = group[
|
|
"partner_id_count"
|
|
]
|