I need to make a module to modify the data that is sent to dhl, then I need to inherit from the class:
class DHLProvider():
It is not a normal and ordinary model, so the way I did to inherit from it is by inheriting the class, but I cannot find the path of the module which is located in the enterprise folder
This is what I have tried:
from odoo.enterprise.delivery_dhl.dhl_request import DHLProvider
from odoo.addons.enterprise.delivery_dhl.dhl_request import DHLProvider
from odoo.delivery_dhl.dhl_request import DHLProvider
from enterprise.delivery_dhl.dhl_request import DHLProvider
from delivery_dhl.dhl_request import DHLProvider
class CustomDHLProvider(DHLProvider):
But I couldn't find it.