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.

19 lines
897 B

  1. <?xml version="1.0"?>
  2. <odoo>
  3. <!-- Copyright 2018 Open Source Integrators
  4. License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). -->
  5. <!-- Agreement Form View -->
  6. <record id="agreement_fsm_order_form_view" model="ir.ui.view">
  7. <field name="name">agreement.form.fsm.order.view</field>
  8. <field name="model">agreement</field>
  9. <field name="inherit_id" ref="agreement.partner_agreement_form_view"/>
  10. <field name="arch" type="xml">
  11. <div class="oe_button_box" position="inside">
  12. <button name="action_view_service_order" type="object" class="oe_stat_button" icon="fa-pencil-square-o" attrs="{'invisible': [('service_order_count', '=', 0)]}">
  13. <field name="service_order_count" widget="statinfo" string="Service Orders"/>
  14. </button>
  15. </div>
  16. </field>
  17. </record>
  18. </odoo>