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.

34 lines
1.5 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record model="ir.actions.act_window" id="action_mrp_production_agreement_specific">
  4. <field name="name">Manufacture Orders</field>
  5. <field name="type">ir.actions.act_window</field>
  6. <field name="res_model">mrp.production</field>
  7. <field name="view_type">form</field>
  8. <field name="view_mode">tree,form</field>
  9. <field name="domain">[('agreement_id', '=', active_id)]</field>
  10. <field name="help" type="html">
  11. <p class="oe_view_nocontent_create">
  12. Create MOs
  13. </p>
  14. </field>
  15. </record>
  16. <record id="partner_agreement_form_view" model="ir.ui.view">
  17. <field name="name">agreement.form.mrp</field>
  18. <field name="model">agreement</field>
  19. <field name="inherit_id" ref="agreement.partner_agreement_form_view"/>
  20. <field name="arch" type="xml">
  21. <xpath expr="//div[@name='button_box']" position="inside">
  22. <button name="%(action_mrp_production_agreement_specific)d" type="action" attrs="{'invisible': [('mo_count', '=', 0)]}" class="oe_stat_button" icon="fa-wrench">
  23. <div class="o_field_widget o_stat_info">
  24. <span class="o_stat_value"><field name="mo_count" widget="statinfo" nolabel="1"/></span>
  25. <span class="o_stat_text">MOs</span>
  26. </div>
  27. </button>
  28. </xpath>
  29. </field>
  30. </record>
  31. </odoo>