Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
1 Răspunde
3837 Vizualizări

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?

Imagine profil
Abandonează
Autor Cel mai bun răspuns

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.

Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
2
mar. 15
4686
5
iun. 20
6737
0
aug. 16
3115
1
apr. 16
4951
0
feb. 16
5048