Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
3 Ответы
24616 Представления

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
Аватар
Отменить
Лучший ответ

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>
Аватар
Отменить

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.

Лучший ответ

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'}




Аватар
Отменить
Лучший ответ

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

Аватар
Отменить

That's a question, not an answer.

Related Posts Ответы Просмотры Активность
0
мар. 15
3631
3
февр. 25
35449
2
февр. 25
8605
1
сент. 24
2224
0
апр. 16
3083