odoo/tutorials#541
Created by Raghav Agiwal (agir)
Blocked
- Merge method
- Review
-
CI
- ci/style: (runtime 5s)
- ci/tutorial: (runtime 91s)
- label
- odoo-dev:18.0-training-agir
- head
- da7c17f93b0aff5e66bcb63811c8f7cddb6c6952
| odoo/tutorials | |
|---|---|
| 18.0 | #541 missing r+ |
| 19.0 | |
| master |
[ADD] estate: Created first E-State Module
Initialized the estate module with a well-structured base:
- Created sub-folders (Models, Views, Security) to improve readability.
- Added
__init__.pyand__manifest__.pyto ensure proper module loading and structure. - Defined the Property model with essential fields such as name, description, price, state, and expected selling price.
- Implemented user role management to restrict access based on permissions.
- Added action buttons to manage property state transitions efficiently.
Implemented search, form, and list views for test.model:
- Designed a form view for managing property details with an intuitive interface.
- Developed a search view with quick search fields and relevant filters for better usability.
- Created a list view for improved record visualization .
- Added grouping by postcode in the search view for structured filtering.
- Replaced state-based filters with alternative field-based filters to ensure proper functionality.
These enhancements improve usability, filtering options, and data management, laying the foundation for an efficient real estate property management system.