I want to fetch sales order details into PoS order. I can access sales orders fields by calling the model via rpc calls and defining the fields that I want. All non-relational fields will be retrieved. But for any relational fields I specify, I only get an array of ids.
For example if I want to get all order_line objects, I only get array representing the line ids, thus I can't access any fields inside the order_line e.g. product or quantity. The dot notation will not work because I don't receive an object, rather only the id.
Version is odoo 14 PoS
Dette spørgsmål er blevet anmeldt
4364
Visninger
Kan du lide at diskutere? Læs ikke bare med, deltag aktivt i debatten!
Opret en konto i dag for at få glæde af eksklusive funktioner, og bliv en del af vores skønne fællesskab!
Tilmeld dig| Relaterede indlæg | Besvarelser | Visninger | Aktivitet | |
|---|---|---|---|---|
|
|
2
mar. 24
|
2462 | ||
|
|
0
apr. 26
|
506 | ||
|
|
0
maj 26
|
5 | ||
|
|
2
apr. 26
|
2514 | ||
|
|
0
mar. 26
|
3451 |
you browse the list of ids..
if list is so_ids then
self.env['sale.order'].browse(so_ids) and you will get a recordset.