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.

56 lines
2.5 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <openerp>
  3. <data>
  4. <record id="crm_phonecall_search" model="ir.ui.view">
  5. <field name="name">crm.phonecall.search</field>
  6. <field name="model">crm.phonecall</field>
  7. <field name="inherit_id" ref="crm_phone.crm_phonecall_search"/>
  8. <field name="arch" type="xml">
  9. <xpath expr="//field[@name='opportunity_id']" position="after">
  10. <field name="hr_applicant_id"/>
  11. </xpath>
  12. </field>
  13. </record>
  14. <record id="hr_applicant_phonecall" model="ir.ui.view">
  15. <field name="name">hr_recruitment_phone.hr_applicant.form</field>
  16. <field name="model">hr.applicant</field>
  17. <field name="inherit_id" ref="hr_recruitment_phone.crm_case_form_view_job"/>
  18. <field name="arch" type="xml">
  19. <field name="message_ids" widget="mail_thread" position="replace"/>
  20. <xpath expr="//button[@name='action_makeMeeting']" position="before">
  21. <button class="oe_inline oe_stat_button" type="action"
  22. name="%(crm_phone.crm_phonecall_action)d"
  23. icon="fa-phone"
  24. context="{'search_default_hr_applicant_id': active_id}">
  25. <field string="Calls" name="phonecall_count" widget="statinfo"/>
  26. </button>
  27. </xpath>
  28. <xpath expr="//field[@name='description']" position="after">
  29. <notebook>
  30. <page string="Internal Notes">
  31. <field name="message_ids" widget="mail_thread"/>
  32. </page>
  33. <page string="Communication">
  34. <field name="phonecall_ids" mode="tree" readonly="1">
  35. <tree string="Phonecalls" create="false" delete="false"
  36. colors="gray:state in ('done', 'cancelled')">
  37. <field name="date"/>
  38. <field name="end_date"/>
  39. <field name="name"/>
  40. <field name="partner_phone"/>
  41. <field name="user_id" context="{'default_groups_ref': ['base.group_user', 'base.group_partner_manager', 'base.group_sale_salesman_all_leads']}"/>
  42. <field name="direction"/>
  43. <field name="state"/>
  44. </tree>
  45. </field>
  46. </page>
  47. </notebook>
  48. </xpath>
  49. </field>
  50. </record>
  51. </data>
  52. </openerp>