-
Notifications
You must be signed in to change notification settings - Fork 2.1k
[ADD] estate: add a new addon estate, which add a basic model for real estate properties #774
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
base: 18.0
Are you sure you want to change the base?
Conversation
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.
The commits are not named properly.
Otherwise, it's great !
estate/models/estate_property.py
Outdated
|
||
|
||
class Property(models.Model): | ||
_name = "estate_property" |
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.
You should use dots instead of underscores for the model names. (Sorry for the bad info previously).
_name = "estate_property" | |
_name = "estate.property" |
…y representing a real estate property
40bcb60
to
ab90ae2
Compare
… property model and add them in the property model views
ab90ae2
to
401c9d7
Compare
…confirming and refusing offers
…er can now link property type to the offers
…sponsible for in his user form view.
When selling a house, an invoice is created.
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.
Small comments
This should be good 👍