Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
2 Trả lời
6117 Lượt xem

I was looking for something like "reply button" As this is in messaging sytem of Openerp7. I want the reply button in the form view of a record. As I have included the following in my views:

<div class="oe_chatter">
                    <field name="message_follower_ids" widget="mail_followers"/>
                    <field name="message_ids" widget="mail_thread"/>
 </div>

I am getting the chatter in the bottom, but I was looking for the reply button as a thread . As it is in the Messaging. I Changed the mail.js In mail_thread Widget I changed the init function with 'show_reply_button': true, The reply button is appearing but when I click on reply it doesnot open in the thread. And there is very little help or no help available on net and documentation is not rich so as to reach somewhere near to my requirements.

Ảnh đại diện
Huỷ bỏ
Tác giả Câu trả lời hay nhất

I got the answer I updated the mail.js with the following:

instance.mail.RecordThread.include({
    init: function (parent, node) {
            this._super.apply(this, arguments);
            this.node = _.clone(node);
            this.node.params = _.extend({
                'display_indented_thread': 1,
                'show_reply_button': true,

            }, this.node.params);

            }
         });
Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Is this available in Odoo 10?

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
2
thg 2 23
12428
2
thg 7 25
1288
1
thg 7 25
1734
1
thg 5 25
809
2
thg 5 25
1416