init name mixin

This commit is contained in:
Ivan x360
2023-09-11 04:35:44 +08:00
parent 9785348829
commit 48ce4105fd
23 changed files with 552 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
# -*- coding: utf-8 -*-
from odoo import api, models, fields, _
from odoo.exceptions import UserError, ValidationError
class ResPartner(models.Model):
_name = 'res.partner'
_inherit = ['res.partner', 'mixin.name.en']