指定OpenERP表单视图中one2many字段的显示模式

发布于 2024-10-12 12:09:41 字数 82 浏览 3 评论 0原文

有一个字段 one2many...当我尝试打开视图时 该字段显示树视图,但我想要表单视图..并且想要禁用树视图。

有什么解决办法吗?

there is a field one2many...when i tried to open the view of
that field it shows tree view but i want the form view..and want to disable the tree view.

is there any solution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

溇涏 2024-10-19 12:09:41

在 one2many 字段中,您可以指定子视图使用的显示模式。 开发人员手册给出了模式属性的简要描述,并且您可以在合作伙伴视图的地址字段中找到示例:

<record id="view_partner_form" model="ir.ui.view">
    <field name="name">res.partner.form</field>
    <field name="model">res.partner</field>
    <field name="type">form</field>
    <field name="arch" type="xml">
        <form string="Partners">
            <group colspan="4" col="6">
                ...
            </group>
            <notebook colspan="4">
                <page string="General">
                    <field 
                        colspan="4" 
                        mode="form,tree" 
                        name="address" 
                        nolabel="1" 
                        select="1">
                        <form string="Partner Contacts">
                            <field name="name" select="2"/>
                            <field name="function"/>
                            <field name="type" select="2"/>
                            ...

此示例来自 server/bin/addons/base/res/partner/partner_view.xml。听起来您想在您的字段中使用 mode="form"

On a one2many field, you can specify which display modes to use for the child view. The developer book gives a brief description of the mode attribute, and you can find an example on the Partner view's address field:

<record id="view_partner_form" model="ir.ui.view">
    <field name="name">res.partner.form</field>
    <field name="model">res.partner</field>
    <field name="type">form</field>
    <field name="arch" type="xml">
        <form string="Partners">
            <group colspan="4" col="6">
                ...
            </group>
            <notebook colspan="4">
                <page string="General">
                    <field 
                        colspan="4" 
                        mode="form,tree" 
                        name="address" 
                        nolabel="1" 
                        select="1">
                        <form string="Partner Contacts">
                            <field name="name" select="2"/>
                            <field name="function"/>
                            <field name="type" select="2"/>
                            ...

This example is from server/bin/addons/base/res/partner/partner_view.xml. It sounds like you want to use mode="form" for your field.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文