Odoo 14 Webinar | Odoo 14 Members and Subscriptions Module – CBMS Odoo ERP

The Webinar will cover the Members and Subscriptions modules in Odoo 14 and create a strong knowledge base for attendees. The demonstration of the key app will provide participants an in-depth overview. #odoowebinar #odoo14webinar #odooerp #odoo #odoo14 Video Contents 1. Introduction 2. Members a. Overview b. How to Create membership Products in Odoo 14 c. […]

How To Make a Field read-only in Odoo? | Odoo development | How to create field read-only in Odoo 14 – CBMS Odoo ERP

In some cases,we need to make fields of a model read-only with no need to edit in a particular condition.In odoo we can define each field for that condition. In this video it discusses on how to make a field read-only. #odoocustommodule #odootutorial #odoodevelopment #odoo #odoo14 #odootechnical #odoo14technical #Field #readonly #Odoo #Odoo #development #create #field […]

How to create snippet options in Odoo Theme | Building a Theme | Odoo 14 Website Builder – CBMS Odoo ERP

Odoo provides a Website Builder feature to build our own custom website meeting your specific business requirements. However, to this, one can also easily add the snippets by drag and drop option making the odoo application all more user-friendly and adaptive. #odoothemes #odoowebsitebuilder #odoo14themes #odoo #odoo14 #odootechnical #odoo14technical Based on our business scenario we may […]

How to Create & Share Promotional Codes in E-commerce Odoo 14? – CBMS Odoo ERP

Promotional programs can be used as a marketing tool where you can target the specific audience and can implement the loyalty program. This video explains how these promotional programs are created and learn how to encourage potential customers to use promo codes on your eCommerce and increase your sales. #odoo #odoo14 #odoowebsite #Create #Share #Promotional […]

How to update records in Odoo 14 | Using External API | Odoo XMLRPC – CBMS Odoo ERP

Records can be updated using write(), it takes a list of records to update and mapping of updated fields to values similar to create(). #odooexternalapi #xmlrpc #odooxmlrpc 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, password, {}) […]

How to do Logging in Odoo 14 Using External API | Logging in Odoo 14 | Odoo XMLRPC – CBMS Odoo ERP

Odoo requires users of the API to be authenticated before they can query most data. The xmlrpc/2/common endpoint provides meta-calls that don’t require authentication, such as the authentication itself or fetching version information. To verify if the connection information is correct before trying to authenticate, the simplest call is to ask for the server’s version. […]