Skip to Content
Menu
Dette spørgsmål er blevet anmeldt
1 Svar
3839 Visninger

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
Kassér
Forfatter Bedste svar

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
Kassér
Related Posts Besvarelser Visninger Aktivitet
2
mar. 15
4686
5
jun. 20
6739
0
aug. 16
3115
1
apr. 16
4952
0
feb. 16
5048