如何在OpenERP中的one2many字段(看板模式)上显示列?

时间:2015-03-24 12:47:20

标签: xml openerp odoo odoo-8 qweb

我创建了模型boygirl(两者都包含属性名称姓氏年龄 ),与表love_date boy_id girl_id relationship_level )相关。

模型boy有一个one2many列( love_dates ),它通过字段love_date指向boy_id。与通过字段girl的模型girl_id相同。模型love_date包含boy_idgirl_id字段,其中有许多字段指向模型boygirl

现在我已经介绍了我的环境,我将解释这个问题:

我是boy的形式,我在看板视图中显示他的love_dates(就像形式的标签 Contacts 一样> res.partner 如果你随时看到它。)

问题是我无法显示与当前男孩约会的女孩的数据。

<field name="love_dates" mode="kanban">
    <kanban>
        <field name="boy_id"/>
        <field name="girl_id"/>
        <field name="relationship_type"/>
        <templates>
        <t t-name="kanban-box">
            <a t-if="! read_only_mode" type="delete" style="position: absolute; right: 0; padding: 4px; display: inline-block">X</a>
            <div class="oe_module_vignette">
                <a type="open">
                    <t t-if="record.girl_id.has_image === true">
                        <img t-att-src="kanban_image('girl', 'image_small', record.girl_id.id.value)" class="oe_avatar oe_kanban_avatar_smallbox"/>
                    </t>
                    <t t-if="record.girl_id.image !== false">
                        <img t-att-src="'data:image/png;base64,'+record.girl_id.image" class="oe_avatar oe_kanban_avatar_smallbox"/>
                    </t>
                </a>
                <div class="oe_module_desc">
                    <div class="oe_kanban_box_content oe_kanban_color_bglight oe_kanban_color_border">
                        <table class="oe_kanban_table">
                            <tr>
                                <td class="oe_kanban_title1" align="left" valign="middle">
                                    <h4>
                                        <a type="open">
                                                <t t-esc="record.girl_id.name"/>
                                                <t t-esc="record.girl_id.surname"/>
                                                <t t-esc="record.girl_id.age"/>
                                                <t t-esc="record.relationship_type"/>
                                        </a>
                                    </t>
                                </td>
                        </table>
                    </div>
                </div>
            </div>
        </t>
    </kanban>
</field>

我无法看到女孩的形象,姓氏,年龄......我只能看到他们的名字和关系类型。

有人可以帮帮我吗?提前谢谢。

0 个答案:

没有答案