To filter rules and domains in Odoo Studio, you can follow these steps: 1. Access the Object’s Form View: Go to Studio — Apps. Find and click on the object you want to modify. Select Form View from the available views. 2. Locate the Field or Field Group: Scroll through the form view until you […]
Having appropriate product images in Odoo is useful for a number of reasons. However, if a lot of products need images, assigning them can become incredibly time-consuming. Fortunately, by configuring the Google Custom Search API within an Odoo database, finding product images for products (based on their barcode) is extremely efficient. Configuration In order to utilize Google Custom […]
Split Delivery Orders in Odoo 18 is a feature that allows you to divide a single delivery order into multiple smaller orders. This can be useful in various scenarios, such as: Multiple Shipping Addresses: If a customer has ordered products that need to be shipped to different locations, you can split the delivery order to […]
To access a JSON view in Odoo, use the ir.ui.view model and its methods. Here are the main ways to access a JSON view: 1. By ID: Python view_id = 123 # Replace with the actual ID of your JSON view view = ir.ui.view.browse(view_id) json_data = view.arch 2. By name: Python view_name = ‘my_json_view’ view = […]
The top bar in Odoo 18 Projects is a crucial component that provides quick access to various functionalities within the project management module. It is designed to enhance user experience and streamline project navigation. Key Elements of the Top Bar: 1. Project Name: The project name is displayed prominently at the top left corner, indicating […]
Odoo 18 POS PWA Odoo 18 has introduced significant improvements to its POS system, including the development of a PWA. This means that your POS can function even without an active internet connection, providing uninterrupted service. Additionally, customers can install the POS app on their devices, offering a more seamless and native-like experience. Key benefits […]
To generate leads from Odoo 18 events, you can leverage the event module’s built-in functionality and potentially integrate with other modules like CRM or marketing automation. Here’s a step-by-step guide: 1. Set up Events: – Create events with relevant details like name, start/end dates, location, and description. – Assign responsible users and categories for better […]
Odoo Accounting have a built-in feature for group payments. Existing Features: Multiple Invoices: Create multiple invoices for the same customer or vendor. Select the invoice/bill and goto the action button and choose pay. When you try to register payment, enable the feature Group payment Use the “Group payment” feature to merge them into a single invoice. […]
Odoo offers robust tools to manage sales commissions effectively. It provides flexibility to configure various commission structures based on different criteria like sales amount, product category, sales person, and more. Key Features and Configuration Commission Types: – Fixed Percentage: A set percentage of the total sales amount. – Product-based: Commission based on specific product margins […]
An authorized signatory is an individual legally empowered to sign documents on behalf of a company or organization. In the context of an invoice, this person is typically responsible for approving the invoice’s contents and authorizing its issuance. Importance of an Authorized Signatory Legal Validity: The signature of an authorized signatory lends legal validity to […]