Skip to content

Commit

Permalink
[ADD] estate: Added new real estate property management module
Browse files Browse the repository at this point in the history
The new module includes:
- Model: estate.property with fields such as name, description, selling_price,
availability_date, bedrooms, state, and active.
- Views: Tree and form views for managing estate properties.
- Security: Access rights defined in ir.model.access.csv.
  • Loading branch information
akya-odoo committed Aug 1, 2024
1 parent f88c0f2 commit bf87bb0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions estate/models/estate_property.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from odoo import models, fields


class EstateProperty(models.Model):
_name = 'estate.property'
_description = 'Real Estate Property'
Expand Down

0 comments on commit bf87bb0

Please sign in to comment.