mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
This module adds the chatter on the journal entries for managing attachments and communications in this document. This has been added on version 13, so this module won't be needed there. Configuration ============= For seeing journal entries, you need to have the permission "Show Full Accounting Features" in your user (being in developer mode). Usage ===== * Go to *Invocing > Accounting > Accounting Entries > Journal Entries*. * Select one journal entry. * You will see there the chatter.
10 lines
265 B
Python
10 lines
265 B
Python
# Copyright 2020 Tecnativa - Pedro M. Baeza
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import models
|
|
|
|
|
|
class AccountMove(models.Model):
|
|
_inherit = ["account.move", "mail.thread", "mail.activity.mixin"]
|
|
_name = "account.move"
|