Hi,
I need to create a drop down list of customer in the POS interface, i know we have loaded the customers in the pos and we can select it by click on customer button.But i wish to display customers as a dropdown list.How can i do that?
Thanks
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi,
I need to create a drop down list of customer in the POS interface, i know we have loaded the customers in the pos and we can select it by click on customer button.But i wish to display customers as a dropdown list.How can i do that?
Thanks
Hi,
Like you said partners are already loaded to POS.You can access those in XML
Try the below code
<select>
<option value=''>None</option>
<t t-foreach='widget.pos.partners' t-as='partner'>
<option t-att-value='partner.id'>
<t t-esc='partner.name'/>
</option>
</t>
</select>
We will get the customers by looping widget.pos.partners. And you can use this in your required position where you need the dropdownlist.
Hope it helps
Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!
Zarejestruj sięPowiązane posty | Odpowiedzi | Widoki | Czynność | |
---|---|---|---|---|
|
1
maj 23
|
137 | ||
|
0
lis 22
|
2909 | ||
|
2
lip 22
|
20160 | ||
|
0
mar 19
|
3334 | ||
|
3
kwi 25
|
1208 |