Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
d8e656e
[ADD] estate: add real estate advertisement module structure
risri-odoo Jun 4, 2026
5562495
[ADD] estate: add EstateProperty model with basic fields
risri-odoo Jun 8, 2026
b09ba24
[IMP] estate: add missing string attribute to garden_area field
risri-odoo Jun 8, 2026
77f6693
[IMP] estate: fixed files based on codingguidelines
risri-odoo Jun 8, 2026
2b2fe10
[IMP] estate: fixed files based on codingguidelines
risri-odoo Jun 8, 2026
55c355b
[ADD] estate: add access rights for estate.property model
risri-odoo Jun 8, 2026
9440c91
[IMP] estate: Fixed the issue inside estate/manifest.py
risri-odoo Jun 8, 2026
2d7d1d3
[ADD] estate: add views, menus, feild attributes and reserved fields
risri-odoo Jun 9, 2026
8f4806a
[IMP] estate: edited estate_property.py for check-style issue
risri-odoo Jun 10, 2026
9d071e5
[ADD] estate: added list, form, search and domain view
risri-odoo Jun 15, 2026
7ea10bd
[IMP] estate: added list, form, search and domain view and check-styl…
risri-odoo Jun 15, 2026
b94b24f
[ADD] estate: add property type, tags and many2one fields
risri-odoo Jun 22, 2026
2306fe7
[IMP] estate: fixed check style issues and removed authore and licens…
risri-odoo Jun 22, 2026
4c15657
[IMP] estate: fixed check style issues and removed authore and licens…
risri-odoo Jun 22, 2026
4a471f6
[ADD] estate: added sample data of properties, property tags, propert…
risri-odoo Jun 22, 2026
7c50ad8
[ADD] estate: added sample data of properties, property tags, propert…
risri-odoo Jun 22, 2026
0f8cd5d
[ADD] estate: added sample data of properties, property tags, propert…
risri-odoo Jun 22, 2026
f2b988c
[IMP] estate: added sample data of properties, property tags, propert…
risri-odoo Jun 22, 2026
924a839
[IMP] estate: improved some of the check-style issues pointed by our …
risri-odoo Jun 23, 2026
b87c883
[IMP] estate: improved some of the check-style issues pointed by our …
risri-odoo Jun 23, 2026
635c2b2
[ADD] estate: added one2many feild of chapter 7.3
risri-odoo Jun 24, 2026
566586c
[IMP] estate: correction of check-style of one2many feild and propert…
risri-odoo Jun 24, 2026
1f4df3a
[IMP] estate: correction of check-style of one2many feild and propert…
risri-odoo Jun 24, 2026
b9eed3e
[ADD] estate: Complete Chapter 8 -added Computed fields and Onchange …
risri-odoo Jun 26, 2026
ae99223
[IMP] estate: Complete Chapter 8 -added Computed fields and Onchange …
risri-odoo Jun 26, 2026
cf605ff
[IMP] estate: Complete Chapter 8 -added Computed fields and Onchange …
risri-odoo Jun 26, 2026
0abb528
[IMP] estate: complete chapter 8 and corrections from check-style
risri-odoo Jul 1, 2026
7b5d36e
[IMP] estate: complete chapter 8 and corrections from check-style
risri-odoo Jul 1, 2026
7e644b8
[IMP] estate: complete chapter 8 and code review task push
risri-odoo Jul 1, 2026
fea1155
[IMP] estate: complete chapter 8 and code review task push and chec…
risri-odoo Jul 1, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
[ADD] estate: add real estate advertisement module structure
This module is created as part of the Odoo Server Framework 101
training. The estate module provides a foundation for building
a real estate advertisement application, which is not covered
by any existing standard Odoo module.
  • Loading branch information
risri-odoo committed Jun 4, 2026
commit d8e656e5ac99891cc998c3289b38c3aae2a5d83e
Empty file added estate/__init__.py
Empty file.
5 changes: 5 additions & 0 deletions estate/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
'name': 'Real Estate',
'depends': ['base'],

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's the purpose of depends?

'application': True,
}