24 lines
739 B
Python
24 lines
739 B
Python
from odoo import api, models
|
|
|
|
from ... import upgrade_log
|
|
from ..odoo_patch import OdooPatch
|
|
|
|
|
|
class BaseModelPatch(OdooPatch):
|
|
target = models.BaseModel
|
|
method_names = ["_convert_records"]
|
|
|
|
@api.model
|
|
def _convert_records(self, records, log=lambda a: None):
|
|
"""Log data ids that are imported with `load`"""
|
|
current_module = self.env.context["module"]
|
|
for res in BaseModelPatch._convert_records._original_method(
|
|
self, records, log=log
|
|
):
|
|
_id, xid, _record, _info = res
|
|
if xid:
|
|
xid = xid if "." in xid else "{}.{}".format(current_module, xid)
|
|
upgrade_log.log_xml_id(self.env.cr, current_module, xid)
|
|
|
|
yield res
|