-
Notifications
You must be signed in to change notification settings - Fork 2.6k
JUGAC Onboarding #1002
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
jugurtha-gaci
wants to merge
13
commits into
odoo:19.0
Choose a base branch
from
odoo-dev:19.0-onboarding-jugac
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.
+417
−0
Open
JUGAC Onboarding #1002
Changes from 3 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
df8d524
[ADD] estate: create the app
jugurtha-gaci b84e916
[ADD] estate: chapter 3
jugurtha-gaci c3c8c66
[ADD] estate: define access rights (chapter 4)
jugurtha-gaci 223bbb6
[ADD] estate: create the actions and views (chapter 5) && [FIX] fix P…
jugurtha-gaci c7523f7
[ADD] estate: customize the view (chapter 6)
jugurtha-gaci 094f139
[IMP] estate: Add notes.
Mathilde411 a9e95fd
[ADD] estate: create relationship tables : offers, tags, types - (cha…
jugurtha-gaci ed6ba56
[ADD] estate: implement compute, inverse, and onchange methods && [IM…
jugurtha-gaci 7b1a091
[ADD] estate: add actions (chapter 9) && [FIX] estate: fix runbot errors
jugurtha-gaci 21a1729
[FIX] fix runbot errors
jugurtha-gaci 0b46628
[FIX] fix runbot errors
jugurtha-gaci c8c8d80
[FIX] fix runbot errors
jugurtha-gaci 491c499
[ADD] estate: add constraints (chapter 10)
jugurtha-gaci 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
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,10 @@ | ||
{ | ||
'name': "Estate", | ||
'version': '1.0', | ||
'depends': ['base'], | ||
'author': "GACI Jugurtha (jugac)", | ||
'application': True, | ||
'data': [ | ||
'data/ir.model.access.csv' | ||
] | ||
} | ||
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 | ||
access_estate_property_user,access.estate.property.user,model_estate_property,base.group_user,1,1,1,1 | ||
jugurtha-gaci 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,27 @@ | ||||||
from odoo import models, fields | ||||||
|
||||||
class EstateProperty(models.model): | ||||||
_name = "estate_property" | ||||||
_description = "Table that stores the estate properties" | ||||||
|
_description = "Table that stores the estate properties" | |
_description = "Estate Property" |
_description is the human-readable name of the model, not an actual description. It' a misnomer.
jugurtha-gaci marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
jugurtha-gaci 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.