mirror of
https://github.com/OCA/knowledge.git
synced 2025-07-23 17:08:46 -06:00
10 lines
322 B
Python
10 lines
322 B
Python
# Copyright 2023 Foodles (https://www.foodles.com/)
|
|
# @author Pierre Verkest <pierreverkest84@gmail.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
from odoo import models
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_name = "res.partner"
|
|
_inherit = ["res.partner", "ir.attachment.action_download"]
|