You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
597 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record id="view_purchase_order_form_inherit" model="ir.ui.view">
  4. <field name="name">purchase.order.form.inherit</field>
  5. <field name="model">purchase.order</field>
  6. <field name="inherit_id" ref="purchase.purchase_order_form"/>
  7. <field name="arch" type="xml">
  8. <xpath expr="//field[@name='date_order']" position="after">
  9. <field name="original_cpo_id"
  10. attrs="{'invisible': [('original_cpo_id','=',False)]}"/>
  11. </xpath>
  12. </field>
  13. </record>
  14. </odoo>