跳至內容
選單
此問題已被標幟
3 回覆
6712 瀏覽次數

For example, I want to hide field "Number of Children" on the employee form.

So I see it's field: children, object: hr.employee.

I have tried:

extend hr.employee

<field name="children" position="replace"/>
//Result XML validation error

<field name="marital" position="after">
  <field name="children" position="replace"/>
</field
//Exact code from the view, result, two Children fields (this code replace the Marital field with another Children)

<field name="children" attrs="{'invisible':[('children','=',True)]}"/>
//Passes validation but returns error when trying to open an employee form

<field name="children" position="attributes">
  <attribute name='invisible'>1</attribute>
</field>
//Fails xml validation

I don't know any of this code and I'm trying to find examples and that's where I got these tests from. Is there no default way to hide fields like with <field name="field_name" invisible="true"/> and I'm extending the form it will hide that field?

image description

頭像
捨棄
最佳答案

Try this

image description

頭像
捨棄
作者

ValidateError

Error occurred while validating the field(s) arch: Invalid XML for View Architecture!

作者

I get the above error when I try your method in the view. Maybe I have an incorrect setting somewhere?

This is correct. If this is going into a module, you may not have the dependencies listed correctly in the __openerp__.py file.

作者

I'm only using this in an extended view. I haven't mastered the delicate art of creating a module that doesn't return the "No handler found" error. So for now this is only in a view. I think the problem I have found is the group this field is in. Since I'm hiding all the fields in group name="contract" I think it's not liking it. How do you hide a group? I've tried position="replace" and it results in xml validate error as well.

作者

Thank you for your help so far. I have added what you say, but still getting an xml validation error. I truly don't understand what this problem is. I have added a screenshot to my question. Perhaps there is something else I am missing that is causing this.

作者

I believe this does it. Thanks for your help.

最佳答案

Hi,

Try the following:

<record id="hr_contract_form_inherited_view_new" model="ir.ui.view">
    <field name="name">hr.contract.form.inherited.new</field>
    <field name="model">hr.employee</field>
    <field name="priority">17</field>
    <field name="inherit_id" ref="hr_contract.hr_hr_employee_view_form2"/>
    <field name="arch" type="xml">
        <field name="children" position="replace">
                 <field name="children" invisible="1"/>
        </field>                   
    </field> </record>

also put "hr_contract" in _openerp_.py as depedent module.

頭像
捨棄
作者

ValidateError

Error occurred while validating the field(s) arch: Invalid XML for View Architecture!

作者

I get the above error when I try your method in the view. Maybe I have an incorrect setting somewhere?

I have edited my answer. Hope this will solve your issue.

作者

I'm only using this in an extended view. I haven't mastered the delicate art of creating a module that doesn't return the "No handler found" error. So for now this is only in a view. I think the problem I have found is the group this field is in. Since I'm hiding all the fields in group name="contract" I think it's not liking it. How do you hide a group? I've tried position="replace" and it results in xml validate error as well.

最佳答案

Hi Sean

<field name="name"  position="attributes">
    <attribute name="invisible">True</attribute>
</field>

Hope this helps !

頭像
捨棄
作者

ValidateError

Error occurred while validating the field(s) arch: Invalid XML for View Architecture!

作者

I get the above error when I try your method in the view. Maybe I have an incorrect setting somewhere?

作者

I'm only using this in an extended view. I haven't mastered the delicate art of creating a module that doesn't return the "No handler found" error. So for now this is only in a view. I think the problem I have found is the group this field is in. Since I'm hiding all the fields in group name="contract" I think it's not liking it. How do you hide a group? I've tried position="replace" and it results in xml validate error as well.

相關帖文 回覆 瀏覽次數 活動
1
2月 21
13861
0
3月 15
3815
6
9月 17
8248
1
3月 15
6123
1
3月 15
7415