Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.

Sync data between Fusion 360 and our ERP HTTP endpoint

Anonymous

Sync data between Fusion 360 and our ERP HTTP endpoint

Anonymous
Not applicable

We are trying to sync Fusion 360 parts created to our ERP. We have endpoints in Google Cloud which are linked to our Odoo 10.

 

Can someone help build a python script to invoke the API to send part details when a part is added in a particular assembly?

1 Like
Reply
1,187 Views
5 Replies
Replies (5)

Anonymous
Not applicable

Does anyone have any idea, how to do this?

0 Likes

robbieYF29S
Contributor
Contributor

We're trying to figure out how to do this as well. Does anyone know how to do this?

I was thinking about using the MUK IT rest api and connecting that way, but then you run into the issue of Odoo's data structure. Odoo breaks products into three separate tables, prodcut.product, product.template and mrp.bom. That's could be hard to map to fusion. OpenBOM connects to fusion in the most logical way (in my opinion), which is to create a single catalog which is your base data and the BOMs are instances of combinations of that base data. Doing something like this with Odoo would require some pretty heavy customization. 

If anyone knows a simpler way please let us know. If not, I'm open to splitting development costs with some of y'all. I've worked with a few good programmers who should be able to help. It would take a minute to map out the architecture though.

1 Like

ndemarcoUS
Observer
Observer

This is something we're working on internally.

 

It's not recommended to directly alter data in Odoo's models (tables). Instead, Odoo recommends you connect via XML-RPC. How to specifically create the interface depends on what you want the link to do , and whether you want Fusion and/or Odoo to initiate the action.

 

From Fusion / outside Odoo: do you want to create new Odoo 'products' from Fusion designs?

Do you want to link an existing Odoo product to a Fusion design?

How do you plan to handle revisions (Fusion's versioning and milestone system)?

Do you use Odoo product versions?

 

Nick

1 Like

timdrink01
Enthusiast
Enthusiast

Was curious if anyone has any additional success in connecting Fusion 360 and Odoo?  We have both deployed and running independently.  Connecting them in some fashion would be an outstanding upgrade. 

0 Likes

ndemarcoUS
Observer
Observer

The first step is to clearly define how you want them to connect.

0 Likes