account_interest_line.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!-- <?xml version="1.0" encoding="UTF-8"?>
  2. <openerp>
  3. <data>
  4. <record model="ir.ui.view" id="view_interest_line_form">
  5. <field name="name">view.account.interest.line.form</field>
  6. <field name="model">account.invoice</field>
  7. <field name="priority">30</field>
  8. <field name="arch" type="xml">
  9. <form string="Interest Line">
  10. <header class="oe_highlight">
  11. <button name="search_interest" string="Buscar" type="object" class="oe_link" groups="base.group_user"/>
  12. <button name="search_interest" string="Buscar" class="oe_highlight" type="object"/>
  13. </header>
  14. <notebook>
  15. <page string="Intereses">
  16. <button name="actualizarInteres" type="object" string="Actualizar" class="oe_link" groups="base.group_user"/>
  17. <field name="interes_ids" nolabel='1' >
  18. <tree string="Intereses" editable='button' delete='false' create='false' domain="[('state','=',False)]">
  19. <field name="name_product" string="Decripcion" readonly="1"/>
  20. <field name="price_subtotal" string="Monto Interes" readonly="1"/>
  21. <field name="date" string="Fecha de Creacion" readonly="1"/>
  22. <field name="state" string="Estado"/>
  23. </tree>
  24. </field>
  25. </page>
  26. </notebook>
  27. <footer>
  28. <button name="button_deleted_interest" string="Guardar" class="oe_link" type="object"/>or
  29. <button string="Cancel" class="oe_link" special="cancel"/>
  30. </footer>
  31. </form>
  32. </field>
  33. </record>
  34. </data>
  35. </openerp> -->