Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odgovori
3275 Prikazi

Hi ,I am working in POS in Odoo 10 .But the issue is i am not that much experience in javascript so i need help .

I have a many2many field in Product template .Now i want to enable the search for products in  POS .

Can somebody help me to do this ?


Avatar
Opusti
Best Answer

Hi

To enable the search you can define (or add in the existent) search view like that in your xml :


<record id="view_YourModelName_search" model="ir.ui.view">
        <field name="name">YourModelName.search</field>
        <field name="model">YourModel</field>
        <field name="arch" type="xml">
           <search string="Sprints">
                <field name="product"/>           
            </search>
        </field>
    </record>

I hope this help !


Avatar
Opusti

This will not work in the POS (JavaScript UI).

Avtor

@Taher Yes you are right ...I need javascript logic not the XML .

@Celia But anyway thanks a lot for showing the interest in my problem .

Related Posts Odgovori Prikazi Aktivnost
1
avg. 25
843
1
jul. 25
1086
3
jul. 25
3706
3
maj 25
1954
1
jul. 25
1278