Skip to content

Commit c4ca466

Browse files
authored
Merge pull request OCA#649 from OCA/12.0
Syncing from upstream OCA/server-tools (12.0)
2 parents d442477 + 08ca424 commit c4ca466

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

excel_import_export/__manifest__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{
55
'name': 'Excel Import/Export/Report',
66
'summary': 'Base module for developing Excel import/export/report',
7-
'version': '12.0.1.0.4',
7+
'version': '12.0.1.0.5',
88
'author': 'Ecosoft,Odoo Community Association (OCA)',
99
'license': 'AGPL-3',
1010
'website': 'https://github.com/OCA/server-tools/',

excel_import_export/models/xlsx_import.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def get_external_id(self, record):
4646
xml_id = record.get_external_id()
4747
if not xml_id or (record.id in xml_id and xml_id[record.id] == ''):
4848
ModelData.create({'name': '%s_%s' % (record._table, record.id),
49-
'module': 'excel_import_export',
49+
'module': '__excel_import_export__',
5050
'model': record._name,
5151
'res_id': record.id, })
5252
xml_id = record.get_external_id()

0 commit comments

Comments
 (0)