We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ebfd41 commit 3888b19Copy full SHA for 3888b19
3 files changed
res_company_search_view/__init__.py
@@ -0,0 +1 @@
1
+from . import models
res_company_search_view/models/__init__.py
+from . import res_company
res_company_search_view/models/res_company.py
@@ -0,0 +1,12 @@
+from odoo import fields, models
2
+
3
4
+class ResCompany(models.Model):
5
+ _inherit = "res.company"
6
7
+ street = fields.Char(store=True)
8
+ street2 = fields.Char(store=True)
9
+ zip = fields.Char(store=True)
10
+ city = fields.Char(store=True)
11
+ state_id = fields.Many2one(store=True)
12
+ country_id = fields.Many2one(store=True)
0 commit comments