[ADD] estate: started the server framework,completed the coding guidelines, setup guide, and chapter 1#1265
Draft
abkus-odoo wants to merge 5 commits into
Draft
[ADD] estate: started the server framework,completed the coding guidelines, setup guide, and chapter 1#1265abkus-odoo wants to merge 5 commits into
abkus-odoo wants to merge 5 commits into
Conversation
…n and the chapter 1 of server framework
- Created estate.property model - Added all required basic fields - Configured required field attributes - Verified PostgreSQL schema updates using Odoo ORM
- Created ir.model.access.csv for estate.property model - Added read, write, create and delete permissions - Learned how Odoo security works using access rights - Added security file in __manifest__.py - Fixed access warning for estate.property model
bit-odoo
reviewed
May 15, 2026
There was a problem hiding this comment.
Hello @abkus-odoo
Good Work!
Can you please add the PR Description?
Also followe this commit message documentation - https://www.odoo.com/documentation/19.0/contributing/development/git_guidelines.html
Thanks
| @@ -0,0 +1 @@ | |||
| from . import estate_property No newline at end of file | |||
There was a problem hiding this comment.
Should be one empty line at the end of the file,
Author
There was a problem hiding this comment.
ok sir, i will take care of it
|
|
||
| name = fields.Char(required=True) | ||
| description = fields.Text() | ||
|
|
|
|
||
| postcode = fields.Char() | ||
| date_availability = fields.Date() | ||
|
|
| ('south', 'South'), | ||
| ('east', 'East'), | ||
| ('west', 'West'), | ||
| ]) No newline at end of file |
There was a problem hiding this comment.
Should be one empty line at the end of the file.
- Added estate_property_views.xml with basic act_window action - Connected estate.property model with UI through action - Understood how menu > action >view >model flow works in Odoo - Created views folder and add the estate_property_views.xml file - After adding this file Odoo loads it successfully during module update - Action gets created in the database but nothing shows in UI bcz menu is not added
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

No description provided.