knowledge/attachment_zipped_download/tests/models/res_partner.py
Pierre Verkest 66dd5ab063 [IMP] attachment_zipped_download: provide ir.attachment.action_download mixin
This helps to download multiple attachments from any models.
2023-08-31 10:15:50 +02:00

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"]