Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
2 ตอบกลับ
4324 มุมมอง

Hello,

I would like to hide the "tax_id" fleld in note in Sales--->Quotations.

See LINK.

Can anyone  please help?

Thanks.

My code is

---------------------------------------------------------------------------------------------------------------------

<?xml version="1.0" encoding="utf-8"?>
<openerp>
  <data>
        <record id="view_quotation_test_form" model="ir.ui.view">
            <field name="name">sale.order.form</field>
            <field name="model">sale.order</field>
       <field name="inherit_id" ref="sale.view_order_form" />
            <field name="arch" type="xml">

     <field name="tax_id" position="attributes">
                <attribute name="invisible">1</attribute>
            </field>

        </field>
    </record>

    
  </data>
</openerp>

---------------------------------------------------------------------------------------------------------------------

อวตาร
ละทิ้ง
ผู้เขียน

Thanks for your solution.

คำตอบที่ดีที่สุด

Hi

Try this code

<?xml version="1.0" encoding="utf-8"?>
<openerp>
  <data>
        <record id="view_quotation_test_form" model="ir.ui.view">
            <field name="name">sale.order.form</field>
            <field name="model">sale.order</field>
               <field name="inherit_id" ref="sale.view_order_form" />
            <field name="arch" type="xml">

             <xpath expr="/form/sheet/notebook/page/field[@name='order_line']/tree/field[@name='tax_id']" name="tax_id" position="attributes">
                <attribute name="invisible">1</attribute>
            </xpath>

        </field>
    </record>

    
  </data>
</openerp>

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

you can use...

 

1. States: <field name="example" states="pending" /> ---> This field "example" is shown only when the stage is in "pending" state otherwise the field is hidden

2. Attrs: <field name="example" attrs="{'invisible': [('state','!=','pending')]}" /> ---> State other than "pending" is invisible for the field "example"

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
2
มี.ค. 15
5011
4
มี.ค. 15
8214
0
มี.ค. 15
3380
0
ม.ค. 25
954
0
ก.ย. 22
2972