OCA reporting engine fork for dev and update.
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.

38 lines
1.5 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Copyright 2012 - Now Savoir-faire Linux <https://www.savoirfairelinux.com/>
  3. License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
  4. <odoo>
  5. <!-- KPI history -->
  6. <record id="view_kpi_history_tree" model="ir.ui.view">
  7. <field name="name">kpi.history.tree</field>
  8. <field name="model">kpi.history</field>
  9. <field name="arch" type="xml">
  10. <tree string="KPI History">
  11. <field name="name"/>
  12. <field name="date"/>
  13. <field name="value"/>
  14. <field name="color" widget="color"/>
  15. <field name="company_id" groups="base.group_multi_company"/>
  16. </tree>
  17. </field>
  18. </record>
  19. <record id="view_kpi_history_form" model="ir.ui.view">
  20. <field name="name">kpi.history.form</field>
  21. <field name="model">kpi.history</field>
  22. <field name="arch" type="xml">
  23. <form string="KPI History">
  24. <sheet>
  25. <group col="4" colspan="4">
  26. <field name="kpi_id"/>
  27. <field name="name"/>
  28. <field name="date"/>
  29. <field name="value"/>
  30. <field name="color" widget="color"/>
  31. <field name="company_id" groups="base.group_multi_company"/>
  32. </group>
  33. </sheet>
  34. </form>
  35. </field>
  36. </record>
  37. </odoo>