Skip to content

aalon - Technical Onboarding - #1419

Open
Elio1104 wants to merge 29 commits into
odoo:19.0from
odoo-dev:19.0-technical-training-aalon
Open

Elio1104 wants to merge 29 commits into
odoo:19.0from
odoo-dev:19.0-technical-training-aalon

Conversation

@Elio1104

Copy link
Copy Markdown

[ADD] '.idea' to gitignore

@robodoo

robodoo commented Sep 15, 2026

Copy link
Copy Markdown

Pull request status dashboard

@leclerc-leo leclerc-leo left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👋 Great work

Comment thread .gitignore Outdated

# Pyre type checker
.pyre/
.idea No newline at end of file

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Try not to push changes to .gitignore, you can add a .gitignore in the folder that contains tutorials, odoo (community) and enterprise folder instead and it should still register.

If you only have tutorial opened, you should probably open a folder that contains those 3 folders as you can use it to search in the odoo/enterprise codebase for example which will help greatly later.

Comment thread estate/models/estate_property.py Outdated
name = fields.Char('Name', required=True)
description = fields.Text('Description')
postcode = fields.Char('Postcode')
date_availability = fields.Date('Availability Date', copy=False, default=lambda self: fields.Date.add(fields.Date.today(), days=90))

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We try to keep the lines around ~120 characters. If you use vscode you can configure the settings for rulers to add one there.
Nitpick: some people like to have string= before the string to make it clearer.

Suggested change
date_availability = fields.Date('Availability Date', copy=False, default=lambda self: fields.Date.add(fields.Date.today(), days=90))
date_availability = fields.Date(
string='Availability Date',
copy=False,
default=lambda self: fields.Date.add(fields.Date.today(), days=90)<
)

Comment thread estate/models/estate_property.py Outdated
Comment on lines +22 to +26
selection=[
("north", "North"),
("south", "South"),
("east", "East"),
("west", "West")],

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nitpick

Suggested change
selection=[
("north", "North"),
("south", "South"),
("east", "East"),
("west", "West")],
selection=[
("north", "North"),
("south", "South"),
("east", "East"),
("west", "West"),
],

aalon-odoo added 15 commits September 16, 2026 11:35
[FIX] estate_property : nitpick adjustments

[MOV] menu items from estate_view to estate_menu
[FIX] estate_property model : fields label changed
- creating model
- adding it to the security group
- updating the menu
- creating a view
- updating the __init__.py and __manifest__.py
- creating model
- adding it to the security group
- creating the form view
- updating __init__.py and __manifest__.py
- adding offer One2Many offer field
- adding a offer's list view
- adding total area field + updating form view
@aboo-odoo
aboo-odoo self-requested a review September 17, 2026 12:49
@aboo-odoo

Copy link
Copy Markdown

Hey 👋 I'll be managing your review now to spread the load among the 4 of us 😄

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants