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.
21 lines
754 B
XML
21 lines
754 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright 2020 Tecnativa - Pedro M. Baeza
|
|
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
|
|
<odoo>
|
|
|
|
<record id="view_move_form" model="ir.ui.view">
|
|
<field name="model">account.move</field>
|
|
<field name="inherit_id" ref="account.view_move_form"/>
|
|
<field name="arch" type="xml">
|
|
<sheet position="after">
|
|
<div class="oe_chatter">
|
|
<field name="message_follower_ids" widget="mail_followers"/>
|
|
<field name="activity_ids" widget="mail_activity"/>
|
|
<field name="message_ids" widget="mail_thread"/>
|
|
</div>
|
|
</sheet>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|