İçereği Atla
Menü
Bu soru işaretlendi
1 Cevapla
2958 Görünümler

Kindly suggest something

Avatar
Vazgeç
En İyi Yanıt

You can add attribute trackvisibility = 'onchange' for the journal_id field and this will automatically post message logs whenever create a journal entry for the vendor bill. You can also manually update the log by overriding the write() method of invoice and add log by using message_post() function.

Avatar
Vazgeç
Üretici

sir your answer seems very right. Thank you so much for your reply. I used following lines of code after inheriting into account.move

<?xml version="1.0" encoding="utf-8" ?>

<odoo>

<data>

<record id="view_move_form" model="ir.ui.view">

<field name="name">account.move.form</field>

<field name="model">account.move</field>

<field name="inherit_id" ref="account.view_move_form"/>

<field name="arch" type="xml">

<xpath expr="//notebook" position="after">

<div class="oe_chatter">

<field name="message_follower_ids" widget="mail_followers"/>

<field name="message_ids" widget="mail_thread" options='{"thread_level": 1}'/>

</div>

</xpath>

</field>

</record>

</data>

</odoo>

İlgili Gönderiler Cevaplar Görünümler Aktivite
2
Ara 21
4761
3
Oca 25
4911
3
May 24
6837
1
Tem 23
1960
1
Ağu 24
3167