odoo-woocommerce-bridge

Solid

Sync Odoo with WooCommerce: products, inventory, orders, and customers via WooCommerce REST API and Odoo external API.

AI & Automation 39,350 stars 6386 forks Updated today MIT

Install

View on GitHub

Quality Score: 96/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Odoo ↔ WooCommerce Bridge ## Overview This skill guides you through building a reliable sync bridge between Odoo (the back-office ERP) and WooCommerce (the WordPress online store). It covers product catalog sync, real-time inventory updates, order import, and customer record management. ## When to Use This Skill - Running a WooCommerce store with Odoo for inventory and fulfillment. - Automatically pulling WooCommerce orders into Odoo as sale orders. - Keeping WooCommerce product stock in sync with Odoo's warehouse. - Mapping WooCommerce order statuses to Odoo delivery states. ## How It Works 1. **Activate**: Mention `@odoo-woocommerce-bridge` and describe your sync requirements. 2. **Design**: Get the field mapping table between WooCommerce and Odoo objects. 3. **Build**: Receive Python integration scripts using the WooCommerce REST API. ## Field Mapping: WooCommerce → Odoo | WooCommerce | Odoo | |---|---| | `products` | `product.template` + `product.product` | | `orders` | `sale.order` + `sale.order.line` | | `customers` | `res.partner` | | `stock_quantity` | `stock.quant` | | `sku` | `product.product.default_code` | | `order status: processing` | Sale Order: `sale` (confirmed) | | `order status: completed` | Delivery: `done` | ## Examples ### Example 1: Pull WooCommerce Orders into Odoo (Python) ```python from woocommerce import API import xmlrpc.client import os # WooCommerce client wcapi = API( url=os.getenv("WC_URL", "https://mystore.com"), consumer...

Details

Author
sickn33
Repository
sickn33/antigravity-awesome-skills
Created
4 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category