From 4414569b59fc91b7f4286748852b77e986697326 Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Wed, 29 May 2024 15:20:48 +0700 Subject: add field shipping method --- fixco_custom/models/partner.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 fixco_custom/models/partner.py (limited to 'fixco_custom/models/partner.py') diff --git a/fixco_custom/models/partner.py b/fixco_custom/models/partner.py new file mode 100644 index 0000000..4f66b2b --- /dev/null +++ b/fixco_custom/models/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') -- cgit v1.2.3