Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
1 Balas
190 Tampilan

We have company ecommerce website that runs on the SilverStripe platform and would like to connect Odoo to it as the CRM. Ideally this would pull all of the customer and product information into Odoo to track all of the communications. Longterm, the entire sales process would flow through Odoo. Any suggestions are appreciated.


Thanks!

Avatar
Buang
Jawaban Terbai

To connect Odoo with SilverStripe, you’ll need to build a custom integration using APIs, as there’s no official connector available.

Steps:

  1. Use Odoo REST API or XML-RPC
    • Odoo exposes data via XML-RPC and JSON-RPC endpoints.
    • You can fetch or send data (e.g., products, users, orders) from/to Odoo.
  2. Use SilverStripe's REST client or Guzzle
    • SilverStripe (built in PHP) can use libraries like Guzzle to make HTTP requests to Odoo's API.
  3. Authentication
    • Authenticate using Odoo's common endpoint to get a session.
    • Then use object endpoint for CRUD operations.
  4. Example Use Cases
    • Sync products or users between Odoo and SilverStripe
    • Push online form submissions into Odoo (e.g., as leads or contacts)

If you don’t want to build from scratch, consider using middleware like Zapier, Make (Integromat), or a custom Node.js/PHP bridge to simplify the process.

At Wan Buffer Services, we often help startups and enterprises go through this process to avoid common mistakes and get the best ERP fit — especially with solutions like Odoo.

Avatar
Buang