-
Notifications
You must be signed in to change notification settings - Fork 3.2k
risri - Technical Training #1326
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
risri-odoo
wants to merge
30
commits into
odoo:19.0
Choose a base branch
from
odoo-dev:19.0-training-risri
base: 19.0
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
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 5562495
[ADD] estate: add EstateProperty model with basic fields
risri-odoo b09ba24
[IMP] estate: add missing string attribute to garden_area field
risri-odoo 77f6693
[IMP] estate: fixed files based on codingguidelines
risri-odoo 2b2fe10
[IMP] estate: fixed files based on codingguidelines
risri-odoo 55c355b
[ADD] estate: add access rights for estate.property model
risri-odoo 9440c91
[IMP] estate: Fixed the issue inside estate/manifest.py
risri-odoo 2d7d1d3
[ADD] estate: add views, menus, feild attributes and reserved fields
risri-odoo 8f4806a
[IMP] estate: edited estate_property.py for check-style issue
risri-odoo 9d071e5
[ADD] estate: added list, form, search and domain view
risri-odoo 7ea10bd
[IMP] estate: added list, form, search and domain view and check-styl…
risri-odoo b94b24f
[ADD] estate: add property type, tags and many2one fields
risri-odoo 2306fe7
[IMP] estate: fixed check style issues and removed authore and licens…
risri-odoo 4c15657
[IMP] estate: fixed check style issues and removed authore and licens…
risri-odoo 4a471f6
[ADD] estate: added sample data of properties, property tags, propert…
risri-odoo 7c50ad8
[ADD] estate: added sample data of properties, property tags, propert…
risri-odoo 0f8cd5d
[ADD] estate: added sample data of properties, property tags, propert…
risri-odoo f2b988c
[IMP] estate: added sample data of properties, property tags, propert…
risri-odoo 924a839
[IMP] estate: improved some of the check-style issues pointed by our …
risri-odoo b87c883
[IMP] estate: improved some of the check-style issues pointed by our …
risri-odoo 635c2b2
[ADD] estate: added one2many feild of chapter 7.3
risri-odoo 566586c
[IMP] estate: correction of check-style of one2many feild and propert…
risri-odoo 1f4df3a
[IMP] estate: correction of check-style of one2many feild and propert…
risri-odoo b9eed3e
[ADD] estate: Complete Chapter 8 -added Computed fields and Onchange …
risri-odoo ae99223
[IMP] estate: Complete Chapter 8 -added Computed fields and Onchange …
risri-odoo cf605ff
[IMP] estate: Complete Chapter 8 -added Computed fields and Onchange …
risri-odoo 0abb528
[IMP] estate: complete chapter 8 and corrections from check-style
risri-odoo 7b5d36e
[IMP] estate: complete chapter 8 and corrections from check-style
risri-odoo 7e644b8
[IMP] estate: complete chapter 8 and code review task push
risri-odoo fea1155
[IMP] estate: complete chapter 8 and code review task push and chec…
risri-odoo File filter
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
commit d8e656e5ac99891cc998c3289b38c3aae2a5d83e
There are no files selected for viewing
Empty file.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| { | ||
| 'name': 'Real Estate', | ||
| 'depends': ['base'], | ||
| 'application': True, | ||
| } | ||
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.
There was a problem hiding this comment.
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?