From 3df675a6ec324cce7a0235ccfa265e4f11cf2387 Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 28 May 2024 09:34:20 +0700 Subject: initial commit --- fixco_custom/models/__init__.py | 1 + fixco_custom/models/res_partner.py | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 fixco_custom/models/__init__.py create mode 100644 fixco_custom/models/res_partner.py (limited to 'fixco_custom/models') diff --git a/fixco_custom/models/__init__.py b/fixco_custom/models/__init__.py new file mode 100644 index 0000000..4c58886 --- /dev/null +++ b/fixco_custom/models/__init__.py @@ -0,0 +1 @@ +from . import res_partner \ No newline at end of file diff --git a/fixco_custom/models/res_partner.py b/fixco_custom/models/res_partner.py new file mode 100644 index 0000000..112e7f0 --- /dev/null +++ b/fixco_custom/models/res_partner.py @@ -0,0 +1,7 @@ +from odoo import models, fields, api + + +class Partner(models.Model): + _inherit = 'res.partner' + + test_new_fields = fields.Char(string='Test New Fields') \ No newline at end of file -- cgit v1.2.3