Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
1 Balas
12266 Tampilan

I don't know hoe to add a extra button of the header of the tree view?

<record model="ir.ui.view" id="crm_todo_tree_view_opportunity">
 <field name="name">Todo Opportunities Tree</field>
 <field name="model">crm.lead</field>
 <field name="arch" type="xml">
<tree string="Opportunities" fonts="bold:message_unread==True" colors="gray:probability == 100;red:date_deadline and (date_deadline &lt; current_date)">
 <field name="date_deadline" invisible="1"/>
 <field name="create_date" invisible="1"/>
 <field name="name" string="Opportunity"/>
 <field name="partner_id" string="Customer"/>
..................................................
..................................................
................................................
</tree>
</field>
</record> in this view there is button CREATE, after that i need a new button. Please help me thanks in advance.
Avatar
Buang
Jawaban Terbai

you can try with the code above:


<t t-extend="ListView.buttons">

<t t-jquery="button.oe_list_add" t-operation="after">

<t t-if="widget.model=='your.model'">

<button class="oe_button oe_list_add_planing_daily oe_highlight"

type="button">Create Planing Daily</button>

<button class="oe_button oe_list_view_current_session oe_highlight"

type="button">Current Session</button>

</t>

</t>

</t>


here I only add 2 buttons on tree list for "your.model"


hope it helps

Avatar
Buang

I created a template, located it in static/src/xml/ folder, and assigned the template to the 'res.partern' model,

Now, how to link these two buttons with specific methods in the model??

The code only work for the tree view (not for the tree on one2many field). If you do follow by the code, you will see 2 buttons appear next to "Create" or "Import" buttons for "your.model"

Penulis

Thanks

Post Terkait Replies Tampilan Aktivitas
1
Mei 24
1715
1
Feb 17
5449
1
Mar 15
4129
1
Mar 15
15915
4
Nov 24
13000