The osv.osv provides a get_xml_id method to find the XML Id for the provided Database Id. What is the best way to do the opposite?

Knowing the XML Id (it was defined in the data loading file), how can I get the corresponding Database Id, so that I can refer to it in tour Python code?

link|improve this question

50% accept rate
feedback

1 Answer

up vote 2 down vote accepted

The ir_model_data object has a _get_id() method that does what you're looking for. You can see it in use in the res_users._get_admin_id() method:

def _get_admin_id(self, cr):
    if self.__admin_ids.get(cr.dbname) is None:
        ir_model_data_obj = self.pool.get('ir.model.data')
        mdid = ir_model_data_obj._get_id(cr, 1, 'base', 'user_root')
        self.__admin_ids[cr.dbname] = ir_model_data_obj.read(cr, 1, [mdid], ['res_id'])[0]['res_id']
    return self.__admin_ids[cr.dbname]
link|improve this answer
Thanks. Managed to get a single line solution working: self.pool.get('ir.model.data').get_object(cr, uid, 'hr_timesheet', 'analytic_journal').id – DReispt Jan 12 at 12:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.