Chimkins IT logo
Chimkins IT

Guide

Install & activate the Chimkins helper module

Use this checklist whenever you deploy a fresh Odoo environment or move to a new server. It keeps the WooCommerce integration helpers in lockstep with your ERP.

  1. SSH into your Odoo server, change into your custom-addons path (example /opt/odoo-16/custom-addons/), and clone/pull the helper module directly on the server so it is always current.

    ssh odoo@your-server "cd /opt/odoo-16/custom-addons && (git clone https://github.com/beltoftandersen/chimkins-helper-module.git helper_module 2>/dev/null || (cd helper_module && git pull --ff-only))"
  2. Ensure the directory uses the same owner/group as Odoo and has read permissions. If your user/group is 'odoo' you can do it like this, but this muy vary.

    sudo chown -R odoo:odoo /opt/odoo-16/custom-addons/helper_module && sudo chmod -R 755 /opt/odoo-16/custom-addons/helper_module
  3. Update 'addons_path' in odoo.conf so the helper lives in your load path (example: addons_path = /opt/odoo-16/custom-addons,/opt/odoo-16/odoo/addons). The destination of the odoo.conf file vary depending on your installation

  4. Restart Odoo so it rescans addons as soon as the helper is in place.

    sudo systemctl restart odoo
  5. In Odoo, confirm the Inventory and Sales applications are installed (install them from Apps if they are missing) because the helper relies on those models.

  6. Enable developer mode (Settings → Activate Developer Mode), open Apps, click Update Apps List to refresh modules. Now it's important to clear the Apps filter in the search field. Search for helper_module and activate it.

  7. Run a quick sync/test from Chimkins to confirm the helper module works with WooCommerce and Odoo objects.

Odoo Woocommerce Connector | Chimkins IT