Skip to Content
मेन्यू
This question has been flagged

I have done r&d and found the term bundle is not used in odoo as the product in odoo can be managed using combo item. But when i am trying to create combo item using JSONRPC Api the combo item is created individual instead of grouping in parent item. Can any one provide me the sample api response to create combo items as like magento do in it's bundle product.


API REQUEST :

{

"jsonrpc": "2.0",

"method": "call",

"params": {

"service": "object",

"method": "execute_kw",

"args": [

"{dbname}",

"{id_odoo}",

"{tokenAccess}",

"sale.order",

"create",

[

{

"partner_id": 6,

"pricelist_id": 2,

"order_line": [

[0, 0, {

"product_uom_qty": 1,

"price_unit": 628.00,

"product_id": 2, // simple product id

"tax_ids": [[6, false, [275]]]

}],

[0, 0, {

"product_uom_qty": 3,

"product_id": 9, // odoo Parent Product A ID

"price_unit": 100,

"tax_ids": [[6, false, [275]]]

}],

[0, 0, {

"product_uom_qty": 3,

"product_id": 8,

"price_unit": 0.50,

"tax_ids": [[6, false, [275]]]

}],

// Shipping line

[0, 0, {

"product_uom_qty": 1,

"product_id": 4,

"price_unit": 4.00,

"is_delivery": true,

"tax_ids": [[6, false, [275]]]

}]

],

"partner_shipping_id": 7,

"partner_invoice_id": 7

}

]

]

}

}


I want to prepare request for bundle items.

Avatar
Discard
Author

Not exact bundle i need to sync here but as combo i can manage my items the things i need how to pass from api the order create request which should be created like this UI in odoo. This issue only i need to solve rest of all things is syncing fine.

Click to see the required output after order created using Api,

"https://prnt.sc/4JaTyyQVdCPG"

Best Answer

Magento Bundle Products and Odoo Combo Products are not the same thing. Similar at best, but different in so many details.

For example: 

  • Magento Bundle Products can consist of Virtual and Simple Products while a Odoo Combo Product can consist also of what you would call a Configurable Product in Magento
  • Magento Bundle Product child Products allow variable quantities, Odoo Combo child Products don't
  • Magento Bundle Product child Product 'Groups' can be optional, Odoo Combo Choices can't
  • Pricing in general is different on many levels

to name only a few differences.


However, the request body you've shared suggests you're interested in creating Sale Orders in Odoo. So - why go through the hassle in trying to replicate a product type of Magento that doesn't exist in Odoo when you could just create the individual lines in Odoo as they would be defined in Magento's cart? 

In my opinion you're far better of by splitting up the Bundle Product's final price onto the individual Sale Order Lines. Structure wise you may just add a Sale Order Line of type 'Section' prior to the individual products to achieve a result that resembles the actual Bundle of Magento. The fact that Odoo would render prices and row totals for all the products involved could be covered by flagging the Sale Order Line (i.e. by introducing a field is_mage_bundle_item True/False) and extend the reports to conditionally show/hide these table cells in PDF reports and portal templates.

Avatar
Discard
Related Posts Replies Views Activity
7
जून 21
13352
2
नव॰ 16
4540
0
मई 17
3201
1
नव॰ 16
3535
3
अग॰ 22
4654