Skip to Content
Menu
This question has been flagged
1 Reply
1392 Views


My problem is that if I select a shipping address in the checkout page of website (between various addresses available for that user) and click CONFIRM, in the next page the shipping address is not what I selected previously.

Seems like odoo is loosing track of the ID of the address I want (with parent_id linked to the user) and set always the same one.

Anybody else has encountered this issue?

I tried debugging the code but I can't understand what is causing this problem.

Many thanks


Avatar
Discard
Author Best Answer

NEEDED THIS LINE

order_info = {

'message_partner_ids': [(4, partner_id), (3, request.website.partner_id.id)],

'partner_shipping_id': checkout.get('shipping_id') or partner_id,

}



Avatar
Discard