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 automatically update currency rates in odoo? – CBMS Odoo ERP

How to automatically update currency exchange rates in odoo Odoo provides an option for automatic update of the currency exchange rate.When a customer and dealer are from different countries, there comes the need of currency exchange rate. Let us check how to enable it: Go to- Accounting – Configuration- Settings- Enable multi-currency and automatic currency […]