-
Notifications
You must be signed in to change notification settings - Fork 2.7k
JEDEL Onboarding #998
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
jedel-odoo
wants to merge
27
commits into
odoo:19.0
Choose a base branch
from
odoo-dev:19.0-Onboarding-jedel
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
JEDEL Onboarding #998
Changes from 4 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
f8e1bc0
[ADD] Estate:createthe app
jedel-odoo c558c6b
[IMP] estate : set application to True
jedel-odoo cd52496
[IMP] Estate : Chapter 3
jedel-odoo 8cb8dc5
[IMP] estate : add security model
jedel-odoo a0182ea
[IMP] estate : adding menus and fields
jedel-odoo a449045
[IMP] estate : adding custom views (chapter 6)
jedel-odoo ded2b66
[IMP] estate : adding types, tags and offers (chapter 7)
jedel-odoo 286c828
[IMP] estate: Add notes.
Mathilde411 fa3f1ea
[IMP] estate: adding computed fields and onchanges (chapter 8)
jedel-odoo f9ed8a6
[IMP] estate: adding computed fields and onchanges (chapter8)
jedel-odoo 2ff906f
[IMP] estate: style corrections
jedel-odoo 67147af
[IMP] estate: tutorials corrections
jedel-odoo a0a6f39
[IMP] estate: tutorials corrections
jedel-odoo abc4cdf
[IMP] estate: adding buttons (chapter 9
jedel-odoo 1c19652
[IMP] estate: corrections
jedel-odoo c5e045e
[IMP] estate: adding constraints (chapter 10)
jedel-odoo 3ef6943
[IMP] estate: adding sprinkels (chapter 11)
jedel-odoo 6a76b10
[IMP] estate: adding user inheritance (chapter 12)
jedel-odoo dd2110b
[IMP] estate: style corrections
jedel-odoo a4d520a
[ADD] estate_account: adding a child class
jedel-odoo 25c5923
[IMP] estate, estate_account: style corrections
jedel-odoo 383a8d6
[IMP] estate: kanban view
jedel-odoo f19a562
[IMP] estate: corrections
jedel-odoo 1313f2b
[IMP] estate: corrections
jedel-odoo 47aa27d
[IMP] estate: adding some tests
jedel-odoo 92f8ce1
[FIX] estate: corrections
jedel-odoo 7cc8a96
[IMP] estate: add demo data
jedel-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
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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 @@ | ||
| from . import models | ||
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,8 @@ | ||
| { | ||
| 'name': "Real Estate", | ||
| 'depends': ['base'], | ||
| 'application' : True, | ||
| 'data' : [ | ||
| 'security/ir.model.access.csv' | ||
| ], | ||
| } | ||
Mathilde411 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
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 @@ | ||
| from . import estate_property | ||
Mathilde411 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
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,24 @@ | ||||||
| from odoo import models, fields | ||||||
|
|
||||||
| class EstateProperty(models.Model): | ||||||
| _name = "estate.property" | ||||||
| _description = "Property for the Real Estate app" | ||||||
|
||||||
| _description = "Property for the Real Estate app" | |
| _description = "Estate Property" |
_description contains a short human-readable name for the model
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,2 @@ | ||
| id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink | ||
| estate.access_estate_property,access_estate_property,estate.model_estate_property,base.group_user,1,0,0,0 | ||
Mathilde411 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
Mathilde411 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
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.
Uh oh!
There was an error while loading. Please reload this page.