19.0 tuto hagav#1361
Draft
hagav-odoo wants to merge 21 commits into
Draft
Conversation
-by following guide of odoo 19.0 docs chapter 2
Introduce configuration files for Pyright and the Odoo Language Server directly inside the addon to optimize the development workflow. - for zed
- action defined in estate_views.xml and linked with esate model - three level menus added using nested menuitem element - updated manifest to include menus & views files
- set default value in date_availability (3 months from current date) - set selling_price to readonly - bedrooms have now default value of 2
- uses some useful fields from estate model
- define form_view in views xml
- searchbar now suggests search in different fields when user types. - filter using availability based on state - groupBy based on Postcode - addon PATH correction in odools.toml
- active & state added to view
hagav-odoo
force-pushed
the
19.0-tuto-hagav
branch
from
July 9, 2026 05:19
d133690 to
5e1106a
Compare
- Improves devEx for DB Viewer - Isolated tool for local use only, does not affect the estate addon
- linked as Many2one field - add access config in access file for new model
hagav-odoo
force-pushed
the
19.0-tuto-hagav
branch
from
July 13, 2026 11:39
22fcd02 to
a75e298
Compare
- linked with estate using many2many
- adds offers page (tab) to estate form view - linked using one2many field [property_id (many2one) from estate.offer]
- using @api.depends - docs suggest to use loop but as we set store=True this makes total_area stored in db every time. - user can only create or edit one field at time and this true for both list view and form also so we have always one record to compute
- in f315778 when we duplicate 1+ records or import 1+records we have multipale records to compute and without loop only able to calaculate first record so fix this now using for-loop which fixs this (also suggested in docs)
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
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.

chapter 1 to chapter 4