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.

23 lines
901 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <openerp>
  3. <data>
  4. <record model="ir.ui.view" id="last_rec_date_form">
  5. <!-- must be unique in this module. -->
  6. <field name="name">last_rec_date_form</field>
  7. <field name="model">account.move.line</field>
  8. <!--parent python entity -->
  9. <field name="inherit_id" ref="account.view_move_line_form"/>
  10. <!-- modulename.view -->
  11. <field name="type">form</field>
  12. <field name="arch" type="xml">
  13. <separator string="Internal Note" colspan="4" position="before">
  14. <separator string="Misc."/>
  15. <newline/>
  16. <group>
  17. <field name="last_rec_date" readonly="1"/>
  18. </group>
  19. </separator>
  20. </field>
  21. </record>
  22. </data>
  23. </openerp>