跳至內容
選單
此問題已被標幟
3 回覆
16897 瀏覽次數

hi folks

any simple example to use oe_chatter class in our custom module?

頭像
捨棄
最佳答案

Hello Shabeeh,


In PY :-
class custom_class(modules.Model):

     _name = 'custom.class'

    _inherit = ['mail.thread', 'ir.needaction_mixin']


In Xml:-

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

    <field name="name">custom.class.form.view</field>

     <field name="model">custom.class</field>

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

        <form string="Custom Class">

              <sheet>

             <!-- Code for Form View -->
    
              </sheet>

            <div class="oe_chatter">

                <field name="message_follower_ids" widget="mail_followers" groups="base.group_user"/>

                <field name="message_ids" widget="mail_thread"/>

            </div>

        </form>

    </field>

</record>



Thanks,

頭像
捨棄
最佳答案

Just Define following code in your form view before </form> tag ending(it must need mail.thread inherited _inherit = ['mail.thread']).

                    <div class="oe_chatter">
                        <field name="message_follower_ids" widget="mail_followers" groups="base.group_user"/>
                        <field name="message_ids" widget="mail_thread"/>
                    </div>

 

Thanks,

Pinakin

頭像
捨棄
最佳答案

use  class="oe_chatter o_chatter_position_right 

/

    


                       

                   

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
8
4月 23
32409
0
3月 15
4737
3
3月 25
36495
0
6月 18
3024
2
3月 16
5949