Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odgovori
3826 Prikazi

I'm trying to add the state field into the kanban display for partners.  It isn't appearing, and I am not getting any error messages, so I looked to make sure that it is actually appearing in the "Manage Views" list.  It does appear, and has a lower sequence (priority) number than any other views that inherit from "res.partner.kanban", but I also noticed that it is listed as type "Qweb".  My code is below:

<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
     
    <record id="my_partner_kanban_view" model="ir.ui.view">
        <field name="name">my_partner_kanban_view</field>
        <field name="model">res.partner</field>
        <field name="inherit_id" ref="base.res_partner_kanban_view"/>
        <field name="priority" eval="5"/>
        <field name="arch" type="xml">
            <field name="city" position="after">
                <field name="state_id"/>
            </field>
        </field>
    </record>
    
</data>
</openerp>

Is there some other field that will specify the view type as kanban?

Avatar
Opusti
Avtor Best Answer

I guess it's okay that it shows up as "Qweb" and not "Kanban".  Once you get your field selection syntax down right, it seems to work just fine.  Maybe it's because the fields I'm modifying are inside template tags, defined inside the parent kanban view.

Avatar
Opusti
Related Posts Odgovori Prikazi Aktivnost
2
mar. 15
4675
5
jun. 20
6733
0
avg. 16
3115
1
apr. 16
4946
0
feb. 16
5048