What is the use of Tags in Odoo 16 | Odoo 16 Enterprise Edition | How to Use Tags in Odoo 16 – CBMS Odoo ERP

This video is about on how to use tags in odoo16. Tags are fantastic identifiers that may be used in your various sales processes for rapid search, sorting, and future reference thanks to the Odoo platform’s Tags option. #odoo16enterprise #odootutorials #odoo16 Connect With Us: ——– ➡️Website: ➡️Email: info@cybrosys.com ➡️Twitter: ➡️LinkedIn: ➡️Facebook: ➡️Instagram: ➡️Pinterest: #Tags #Odoo […]

How to use unlink method() | Odoo External API | Odoo XMLRPC – CBMS Odoo ERP

Records can be deleted in bulk by providing their ids to unlink(). #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, {}) print(“uid = “,uid) models = xmlrpc.client.ServerProxy(‘{}/xmlrpc/2/object’.format(url)) delete_rec = models.execute_kw(db, uid, password, ‘res.partner’, […]