Odoo Studio lets you add several different field types, including the following relational fields: Related fields: This is normally used to add more information from another related Model (database table). It has to be information from a Model that is already linked. many2one: This will create a new database relationship (in this example it’s between […]
The Pipeline Status Bar is simple to implement in Odoo and can be used as part of the workflow. Start by activating Odoo Studio for a Form View Then click on Add a pipeline status bar and add statuses according to your requirement and confirm Odoo Studio also makes it easy to add filters to […]
Views are defined how records should be displayed to end-users. They are specified in XML which means that they can be edited independently from the models that they represent. They are flexible and allow a high level of customization of the screens that they control. There exist various types of views. Each of them represents […]
Deferred expenses in #odoo13, are payments made in advance by our company for our service products for insurance or home rent, etc . yet to render. Such payments are assets for the company that receives them since it still owes its customers these products or services. The company cannot report them on the current Profit […]
Odoo platform offers the option to manage orders in the PoS module where the users can reprint receipts, refund, and exchange orders. This video explains how to exchange orders and refund in Odoo 14 POS #odoo #odoo14 #odoopos #Exchange #Orders #refund #Odoo #POS
It’s easy to create a new Menu by using Odoo Studio. Start by clicking on the Odoo Studio icon in the top right-hand corner. Now click on “Edit Menu” The “Edit Menu” menu dialog is displayed. Scroll to the bottom and click on “New Menu” The “Create a new Menu” dialog is displayed: Enter a […]
In this video, you will learn about how you can install a custom addon in odoo 14. #odoo #odoo14 #odooaddon #Install #Custom #Addon #Odoo #Install #Custom #Application #Odoo
The cash basis taxes are due when the payment has been done and not at the validation of the invoice (as is the case with standard taxes). Reporting your income and expenses to the administration based on the cash basis method is legal in some countries and under some conditions. #odoo #odoo14 #odootaxes #Manage #Cash […]
This video describes how you can import and update Product Data in Odoo14. You can import Product data using either Excel (.xlsx) or CSV (.csv) formats. #odoo #odooproducts #odoo14 First Go to Sales-Products-Products Open the list view and from the view select a few records and come under action- click Export. Now you can see […]
#odooexternalapi How to list records using Odoo external API using XML-RPC, this short video details listing records in odoo. Records can be listed and filtered via search(). external-api code: url = ” db = ‘test_local_enterprise_db’ username = ’14’ password = ’14’ import xmlrpc.client common = xmlrpc.client.ServerProxy(‘{}/xmlrpc/2/common’.format(url)) version = common.version() print(“version”, version) uid = common.authenticate(db, username, […]