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 bd998ec commit afbc26fCopy full SHA for afbc26f
estate/__manifest__.py
@@ -1,6 +1,6 @@
1
-{ 'name': 'Real Estate',
2
- 'depends': ['base'],
3
- 'application': True,
4
- 'author': 'leker',
5
- 'license': 'LGPL-3'
+{'name': 'Real Estate',
+'depends': ['base'],
+'application': True,
+'author': 'leker',
+'license': 'LGPL-3',
6
}
estate/models/__init__.py
@@ -0,0 +1 @@
+from . import estate_property
estate/models/estate_property.py
@@ -0,0 +1,5 @@
+from odoo import models
+
+class Property(models.Model):
+ _name = "estate.property"
0 commit comments