|
@ -1,10 +1,11 @@ |
|
|
# Copyright 2018 Akretion - Benoît Guillot |
|
|
# Copyright 2018 Akretion - Benoît Guillot |
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
|
|
|
|
|
|
|
|
from odoo import fields, models, api, exceptions, _ |
|
|
|
|
|
import hashlib |
|
|
import hashlib |
|
|
from collections import OrderedDict |
|
|
from collections import OrderedDict |
|
|
|
|
|
|
|
|
|
|
|
from odoo import _, exceptions, fields, models |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ResPartner(models.Model): |
|
|
class ResPartner(models.Model): |
|
|
_inherit = "res.partner" |
|
|
_inherit = "res.partner" |
|
|