If you sell products on your website that are delivered directly from the vendor to the customer and already have a stable list of vendors, you can automate the entire process in Odoo. This allows you to oversee operations without manual intervention.

Key Processes
  1. A customer places an order on the website.
  2. Payment is received, and the order is confirmed.
  3. An invoice is auto-generated and sent to the customer.
  4. A purchase order is created, auto-confirmed, and sent to the vendor.
Required Settings for Dropshipping eShop
  1. Enable the Dropshipping option: Inventory > Configuration > Settings.
  2. Set the Dropship​ route for each product or at the category level to avoid manual assignment for each item.
  3. Assign vendors to products with accurate pricing.
  4. Ensure products are configured for sales and purchase and published on the website.
  5. Set up at least one shipping method to be available on the website.
  6. Configure at least one payment method that allows full payment processing.
Automation Settings for a Fully Autonomous Process
  1. Auto-generate invoices: Enable the Automatic Invoice​ option under Website > Configuration > Settings.
  2. Auto-create purchase orders: Ensure the Dropship​ Route is assigned to each product.
  3. Auto-confirm purchase orders: Set up an automation rule to update purchase orders with the Dropship delivery type from RFQ to Purchase Order when the total is between $10 and $10,000. The rule should also trigger an email notification to the vendor. 
    It is assumed that there are no products available for purchase that cost less than $10. 
    Additionally, for orders exceeding a certain amount, in this example, $10K, an automation rule can be set up to create a task for the manager to review the order.
Further Automation Possibilities

The next stage of automation can include:

  • Vendor Integration: Connecting with the vendor’s system via API or webhook to track order fulfillment and receive shipment updates.
  • Automated Picking Completion: Setting up rules to automatically mark the order as delivered once shipment confirmation is received.
  • Exception Handling: Setting up automation rules to notify you if there are unprocessed sales or purchase orders, ensuring all orders are processed on time.

With these configurations, Odoo can automate order processing, minimizing manual tasks and enhancing operational efficiency, allowing your dropshipping business to run seamlessly on autopilot.

eCommerce Functional Odoo 18
Posts

Automation plays a crucial role in optimizing business processes. It reduces manual effort, minimizes errors, and allows employees to focus on strategic tasks instead of repetitive ones.

Odoo provides powerful automation tools that let you streamline workflows, often without writing a single line of code. With a basic understanding of the system's structure, you can start creating effective automations.

Types of Automation in Odoo

There are two primary types of automation in Odoo:

  1. Automation Rules
    These are trigger-based rules. They run when a specific event happens (e.g., when a sales order is confirmed, a record’s status is changed, etc.).

    They can be configured entirely through the user interface without any coding, making them perfect for non-technical users.
  2. Scheduled Actions
    These are time-based actions that run at predefined intervals (daily, weekly, monthly, etc.).

    Scheduled actions typically execute Python code and are usually defined in the codebase.

    They are used for recurring tasks like fetching incoming emails, cleaning up data, or sending periodic reports.

In this post, we'll focus on Automation Rules.

How to Configure Automation Rules

To access automation options, activate Developer Mode and navigate to: Settings > Technical > Automation

If the Automation Rules​ menu is not visible, check whether the module is installed. You can find and install it via the Apps menu by searching for Automation Rules.

Step 1: Create a New Automation Rule

To create new automation rules, the following steps are required:

  1. Go to Settings > Technical > Automation > Automation Rules
  2. Click New and add a name for your rule.
  3. Select the model the rule applies to, e.g., Sales Order, Purchase Order, etc.

Tip: If you're unsure of the model name:

  • Open a record from the model you want to automate (e.g., Invoices).
  • Click on the Developer Tools​ icon at the top right (Developer Mode enabled).
  • Under the Interface​ section, you’ll see the model name (e.g., account.move for Invoices).
Step 2: Define Rule Conditions

Once you’ve selected the model, a few fields will appear that need configuration:

  • Trigger
    Define when the rule should run (e.g., when a sales order’s status changes to "Sales Order").

  • Before Update Domain
    Specify conditions based on the record's values before the trigger occurs.

    For example, consider only orders that had the state "Quotation" before changing to "Sales Order," and exclude those that moved from "Quotation Sent" to "Sales Order."

    This option is not available when the trigger is Time Condition​.

  • Apply On
    Specify conditions applied after the trigger occurs. For example, filter records where the state is "Sales Order."

If the trigger doesn’t influence the value checked in the condition, it makes no difference whether you place the condition in Before Update Domain​ or Apply On​.
For instance, if the Sales Team is "Website" both before and after the status change, it can be added in either condition group, the result will be the same.

Step 3: Set Up Actions

The next step is to define what the system should do when the conditions are met. This is configured under the Actions To Do​ tab. It is possible to configure multiple actions for a single rule. Available options include:

  • Update Record
  • Create Activity
  • Send Email
  • Send SMS
  • Add/Remove Followers
  • Create Records
  • Execute Code
  • Send Webhook Notification
  • Multi Actions

Depending on the action selected, different configuration fields will appear for each of them.

Practical Use Case

Scenario

An e-commerce company has an internal rule that all website orders with a value over $10,000 must be reviewed by the sales manager. Orders previously sent as quotations to customers don’t require review.

To support this rule, the system needs to automatically create an activity for the sales manager listing the necessary tasks for review.

Automation Rule Configuration

The configuration for the required rules that support the company's requirements is shown in the images below.

Automation Rule

Create Activity Action

Result

Every time a qualifying sales order is confirmed, an activity will be automatically created for the assigned sales manager to review.

Final Thoughts

Odoo’s built-in automation features offer a practical and accessible solution without the need for advanced technical knowledge.

By setting clear conditions and actions, you can significantly reduce manual work, improve accuracy, and ensure process consistency.

Automation Functional Odoo 18
Posts

In Odoo, you can attach multiple documents to a product and configure their visibility based on different settings, making them accessible across various applications.

The Documents view is available via the Document smart button on the product page. The visibility of each document can be adjusted using the following settings:

Company:

  • None selected: The document is visible to all companies.
  • Specific company: The document is available only for the selected company.

MRP Visibility:

  • Hidden: The document is invisible in the BoM view. It is the default value unless uploaded from the BoM view (Components section).
  • Bill of Materials: The document is available in the BoM when the product is used as a component.

Sale Visibility:

  • Hidden: Not available in sales.
  • On Quote: Included in the quotation.
  • On Confirmed Order: Available once the order is confirmed.
  • Inside Quote PDF: Included within the quote PDF when selected in the Quote Builder tab.

Publish on Website:

  • When enabled, the document becomes available for download on the website. This option is available only when documents are uploaded in the Product Template
Documents accessibility when using variants

If you use product variants, document availability depends on where it was initially uploaded:

  • Specific variant: The document is accessible only for that variant.
  • Product template: The document is accessible for all variants.
Final Thoughts

Document visibility and accessibility depend on both the upload location and the configured visibility settings. To ensure proper availability, upload the document to the appropriate location, such as:

  • Product Template: For general documents that should be accessible across all related variants.
  • Product Variant: For variant-specific documents that should be available only for a specific product variant.
  • BoM Components: For documents that should be accessible only in the Bill of Materials section.
Functional Odoo 18
Posts

In Odoo’s Manufacturing module, Work Order (WO) statuses within a Manufacturing Order (MO) can sometimes be unexpected.

The statuses primarily depend on component availability and the dependencies between Work Orders. The two key settings that influence them are:

  • Manufacturing Readiness
  • Operation Dependencies

Manufacturing Readiness

It primarily affects the Manufacturing Order Readiness Status in the Manufacturing Order. The two available options are:

  • When all components are available: Manufacturing Order is ready when all components are in stock.
  • When components for 1st operation are available: The Manufacturing Order is ready when the components for the first operation are available.

Odoo uses the MO Readiness status value to determine Work Order statuses. As a result, a Work Order can be marked as "Ready" even if not all components are available, only because the first required component is in stock.

Operation Dependencies

Operation Dependencies is the second setting that affects Work Order statuses. Depending on its value, Odoo applies different logic for dependencies between Work Orders:

  • Disabled: Dependencies between Work Orders are determined by their sorting order.
  • Enabled: The dependencies set on the operations are enforced.

What Does This Mean in Practice?

Let’s review the four possible cases based on the Manufacturing Readiness and Operation Dependencies settings.

In all cases, we start from a scenario where components are initially unavailable. Therefore, the first status represents the Work Order’s status before any components become available.

Case 1: Manufacturing Readiness is set to "When All Components Are Available," and Operation Dependency is not enabled.

In this case, the system will enforce operation dependency based on the order of operations. The first Work Order will have the status "Waiting for Components," while the other Work Orders will be "Waiting for Another WO."

Once all components are available, the first WO will change to "Ready," while the others will remain in "Waiting for Another WO."

The statuses will update sequentially to "Ready" as each preceding WO is completed.

Case 2: Manufacturing Readiness is set to "When All Components Are Available," and Operation Dependency is enabled.

In this case, all Work Orders that do not depend on another order will have the status "Waiting for Components," while dependent orders will have the status "Waiting for Another WO."

The status of independent WOs will change to "Ready" once all components are available. However, dependent WOs will remain in "Waiting for Another WO" until the Work Order they depend on is completed.

Case 3: Manufacturing Readiness is set to "When Components for the 1st Operation Are Available," and Operation Dependency is not enabled.

In this case, the first WO will have the status "Waiting for Components," while all other WOs will be in "Waiting for Another Operation."

Once the components for the first operation are available, its status will change to "Ready," while all other WOs will remain "Waiting for Another WO."

When the first WO is completed, the next WO will change to "Ready" even if its components are not available.

In this setup, Odoo does not check if the components for each individual WO are available. Instead, it relies on the Manufacturing Order Readiness Status, which is set to "Ready" once the components for the first WO are available.

Case 4: Manufacturing Readiness is set to "When Components for the 1st Operation Are Available," and Operation Dependency is enabled.

In this case all WOs without dependencies will have the status "Waiting for Components." While WOs with dependencies will have the status "Waiting for Another WO."

Once the components for the first operation are available, the status of independent WOs will change to "Ready", even if some components for certain operations are still missing.

However, WOs that depend on another WO will remain in "Waiting for Another WO" until the dependent operation is completed. Once completed, those WOs will also change to “Ready” or “Waiting for Components,” depending on whether the components for the first unfinished WO are available.

Final Thoughts

When determining Work Order statuses, Odoo does not take actual component availability into account. Instead, it relies on the general Manufacturing Order Readiness Status.

It would be beneficial if Odoo refined this logic in the future by considering component availability at the Work Order level rather than relying solely on the overall Manufacturing Order Readiness Status. This would result in more accurate and reliable Work Order statuses.

Functional Manufacturing Odoo 18
Posts

Setting up appropriate access rights for each user in Odoo is a crucial part of system configuration. However, access management can become challenging, especially when dealing with a large number of users. A module that replicates the company structure through roles can significantly simplify this process.

The User Roles module facilitates structured access management by allowing to define roles that align closely with the company's hierarchy. Each role is assigned specific access groups, ensuring that users with the role can navigate the system efficiently while maintaining access only to the necessary functionalities.

Configuration

Once installed, the module introduces a Roles​ sub-menu under Users & Companies​ in the Settings page. This section provides a list of all created roles. Selecting a role opens its detailed form view, which includes:

  • Role Name
  • Associated Access Groups
  • Users Assigned to the Role
  • Internal Notes

Creating a New Role

To create a new role, click the “New” button, which opens a form view. While the Name field is the only mandatory input, assigning appropriate Access Groups is necessary for the role to be functional. Once configured, the role can be assigned to users.

Roles can be assigned in two ways:

  1. From the User’s Form View: Navigate to the Roles​ tab and select the desired roles. Each assigned role can have a specified validity period with a start and end date.
  2. From the Role’s Form View: Use the Users​ tab to assign multiple users to a role.

Only users with the Administration: Access Rights​ privilege can manage roles.

How the Functionality Works

When a role is assigned to a user, the user automatically inherit all associated access groups. Additional access groups cannot be manually added to users who have assigned roles. This ensures strict adherence to the defined access structure.

If a user has multiple roles, the access group with the highest level of privileges takes precedence. For example, if:

  • Salesperson role includes Inventory: User​ access
  • Inventory Manager role includes Inventory: Administrator​ access

A user assigned both roles will have Inventory: Administrator​ access, as it holds a higher level of access.

To view the active access groups for a user, go to the Access Rights​ tab next to the Roles tab in the user's form view.

Company-Specific Roles

For organizations using multi-company mode, the User Roles by Company extension module can be useful, as it introduces role assignment per company.

The key feature for the module are:

  • Adds a Company field in the Roles tab of the Users view.
  • If no company is specified, the role applies to all companies the user has access to.
  • A Company can be assigned to a Role only if it is in the User’s Allowed Companies list.
  • When multiple companies are selected as active for the user, only roles applicable to all selected companies remain active.

Final Thoughts

By structuring user access management through roles, organizations can efficiently manage permissions across multiple users while maintaining clarity and control over access rights. This approach simplifies administration and ensures a clear overview of user privileges.

The User Roles module is actively maintained by the Odoo Community Association (OCA), with the latest available version being 18.0.1.0.2.


Functional Odoo 18
Modules Review


Odoo’s checkout process includes several predefined options that allow businesses to tailor the process based on their needs. By navigating to the checkout page and clicking the Edit​ button, you will find the following customization options under the Customize​ tab:

  • Extra Step – Adds an extra step in the checkout process, which can be used for different purposes based on your business needs.
  • Suggested Accessories – When enabled, this feature displays related accessories for products in the cart overview. To use this option, at least one product must have suggested accessories configured.
  • Promo Code – Adds a promo code field in the Order Summary, below the Total. This option only makes the field available; you will still need to set up discount codes using Odoo’s pricelist feature.
  • Accept Terms and Conditions – If this option is activated, customers must select the "Accept Terms and Conditions" checkbox before proceeding with payment. The Pay button remains disabled until this requirement is met.
  • Show B2B Fields – Adds Company and VAT fields to the checkout form, making it useful for B2B transactions. If your business serves both B2B and B2C customers, you may prefer to display only the Company field by default and reveal the VAT field when a company name is entered. However, this option is not yet available in Odoo’s settings.

By using these options, you can customize Odoo’s checkout process to better suit your business requirements.

eCommerce Functional Odoo 18
Posts


Creating an extra step in your checkout process may be essential for your business, whether to collect additional customer details, verify specific information, or meet compliance requirements.

Odoo provides the flexibility to add a fully customizable extra step to the checkout process, without requiring any technical expertise. You can enable and configure this feature by following the steps:

  1. Go to Website > Configuration > Shop - Checkout Process​.
  2. Enable the setting Extra Step During Checkout​.
  3. Save the changes and click on Configure Form​ (which appears just below the setting) to customize the form.

In the customizable extra step, you can add any additional fields needed for your process. If a field is already part of the Sales Order model, you can reference it directly. Otherwise, all custom fields will be saved as chatter messages in the order.

This functionality could benefit from a few improvements:

  • If users navigate back and forth during checkout, their form data is not retained, which may result in duplicate entries. For example, if an image upload is required, users may need to upload the same image multiple times, leading to multiple attachments in the order.
  • Finding specific data in the chatter of an order can be challenging, especially when the order has a long chat history. Odoo could enhance this feature by storing custom field data in a “Description” field, similar to how it is done in Tasks.
eCommerce Functional Odoo 18
Posts


If you need to subcontract the production of a product or just part of it, Odoo provides a complete configuration to manage the process efficiently.

Start by enabling Subcontracting​ in Manufacturing > Configuration > Settings > Subcontracting​. Then, create a Bill of Materials (BoM) for your product and set it up with the following:

  1. BoM Type​: Select Subcontracting.
  2. Subcontractors​: Choose the subcontractors responsible for production.
  3. Manufacturing Lead Time​: Set this for accurate production timelines.

The next steps of the configuration are influenced by two main factors:

  1. How components are supplied to the subcontractor.
  2. Where the final product needs to be delivered.

Based on how components are sourced, Odoo supports three subcontracting options:

  • Base Subcontracting: The subcontractor provides the components. In this case, there is no need to list the components in the BoM.
  • Resupply Subcontractor: Components are sent from your warehouse to the subcontractor. This requires the following routes on each of the components:
    • The Buy​ route for component procurement. Additionally, if you want to automate procurement, use MTO​ route or Reordering Rules.
    • The Resupply Subcontractor on Order​ route to send the components to the subcontractor.
  • Dropship to Subcontractor: Components are purchased and shipped directly to the subcontractor. To set this up:
    • Enable Dropshipping​ in Inventory > Configuration > Settings > Logistics​.
    • Apply the Dropship Subcontractor on Order​ route to the components.

The routes set on the final product mainly depend on its delivery location:

  1. If it is received at your warehouse, enable the Buy​ route on it. Additionally, to automate purchase order (PO) creation, apply the MTO​ route or use Reordering Rules, depending on the company's needs.
  2. If it is sent directly to the customer, use the Dropshipping​ route only.

It is very important that both the final product and components (if applicable) have a Vendor with pricing set so that Odoo can generate POs automatically. Also, ensure that the subcontractor added as a Vendor on the final product is set as a subcontractor in the BoM; otherwise, Odoo will initiate only a purchasing flow instead of subcontracting.

Now, with a few steps, you can automate your subcontracting process in Odoo.

Functional Manufacturing Odoo 18
Posts