I am building a WooCommerce <-> Odoo Online integration using n8n workflows with the Odoo Connector. So far, I'm impressed with what the tool can do. I successfully synced Categories, Products, Orders, and Order Line Items, but I’m facing an issue with setting the shipping method on an Order.
Issue
When I set carrier_id on sale.order, it appears correctly when retrieving the order via API:
...
"carrier_id": [
1,
"Verzending met Postnl of DPD"
]
...
However, this shipping method does not appear in the Odoo Sales Order UI.
Question
Is there a method or additional field required to make the shipping method visible in the UI? Any insights would be greatly appreciated!