Skip to content

Commit a3755e1

Browse files
committed
[ADD] estate: initial module structure and estate.property model
- Added `__manifest__.py` with module metadata. - Created the `models` directory and added `__init__.py` to register models. - Implemented the basic `estate.property` model with fields such as: - name, description, postcode - expected_price, selling_price - bedrooms, living_area, facades, garage - garden, garden_area, garden_orientation, date_availability This serves as the foundational structure for the Real Estate application as part of the Odoo tutorials.
1 parent 2166962 commit a3755e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

estate/models/estate_property.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class EstateProperty(models.Model):
1212
selling_price = fields.Float()
1313
bedrooms = fields.Integer()
1414
living_area = fields.Integer()
15-
facades = fields.Integer()
15+
facades = fields.Integer()
1616
garage = fields.Boolean()
1717
garden = fields.Boolean()
1818
garden_area = fields.Integer()

0 commit comments

Comments
 (0)