コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
3852 ビュー

How can I give to a field that exists in product a new user group?

For example in a new view or in an existing view without modifie the normal standard product module.

thx

アバター
破棄
最善の回答

hello wizardz,

You have inherit the existing view using xpath and add possition as attributes and give the group to that field.

for example here group is give on button likeweise you can give it to your field.

<record model="ir.ui.view" id="invoice_form_inherit">           

        <field name="name">invoice_form inherit</field>           

        <field name="model">account.invoice</field>           

        <field name="inherit_id" ref="account.invoice_form"/>           

        <field name="arch" type="xml">                               

        <xpath expr="//form/header/button[@name='invoice_print']" position="attributes">                   

                        <attribute name="groups">base.group_system</attribute>       

        </xpath>           

        </field>       

</record>

アバター
破棄
関連投稿 返信 ビュー 活動
1
1月 17
2905
1
1月 17
3143
0
8月 16
2980
2
9月 22
4001
0
3月 19
2715