Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd

Hello,

I've defined a selection on website form, this selection will hold 'many2many' field, so it will look like 'many2many_tags' widget.

For now, on the website form view, I can select more than one value, but when I validated the form value sent to backend, it's only get the first value for this selection.

here my code (xml):

<div id="group_permit" t-attf-class="form-group

       <label class="col-md-3 col-sm-4 control-label" for="permit" >Driving License</label>

       <div id="fields_permit" class="col-md-7 col-sm-8">

       <select multiple="multiple" name="permit_id" class="form-control select2">

              <t t-foreach="permit_ids" t-as="permit">

                         <option t-att-value="permit.id">

                               <t t-esc="permit.name"/>

                          </option>

                   </t>

             </select>

          </div>

    </div>

On the 'firebugs', I see, there are two value for selection field was sent to server:

example:

permit_id: 1

permit_id: 2


On the backend, when I debug the value was sent:

Only detected the first value. {'permit_id': u'1'}


How to get all the value was selected?


Please help :)

thanks.

    



Avatar
Annuleer
Auteur Beste antwoord

Hello Jamin Shah,


Thanks for the answer.

Just get a notification for your answer (I almost forget if I asked this question).

Actually, it was solved, nothing wrong with that view, just need extra code on the backend (controller) to handle it.

example:

permit_ids = request.httprequest.form.getlist('permit_id')

Avatar
Annuleer

Thank you so much, I am also having same issue with multiple select in Odoo website.

Still an issue in Odoo V13 & this solution still works by the way.

Beste antwoord

Hello,


Code is fine.

Same code works for me.I think you are missing somewhere in selecting value.

For many2many it send in [1, 2] format which then converted to (6, 0 ..) format.


Avatar
Annuleer
Gerelateerde posts Antwoorden Weergaven Activiteit
0
mei 22
2341
1
nov. 24
2162
4
jun. 22
20763
2
aug. 20
10761
0
jul. 20
3286