sale_order_views.xml 1.5 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record id="view_order_form_inherit_sale_timesheet" model="ir.ui.view">
  4. <field name="name">sale.order.form.sale.timesheet</field>
  5. <field name="model">sale.order</field>
  6. <field name="inherit_id" ref="sale_project.view_order_form_inherit_sale_project"/>
  7. <field name="arch" type="xml">
  8. <data>
  9. <xpath expr="//button[@name='action_view_task']" position="after">
  10. <field name="timesheet_count" invisible="1"/>
  11. <button type="object"
  12. name="action_view_timesheet"
  13. class="oe_stat_button"
  14. icon="fa-clock-o"
  15. attrs="{'invisible': [('timesheet_count', '=', 0)]}"
  16. groups="hr_timesheet.group_hr_timesheet_user">
  17. <div class="o_field_widget o_stat_info">
  18. <span class="o_stat_value">
  19. <field name="timesheet_total_duration" class="mr4" widget="statinfo" nolabel="1"/>
  20. <field name="timesheet_encode_uom_id" options="{'no_open': True}"/>
  21. </span>
  22. <span class="o_stat_text">Recorded</span>
  23. </div>
  24. </button>
  25. </xpath>
  26. </data>
  27. </field>
  28. </record>
  29. </odoo>