Skip to Content
Menu
This question has been flagged
3 Replies
22023 Views

Example:

  • Open up an applicant
  • Edit.
  • Open the dropdown for 'contact' and select 'search more'.
  • A tree view of results is displayed with the name/phone number/email of the partner.

I want to add a field (example: street, country, ...) to this result screen. How do I accomplish that?

I tried:

  • Inline tree tag inside the contact field
  • 'tree_view_ref' in the context of the contact field
Avatar
Discard
Best Answer

You have to create your custom tree view in your custom module and then inherit the applicant's view and then add attribute context="{'tree_view_ref': 'your_tree_view_id'}" in context (partner_id) field.

Like this:

<record id="inherit_view_partner_tree" model="ir.ui.view">
    <field name="name">res.partner.inherit.tree</field>
    <field name="model">res.partner</field>
    <field eval="8" name="priority"/>
    <field name="arch" type="xml">
        <tree string="Contacts">
            <field name="name"/>
            <field name="phone"/>
            <field name="email"/>
            <field name="street"/>
            <field name="country_id"/>
        </tree>
    </field>
</record>

<record id="inherit_crm_case_form_view_job" model="ir.ui.view">
    <field name="name">Jobs - Recruitment Form</field>
    <field name="model">hr.applicant</field>
    <field name="inherit_id" ref=" hr_recruitment.crm_case_form_view_job "
        <field name="partner_id" position="attributes">
            <attribute name="context">{'tree_view_ref': 'inherit_view_partner_tree'}</attribute>
        </field>
    <field
</record>
Avatar
Discard

Hi, thanks for your answer ...why should it be in context "partner_id" field, could it be in another field?

I have the following problem, could you take a look and give me some advice?? Thanks in advance!! http://help.openerp.com/question/33086/sale-order-generation-from-product-search/

This worked for me. Thanks for your example. PS: I happened to notice what appears to be a typographical error in your answer, in the first paragraph. There is an extra {"> in context="{">{'tree_view_ref': 'your_tree_view_id'}".

It's worth noting that user-created views won't be addressable in this manner until they are processed by the CSV exporter, because they have no ID string at first, only a numeric ID. See question 22497.

Best Answer

I have the same problem and I got the answer:

eg:

create a custom tree view:

    product.product.tree.ist

    product.product

   

       

           

           

           

           

           

           

           

           

           

       

   


then:

    {'tree_view_ref': 'your_custom_module_name.sale_line_product_search_more_tree_view'}




Avatar
Discard
Best Answer

Hi, Im having a similar problem, could you fix it??

Avatar
Discard

That's a question, not an answer.

Related Posts Replies Views Activity
0
Mar 15
2564
1
Sep 24
161
3
Jul 23
31884
2
Sep 18
6594
0
Apr 16
2041