Zum Inhalt springen
Menü
Sie müssen registriert sein, um mit der Community zu interagieren.
Diese Frage wurde gekennzeichnet
1 Antworten
7822 Ansichten

Hi,


I'm creating a custom data export module for products, and for this I want to export the external ID as well. However, this is not available as a default field. How can I access this?

I currently get my products something like:

self.env['product.template'].with_context(lang=active_language.code).search(
[('id', 'in', rec_list)], order='default_code')

External ID is the same one you get when you export a product and select "External ID".


Thanks!

Avatar
Verwerfen
Autor Beste Antwort

I've got the solution myself already.

When you have retrieved a record, you can call 'get_metadata()'. This will return a list of all metadata you can see when going to "View Metadata" when in developer mode. Then you can say "get('xmlid')" to retrieve the xmlid.

So something like this would work:

products = self.env['product.template'].search([])
for product in products:
    product.get_metadata()[0].get('xmlid')



Avatar
Verwerfen
Verknüpfte Beiträge Antworten Ansichten Aktivität
1
Dez. 21
3885
1
Sept. 15
6873
1
Juli 23
2359
1
Aug. 25
138
2
Juni 25
1677