Can anyone help me with creating a dropdown list in the POS partner screen. I added this in the pos.xml file, but the dropdown is empty. Thanks
<div class='client-detail'>
<span class='label'>CustomerGroup</span>
<select class='*what to place here?*' name='group_id'>
<option value=''>None</option>
<t t-foreach='*what to place here?*' t-as='group'>
<option t-att-value='group.id' t-att-selected="partner_group_id ? ((group.id === partner.group_id[0]) ? true : undefined) : undefined">
<t t-esc='group.name'/>
</option>
</t>
</select>
</div>
I've copied this from the country dropdown list.