-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
[ADD] estate: add new module app named as estate #207
Open
arih-odoo
wants to merge
14
commits into
odoo:18.0
Choose a base branch
from
odoo-dev:18.0-training-arih
base: 18.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.
Conversation
This file contains 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
Created new module to add another app named as estate for real estate operations. It contains summary, description, depends, and other values as well. Chapter 2 of the server framework 101
Created a new model called property to store the details of any property that comes in the database. It has all the fields which are required for a property so that nothing gets missed while publishing a property.
Completed Chapter 4 - Security and gave all access rights to the base user group. Now I am not getting any log warning for access rights. Created a new csv file in the security directory and defined it in the manifest file right in the data tag.
Completed chapter 5 of server framework 101. Added views for Estate app and property model itself using the default views. Explored actions, menuitems, XML, usage of different type of fields and attributes.
…ies. While practicing chapter no 6 for framework 101 created these: Created custom form view for the properties. Created filter for the available product using OR operator. Created a group by for postcode.
… type models. Practiced linking different models using all kind of relations. Created new models and views for types, tags, offers and linked them with property model. Added new atributes and foreign keys in property model and views.
Added new field in the property model to compute the best offer ever givn to it. Created a method to compute the total area of the property based on garden area and living area. Created an onchange method as well for the garden checkbox. Property offer will now have a validity and deadline date which depend on each other. Completed chpter no 8 of server framework101.
Performed the following operations while doing chapter no 9 of server framework 101: Added 2 buttons for selling or cancelling the property and upon the clicking of these buttons some fields are also updating. Added 2 buttons in the offers view to accpet or reject an offer and then change some values of property model accordingly.
Performed these operations while working with chapter 10 constraints: SQL constraints for some fields to be strictly positive, positive, and unique names. Python constraints for the selling price to not be lower than 90% of the expected price.
…butes, options, and created stat button. Performed following things while practicing Chapter no 11: Added inline view for properties inside a type. Used widgets to add a status bar to the property form view. Applied sorting order in the module using views, models, and manually by using sequence. Practiced attributes and actions to add colors and make fields invisible conditionally. Applied these features on list, form, search. Added a stat button in the form view of type model.
…nd classic python inheritance. Applied following things while working on server framework 101: Applied Python inheritance to update the crud operations, specially create and unlink. Applied model level inheritance to extend res.users model and add another field. Applied view level inheritance to extend the view of users.
…when a property is sold. Completed ch 13 of server framework 101. Created a new module 'estate_account' which will be used as a link between estate and account modules. Extended estate_property model to extend action_sold to add invoice creation.
While working on server framework 101 ch 14, performed following thing: Created a new kanban view in the property views. Added multiple fields in the card view, some fields are conditional. Kanban view will be divided into groups based upon the property type. User will not be able to drag and drop the cards.
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.
Created new module to add another app named as estate for real estate operations. It contains summary, description, depends, and other values as well. Chapter 2 of the server framework 101